

/* Helvetica Neue */

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Black'), local('HelveticaNeue-Black'),
        url('../font/HelveticaNeue-Black.woff') format('woff2'),
        url('../font/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Heavy'), local('HelveticaNeue-Heavy'),
        url('../font/HelveticaNeue-Heavy.woff2') format('woff2'),
        url('../font/HelveticaNeue-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Bold'), local('HelveticaNeue-Bold'),
        url('../font/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../font/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Medium'), local('HelveticaNeue-Medium'),
        url('../font/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../font/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Light'), local('HelveticaNeue-Light'),
        url('../font/HelveticaNeue-Light.woff2') format('woff2'),
        url('../font/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Thin'), local('HelveticaNeue-Thin'),
        url('../font/HelveticaNeue-Thin.woff2') format('woff2'),
        url('../font/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Ultra Light'), local('HelveticaNeue-UltraLight'),
        url('../font/HelveticaNeue-UltraLight.woff2') format('woff2'),
        url('../font/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Roman'), local('HelveticaNeue-Roman'),
        url('../font/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../font/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* PierSans */

@font-face {
    font-family: 'Pier Sans';
    src: url('../font/PierSans-Bold.woff2') format('woff2'),
        url('../font/PierSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Pier Sans';
    src: url('../font/PierSans-Light.woff2') format('woff2'),
        url('../font/PierSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ROOT STYLE */
:root {
    --bs-primary: #331391;
    --bs-secondary: #fd4c66;
    --bs-secondary-gray-color: #7F8192;
    --bs-secondary-bg-color: #F8F9FA;
    --bs-secondary-heading: #26264B;
    --bs-secondary-footer: #1A1725;
    --bs-primary-font: 'Pier Sans';
    --bs-secondary-font: 'Helvetica Neue';
}

/* GLOBAL STYLES */
html {
    /* scroll-behavior: smooth; */

}
body {
    /* scroll-behavior: smooth;
    position: relative; */
    --bs-secondary-font: 'Helvetica Neue';
}
h1, h2, h3, h4, h5, h6 {
    color: var(--bs-secondary-heading);
    font-family: var(--bs-primary-font);
}
h1 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
}
h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}
h3 {
    font-size: 25px;
    line-height: 31px;
    font-weight: 700;
}
h4 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
}
h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
}
a {
    color: var(--bs-secondary-heading);
    text-decoration: none;
    transition: all .2s ease-in-out;
}
a:hover {
    color: var(--bs-secondary);
}
ul {
    padding: 0px;
    margin: 0px;
}
li {
    list-style: none;
}
img {
    width: 100%;
    object-fit: cover;
}
.btn {
    padding: 0px;
}
.btn-primary {
    font-family: var(--bs-primary-font);
    color: var(--bs-secondary-heading);
    padding: 0px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.btn-primary:hover {
    color: var(--bs-secondary-heading);
    background-color: transparent;
    border: none;
}
.btn-primary:active {
    box-shadow: none !important;
}
.btn-primary:focus {
    color: #FFF;
    background-color: var(--bs-secondary-heading);
    border: var(--bs-secondary-heading);
}
.btn:focus {
    box-shadow: none;
}
input:focus {
    box-shadow: none !important;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.form-select:focus {
    box-shadow: none;
}
/* Section */
.dt-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.dt-section.news-page {
    padding-bottom: 0;
}
.bg-image {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-blue {
    /* background-color: var(--bs-primary); */
    background: url(../session-bg.jpg);
    background-size: cover;
}
.bg-light-gray {
    background-color: var(--bs-secondary-bg-color);
}
.bg-gray {
    background-color: var(--bs-secondary-gray-color);
}






/* Header */
.header {
    display: none;
}
.header .navbar {
    padding: 0px;
}
.header .navbar-brand {
    display: block;
}
.header .navbar-brand svg {
    width: 182px;
    height: auto;
}
.header .navbar-brand img {
    width: 182px;
    height: auto;
}
.header .navbar-toggler {
    padding: 0px;
}
.header .nav-link {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    color: var(--bs-secondary-heading) !important;
    padding: 40px 0px !important;
    padding-left: 0px !important;
}
.header .dropdown-menu {
    border: none;
    border-radius: 0px 0px 6px 6px !important;
    padding: 0px;
    min-width: 197px;
}
.header .nav-item>.dropdown-menu {
    margin-top: 0px;
    border-top: 1px solid var(--bs-secondary);
}
.header .dropdown-menu a {
    font-size: 12px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    color: var(--bs-secondary-heading);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .dropdown-menu li:active {
    background-color: unset;
}
.header .dropdown-menu a svg {
    width: 4px;
    height: auto;
}
.header .dropdown-menu a svg path {
    fill: var(--bs-secondary-heading);
}
.header .dropdown-menu a:hover svg path,
.header .dropdown-menu a:focus svg path {
    fill: var(--bs-secondary-heading);
}
.header .dropdown-menu .dropdown-item {
    padding: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.header .dropdown-menu .dropdown-item:last-of-type {
    border-bottom: none;
}
.header .dropdown-menu .dropdown-item:last-of-type,
.header .dropdown-menu .dropdown-item:last-of-type>a {
    border-radius: 0px 0px 6px 6px;
}
.header .mega-menu .dropdown-menu .dropdown-item:last-of-type,
.header .mega-menu .dropdown-menu .dropdown-item:last-of-type>a {
    border-radius: 0px;
}
.header .header-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .header-right .search-btn svg {
    width: 12px;
    height: auto;
}
.header .header-right .btn-primary {
    margin-left: 40px;
    margin-right: 40px;
}
.header .lang-dropdown-menu {
    position: relative;
    padding: 38px 0px;
}
.header .lang-dropdown-menu .dropdown-menu {
    box-shadow: 0px -1px 6px -2px #BFBFBF;
}
.header .lang-dropdown-menu .dropdown-menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.header .header-right .hamburger-menu-btn {
    margin-right: 0px;
}
.header .lang-dropdown-item>a {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--bs-primary-font);
    padding: 40px 0px;
}
.header .lang-dropdown-item>.dropdown-menu {
    border-radius: 0px !important;
}
.header .lang-dropdown-item>.dropdown-menu a {
    padding: 5px 18px;
}
.header .lang-dropdown-item svg {
    width: 9px;
    height: auto;
    margin-left: 3px;
}
.header .lang-dropdown-item .dropdown-menu {
    top: 100%;
    right: 0;
    min-width: max-content;
}
/* .header .lang-dropdown-item:hover .dropdown-menu {
    display: block;
} */
.header .search-btn .search-overlay {
    display: none !important;
}
.header .search-btn .search-block {
    display: block !important;
}
.header .search-btn .btn {
    background-color: transparent;
    color: var(--bs-secondary-heading);
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 44.5px 0px;
    border: none;
}
.header .search-btn button svg {
    width: 15px;
    height: 15px;
}
.header .search-overlay {
    padding: 0px;
    border-radius: 0px;
    margin-top: 0px;
    margin-left: -248px;
    border: none;
}
.header .search-btn form {
    display: flex;
}
.header .search-btn form input[type=text] {
    color: gray;
    background-color: white;
    border: none;
    border-radius: 0px !important;
    width: 230px;
    padding-left: 15px;
    outline: none !important;
    border: 1px solid whitesmoke;
}
.header .search-btn form button {
    padding: 18px 18px;
    color: gray;
    background-color: white;
    border: none;
    outline: none !important;
    cursor: pointer;
    border: 1px solid whitesmoke;
}
.header .search-btn form button:hover svg path {
    stroke: var(--bs-primary);
}
.header .search-btn button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .hamburger-menu-btn:focus {
    background-color: transparent;
    border: none;
}
.header .hamburger-menu-btn svg {
    width: 20px;
    height: auto;
}



/* Hamburger */
.hamburger-content .offcanvas-end {
    width: 500px;
}
.hamburger-content .content {
    background-color: var(--bs-secondary-footer);
    padding: 58px 70px 58px 55px;
    height: 100%;
}
.hamburger-content .content h3 {
    color: #FFF;
    margin-bottom: 15px;
}
.hamburger-content .about-us {
    margin-bottom: 40px;
}
.hamburger-content .about-us p {
    color: #FFF;
    opacity: .7;
}
.hamburger-content .contact-us {
    margin-bottom: 40px;
}
.hamburger-content .contact-us ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--bs-secondary-font);
    margin-bottom: 15px;
}
.hamburger-content .contact-us ul li a {
    color: #FFF;
    opacity: .7;
}
.hamburger-content .contact-us ul li a:hover {
    opacity: 1;
}
.hamburger-content .contact-us ul li:last-of-type {
    margin-bottom: 0px;
}
.hamburger-content .contact-us .icon {
    display: block;
    margin-right: 15px;
}
.hamburger-content .contact-us .icon svg {
    width: 17px;
    height: auto;
}
.hamburger-content .contact-us .icon svg path {
    fill: #FFF;
}
.hamburger-content .instagram .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 94%;
}
.hamburger-content .instagram .item {
    margin-bottom: 10px;
}
.hamburger-content .instagram .item img {
    width: 80px;
    height: 80px;
}
.hamburger-content .overlay-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 35px;
}
.hamburger-content .overlay-btn button {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-radius: 50%;
    border: 1.5px solid #FFF;
    background-color: var(--bs-secondary-footer);
}
.hamburger-content .overlay-btn button svg {
    width: 8.3px;
    height: auto;
}
.hamburger-content .overlay-btn button svg path {
    fill: #FFF;
}


/* Mega menu */
.header .nav-item.mega-menu:hover:before {
    left: unset;
    right: 34px;
    margin-left: auto;
    margin-right: unset;
}
.header .mega-menu .dropdown-menu .dropdown-item a {
    min-width: 140px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
}
.header .mega-menu .dropdown-menu .dropdown-item a:hover {

    padding-left: 15px;
    background-color: var(--bs-secondary) !important;
    color: #FFF !important;
}
.header .mega-menu h5 {
    font-weight: 600;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}
.header .mega-menu .dropdown-menu .dropdown-item {
    border-bottom: none;
}

/* Responsive Menu */
.header .navbar-toggler.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.header .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.header .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.header .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.header .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.header .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.header .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.header .navbar-toggler svg {
    width: 28px;
    height: auto;
}
.header .navbar-toggler svg path {
    stroke: #FFF;
}
/* Header Sticky */
/* .header .navigation-sticky.header-fixed {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    background-color: #FFF;
    box-shadow: 0px 0px 8px -2px lightgray;
    transition: .5s ease-in-out;
} */
#header-1 .navigation-sticky.header-fixed {
    background-color: var(--bs-primary);
    box-shadow: none;
}
#header-3 .navigation-sticky.header-fixed {
    background-color: var(--bs-primary);
    box-shadow: none;
}
/* #header-2 {
    margin-bottom: 70px;
} */
/* #header-2 .navigation-sticky {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    background-color: #FFF;
    transition: .5s ease-in-out;
} */








/* Header 1 */
#header-1 {
    position: absolute;
    width: 100%;
    z-index: 10;
    background-color: transparent;
}
#header-1.active {
    display: block;
}
#header-1 .navbar-brand svg path {
    fill: #FFF;
}
#header-1 .navbar-brand svg circle {
    fill: var(--bs-secondary);
}
#header-1 .nav-link {
    color: #FFF !important;
    font-weight: 600;
}
#header-1 .search-btn .btn svg path {
    fill: #FFF;
}
#header-1 .lang-dropdown-item>a,
#header-1 .lang-dropdown-item>a * {
    color: #FFF;
    fill: #FFF;
}



/* Header 2 */
#header-2.active {
    display: block;
}
#header-2 .navbar-brand svg {
    width: 154px;
    height: auto;
}
#header-2 .nav-link {
    font-weight: 600;
}
#header-2 .nav-link.active {
    font-weight: 700;
    color: var(--bs-secondary) !important;
}
#header-2 .navbar-toggler svg path {
    stroke: var(--bs-secondary-heading);
}

/* Header 3 */
#header-3 {
    position: absolute;
    width: 100%;
    z-index: 10;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
#header-3.active {
    display: block;
}
#header-3 .navbar-brand svg {
    width: 154px;
    height: auto;
}
#header-3 .navbar-brand svg path {
    fill: #FFF;
}
#header-3 .navbar-brand svg circle {
    fill: var(--bs-secondary);
}
#header-3 .nav-link {
    color: #FFF !important;
    font-weight: 500;
    letter-spacing: 0.07px;
}
#header-3 .search-btn .btn svg path {
    fill: #FFF;
}
#header-3 .lang-dropdown-item>a,
#header-3 .lang-dropdown-item>a * {
    color: #FFF;
    fill: #FFF;
}
#header-3 .nav-item>.dropdown-menu {
    margin-top: 1px;
    border-top: none;
}
#header-3 .hamburger-menu-btn svg rect {
    fill: #FFF;
}


/*Design Changes*/
p a {
    color: #807331;
    font-weight : 700;
}
p a:hover {
    text-decoration: underline;
}

.banner-slider-wrapper {
    position: static !important;
}
.banner-slider-wrapper .owl-carousel .owl-item img {
    height: 825px;
}
.banner-slider-wrapper .banner-slider {
    position: absolute;
    top: 0;
}
.home-banner-3 .container .item {
    z-index: 2;
    position: relative;
}
.home-banner-3 .item::before {
    background: transparent !important;
}




/* Page Banner */
.page-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.page-banner::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--bs-primary); */
    opacity: .8;
}
.page-banner * {
    /* position: relative; */
    z-index: 1;
}
.page-banner .heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page-banner h1 {
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    font-family: var(--bs-primary-font);
    color: var(--bs-secondary);
    margin-bottom: 10px;
}
.page-banner .breadcrumb {
    margin-bottom: 0px;
}
.page-banner .breadcrumb li,
.page-banner .breadcrumb li::before {
    font-size: 14px;
    color: #FFF;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
}
.page-banner .breadcrumb li a {
    color: #FFF;
    opacity: 1;
}
.page-banner .breadcrumb li.active {
    padding-left: 3px;
}
.page-banner .breadcrumb li.active::before {
    padding-right: 3px;
}
/* Elements */
/* .code-block {
    font-size: 20px;
    background-color: #000000;
    padding: 20px 55px;
    color: #FFF;
    border-radius: 4px;
    margin-top: 60px;
    margin-bottom: 60px;
    font-weight: 500;
} */
.code-block {
    background-color: #f8f9fa;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: normal;
    padding: 1rem 1.5rem;
    display: inline-block;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    overflow-x: auto;
    overflow-y: scroll;
    word-wrap: break-word;
    word-break: break-word;
    margin-top: 60px;
    margin-bottom: 60px;
}
.code-block pre {
    padding: 0;
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
    white-space: pre;
    background-color: transparent;
    border: 0;
}
.code-block {
    position: relative;
}
.code-block .clipboard {
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid #ccc;
}
.code-block .clipboard:before {
    content: "\f0ea";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
    vertical-align: middle;
}
code[class*="language-"],
pre[class*="language-"] {
    color: #393a34;
    font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier,
      monospace;
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    font-size: 0.95em;
    line-height: 1.2em;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    background: #b3d4fc;
}
code[class*="language-"],
pre[class*="language-"] {
    line-height: 1.4em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #c1c1c1;
}
pre[class*="language-"] {
    padding: 0;
    margin: 0;
    overflow: auto;
    border: none;
}
:not(pre) > code[class*="language-"] {
    padding: 0.2em;
    padding-top: 1px;
    padding-bottom: 1px;
    background: #f8f8f8;
    border: 1px solid #dddddd;
}
.owl-dots-1 {
    position: relative !important;
    z-index: 1 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(54, 36, 107, 0.08) !important;
    border-radius: 50px;
    margin-top: 35px !important;
}
.owl-dots-1 .owl-dot span {
    width: 50px !important;
    height: 4px !important;
    background-color: rgba(54, 36, 107, 0.08) !important;
    border-radius: 50px !important;
    margin: 0px !important;
}
.owl-dots-1 .owl-dot.active span {
    background-color: var(--bs-secondary) !important;
}
/* Buttons */
.buttons h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
[class *= 'button-style-'] .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: auto;
    margin-right: auto;
}
[class *= 'btn-style-'] {
    font-family: var(--bs-secondary-font);
    width: max-content;
    padding: 0px 20px !important;
    z-index: 1;
    transition: all .5s ease-in-out;
}
[class *= 'btn-style-3'] {
    padding: 0px;
}
[class *= 'btn-style-4'] {
    padding: 0px;
}
[class *= 'btn-style-4'] span {
    padding: 0px 15px;
}
.btn-style-sm {
    font-size: 14px;
    font-weight: 600;
    min-width: 148px;
    height: 45px;
}
.btn-style-md {
    font-size: 15px;
    font-weight: 600;
    min-width: 160px;
    height: 52px;
}
.btn-style-lg {
    font-size: 16px;
    font-weight: 600;
    min-width: 172px;
    height: 58px;
}
.btn-style-1,
.btn-style-2 {
    color: #FFF;
    border-radius: 50px;
    /* background: transparent linear-gradient(90deg, #FD8A66 0%, #FD4C72 31%, #FD387C 73%, #FD2384 100%) 0% 0% no-repeat padding-box; */
}
.btn-style-1 svg,
.btn-style-2 svg {
    width: 15.1px;
    height: 15.1px;
    margin-left: 8px;
    margin-top: 2px;
}
.btn-style-1 svg path,
.btn-style-2 svg path {
    fill: #FFF;
}
.btn-style-1:hover,
.btn-style-2:hover {
    color: #FFF;
    /* background: transparent linear-gradient(90deg, #FD2384 0%, #FD387C 31%, #FD4C72 73%, #FD8A66 100%) 0% 0% no-repeat padding-box; */
}
.btn-style-2 {
    border-radius: 5px;
}
.btn-style-3 {
    color: var(--bs-secondary-heading);
    border-radius: 50px;
    border: 2px solid var(--bs-secondary-heading);
    background-color: transparent;
}
.btn-style-3 span {
    position: relative;
    top: -1px;
}
.btn-style-3 svg {
    width: 15px;
    height: 15px;
    margin-left: 8px;
}
.btn-style-3 svg path {
    fill: var(--bs-secondary-heading);
}
.btn-style-3:hover,
.btn-style-3:focus {
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    background-color: unset;
}
.btn-style-3:hover svg path,
.btn-style-3:focus svg path {
    fill: var(--bs-primary);
}
.btn-style-3 * {
    transition: .3s ease-in-out;
}
.btn-style-4.btn-style-sm {
    min-width: 153px;
    height: 53px;
    margin: 20px 0px;
}
.btn-style-4.btn-style-md {
    min-width: 178px;
    height: 61px;
}
.btn-style-4.btn-style-lg {
    min-width: 192px;
    height: 65px;
}
.btn-style-4 {
    position: relative;
    color: #FFF;
    border-radius: 50px;
    border: 2px solid var(--bs-primary);
    transition: 1s ease-in-out;
}
.btn-style-4::before {
    position: absolute;
    content: "";
    width: 98%;
    height: 95%;
    background-color: var(--bs-primary);
    border-radius: 50px;
    z-index: -1;
}
.btn-style-4:hover::before {
    /* width: 100%;
    height: 100%; */
}
.btn-style-4:hover {
    color: #FFF;
}
.btn-style-5 {
    font-family: var(--bs-secondary-font);
    font-weight: 700;
    min-width: max-content;
    height: max-content;
    padding: 0px !important;
}
.btn-style-5>span {
    line-height: 0px;
    margin-left: 7px;
    margin-top: 0.2px;
}
.btn-style-5 svg {
    width: 13px;
    height: auto;
}
.btn-style-5:hover,
.btn-style-5:focus,
.btn-style-5:hover *,
.btn-style-5:focus * {
    color: var(--bs-secondary);
    fill: var(--bs-secondary);
    transition: .2s ease-in-out;
    background-color: unset;
}








.buttons .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Dividers */
.dividers h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.dividers p {
    font-size: 20px;
    font-weight: 500;
    color: var(--bs-secondary-heading);
    font-family: var(--bs-secondary-font);
}
.divider-style-1 {
    background-color: transparent;
    opacity: 1;
    border-top: 2px solid var(--bs-secondary-heading);
}
.divider-style-2 {
    background-color: transparent;
    opacity: 1;
    border-top: 2px dashed var(--bs-secondary-heading);
}
.divider-style-3 {
    background-color: var(--bs-secondary-heading);
    opacity: 1;
    height: 7px !important;
    border-radius: 50px;
}
.divider-style-4 {
    background-color: transparent;
    opacity: 1;
    border-top: 5px dotted var(--bs-secondary-heading);
}
.dividers .row>div:last-child .code-block {
    margin-bottom: 0px;
}
/* Headings */
.headings h1,
.headings h2,
.headings h3,
.headings h4,
.headings h5,
.headings h6 {
    font-weight: 800;
    margin-bottom: 35px;
}
.headings p {
    font-size: 16px;
}
.headings .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Drop Caps */
.dropcaps h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.dropcaps-style-1::first-letter {
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-footer);
    font-weight: 500;
    font-size: 52px;
    line-height: 45px;
    margin-right: 4px;
    margin-top: 0px;
    float: left;
}
.dropcaps-style-1 {
    font-size: 16px;
    color: var(--bs-secondary-footer);
    font-weight: 500;
}
.dropcaps-style-2::first-letter {
    font-family: var(--bs-primary-font);
    font-weight: 700;
    font-size: 30px;
    float: left;
    padding: 3px 13px;
    margin-top: 3px;
    margin-right: 12px;
    color: #FFF;
    background-color: var(--bs-secondary);
    border-radius: 0px;
    line-height: 39px;
    border-radius: 3px;
}
.dropcaps-style-2 {
    font-size: 16px;
}
.dropcaps .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Blockquotes */
.blockquotes h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.blockquotes-style-1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.blockquotes-style-1 .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-secondary);
}
.blockquotes-style-1 .icon svg {
    width: 34px;
    height: auto;
}
.blockquotes-style-1 .icon svg path {
    fill: #FFF;
}
.blockquotes-style-1 p {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--bs-primary-font);
    color: var(--bs-secondary-heading);
    margin-left: 30px;
    margin-bottom: 0px;
}
.blockquotes-style-2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0px;
}
.blockquotes-style-2::before {
    position: absolute;
    content: "";
    top: 0;
    width: 70%;
    height: 1.5px;
    background: transparent linear-gradient(90deg, #FFFFFF 0%, var(--bs-secondary) 52%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    border-radius: 100%;
}
.blockquotes-style-2::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 70%;
    height: 1.5px;
    background: transparent linear-gradient(90deg, #FFFFFF 0%, var(--bs-secondary) 52%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    border-radius: 100%;
}
.blockquotes-style-2 .icon {
    margin-right: 10px;
}
.blockquotes-style-2 .icon svg {
    width: 26px;
    height: auto;
}
.blockquotes-style-2 .icon svg path {
    fill: var(--bs-primary);
}
.blockquotes-style-2 p {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-secondary-footer);
    margin-bottom: 0px;
}
.blockquotes .container>.code-block:last-of-type {
    margin-bottom: 0px;
}
.pricing h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.pricing-style-1 .item {
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background-color: var(--bs-secondary-bg-color);
}
.pricing-style-1 .item .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.pricing-style-1 .item .head svg {
    width: 58px;
    height: auto;
    margin-bottom: 10px;
}
.pricing-style-1 .item .head span {
    font-size: 14px;
    font-style: italic;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
    margin-bottom: 25px;
}
.pricing-style-1 .item .head h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0px;
}
.pricing-style-1 .item ul {
    margin: 35px 0px;
}
.pricing-style-1 .item ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
    font-family: var(--bs-secondary-font);
    padding: 16px 0px;
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
}
.pricing-style-1 .item ul li:first-of-type {
    border-top: 1.5px solid rgba(0, 0, 0, .1);
}
.pricing-style-1 .item ul li svg {
    width: 12px;
    height: auto;
    margin-right: 10px;
}
.pricing-style-1 .item ul li svg path {
    fill: var(--bs-primary);
}
.pricing-style-1 .item ul li.no svg path {
    fill: var(--bs-secondary);
}
.pricing-style-1 .item ul li.no {
    text-decoration: line-through;
}
.pricing-style-1 .item .btn-primary {
    margin-left: auto;
    margin-right: auto;
}
.pricing-style-1 .item.silver {
    background-color: var(--bs-primary);
}
.pricing-style-1 .item.silver * {
    color: #FFF;
    fill: #FFF;
}
.pricing-style-1 .item.silver .head span {
    color: #FFF;
}
.pricing-style-1 .item.silver ul li {
    border-bottom: 1.5px solid rgba(255, 255, 255, .1);
}
.pricing-style-1 .item.silver ul li:first-of-type {
    border-top: 1.5px solid rgba(255, 255, 255, .1);
}
.pricing-style-1 .item.silver ul li.no svg path {
    fill: #FFF;
}
.pricing-style-2 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 30px;
    padding-bottom: 36px;
    border-radius: 8px;
    background-color: var(--bs-secondary-bg-color);
}
.pricing-style-2 .item .head span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-heading);
    margin-bottom: 15px;
}
.pricing-style-2 .item .head h3 {
    font-size: 35px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 20px;
}
.pricing-style-2 .item .head h6 {
    font-size: 14px;
    color: var(--bs-secondary-gray-color);
    font-family: var(--bs-secondary-font);
    margin-bottom: 0px;
}
.pricing-style-2 .item hr {
    margin-top: 35px;
    margin-bottom: 35px;
    width: 100%;
    height: 1.5px;
    background-color: var(--bs-secondary-heading);
    opacity: .1;
}
.pricing-style-2 .item ul li {
    font-size: 14px;
    color: var(--bs-secondary-gray-color);
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    margin-bottom: 15px;
}
.pricing-style-2 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.pricing-style-2 .item .btn-primary {
    margin-top: 30px;
}
.pricing-style-2 .item.silver {
    background-color: var(--bs-primary) !important;
    padding-top: 54px;
    padding-bottom: 50px;
}
.pricing-style-2 .item.silver * {
    color: #FFF;
}
.pricing-style-2 .item.silver span,
.pricing-style-2 .item.silver h3,
.pricing-style-2 .item.silver h6 {
    color: #FFF;
}
.pricing-style-2 .item.silver hr {
    background-color: #FFF;
}
.pricing-style-3 .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 35px;
    padding-bottom: 36px;
    border-radius: 8px;
    background-color: var(--bs-secondary-bg-color);
}
.pricing-style-3 .item-wrapper {
    overflow: hidden;
}
.pricing-style-3 .item .head span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-heading);
    margin-bottom: 15px;
}
.pricing-style-3 .item .head h3 {
    font-size: 35px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 20px;
}
.pricing-style-3 .item .head h6 {
    font-size: 15px;
    color: var(--bs-secondary-gray-color);
    font-family: var(--bs-secondary-font);
    margin-bottom: 0px;
}
.pricing-style-3 .item hr {
    margin-top: 35px;
    margin-bottom: 35px;
    width: 100%;
    height: 0px !important;
    background-color: transparent;
    border-top: 2px dashed #00000029 !important;
    opacity: 1;
}
.pricing-style-3 .item ul li {
    font-size: 15px;
    color: var(--bs-secondary-gray-color);
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    margin-bottom: 15px;
}
.pricing-style-3 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.pricing-style-3 .item ul li.no {
    text-decoration: line-through;
}
.pricing-style-3 .item>hr:last-of-type::before {
    position: absolute;
    content: "";
    left: 0;
    width: 52px;
    height: 56px;
    margin-top: -29px;
    margin-left: -26px;
    background-color: #FFF;
    border-radius: 50%;
}
.pricing-style-3 .item>hr:last-of-type::after {
    position: absolute;
    content: "";
    right: 0;
    width: 52px;
    height: 56px;
    margin-top: -29px;
    margin-right: -26px;
    background-color: #FFF;
    border-radius: 50%;
}
.pricing-style-3 .item.silver {
    background-color: #FFF;
    border: 2px solid var(--bs-secondary);
}
.pricing-style-3 .item.silver>hr:last-of-type::before,
.pricing-style-3 .item.silver>hr:last-of-type::after {
    border: 2px solid var(--bs-secondary);
}
.pricing .container>.code-block:last-of-type {
    margin-bottom: 0px;
}
/* Highlights */
.highlights h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.highlights p {
    font-size: 16px;
    margin-bottom: 0px;
}
.highlight-style-1 {
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary);
}
.highlight-style-2 {
    padding: 3px 3px;
    padding-top: 0px;
    color: #FFF;
    background-color: var(--bs-secondary);
    font-family: var(--bs-secondary-font);
    border-radius: 3px;
}
.highlights .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Images */
.images h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.images .row {
    justify-content: space-between;
}
.images img {
    width: 100%;
}
.images .code-block {
    padding-left: 20px;
}
.img-style-1 img {
    height: auto;
}
.img-style-2 img {
    height: auto;
    border-radius: 10px;
}
.img-style-3 img {
    height: auto;
}
.images .container .row>div:last-of-type .code-block {
    margin-bottom: 0px;
}
 /* Maps */
.maps h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.maps-style-1 iframe {
    display: block;
    width: 100%;
    height: 540px;
}
.maps .code-block {
    margin-bottom: 0px;
}
/* Grids */
.grids h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.grids p {
    font-size: 16px;
    margin-bottom: 0px;
}
[class*="grid-style-"] .row>div {
    margin-bottom: 50px;
}
[class*="grid-style-"] .row>div:last-of-type {
    margin-bottom: 0px;
}
.grids .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Progress Bar */
.progress-bars h2 {
    font-weight: 800;
    margin-bottom: 80px;
}
.progress {
    border-radius: 50px;
    overflow: visible;
    background-color: var(--bs-secondary-bg-color);
}
.progress h6 {
    font-family: var(--bs-secondary-font);
}
.progress-bar {
    border-radius: 50px;
    background-color: var(--bs-primary);
    position: relative;
    overflow: unset;
}
.progress-bar h6 {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -40px;
    margin-right: -15px;
    font-weight: 700;
    color: var(--bs-secondary-heading);
}
.progress-bar-style-2 .progress-bar::after {
    content: "";
    position: absolute;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 4px solid #FFF;
    background-color: var(--bs-primary);
}
.progress-bar-style-2 .progress {
    position: relative;
}
.progress-bar-style-2 h6 {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -40px;
    margin-right: 0px;
    font-weight: 700;
    color: var(--bs-secondary-heading);
}
.progress-bar-style-3 .progress {
    background-color: #e9ecef;
}
.progress-bar-style-3 .progress-bar {
    border-radius: 50px;
    background-color: #3F51B5;
    position: relative;
}
.progress-bar-style-4 h2 {
    margin-bottom: 35px;
}
.progress-bar-style-4 h5 {
    font-size: 20px;
    letter-spacing: 0.2px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    margin-bottom: 10px;
}
.progress-bar-style-4 .progress-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.progress-bar-style-4 .progress {
    border-radius: 0px;
    background-color: var(--bs-secondary-bg-color);
}
.progress-bar-style-4 .progress-bar {
    background: transparent linear-gradient(90deg, #FD8A66 0%, #FD4C72 31%, #FD387C 73%, var(--bs-secondary) 100%) 0% 0% no-repeat padding-box;
    border-radius: 0px;
}
.progress-bars .row>div:last-child .code-block {
    margin-bottom: 0px;
}
/* Team */
.team h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.team-style-1 .item {
    border-radius: 6px;
}
.team-style-1 .image {
    position: relative;
}
.team-style-1 .image img {
    height: 350px;
    border-radius: 6px;
    background-color: #fff;
}
.team-style-1 .image .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bs-secondary);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    opacity: 0;
    transition: .5s ease-in-out;
}
.team-style-1 .image .overlay .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease-in-out;
}
.team-style-1 .image .overlay .social-icon a {
    font-size: 16px;
    color: #FFF;
    margin-right: 20px;
}
.team-style-1 .image .overlay .social-icon li:last-of-type a {
    margin-right: 0px;
}
.team-style-1 .image .overlay .social-icon a:hover {
    opacity: .7;
}
.team-style-1 .item:hover .overlay {
    opacity: 1;
}
.team-style-1 .item:hover .overlay .social-icon {
    padding: 12px 0px;
}
.team-style-1 .item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}
.team-style-1 .item .item-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
}
.team-style-1 .item .item-content h6 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 0px;
}
.team-style-1 .item .item-content a:hover {
    color: var(--bs-secondary);
}
.team-style-1 .row>div {
    margin-bottom: 50px;
}
.team-style-1 .row>div:last-of-type {
    margin-bottom: 0px;
}
.team-style-2 .image {
    position: relative;
}
.team-style-2 .image img {
    height: 270px;
}
.team-style-2 .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .8s ease-in-out;
}
.team-style-2 .image .overlay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0;
    transition: .6s ease-in-out;
}
.team-style-2 .image .overlay .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.team-style-2 .image .overlay .social-icon a {
    font-size: 16px;
    color: #FFF;
    margin: 0px;
    transition: margin .7s ease-in-out, opacity .2s ease-in-out;
}
.team-style-2 .image .overlay .social-icon a:hover {
    opacity: .6;
}
.team-style-2 .item:hover .image .overlay {
    opacity: 1;
}
.team-style-2 .item:hover .image .overlay::before {
    opacity: .7;
}
.team-style-2 .item:hover .image .overlay .social-icon a {
    margin: 0px 10px;
}
.team-style-2 .item .item-content {
    margin-top: 20px;
}
.team-style-2 .item .item-content h4 {
    position: relative;
    font-weight: 600;
    padding-left: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.team-style-2 .item .item-content h4::before {
    position: absolute;
    content: "";
    left: 0px;
    border-left: 7px solid var(--bs-primary);
    height: 17px;
    margin-bottom: -3px;
}
.team-style-2 .item .item-content h6 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    padding-left: 30px;
    margin-bottom: 0px;
}
.team-style-3 .row>div {
    margin-bottom: 50px;
}
.team-style-3 .item {
    border: 5px solid #FFF;
}
.team-style-3 .image {
    position: relative;
}
.team-style-3 .image img {
    height: 270px;
}
.team-style-3 .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: .8s ease-in-out;
}
.team-style-3 .image .social-icon {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .7s ease-in-out;
}
.team-style-3 .image .social-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0;
    transition: .7s ease-in-out;
}
.team-style-3 .image .social-icon a {
    position: relative;
    font-size: 16px;
    color: #FFF;
    margin: 0px;
    transition: margin .7s ease-in-out, opacity .2s ease-in-out;
    z-index: 1;
}
.team-style-3 .image .overlay .social-icon a:hover {
    opacity: .6;
}
.team-style-3 .item:hover .image .social-icon::before {
    opacity: .7;
}
.team-style-3 .item:hover .image .overlay .social-icon a {
    margin: 0px 10px;
}
.team-style-3 .item .item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: .7s ease-in-out;
}
.team-style-3 .item .item-content::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0.9;
    transition: .7s ease-in-out;
}
.team-style-3 .item .item-content * {
    position: relative;
    color: #FFF;
}
.team-style-3 .item .item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.team-style-3 .item .item-content h6 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: #FFF;
    margin-bottom: 0px;
}
.team-style-3 .item .item-content a:hover {
    color: var(--bs-primary);
    transition: .5s ease-in-out;
}
.team-style-3 .item:hover .image .social-icon {
    opacity: 1;
}
.team-style-3 .item:hover .item-content::before {
    background-color: var(--bs-secondary);
}
.team .container>.code-block:last-of-type {
    margin-bottom: 0px;
}
/* Lists */
.lists h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.list-style-1 li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}
.list-style-1 li:last-of-type {
    margin-bottom: 0px;
}
.list-style-1 span {
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent linear-gradient(90deg, #FD8A66 0%, #FD4C72 31%, #FD387C 73%, var(--bs-secondary) 100%) 0% 0% no-repeat padding-box;
    margin-top: 3px;
    margin-right: 15px;
}
.list-style-1 span svg {
    width: 20px;
    height: auto;
}
.list-style-1 span svg path {
    fill: #FFF;
}
.list-style-2 li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    display: flex;
    margin-bottom: 15px;
}
.list-style-2 li:last-of-type {
    margin-bottom: 0px;
}
.list-style-2 li svg {
    width: 15px;
    height: auto;
    margin-top: -3px;
    margin-right: 9px;
}
.list-style-2 li svg path {
    fill: var(--bs-secondary);
}
.lists .container>.code-block:last-of-type {
    margin-bottom: 0px;
}
/* Tooltips */
.tooltips h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.tooltip {
    z-index: 1 !important;
    opacity: 1 !important;
}
[id*="tooltips-style-"] p {
    font-size: 16px;
}
[id*="tooltips-style-"] p span {
    color: var(--bs-secondary);
}
[class*="tooltip-"] > .tooltip-inner {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    background: var(--bs-secondary);
    padding: 8px;
    padding-bottom: 11px;
    min-width: 180px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tooltip-1 > .tooltip-inner {
    border-radius: 3px !important;
}
.tooltip-2 > .tooltip-inner {
    border-radius: 50px !important;
}
[class*="tooltip-"] .tooltip-arrow::before {
    border-top-color: var(--bs-secondary);
    border-bottom-color: var(--bs-secondary);
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
    border-color: transparent;
    border-left-color: var(--bs-secondary);
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
    border-color: transparent;
    border-right-color: var(--bs-secondary);
}
.bs-tooltip-start .tooltip-inner,
.bs-tooltip-end .tooltip-inner {
    margin-top: 8px;
}
.tooltips .container .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Accordion */
.accordions h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.accordion-style-1 .item {
    margin-bottom: 0px;
    transition: 0s ease-in-out;
}
.accordion-style-1 .item:last-of-type {
    margin-bottom: 0px;
}
.accordion-style-1 .item p {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 97px;
    padding-right: 40px;
    margin: 0px;
}
.accordion-style-1 button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding: 0px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--bs-primary-font);
    background-color: transparent;
    color: var(--bs-secondary-heading);
    /* padding: 24px 35px; */
    padding: 28px 35px;
    border: none;
}
.accordion-style-1 button svg {
    width: 22px;
    height: auto;
    transition: .5s ease-in-out;
}
.accordion-style-1 .icon {
    position: relative;
    display: flex;
    margin-right: 40px;
}
.accordion-style-1 button .icon .overlay-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    transition: .5s ease-in-out;
}
.accordion-style-1 button[aria-expanded="true"] {
    color: #FFF;
    background-color: var(--bs-secondary-footer);
}
.accordion-style-1 button[aria-expanded="true"] svg {
    height: auto;
    transition: .5s ease-in-out;
}
.accordion-style-1 button[aria-expanded="true"] svg path {
    fill: #FFF;
}
.accordion-style-1 button[aria-expanded="true"] .overlay-icon svg {
    width: 22px;
    height: auto;
}
.accordion-style-1 button[aria-expanded="true"] .icon .overlay-icon {
    opacity: 1;
}
.accordion-style-1 hr {
    /* margin-top: 10px;
    margin-bottom: 10px; */
    margin: 0px;
}
.accordion-style-2 .item {
    padding: 30px 40px;
    margin-bottom: 20px;
    border: 1px solid #00000033;
    transition: 0s ease-in-out;
}
.accordion-style-2 .item:last-of-type {
    margin-bottom: 0px;
}
.accordion-style-2 .item.expanded {
    margin-bottom: 38px;
}
.accordion-style-2 .item p {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    padding-top: 20px;
    margin: 0px;
}
.accordion-style-2 button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    font-family: var(--bs-primary-font);
    background-color: transparent;
    color: var(--bs-secondary-heading);
    /* padding: 24px 35px; */
    border: none;
}
.accordion-style-2 button svg {
    width: 22px;
    height: auto;
    transition: .5s ease-in-out;
}
.accordion-style-2 .icon {
    position: relative;
    display: flex;
    margin-left: 15px;
}
.accordion-style-2 button .icon .overlay-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    transition: .5s ease-in-out;
}
.accordion-style-2 button[aria-expanded="true"] svg {
    height: auto;
    transition: .5s ease-in-out;
}
.accordion-style-2 button[aria-expanded="true"] .overlay-icon svg {
    width: 22px;
    height: auto;
}
.accordion-style-2 button[aria-expanded="true"] .icon .overlay-icon {
    opacity: 1;
}
.accordions .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Alerts */
.alerts h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.alert-dismissible .close {
    position: static;
    padding: 0px;
    padding-left: 15px;
}
/* .alert button {
    font-size: 30px;
    padding: 0px;
    line-height: 0px;
    color:var(--bs-secondary-heading);
    border: none;
    background-color: transparent;
    margin-left: auto;
} */
/* .alert {
    color: var(--bs-secondary-heading) !important;
    font-size: 25px;
    background-color: #FEF7F4;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 25px;
} */
.alert>i {
    font-size: 30px !important;
    color: var(--bs-secondary) !important;
    margin-right: 40px;
}
.alert button i {
    font-size: 26px !important;
    color: var(--bs-secondary-heading) !important;
}
[class*="alert-style-"] .alert .icon {
    margin-right: 35px;
}
[class*="alert-style-"] .alert .icon i {
    font-size: 16px;
    color: #FFF !important;
    background-color: var(--bs-secondary) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alert-style-1 .alert {
    position: relative;
    padding: 40px 45px;
    padding-left: 60px;
    margin-bottom: 28px;
}
.alert-style-1 .alert::before {
    position: absolute;
    content: "";
    left: 15px;
    height: 78%;
    width: 0px;
    border-left: 6px solid var(--bs-secondary);
}
.alert-style-2 .alert {
    padding: 40px 45px;
    border-radius: 0px;
    border-bottom: 4px solid transparent;
    border-bottom: 4px solid var(--bs-secondary);
    margin-bottom: 28px;
}
.alert-style-3 .alert {
    padding: 30px 45px;
    border-radius: 50px;
    border: 1px solid var(--bs-secondary);
    margin-bottom: 30px;
}
/* .alerts .container:last-of-type .code-block {
    margin-bottom: 0px;
} */
/* Tables */
.tables h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
[class*="table-style-"] .table {
    border-radius: 5px;
}
[class*="table-style-"] table tr {
    display: flex;
    /* justify-content: space-around;
    flex-flow: row wrap;
    align-items: stretch; */
}
[class*="table-style-"] table th,
[class*="table-style-"] table td {
    font-size: 18px;
    flex: 1;
    text-align: center;
    border: none;
}
[class*="table-style-"] .table th {
    font-family: var(--bs-primary-font);
    letter-spacing: 0.14px;
    font-weight: 400 !important;
    padding: 20px 15px;
}
[class*="table-style-"] table td {
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    letter-spacing: 0.18px;
    padding: 24px 15px;
}
[class*="table-style-"] .table thead tr:not([class*="table-style-3"] .table thead tr) {
    color: #FFF;
    background-color: #111;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: none;
}
[class*="table-style-"] table tr:not([class*="table-style-3"] table tr) {
    border-top: 2px solid #BFBFBF;
}
[class*="table-style-"] table tbody tr:last-child:not([class*="table-style-3"] table tbody tr:last-child) {
    border-bottom: 2px solid #BFBFBF;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
[class*="table-style-"] table th:not([class*="table-style-3"] table th),
[class*="table-style-"] table td:not([class*="table-style-3"] table td) {
    border-left: 2px solid #BFBFBF;
}
[class*="table-style-"] table th:last-child:not([class*="table-style-3"] table th:last-child),
[class*="table-style-"] table td:last-child:not([class*="table-style-3"] table td:last-child) {
    border-right: 2px solid #BFBFBF;
}
[class*="table-style-3"] table th,
[class*="table-style-3"] table td {
    border-right: 2px solid #BFBFBF;
}
[class*="table-style-3"] table th:last-child,
[class*="table-style-3"] table td:last-child {
    border-right: none;
}
[class*="table-style-"] table td {
    color: var(--bs-secondary-gray-color);
}
[class*="table-style-"] table th:first-of-type:not([class*="table-style-3"] table th:first-of-type) {
    border-left: none;
}
[class*="table-style-"] table th:last-of-type:not([class*="table-style-3"] table th:last-of-type) {
    border-right: none;
}
[class*="table-style-"] .table thead:not([class*="table-style-3"] .table thead) {
    border-radius: 5px !important;
}
[class*="table-style-"] .table tbody:not([class*="table-style-3"] .table tbody) {
    border-radius: 5px !important;
}
[class*="table-style-"] .table tbody tr:last-of-type td:first-of-type:not([class*="table-style-3"] .table tbody tr:last-of-type td:first-of-type) {
    border-bottom-left-radius: 5px;
}
[class*="table-style-"] .table tbody tr:last-of-type td:last-of-type:not([class*="table-style-3"] .table tbody tr:last-of-type td:last-of-type) {
    border-bottom-right-radius: 5px;
}
.table-style-2 table td {
    background-color: var(--bs-secondary-bg-color);
}
.table-style-2 table th,
.table-style-2 table tr,
.table-style-2 table td {
    border: none !important;
}
.table-style-2 table tr {
    border-left: 2px solid #BFBFBF !important;
    border-right: 2px solid #BFBFBF !important;
}
.table-style-2 table tr:last-of-type {
    border-bottom: 2px solid #BFBFBF !important;
}
.table-style-3 .table th {
    color: #FFF;
}
.table-style-3 .table tr,
.table-style-3 .table td {
    overflow: hidden;
}
.table-style-3 .table tr,
.table-style-3 .table td {
    border: none !important;
}
.table-style-3 .table th {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary-footer);
    border: none !important;
}
.table-style-3 .table td {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary-bg-color);
}
.table-style-3 .table th:last-of-type,
.table-style-3 .table td:last-of-type {
    margin-right: 0px;
}
.table-style-3 .table tr:last-of-type td {
    margin-bottom: 0px;
}
.tables>.container:last-child .code-block {
    margin-bottom: 0px;
}
/* Tabs */
.tabs h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
[class*="tabs-style-"] .nav .nav-link {
    color: #111;
}
[class*="tabs-style-"] .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
[class*="tabs-style-"] .nav .nav-link {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-heading);
    padding: 6px 25px !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}
[class*="tabs-style-"] .tab-pane {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
}
.tabs-style-1 ul {
    margin-bottom: 22px;
}
.tabs-style-1 .nav {
    margin-bottom: 15px;
}
.tabs-style-1 ul .nav-link {
    padding: 0px !important;
    margin: 0px 32px;
}
.tabs-style-1 ul .nav-link.active {
    color: var(--bs-secondary);
}
.tabs-style-2 .nav {
    margin-bottom: 35px;
}
.tabs-style-2 ul .nav-link {
    padding: 8px 15px;
    border: none;
    font-family: var(--bs-primary-font);
    background-color: var(--bs-secondary-bg-color);
    margin-left: 10px;
    margin-right: 10px;
}
.tabs-style-2 ul .nav-link::before {
    position: absolute;
    content: "";
    top: 50%;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid transparent;
    transition: .3s ease-in-out; 
}
.tabs-style-2 ul .nav-link.active {
    color: #FFF !important;
    background-color: var(--bs-primary) !important;
}
.tabs-style-2 ul .nav-link.active::before {
    top: 100%;
    border-top: 9px solid var(--bs-primary);
}
.tabs-style-3 ul .nav-link {
    padding: 3px 20px !important;
    border: 2px solid transparent;
    border-radius: 50px;
}
.tabs-style-3 .nav {
    margin-bottom: 25px;
}
.tabs-style-3 ul .nav-link.active {
    color: #FFF !important;
    background-color: var(--bs-secondary);
}
.tabs .container .code-block:last-child {
    margin-bottom: 0px;
}
/* Testimonials */
.testimonials h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.slider-style-1 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.slider-style-1 .item .icon {
    margin-bottom: -50px;
}
.slider-style-1 .item .icon svg {
    width: 102px;
    height: auto;
    opacity: .1;
}
.slider-style-1 .item .icon svg path {
    fill: var(--bs-secondary);
}
.slider-style-1 .item p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-footer);
    margin-bottom: 30px;
}
.slider-style-1 .item .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.slider-style-1 .item .profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.slider-style-1 .item .profile h4 {
    font-weight: 600;
    margin-bottom: 5px;
}
.slider-style-1 .item .profile h6 {
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 0px;
}
.slider-style-2 .owl-item {
    padding-left: 1px;
}
.slider-style-2 .item .icon {
    margin-bottom: 24px;
}
.slider-style-2 .item .icon svg {
    width: 64px;
    height: auto;
}
.slider-style-2 .item .icon svg path {
    fill: var(--bs-secondary);
}
.slider-style-2 .item .image,
.slider-style-2 .item .image img {
    height: 100%;
}
.slider-style-2 .item .item-content {
    position: relative;
    padding: 64px 50px;
    background-color: var(--bs-secondary-bg-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slider-style-2 .item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-secondary-footer);
    margin-bottom: 40px;
}
.slider-style-2 .item .profile h4 {
    font-weight: 600;
    margin-bottom: 5px;
}
.slider-style-2 .item .profile h6 {
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 0px;
}
.slider-style-2 .item .row {
    margin-left: 0px;
    margin-right: 0px;
}
.slider-style-2 .item .row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.slider-style-2 .arrows {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    display: flex;
}
.slider-style-2 .arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-secondary-bg-color);
    border: 1px solid var(--bs-secondary-gray-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.slider-style-2 .arrows button:last-of-type {
    margin-right: 0px;
}
.slider-style-2 .arrows button svg {
    width: auto;
    height: 11px;
}
.slider-style-2 .arrows button svg path {
    fill: var(--bs-secondary-gray-color);
}
.slider-style-3 .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
}
.slider-style-3 .item::before {
    position: absolute;
    content: "";
    top: 35px;
    width: 100%;
    height: 100%;
    background-color: var(--bs-secondary-bg-color);
    z-index: -1;
}
.slider-style-3 .item .profile-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 40px;
}
.slider-style-3 .item .icon {
    margin-bottom: 20px;
}
.slider-style-3 .item .icon svg {
    width: 45px;
    height: auto;
}
.slider-style-3 .item .icon svg path {
    fill: var(--bs-secondary);
}
.slider-style-3 .item p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-footer);
    margin-bottom: 0px;
}
.slider-style-3 .item hr {
    height: 1.5px;
    opacity: .1;
    width: 40%;
    margin-top: 34px;
    margin-bottom: 30px;
}
.slider-style-3 .item h4 {
    font-weight: 600;
    margin-bottom: 5px;
}
.slider-style-3 .item h6 {
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
}
.slider-style-3 .owl-dots-1 {
    margin-top: 65px !important;
}
.testimonials .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Carousels */
.carousels h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.slider-style-1 .style-1-slider .item,
.slider-style-3 .style-3-slider .item,
.image-slider-section .style-3-slider .item, .banner-slider-wrapper .style-3-slider .item{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.slider-style-1 .slider-wrapper,
.slider-style-3 .slider-wrapper,
.image-slider-section, .banner-slider-wrapper{
    position: relative;
}
.slider-style-1 .arrows,
.slider-style-3 .arrows,.image-slider-section .arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.banner-slider-wrapper .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translatey(-50%);
}
.slider-style-1 .arrows button,
.slider-style-3 .arrows button, .image-slider-section .arrows button, .banner-slider-wrapper .arrows button {
    padding: 0px;
    border: none;
    border-radius: 50%;
}
.slider-style-1 .arrows button svg,
.slider-style-3 .arrows button svg, .image-slider-section.arrows button svg, .banner-slider-wrapper .arrows button svg {
    width: 25px;
    background: #fff;
    height: 30px;
}
.slider-style-1 .arrows button svg path,
.slider-style-3 .arrows button svg path, .image-slider-section .arrows button svg path, .banner-slider-wrapper .arrows button svg path{
    transition: .2s ease-in-out;
}
.slider-style-1 .arrows button:hover svg path,
.slider-style-3 .arrows button:hover svg path,
.image-slider-section .arrows button:hover svg path, .banner-slider-wrapper .arrows button:hover svg path {
    fill: var(--bs-secondary);
}
.slider-style-1 .arrows {
    height: 58%;
}
.slider-style-3 .arrows, .image-slider-section .arrows ,.banner-slider-wrapper.arrows {
    height: 90%;
}
.carousels .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Icons */
.icons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -34px;
    margin-right: -34px;
}
.icon-style {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--bs-primary);
}
.icon-style svg {
    width: 28px;
    height: 28px;
    fill: #FFF;
}
.icon-style svg path {
    fill: #FFF;
}
.icon-style img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.icons .icon-style {
    margin-left: 34px;
    margin-right: 34px;
    margin-bottom: 67px;
}
.icons-wrapper .code-block {
    margin-top: 0px;
    margin-bottom: 0px;
}
/* Audio and Video */
.audio-videos h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
[class*= "video-style-"] a {
    cursor: pointer;
}
.video-style-1 .item .image {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.video-style-1 .item img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.video-style-1 .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-style-1 a {
    background-color: transparent;
    animation: play-animation-white 2s linear infinite;
    width: max-content;
    height: max-content;
    border-radius: 4px;
    margin-bottom: 50px;
}
.video-style-1 a svg {
    width: 90px;
    height: 90px;
}
.video-style-1 a svg path {
    fill: #FFF;
}
.video-style-1 .overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.video-style-1 .overlay h3 {
    font-size: 32px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0px;
}
.video-style-1 .image::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: .65;
}
.video-style-2 .item .image {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.video-style-2 .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.video-style-2 .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
}
.video-style-2 a {
    background-color: transparent;
    border-radius: 50%;
    animation: play-animation 2s linear infinite;
    width: max-content;
    height: max-content;
}
.video-style-2 a svg {
    width: 78px;
    height: 78px;
}
.video-style-2 a svg {
    width: 80px;
    height: 80px;
}
.video-style-2 a svg path {
    fill: #FFF;
}
.video-style-2 a svg stop:last-of-type {
    stop-color: var(--bs-secondary);
}
.video-style-3 .item {
    border-radius: 5px;
    box-shadow: 0px 0px 10px #0000001A;
}
.video-style-3 .item .image {
    position: relative;
    border-radius: 5px 5px 0px 0px;
}
.video-style-3 .item .image img {
    height: 265px;
    border-radius: 5px 5px 0px 0px;
}
.video-style-3 .item .image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 5px 5px 0px 0px;
}
.video-style-3 .item .overlay a svg {
    width: 55px;
    height: 55px;
}
.video-style-3 .item .item-content {
    padding: 0px 20px 24px 20px ;
    border-radius: 0px 0px 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
}
.video-style-3 .item .item-content .date-style-1 {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    color: #FFF;
    padding: 6px 24px;
    background-color: var(--bs-primary);
}
.video-style-3 .item .item-content .date-style-1 {
    position: relative;
    margin-top: -17.5px;
    margin-bottom: 15px;
}
.video-style-3 .item .item-content h4 {
    margin-bottom: 5px;
}
.video-style-3 .item .item-content span:last-of-type {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
}
.video-style-3 .item .item-content span:last-of-type svg {
    width: 12px;
    height: 12px;
    margin-right: 6px;
}
.video-style-3 .item .item-content span:last-of-type svg path {
    fill: var(--bs-secondary);
}
.audio-videos .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Blog */
.blog h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.blog-style-1 .item .image {
    position: relative;
    display: block;
}
.blog-style-1 .item .image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.blog-style-1 .item-content {
    padding-left: 30px;
    padding-top: 30px;
}
.blog-style-1 .item-content>span:first-of-type {
    display: block;
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}
.blog-style-1 .item-content hr {
    height: 2px;
    width: 50px;
    margin-top: 28px;
    margin-bottom: 20px;
}
.blog-style-1 .row>div {
    margin-bottom: 50px;
}
.date-style-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 85px;
    min-height: 85px;
    background-color: var(--bs-primary);
    line-height: normal;
}
.date-style-2 span:first-of-type {
    font-size: 32px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: #FFF;
    line-height: 28px;
    margin-bottom: 0px;
}
.date-style-2 span:last-of-type {
    font-size: 20px;
    font-family: var(--bs-secondary-font);
    font-weight: 600;
    color: #FFF;
}
.blog-style-2 .item img {
    height: 265px;
    margin-bottom: 20px;
}
.blog-style-2 .item>span {
    display: block;
    margin-bottom: 10px;
}
.blog-style-2 .row>div {
    margin-bottom: 50px;
}
.blog-style-2 .row>div:last-of-type {
    margin-bottom: 0px;
}
.date-style-3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary);
}
.date-style-3 span {
    margin: 0px 10px;
}
.blog-style-2 .item h4 {
    margin-bottom: 15px;
}
.blog-style-2 .item p {
    margin-bottom: 0px;
}
.blog-style-3 .item {
    box-shadow: 0px 0px 10px #0000001A;
    border-radius: 5px;
}
.blog-style-3 .item .datetime {
    padding: 3px 8px;
    background: #3a555e;
    border-radius: 3px;
}
.blog-style-3 .item img {
    border-radius: 5px 5px 0px 0px;
}
.blog-style-3 .item-content {
    padding: 20px;
    border-radius: 0px 0px 5px 5px;
}
.blog-style-3 .item-content>span {
    margin-bottom: 6px;
}
.blog-style-3 .item-content h4 {
    margin-bottom: 0px;
}
.blog-style-3 .row>div {
    margin-bottom: 30px;
}
.blog-style-3 .row>div:last-of-type {
    margin-bottom: 0px;
}
.blog-style-4 .row {
    margin-left: 0px;
    margin-right: 0px;
}
.blog-style-4 .row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.blog-style-4 .item .image,
.blog-style-4 .item .image img {
    height: 100%;
}
.blog-style-4 .item .image {
    position: relative;
    display: block;
}
.blog-style-4 .item .overlay {
    position: absolute;
    left: 0;
    top: 0;
    padding: 24px 26px;
}
.blog-style-4 .item-content {
    padding: 50px;
    background-color: var(--bs-secondary-bg-color);
}
.blog-style-4 .item-content>span:first-of-type {
    font-size: 16px;
    margin-bottom: 14px;
}
.blog-style-4 .item-content h3 {
    margin-bottom: 20px;
}
.blog-style-4 .item-content hr {
    height: 2px;
    width: 50px;
    margin-top: 28px;
    margin-bottom: 20px;
}
.blog .container:last-of-type .code-block {
    margin-bottom: 0px;
}
/* Forms */
.forms h2 {
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}
.form-style-1 {
    padding: 40px;
    background-color: var(--bs-secondary-bg-color);
}
.form-style-1 input,
.form-style-1 textarea,
.form-style-1 select {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    padding: 0px;
    padding-bottom: 15px;
    border: none;
    border-radius: 0px;
    border-bottom: 1.5px solid #00000040;
    background-color: transparent;
    resize: none;
    margin-bottom: 30px;
}
.form-style-1 input:focus,
.form-style-1 textarea:focus,
.form-style-1 select:focus {
    background-color: transparent;
    box-shadow: none !important;
}
.form-style-1 input::placeholder,
.form-style-1 textarea::placeholder,
.form-style-1 select::placeholder {
    color: var(--bs-secondary-footer);
}
.form-style-1 textarea {
    height: 80px;
}
.form-style-1 .btn-primary {
    margin-top: 45px;
}
.form-style-2 .row {
    margin-bottom: 20px;
}
.form-style-2 input,
.form-style-2 select {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 400;
    padding: 20px 30px;
    border-radius: 0px; 
    border: 1px solid #0000001F;
}
.form-style-2 select {
    color: var(--bs-secondary-gray-color);
}
.form-style-2 .total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16.5px 30px;
    border-radius: 0px; 
    border: 1px solid #0000001F;
}
.form-style-2 .total-price span:first-of-type {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 400;
    color: var(--bs-secondary-gray-color);
}
.form-style-2 .total-price span:last-of-type {
    font-size: 21px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary-heading);
}
.form-style-2 .btn-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
}
.form-style-3 .head {
    padding: 30px 0px;
    background-color: var(--bs-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.form-style-3 .head h3 {
    font-size: 32px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 0px;
}
.form-style-3 form {
    padding: 45px;
    background-color: var(--bs-secondary-bg-color);
}
.form-style-3 form .form-group {
    margin-bottom: 40px;
}
.form-style-3 input {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    padding: 20px 26px;
    border-radius: 4px; 
    border: 1px solid #00000026;
    margin-bottom: 10px;
}
.form-style-3 label {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    color: var(--bs-secondary-footer);
    margin-bottom: 15px;
}
.form-style-3 label sup {
    font-size: 16px;
    top: 0px;
}
.form-style-3 span {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    color: var(--bs-secondary-gray-color);
}
.form-style-3 .btn-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
}
.forms .code-block:last-of-type {
    margin-bottom: 0px;
}
/* Events */
.events h2 {
    font-weight: 800;
    margin-bottom: 35px;
}
.event-style-2 .row>div {
    margin-bottom: 50px;
}
.events .container:last-of-type .code-block {
    margin-bottom: 0px;
}
.event-style-2 .image {
    display: block;
    position: relative;
}
.event-style-2 .image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.event-style-2 .image .overlay {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 28px;
    padding-right: 30px;
}
.event-style-2 .image .overlay span {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    padding: 6px 18px;
    background-color: var(--bs-primary);
    color: #FFF;
}
.event-style-2 .item ul li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    color: var(--bs-secondary-gray-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}
.event-style-2 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.event-style-2 .item ul li .icon {
    display: flex;
    margin-right: 8px;
}
.event-style-2 .item ul li svg {
    width: auto;
    height: 13px;
}
.event-style-2 .item ul li svg path {
    fill: var(--bs-secondary);
}
.event-style-2 .item .item-content {
    padding: 30px;
    background-color: var(--bs-secondary-bg-color);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.event-style-2 .item .item-content>span {
    font-size: 16px;
    margin-bottom: 10px;
}
.event-style-2 .item .item-content h3 {
    margin-bottom: 15px;
}
.event-style-2 .item .item-content .btn-primary {
    margin-top: 30px;
}
.event-style-4 .item .row {
    margin-left: 0px;
    margin-right: 0px;
}
.event-style-4 .item .row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.event-style-4 .image {
    display: block;
    position: relative;
    height: 100%;
}
.event-style-4 .image img {
    height: 100%;
}
.event-style-4 .image .overlay {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 28px;
    padding-right: 30px;
}
.event-style-4 .image .overlay span {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    padding: 6px 18px;
    background-color: var(--bs-primary);
    color: #FFF;
}
.event-style-4 .item ul li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    color: var(--bs-secondary-gray-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}
.event-style-4 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.event-style-4 .item ul li .icon {
    display: flex;
    margin-right: 8px;
}
.event-style-4 .item ul li svg {
    width: auto;
    height: 13px;
}
.event-style-4 .item ul li svg path {
    fill: var(--bs-secondary);
}
.event-style-4 .item .item-content {
    padding: 40px 50px;
    background-color: var(--bs-secondary-bg-color);
    height: 100%;
}
.event-style-4 .item .item-content>span {
    font-size: 16px;
    margin-bottom: 10px;
}
.event-style-4 .item .item-content h3 {
    margin-bottom: 8px;
}
.event-style-4 .item .item-content>p {
    margin-bottom: 20px;
}
.event-style-4 .item .item-content .btn-primary {
    margin-top: 30px;
}
.event-style-4 .item-content-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 26px;
}
.event-style-4 .item-content-head .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.event-style-4 .item-content-head .date span {
    display: block;
    font-size: 20px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    line-height: 20px;
}
.event-style-4 .item-content-head .date span:first-of-type {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 3px;
}
.event-style-4 .item-content-head>span {
    display: block;
    width: 0px;
    height: 64px;
    border-left: 2px solid var(--bs-secondary-heading);
    margin-left: 40px;
    margin-right: 40px;
}
.event-style-4 .item-content-head p {
    margin-bottom: 0px;
}
/* Home Pages */
.center-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
}
.section-divider {
    height: 0px !important;
    border-top: 1.5px solid #000;
    opacity: .1;
    margin-top: 0px;
    margin-bottom: 0px;
}
.home-1-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
.home-1-title>span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-1-title>span span:first-of-type {
    font-size: 50px;
    line-height: 50px;
    font-family: var(--bs-secondary-font);
    font-weight: 700;
    opacity: .05;
}
.home-1-title>span span:last-of-type {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary);
    margin-bottom: -3px;
}
.home-1-title h2 {
    font-weight: 800;
    margin-bottom: 0px;
}
.home-2-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
.home-2-title span {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary);
    font-weight: 600;
    margin-bottom: 12px;
}
.home-2-title h2 {
    font-weight: 800;
    margin-bottom: 20px;
}
.home-2-title svg path {
    stroke: var(--bs-secondary);
}
.home-3-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.home-3-title h2 {
    font-weight: 800;
    margin-bottom: 20px;
}
.home-3-title p {
    margin-bottom: 0px;
    line-height: 24px;
}
.subpage-title {
    margin-bottom: 20px;
}
.subpage-title h3 {
    font-weight: 800;
}
.dialog-off-canvas-main-canvas {
    background-color: transparent !important;
}
/* Home Page 1 */
.pricing-1 .item {
    background-color: #FFF;
}
.portfolio-1 .item {
    transition: .2s ease-in-out;
}
.portfolio-1 .item:hover {
    margin-top: -6px;
}
.portfolio-1 .item a {
    display: block;
}
.portfolio-1 .row>div {
    margin-bottom: 20px;
}
.team-1 .home-1-title>span span:first-of-type {
    color: #FFF;
    opacity: .05;
}
.team-1 .home-1-title h2 {
    color: #FFF;
}
.team-1 .item .item-content h4 a {
    color: #FFF;
}
.team-1 .item .item-content h6 {
    color: #FFF;
    opacity: .6;
}
.team-1 {
    position: relative;
}
.team-1 .section-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.team-1 * {
    position: relative;
    z-index: 1;
}
.features-1 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 67px 40px;
    background-color: #FFF;
    border-radius: 8px;
}
.features-1 .item .icon {
    width: 74px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--bs-secondary-bg-color);
    margin-bottom: 20px;
}
.features-1 .item .icon svg {
    width: 34px;
    height: auto;
}
.features-1 .item h4 {
    margin-bottom: 20px;
}
.features-1 .item p {
    margin-bottom: 0px;
}
.features-1 .row>div:nth-of-type(2) .item {
    background-color: var(--bs-secondary-bg-color);
}
.features-1 .row>div:nth-of-type(2) .item .icon {
    background-color: #FFF;
}
.about-us-1 {
    padding: 100px 0px;
}
.about-us-1 .image {
    position: relative;
}
.about-us-1 .image .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bs-primary);
    padding: 15px;
}
.about-us-1 .image .overlay h4 {
    color: #FFF;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3px;
}
.about-us-1 .home-1-title {
    align-items: flex-start;
    margin-bottom: 30px;
}
.about-us-1 .home-1-title * {
    text-align: left;
}
.about-us-1 .content p {
    margin-bottom: 0px;
}
.about-us-1 .content .btn-primary {
    margin-top: 35px;
}
.clients-1 h2 {
    color: #FFF;
}
.clients-1 .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: -7.5px;
}
.clients-1 .lists .list {
    padding: 7.5px;
}
.clients-1 .lists .client {
    padding: 35px;
    background-color: rgba(255, 255, 255, .1);
    width: 210px;
    height: 150px;
}
.clients-1 .lists .client img {
    height: 100%;
    object-fit: contain;
}
.contact-1 {
    position: relative;
}
.contact-1 h2 {
    font-weight: 800;
    margin-bottom: 30px;
}
.contact-1 h3 {
    font-weight: 600;
    margin-bottom: 12px;
}
.contact-1 iframe {
    display: block;
    width: 100%;
    height: 620px;
}
.contact-1 .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto !important;
    width: 100%;
    height: 100%;
}
.contact-1 .overlay .container {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-1 .overlay .details {
    background-color: #FFF;
    padding: 45px;
    padding-bottom: 40px;
}
.contact-1 .overlay .details .details-list {
    margin-bottom: 30px;
}
.video-counter-1 .image {
    position: relative;
}
.video-counter-1 .image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-counter-1 .image::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: .35;
}
.video-counter-1>.row {
    margin-left: 0px;
    margin-right: 0px;
}
.video-counter-1>.row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.video-counter-1 .counter-style-1 .row {
    margin-left: 0px;
    margin-right: 0px;
}
.video-counter-1 .counter-style-1 .row>div {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 100px;
}
.video-counter-1 .counter-style-1 .row>div:last-of-type {
    margin-bottom: 0px;
}
.video-counter-1 .counter-style-1 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}
.counter-style-1 .item .value {
    margin-bottom: 15px;
    margin-top: -18px;
}
.counter-style-1 .item .value span {
    font-size: 45px;
    font-family: var(--bs-primary-font);
    font-weight: 800;
}
.counter-style-1 .item h4 {
    color: var(--bs-secondary-gray-color);
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    margin-bottom: 20px;
}
.counter-style-1 .item svg {
    display: flex;
}
.counter-style-1 .item svg path {
    stroke: var(--bs-secondary);
}
.home-slider-1 {
    padding-top: 100px;
    position: relative;
}
.home-slider-1::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: .8;
}
.home-slider-1 .item * {
    position: relative;
    color: #FFF;
}
.home-slider-1 .item .content>span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--bs-primary-font);
    margin-bottom: 15px;
}
.home-slider-1 .item .content>span span {
    margin: 0px 10px;
}
.home-slider-1 .item h2 {
    font-size: 52px;
    font-weight: 700;
    color: #FFF;
    line-height: 60px;
    margin-bottom: 20px;
}
.home-slider-1 .item p {
    margin-bottom: 35px;
}
.cta-1 {
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
}
.cta-1 .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cta-1 .item * {
    position: relative;
    color: #FFF;
}
.cta-1 .item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) 0% 0% no-repeat padding-box;
    opacity: 0.75;
}
.cta-1 .date {
    padding: 50px;
    border-right: 2px solid #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 75px;
}
.cta-1 .date>span:nth-of-type(1) {
    display: block;
    font-size: 65px;
    line-height: 55px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    margin-bottom: 0px;
}
.cta-1 .date>span:nth-of-type(2) {
    display: block;
    font-size: 38px;
    font-family: var(--bs-secondary-font);
    font-weight: 600;
    margin-bottom: 5px;
}
.cta-1 .date p {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 0px;
}
.cta-1 .content {
    padding-left: 80px;
}
.cta-1 .content>span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    margin-bottom: 20px;
}
.cta-1 .content h2 {
    font-weight: 800;
    margin-bottom: 40px;
}



/* Home Page 2 */
.features-2 .home-2-title * {
    color: #FFF;
    stroke: #FFF;
}
.features-2 .item {
    background-color: transparent;
}
.features-2 .item * {
    color: #FFF;
    fill: #FFF;
}
.features-2 .item .icon {
    width: unset;
    height: unset;
    background-color: transparent;
}
.features-2 .item .icon svg {
    width: 60px;
    height: auto;
}
.features-2 .row>div:nth-of-type(2) .item {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 8px 8px 18px 8px;
    /* background-image: url('../img/home/home-2/overlay-rose.png'); */
    background-size: 68%;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.features-2 .row>div:nth-of-type(2) .item .icon {
    background-color: transparent;
}
.pricing-2 .item {
    /* background-color: #FFF; */
}
.portfolio-2 {
    padding: 100px 24px;
}
.portfolio-2 .row {
    margin-left: -8px;
    margin-right: -8px;
}
.portfolio-2 .row>div {
    padding-left: 8px;
    padding-right: 8px;
}
.portfolio-2 .item {
    position: relative;
}
.portfolio-2 .item img {
    height: 320px;
}
.portfolio-2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    margin: auto;
    padding: 20px;
    opacity: 0;
    transition: .5s ease-out;
}
.portfolio-2 .item:hover .overlay {
    width: 100%;
    opacity: 1;
    height: 100%;
}
.portfolio-2 .item-content-wrapper {
    background-color: rgba(0, 0, 0, .8);
    padding: 20px;
    height: 100%;
}
.portfolio-2 .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #FFF;
    height: 100%;
}
.portfolio-2 .item-content .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    margin-bottom: 30px;
}
.portfolio-2 .item-content .icon svg {
    width: 28px;
    height: auto;
}
.portfolio-2 .item-content .icon svg path {
    fill: #FFF;
}
.portfolio-2 .item-content h4 {
    color: #FFF;
    font-weight: 500;
    margin-bottom: 0px;
}
.portfolio-2 .row>div {
    margin-bottom: 16px;
}
.cta-2 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.cta-2 .item * {
    position: relative;
    color: #FFF;
}
.cta-2 .item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: .75;
}
.cta-2 .item>span {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    margin-bottom: 25px;
}
.cta-2 .item h2 {
    margin-bottom: 40px;
}
.clients-2 .home-2-title * {
    color: #FFF;
    stroke: #FFF;
}
.clients-2 .row {
    margin-left: 0px;
    margin-right: 0px;
}
.clients-2 .row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.clients-2 .clients {
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-left: 1px solid rgba(255, 255, 255, .3);
}
.clients-2 .client {
    min-height: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.clients-2 .client img {
    height: 100px;
    width: auto;
}
.contact-2 .home-2-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
}
.contact-2 h3 {
    font-weight: 600;
    margin-bottom: 12px;
}
.contact-2 .details .details-list {
    margin-bottom: 30px;
}
.contact-2 .map {
    height: 100%;
}
.contact-2 .map iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.about-us-2 .home-2-title {
    align-items: flex-start;
    text-align: left;
}
.home-banner-2 {
    height: 620px;
}
.home-banner-2::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: .8;
}
.home-banner-2 .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.home-banner-2 .item * {
    position: relative;
    color: #FFF;
}
.home-banner-2 .container,
.home-banner-2 .container .row {
    height: 100% !important;
}
.home-banner-2 .item h1 {
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 28px;
}
.home-banner-2 .item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* flex: 1; */
    margin-top: 80px;
}
.home-banner-2 .item .item-content>span {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    margin-bottom: 15px;
}
.home-banner-2 .item .item-content>svg {
    margin-bottom: 10px;
}
.home-banner-2 .item .item-content>svg path {
    stroke: #FFF;
}
.home-banner-2 .item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0.45;
}
.home-banner-2 .cs-counter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 34px;
}
.home-banner-2 .cs-counter .cs-date {
    position: relative;
    margin: 0px 17px;
}
.home-banner-2 .cs-counter .cs-date img {
    width: 70px;
    height: 70px;
}
.home-banner-2 .cs-counter .cs-date .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home-banner-2 .cs-counter .cs-date .overlay span {
    font-size: 18px;
    line-height: 18px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
}
.home-banner-2 .cs-counter .cs-date .overlay .counting-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32px;
    font-family: var(--bs-primary-font);
}
.home-banner-2 .contact-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #FFF;
    padding: 30px 34px;
    width: 100%;
}
.home-banner-2 .contact-details>* {
    padding-left: 20px;
}
.home-banner-2 .contact-details .detail {
    max-width: 200px;
}
.home-banner-2 .contact-details .detail h5 {
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--bs-secondary);
    margin-bottom: 5px;
    font-size: 14px;
}   
.home-banner-2 .contact-details .detail h5 svg {
    width: 15px;
    height: 15px;
    margin-left: -20px;
    margin-right: 6px;
    flex-shrink: 0;
}
.home-banner-2 .contact-details .detail p {
    font-size: 14px;
    line-height: 21px;
    color: var(--bs-secondary-gray-color);
    margin-bottom: 0px;
}
.home-banner-2 .contact-details .detail a {
    color: var(--bs-secondary-gray-color);
}
.home-banner-2 .contact-details .detail h5 svg path {
    fill: var(--bs-secondary);
}
.event-schedules-2 .nav {
    margin-bottom: 58px;
}
.event-schedules-2 .nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.event-schedules-2 .nav .nav-link.active {
    background-color: var(--bs-secondary) !important;
}
.event-schedules-2 ul .nav-link::before {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid transparent;
    transform: rotate(-135deg);
    align-self: flex-start;
    margin-left: -24px;
}
.event-schedules-2 ul .nav-link.active::before {
    border-top: 14px solid var(--bs-secondary);
    margin-top: -2.5px;
    opacity: .8;
}
.event-schedules-2 .nav .nav-link.active * {
    color: #FFF;
}
.event-schedules-2 .nav .nav-link span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
}
.event-schedules-2 .event-list {
    padding: 35px 44px;
    border-top: 2px dashed rgba(0, 0, 0, .1);
    border-left: 2px dashed rgba(0, 0, 0, .1);
    border-right: 2px dashed rgba(0, 0, 0, .1);
}
.event-schedules-2 .event-list:last-of-type {
    border-bottom: 2px dashed rgba(0, 0, 0, .1);
}
/* .event-schedules-2 .event-list .row {
    margin-left: -44px;
    margin-right: -44px;
} */
.event-schedules-2 .event-list .row>div {
    padding-left: 44px;
    padding-right: 44px;
}
.event-schedules-2 .event-list .row>div:last-of-type {
    border-left: 2px dashed rgba(0, 0, 0, .1);
}
.event-schedules-2 .event-list h3 {
    margin-bottom: 10px;
}
.event-schedules-2 .details ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.event-schedules-2 .details ul li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
}
.event-schedules-2 .details ul li:last-of-type {
    margin-right: 0px;
}
.event-schedules-2 .details ul li .icon {
    display: flex;
    margin-right: 8px;
}
.event-schedules-2 .details ul li svg {
    width: auto;
    height: 13px;
}
.event-schedules-2 .details ul li svg path {
    fill: var(--bs-secondary);
}
.event-schedules-2 .content a:hover {
    color: var(--bs-secondary);
}
.event-schedules-2 .content p {
    margin-bottom: 0px;
}
.event-schedules-2 .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.event-schedules-2 .profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 4px;
}
.event-schedules-2 .profile h5 {
    margin-bottom: 0px;
}
.event-schedules-2 .profile span {
    font-size: 12px;
    font-weight: 400;
    color: var(--bs-secondary-gray-color);
}


/* Home Page 3 */
.pricing-3 .item {
    background-color: #FFF;
}
.pricing-3 .item>hr:last-of-type::before {
    background-color: var(--bs-secondary-bg-color);
}
.pricing-3 .item>hr:last-of-type::after {
    background-color: var(--bs-secondary-bg-color);
}
.counters-3::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0.85;
}
.counters-3 .item {
    position: relative;
}
.counters-3 .item * {
    color: #FFF;
    stroke: #FFF !important;
}
.counters-3 .item h4 {
    color: #FFF;
    opacity: 0.68;
}
.clients-3 .lists {
    margin: 0px;
}
.clients-3 .lists .list {
    padding: 0px;
    background-color: rgba(transparent) !important;
}
.clients-3 .lists .client {
    background-color: transparent;
}
/* .about-us-3 .about-top {
    margin-bottom: 100px;
} */
.about-us-3 .about-top .content h2 {
    margin-bottom: 20px;
    font-size: 28px;
}
.about-us-3 .about-top .content .blockquotes-style-2 {
    margin-top: 30px;
    width: 100%;
}
.about-us-3 .about-bottom .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
.about-us-3 .about-bottom .content h2 {
    margin-bottom: 18px;
}
.about-us-3 .about-bottom .content p {
    line-height: 24px;
    margin-bottom: 32px;
}
.about-us-3 .about-bottom .content .about-btns {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us-3 .about-bottom .content .about-btns .btn-primary {
    margin: 0px 10px;
}
.contact-3 h3 {
    margin-bottom: 30px;
}
.contact-3 .contact-details {
    padding-right: 30px;
}
.contact-3 .contact-details li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--bs-secondary-font);
    margin-bottom: 15px;
}
.contact-3 .contact-details li a {
    color: var(--bs-secondary-gray-color);
}
.contact-3 .contact-details li:last-of-type {
    margin-bottom: 0px;
}
.contact-3 .contact-details li a:hover {
    color: var(--bs-secondary);
}
.contact-3 .contact-details .icon {
    display: block;
    margin-right: 15px;
}
.contact-3 .contact-details .icon svg {
    width: 17px;
    height: auto;
}
.contact-3 .contact-details .icon svg path {
    fill: var(--bs-secondary);
}
.contact-3 .content iframe {
    display: block;
    width: 100%;
    height: 218px;
    margin-bottom: 30px;
}
.contact-3 .content h3 {
    margin-bottom: 20px;
}
.team-3 .content h2 {
    color: #FFF;
    margin-bottom: 20px;
}
.team-3 .content p {
    color: rgba(255, 255, 255, .8);
    line-height: 24px;
    margin-bottom: 34px;
}

.video-style-3 .row>div {
    margin-bottom: 50px;
}
.video-style-3 .row>div:last-of-type {
    margin-bottom: 0px;
}
.contact-3 form {
    width: 100%;
}
.portfolio-3 .item-content {
    position: relative;
    margin-bottom: 15px;
}
.portfolio-3 .item-content img {
    width: 100%;
    height: 100%;
}
.portfolio-3 .item-content .overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto !important;
    width: 0%;
    height: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .0);
    z-index: 1;
    opacity: 0;
    border-radius: 0px;
    transition: .6s ease-in-out;
}
.portfolio-3 .item-content:hover .overlay {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, .6);
    opacity: 1;
}
.portfolio-3 .item-content .overlay svg {
    width: 0;
    height: auto;
    transition: .6s ease-in-out;
}
.portfolio-3 .item-content:hover .overlay svg {
    width: 50px;
    height: auto;
}
.portfolio-3 .item-content .overlay svg path {
    fill: #FFF;
}
.home-banner-3 {
    padding-top: 100px;
    position: relative;
    background-position: center 20%;
}
.home-banner-3 .item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-primary);
    opacity: 0.45;
}
.home-banner-3 .item * {
    position: relative;
    color: #FFF;
}
.home-banner-3 .item .head {
    padding-left: 40px;
    border-left: 6px solid #FFF;
    margin-bottom: 30px;
}
.home-banner-3 .item .head span {
    display: block;
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    margin-bottom: 30px;
}
.home-banner-3 .item h1 {
    font-size: 52px;
    line-height: 60px;
}
.home-banner-3 .item p {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    margin-bottom: 30px;
}
.home-banner-3 .item .item-content {
    padding-left: 47px;
}
.home-banner-3 .cs-counter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}
.home-banner-3 .cs-counter .cs-date {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}
.home-banner-3 .cs-counter .cs-date img {
    width: 90px;
    height: 90px;
}
.home-banner-3 .cs-counter .cs-date .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home-banner-3 .cs-counter .cs-date .overlay span {
    font-size: 20px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 2px;
}
.home-banner-3 .cs-counter .cs-date .overlay .counting-title {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--bs-primary-font);
}
.event-style-3 .row {
    padding: 0px 30px;
}
.event-style-3 .part-1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.event-style-3 .part-1 .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.event-style-3 .part-1 .date span {
    display: block;
    font-size: 20px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    line-height: 20px;
}
.event-style-3 .part-1 .date span:first-of-type {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 3px;
}
.event-style-3 .part-1>span {
    display: block;
    width: 0px;
    height: 100% !important;
    border-left: 2px solid var(--bs-secondary-heading);
    margin-left: 40px;
    margin-right: 40px;
}
.event-style-3 .part-1 p {
    margin-bottom: 0px;
}
.event-style-3 .part-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.event-style-3 .part-2 ul li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}
.event-style-3 .part-2 ul li:last-of-type {
    margin-bottom: 0px;
}
.event-style-3 .part-2 ul li .icon {
    display: flex;
    margin-right: 8px;
}
.event-style-3 .part-2 ul li svg {
    width: 13px;
    height: 13px;
}
.event-style-3 .part-2 ul li svg path {
    fill: var(--bs-secondary);
}
.upcoming-event-3 .home-3-title * {
    color: #FFF;
}
.upcoming-event-3 .event-list {
    padding: 35px 0px;
    border-top: 1px solid rgba(255, 255, 255, .5);
}
.upcoming-event-3 .event-list:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.upcoming-event-3 .event-list * {
    color: #FFF;
    fill: #FFF;
}
.upcoming-event-3 .part-2 ul li {
    color: #FFFFFFCC;
}
.upcoming-event-3 .part-2 ul li svg path {
    fill: #FFF;
}
.upcoming-event-3 .part-1>span {
    border-left-color: #FFF;
}
.upcoming-event-3 .part-1 p {
    color: #FFFFFFCC;
}
.upcoming-event-3 .part-2 .btn-primary {
    border-color: #FFF;
}
.upcoming-event-3 .part-2 .btn-primary:hover {
    color: var(--bs-primary) !important;
    background-color: #FFF;
}
.upcoming-event-3 .part-2 .btn-primary:hover * {
    color: var(--bs-primary) !important;
    fill: var(--bs-primary) !important;
}

/* Subpages */
.sidebar-page .container>.row>div:last-of-type {
    margin-top: 80px;
}
.pagination-btns .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
.pagination-btns .pagination .page-item * {
    transition: .3s ease-in-out;
}
.pagination-btns .pagination .page-link {
    font-size: 18px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary-footer);
    width: 58px;
    height: 58px;
    border: 2px solid var(--bs-secondary-footer);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 9px;
}
.pagination-btns .pagination .page-link.active {
    font-weight: 500;
    color: var(--bs-secondary);
    border: 2px solid var(--bs-secondary);
}
.pagination-btns .pagination .page-link:focus {
    box-shadow: none;
}
.pagination-btns .pagination .page-link svg {
    width: 18px;
    height: auto;
}
.pagination-btns .pagination .page-link svg path {
    fill: var(--bs-secondary-footer);
}
.pagination-btns .pagination .page-link:hover {
    /* background: transparent linear-gradient(90deg, #FD8A66 0%, #FD4C72 31%, #FD387C 73%, #FD2384 100%) 0% 0% no-repeat padding-box; */
}
.pagination-btns .pagination .page-link:hover,
.pagination-btns .pagination .page-link:hover svg path {
    color: #FFF;
    fill: #FFF;
    border: transparent;
}
/* Events Subpages */
.events-3-grid.event-style-2 .image img {
    height: 255px;
}
.events-3-grid.event-style-2 .item-content {
    padding: 25px;
}
.events-3-grid.event-style-2 .item-content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}
.events-3-grid.event-style-2 .item ul li {
    font-size: 14px;
}
.events-3-grid.event-style-2 .item .item-content>span {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
}
.events-3-grid.event-style-2 .item ul li {
    margin-bottom: 5px;
}
.events-3-grid.event-style-2 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.events-3-grid.event-style-2 .item .item-content .btn-primary {
    margin-top: 20px;
}
.events-3-grid.event-style-2 .image img {
    border-radius: 5px 5px 0px 0px;
}
.events-3-grid.event-style-2 .item .item-content {
    border-radius: 0px 0px 5px 5px;
}
.events-4-grid.event-style-2 .item .image {
    position: relative;
}
.events-4-grid.event-style-2 .item .image img {
    height: 195px;
}
.events-4-grid.event-style-2 .image img {
    border-radius: 4px 4px 0px 0px;
}
.events-4-grid.event-style-2 .item .item-content {
    border-radius: 0px 0px 4px 4px;
}
.events-4-grid.event-style-2 .item-content {
    padding: 25px 23px;
}
.events-4-grid.event-style-2 .item-content h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
.events-4-grid.event-style-2 .item ul li {
    font-size: 14px;
}
.events-4-grid.event-style-2 .item .item-content>span {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}
.events-4-grid.event-style-2 .item ul li {
    margin-bottom: 5px;
}
.events-4-grid.event-style-2 .item ul li:last-of-type {
    margin-bottom: 0px;
}
.events-4-grid.event-style-2 .image .overlay {
    padding: 15px;
}
.events-4-grid.event-style-2 .image .overlay span {
    padding: 4px 10px;
}
.events-4-grid.event-style-2 .image .btn-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 4px 4px 0px 0px;
    opacity: 0;
    transition: .5s ease-in-out;
}
.events-4-grid.event-style-2 .item:hover .image .btn-overlay {
    background-color: rgba(0, 0, 0, .5);
    opacity: 1;
}
.events-4-grid.event-style-2 .row>div {
    margin-bottom: 28px;
}
.events-list-style-1 .event-list {
    padding: 35px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}
.events-list-style-1 .event-list:first-of-type {
    padding-top: 0px;
}
.events-list-style-2 .item {
    margin-bottom: 42px;
}
.events-list-style-2 .item:last-of-type {
    margin-bottom: 0px;
}
.event-schedules .nav {
    margin-bottom: 58px;
}
.event-schedules .nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.event-schedules .nav .nav-link.active * {
    color: #FFF;
}
.event-schedules .nav .nav-link h3 {
    font-weight: 600;
}
.event-schedules .nav .nav-link span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
}
.event-schedules .event-list {
    padding: 45px 0px;
    border-top: 1.5px solid rgba(0, 0, 0, .1);
}
.event-schedules .event-list:last-of-type {
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
}
.event-schedules .details ul li {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.event-schedules .details ul li:last-of-type {
    margin-bottom: 0px;
}
.event-schedules .details ul li .icon {
    display: flex;
    margin-right: 8px;
}
.event-schedules .details ul li svg {
    width: auto;
    height: 13px;
}
.event-schedules .details ul li svg path {
    fill: var(--bs-secondary);
}
.event-schedules .content a:hover {
    color: var(--bs-secondary);
}
.event-schedules .content h3 {
    margin-bottom: 15px;
}
.event-schedules .content p {
    margin-bottom: 0px;
}
.event-schedules .profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: -7.5px;
}
.event-schedules .profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 7.5px;
}
.event-subpage .full-width .banner img {
    margin-bottom: 60px;
}
.event-subpage .full-width .event-description-schedule>.nav {
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
    margin-bottom: 50px;
}
.event-subpage .full-width .event-description-schedule .event-schedules {
    margin-top: 58px;
}
.event-subpage .full-width .event-description-schedule>.nav .nav-link {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    color: var(--bs-secondary-heading);
    font-family: var(--bs-primary-font);
    padding: 0px;
    padding-bottom: 25px;
    margin-right: 100px;
    margin-bottom: -3px;
    cursor: pointer;
}
.event-subpage .full-width .event-description-schedule>.nav .nav-link.active {
    color: var(--bs-secondary);
    border-bottom: 5px solid var(--bs-secondary);
}
.event-subpage .full-width .event-description-schedule .content-item {
    margin-bottom: 44px;
}
.event-subpage .full-width .event-description-schedule .content-item h3 {
    margin-bottom: 18px;
}
.event-subpage .full-width .event-description-schedule .content-item:last-of-type {
    margin-bottom: 0px;
}
.event-subpage .full-width .event-description-schedule .content-item .details li {
    font-size: 18px;
    font-family: var(--bs-secondary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
    margin-bottom: 6px;
}
.event-subpage .full-width .event-description-schedule .content-item .details li:last-of-type {
    margin-bottom: 0px;
}
.event-subpage .full-width .event-description-schedule .content-item .details li span {
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary-heading);
}
.event-subpage .full-width .event-description-schedule .content-item .btn-primary {
    margin-top: 30px;
}
.event-subpage .sidebar>div {
    margin-bottom: 50px;
}
/* .event-subpage .sidebar>div:last-of-type {
    margin-bottom: 0px;
} */
.event-subpage .sidebar .event-details {
    padding: 45px;
    background-color: var(--bs-secondary-bg-color);
}
.event-subpage .sidebar .event-details .details-list {
    margin-bottom: 20px;
}
.event-subpage .sidebar .event-details .details-list:last-of-type {
    margin-bottom: 0px;
}
.event-subpage .sidebar .event-details .details-list h4 {
    font-weight: 600;
}
.event-subpage .sidebar .event-details .details-list span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    display: flex;
    align-items: center;
}
.event-subpage .sidebar .event-details .details-list span svg {
    /* width: 13px; */
    /* height: auto; */
    margin-right: 8px;
}
.event-subpage .sidebar .event-details .details-list span svg path {
    fill: var(--bs-secondary);
}
.event-subpage .sidebar .event-details .btn-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.event-subpage .sidebar .map iframe {
    display: block;
    width: 100%;
    height: 360px;
}
.event-subpage.sidebar-page .event-schedules .profile {
    margin-top: 15px;
    justify-content: flex-start;
}
.event-subpage.sidebar-page .event-schedules .event-list {
    padding: 40px 0px;
}
.event-schedules .nav {
    margin-bottom: 50px;
}
.team-list-style-1 .item .item-content {
    padding: 61px 50px;
    background-color: var(--bs-secondary-bg-color);
}
.team-list-style-1 .item .image {
    display: block;
}
.team-list-style-1 .item .item-content h3 {
    position: relative;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.team-list-style-1 .item .item-content h3::before {
    position: absolute;
    content: "";
    left: 0px;
    border-left: 7px solid var(--bs-primary);
    height: 20px;
    margin-bottom: -3px;
}
.team-list-style-1 .item .item-content h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 30px;
}
.team-list-style-1 .item .item-content p {
    margin-bottom: 40px;
}
.team-list-style-1 .item .item-content>* {
    padding-left: 22px;
}
.team-list-style-1 .item .item-content .social-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.team-list-style-1 .item .item-content .social-icon li {
    margin-right: 20px;
}
.team-list-style-1 .item .item-content .social-icon li:last-of-type {
    margin-right: 0px;
}
.team-list-style-1 .item .item-content .social-icon a {
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bs-secondary-footer);
    border-radius: 50%;
}
.team-list-style-1 .item {
    margin-bottom: 46px;
}
.team-list-style-1 .item:last-of-type {
    margin-bottom: 0px;
}
.team-list-style-1 .center-btn {
    margin-top: 80px;
}
.team-list-style-2 .item .item-content h4 {
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.team-list-style-2 .item .item-content h4::before {
    position: absolute;
    content: "";
    left: 0px;
    border-left: 7px solid var(--bs-primary);
    height: 16px;
    margin-top: 2px;
}
.team-list-style-2 .item .item-content h6 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 15px;
}
.team-list-style-2 .item .item-content p {
    margin-bottom: 0px;
}
.team-list-style-2 .item .item-content>* {
    padding-left: 22px;
}
.team-list-style-2 .container>.row>div {
    margin-bottom: 48px;
}
.team-list-style-2 .item .image {
    display: block;
}
.team-list-style-2 .item .image img {
    width: 165px;
    height: 145px;
}
.team-subpage .full-width .profile {
    margin-bottom: 60px;
}
.team-subpage .full-width .profile .image {
    display: block;
}
.team-subpage .full-width .profile .profile-content .content-head h2 {
    position: relative;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.team-subpage .full-width .profile .profile-content .content-head h2::before {
    position: absolute;
    content: "";
    left: 0px;
    border-left: 7px solid var(--bs-primary);
    height: 25px;
    margin-bottom: -3px;
}
.team-subpage .full-width .profile .profile-content .content-head h4 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 0px;
}
.team-subpage .full-width .profile .profile-content  .content-body {
    padding: 40px 45px;
    background-color: var(--bs-secondary-bg-color);
    margin-bottom: 40px;
}
.team-subpage .full-width .profile .profile-content p {
    margin-bottom: 40px;
}
.team-subpage .full-width .profile .profile-content .content-head {
    padding: 40px 45px;
}
.team-subpage .full-width .profile .profile-content .content-head>* {
    padding-left: 22px;
}
.team-subpage .full-width .profile .profile-content .social-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.team-subpage .full-width .profile .profile-content .social-icon li {
    margin-right: 20px;
}
.team-subpage .full-width .profile .profile-content .social-icon li:last-of-type {
    margin-right: 0px;
}
.team-subpage .full-width .profile .profile-content .social-icon a {
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bs-secondary-footer);
    border-radius: 50%;
}
.team-subpage .full-width .event-lists h2 {
    margin-bottom: 40px;
}
.team-subpage .full-width .event-list {
    padding: 35px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}
.team-subpage .full-width .event-list:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, .3);
}
.team-subpage.sidebar-page .full-width .profile .image {
    margin-bottom: 50px;
}
.team-subpage.sidebar-page .full-width .profile .profile-content h2 {
    position: relative;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.team-subpage.sidebar-page .full-width .profile .profile-content h2::before {
    position: absolute;
    content: "";
    left: 0px;
    border-left: 7px solid var(--bs-primary);
    height: 25px;
}
.team-subpage.sidebar-page .full-width .profile .profile-content h4 {
    font-weight: 500;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    margin-bottom: 24px;
}
.team-subpage.sidebar-page .full-width .profile .profile-content>* {
    padding-left: 26px;
}
.team-subpage.sidebar-page .full-width .profile {
    margin-bottom: 0px;
}
.team-subpage.sidebar-page .sidebar .session-list img {
    width: 80px;
    height: 88px;
    margin-right: 14px;
}
.team-subpage.sidebar-page .sidebar .session-list {
    display: flex;
    padding: 25px 0px;
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
}
.team-subpage.sidebar-page .sidebar .session-list:first-of-type {
    padding-top: 0px;
}
.team-subpage.sidebar-page .sidebar .session-list .content h5 {
    margin-bottom: 5px;
}
.team-subpage.sidebar-page .sidebar .session-list .content span {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    line-height: 20px;
    color: var(--bs-secondary-gray-color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3px;
}
.team-subpage.sidebar-page .sidebar .session-list .content span:last-of-type {
    margin-bottom: 0px;
}
.team-subpage.sidebar-page .sidebar .session-list .content span svg {
    width: 11px;
    height: 11px;
    margin-top: 5px;
    margin-right: 5px;
}
.team-subpage.sidebar-page .sidebar .session-list .content span svg path {
    fill: var(--bs-secondary);
}
.book-ticket-form form .row {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 20px;
}
.book-ticket-form form .row>div {
    padding-left: 10px;
    padding-right: 10px;
}
.book-ticket-form form .row:last-of-type {
    margin-bottom: 0px;
}
.book-ticket-form form input {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    padding: 19px 28px;
    border: 1px solid #0000001F;
    border-radius: 0px;
}
.book-ticket-form form .btn-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 65px;
}
.blog-3-grid.blog-style-1 .item img {
    height: 265px;
}
.blog-3-grid.blog-style-1 .date-style-2 {
    min-width: 66px;
    min-height: 66px;
}
.blog-3-grid.blog-style-1 .date-style-2 span:first-of-type {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 1px;
}
.blog-3-grid.blog-style-1 .date-style-2 span:last-of-type {
    font-size: 16px;
}
.blog-3-grid.blog-style-1 .item-content {
    padding-top: 18px;
    padding-left: 25px;
}
.blog-3-grid.blog-style-1 .item-content>span:first-of-type {
    font-size: 14px;
}
.blog-3-grid.blog-style-1 .item-content hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-4-grid.blog-style-1 .item img {
    height: 220px;
}
.blog-4-grid.blog-style-1 .date-style-2 {
    min-width: 50px;
    min-height: 50px;
}
.blog-4-grid.blog-style-1 .date-style-2 span:first-of-type {
    font-size: 20px;
    line-height: 20px;
}
.blog-4-grid.blog-style-1 .date-style-2 span:last-of-type {
    font-size: 14px;
}
.blog-4-grid.blog-style-1 .item-content {
    padding-top: 18px;
    padding-left: 20px;
}
.blog-4-grid.blog-style-1 .item-content>span:first-of-type {
    font-size: 14px;
    margin-bottom: 5px;
}
.blog-4-grid.blog-style-1 .item-content hr {
    margin-top: 17px;
    margin-bottom: 16px;
}
.blog-subpage.blog-3-grid.blog-style-1 .item img {
    height: 280px;
}
.blog-subpage.blog-3-grid.blog-style-1 .row>div {
    margin-bottom: 50px;
}
.blog-subpage.blog-3-grid.blog-style-1 .row>div:last-of-type {
    margin-bottom: 0px;
}
.blog-subpage .sidebar>div {
    margin-bottom: 50px;
}
.blog-subpage .sidebar>div:last-of-type {
    margin-bottom: 0px;
}
.blog-subpage .sidebar .categories {
    padding: 35px;
    background-color: var(--bs-secondary-bg-color);
}
.blog-subpage .sidebar .categories ul a {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
}
.blog-subpage .sidebar .categories ul a:hover {
    color: var(--bs-secondary);
}
.blog-subpage .sidebar .categories ul li {
    margin-bottom: 15px;
}
.blog-subpage .sidebar .categories ul li:last-of-type {
    margin-bottom: 0px;
}
.blog-subpage .sidebar .blog-list img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 22px;
}
.blog-subpage .sidebar .blog-list {
    display: flex;
    padding: 22px 0px;
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
}
.blog-subpage .sidebar .blog-list:first-of-type {
    padding-top: 0px;
}
.blog-subpage .sidebar .blog-list .content h6 {
    font-weight: 700;
}
.blog-subpage .sidebar .blog-list .content span {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    line-height: 20px;
    color: var(--bs-secondary-gray-color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3px;
}
.blog-subpage .sidebar .blog-list .content span:last-of-type {
    margin-bottom: 0px;
}
.blog-subpage .sidebar .blog-list .content span svg {
    width: 11px;
    height: 11px;
    margin-top: 5px;
    margin-right: 5px;
}
.blog-subpage .sidebar .blog-list .content span svg path {
    fill: var(--bs-secondary);
}
.blog-subpage .sidebar .blog-list .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-subpage .sidebar .tags ul {
    display: flex;
    flex-wrap: wrap;
}
.blog-subpage .sidebar .tags ul a {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
    text-decoration: underline;
}
.blog-subpage .sidebar .tags ul a:hover {
    color: var(--bs-secondary);
}
.blog-subpage .sidebar .tags ul li {
    margin-right: 20px;
    min-width: max-content;
    margin-bottom: 15px;
}
.blog-list-full-width .item {
    margin-bottom: 46px;
}
.blog-list-full-width .item:last-of-type {
    margin-bottom: 0px;
}
.blog-list-sidebar .full-width .item-content {
    padding: 35px;
}
.blog-list-sidebar .full-width .item {
    margin-bottom: 36px;
}
.blog-list-sidebar .full-width .item:last-of-type {
    margin-bottom: 0px;
}
.blog-list-sidebar .full-width .item-content>span:first-of-type {
    font-size: 14px;
    margin-bottom: 10px;
}
.blog-list-sidebar .full-width .item-content h4 {
    margin-bottom: 15px;
}
.blog-list-sidebar .full-width .item-content hr {
    margin-top: 18px;
    margin-bottom: 17px;
}
.blog-list-sidebar .full-width .item .date-style-2 {
    min-width: 66px;
    min-height: 66px;
}
.blog-list-sidebar .full-width .item .date-style-2 span:first-of-type {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 1px;
}
.blog-list-sidebar .full-width .item .date-style-2 span:last-of-type {
    font-size: 16px;
}
.blog-list-sidebar .full-width .item .overlay {
    padding: 18px;
}
.blog-list-sidebar .full-width .item .image,
.blog-list-sidebar .full-width .item .image img {
    height: 100%
}
.blog-details-full-width .full-width .image {
    position: relative;
    margin-bottom: 50px;
}
.blog-details-full-width .full-width .image img {
    height: 530px;
}
.blog-details-full-width .full-width .image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.blog-details-full-width .full-width .content {
    margin-bottom: 40px;
}
.blog-details-full-width .full-width .content>span:first-of-type {
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-details-full-width .full-width .content .blockquotes-style-1 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.blog-details-full-width .full-width .tags-social {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-bottom: 38px;
}
.blog-details-full-width .full-width .tags {
    display: flex;
    align-items: center;
}
.blog-details-full-width .full-width .tags h4 {
    font-weight: 800;
    margin-bottom: 0px;
    margin-right: 20px;
}
.blog-details-full-width .full-width .tags ul {
    display: flex;
    flex-wrap: wrap;
}
.blog-details-full-width .full-width .tags ul a {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
    text-decoration: underline;
}
.blog-details-full-width .full-width .tags ul a:hover {
    color: var(--bs-secondary);
}
.blog-details-full-width .full-width .tags ul li {
    margin-right: 20px;
    min-width: max-content;
    margin-bottom: 0px;
}
.blog-details-full-width .full-width .social-icon-wrapper {
    display: flex;
    align-items: center;
}
.blog-details-full-width .full-width .social-icon-wrapper h4 {
    font-weight: 800;
    margin-bottom: 0px;
    margin-right: 20px;
}
.blog-details-full-width .full-width .social-icon-wrapper ul {
    display: flex;
    flex-wrap: wrap;
}
.blog-details-full-width .full-width .social-icon-wrapper ul a {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    font-weight: 500;
    color: var(--bs-secondary-gray-color);
}
.blog-details-full-width .full-width .social-icon-wrapper ul a:hover {
    color: var(--bs-secondary);
}
.blog-details-full-width .full-width .social-icon-wrapper ul li {
    margin-right: 20px;
    min-width: max-content;
    margin-bottom: 0px;
}
.blog-details-full-width .full-width .next-prev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 0px;
    border-top: 1.5px solid rgba(0, 0, 0, .1);
    border-bottom: 1.5px solid rgba(0, 0, 0, .1);
    margin-bottom: 60px;
}
.blog-details-full-width .full-width .next-prev .next-btn,
.blog-details-full-width .full-width .next-prev .prev-btn {
    font-size: 20px;
    font-family: var(--bs-secondary-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: .3s ease-in-out;
}
.blog-details-full-width .full-width .next-prev .next-btn svg,
.blog-details-full-width .full-width .next-prev .prev-btn svg {
    width: 20px;
    height: auto;
}
.blog-details-full-width .full-width .next-prev .next-btn svg {
    margin-left: 15px;
}
.blog-details-full-width .full-width .next-prev .prev-btn svg {
    margin-right: 15px;
}
.blog-details-full-width .full-width .next-prev .next-btn *,
.blog-details-full-width .full-width .next-prev .prev-btn * {
    transition: .3s ease-in-out;
}
.blog-details-full-width .full-width .next-prev .next-btn:hover svg {
    margin-left: 10px;
}
.blog-details-full-width .full-width .next-prev .prev-btn:hover svg {
    margin-right: 10px;
}
.blog-details-full-width .full-width .next-prev .next-btn:hover,
.blog-details-full-width .full-width .next-prev .prev-btn:hover,
.blog-details-full-width .full-width .next-prev .next-btn:hover svg path,
.blog-details-full-width .full-width .next-prev .prev-btn:hover svg path {
    color: var(--bs-secondary);
    fill: var(--bs-secondary);
}
.blog-details-full-width .full-width .comments h2 {
    margin-bottom: 30px;
}
.blog-details-full-width .full-width .comment {
    border: 1.5px solid rgba(0, 0, 0, .1);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
/* .blog-details-full-width .full-width .comment:last-of-type {
    margin-bottom: 0px;
} */
.blog-details-full-width .full-width .comment img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-right: 22px;
}
.blog-details-full-width .full-width .comment p {
    margin-bottom: 0px;
}
.blog-details-full-width .full-width .comment .head {
    display: flex;
    justify-content: space-between;
}
.blog-details-full-width .full-width .comment .head h5 {
    margin-bottom: 0px;
}
.blog-details-full-width .full-width .comment .head span {
    display: block;
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    color: var(--bs-secondary);
    margin-bottom: 6px;
}
.blog-details-full-width .full-width .comment .head a {
    font-size: 14px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    color: var(--bs-secondary);
}
.blog-details-full-width .full-width .comments>p {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    color: var(--bs-secondary-heading);
    text-align: center;
    margin-top: 58px;
    margin-bottom: 0px;
}
.blog-details-full-width .full-width .comments p a {
    font-family: var(--bs-primary-font);
    color: var(--bs-secondary);
}
.blog-details-full-width .full-width .comments p a:hover {
    opacity: 0.6;
}
.blog-details-sidebar.blog-details-full-width .blockquotes-style-1 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.blog-details-full-width.sidebar-page .full-width .image {
    margin-bottom: 35px;
}
/* .blog-details-full-width.sidebar-page .full-width .content {
    margin-bottom: 34px;
} */
.blog-details-full-width.sidebar-page .full-width .tags-social {
    margin-bottom: 35px;
}
.blog-details-full-width.sidebar-page .full-width .comments>p {
    margin-top: 40px;
}
/* Pages */
.gallery-grid .tabs-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.gallery-grid .tabs-menu ul li {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-heading);
    cursor: pointer;
    margin: 5px 30px;
}
.gallery-grid .tabs-menu ul li.active {
    color: var(--bs-secondary);
}
.gallery-grid .grid-item {
    position: relative;
}
.gallery-grid .grid-item img {
    height: 320px;
}
.gallery-grid .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    margin: auto;
    padding: 22px;
    opacity: 0;
    transition: .5s ease-in-out;
}
.gallery-grid .grid-item:hover .overlay {
    width: 100%;
    opacity: 1;
    height: 100%;
}
.gallery-grid .item-content-wrapper {
    background-color: rgba(0, 0, 0, .8);
    padding: 18px;
    height: 100%;
}
.gallery-grid .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #FFF;
    height: 100%;
}
.gallery-grid .item-content .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    margin-bottom: 25px;
}
.gallery-grid .item-content .icon svg {
    width: 28px;
    height: auto;
}
.gallery-grid .item-content .icon svg path {
    fill: #FFF;
}
.gallery-grid .item-content h4 {
    color: #FFF;
    font-weight: 500;
    margin-bottom: 0px;
}
.gallery-grid .item-content h4 a {
    color: #FFF;
}
.gallery-grid .item-content h4 a:hover {
    color: var(--bs-secondary);
}
.gallery-grid .row>div {
    margin-bottom: 16px;
}
.gallery-4-grid .overlay {
    padding: 16px;
}
.gallery-4-grid .item-content-wrapper {
    padding: 13px;
}
.gallery-4-grid .item-content h4 {
    font-size: 16px;
}
.gallery-4-grid .item-content .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
}
.gallery-4-grid .item-content .icon svg {
    width: 19px;
    height: auto;
}
.masonry-style-2 .item img {
    height: 100%;
}
.masonry-style-2 .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.masonry-style-2 .row>div {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.gallery-full-width .full-width .content>p:last-of-type {
    margin-bottom: 0px;
}
.gallery-full-width .full-width .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 70px;
    background-color: var(--bs-secondary-bg-color);
    margin-bottom: 50px;
}
.gallery-full-width .full-width h2 {
    margin-bottom: 20px;
}
.gallery-full-width .full-width .details .details-list:last-of-type {
    margin-bottom: 0px;
}
.gallery-full-width .full-width .details .details-list h4 {
    font-weight: 600;
}
.gallery-full-width .full-width .details .details-list span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
    display: flex;
    align-items: center;
}
.gallery-full-width .full-width .details .details-list span svg {
    /* width: 13px;
    height: auto; */
    margin-right: 8px;
}
.gallery-full-width .full-width .details .details-list span svg path {
    fill: var(--bs-secondary);
}
.gallery-full-width.sidebar-page .full-width h2 {
    margin-bottom: 20px;
}
.gallery-full-width.sidebar-page .full-width>img {
    margin-bottom: 50px;
}
.history-page-1 .item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.history-page-1 .item>span {
    display: block;
    font-size: 25px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary);
    margin-right: 30px;
}
.history-page-1 .item h4 {
    margin-bottom: 20px;
}
.history-page-1 .item p {
    margin-bottom: 0px;
}
.history-page-1 .row>div {
    margin-bottom: 40px;
}
.history-page-1 .row>div:last-of-type {
    margin-bottom: 0px;
}
/* Contact */
.contact-style-1 {
    background-color: var(--bs-secondary-bg-color);
}
.contact-style-1 .map iframe {
    display: block;
    width: 100%;
    height: 650px;
}
.contact-style-1 .contact-form {
    position: relative;
    margin-top: -220px;
    background-color: #FFF;
}
.contact-style-1 .contact-form .home-2-title {
    align-items: flex-start;
    margin-bottom: 40px;
}
.contact-style-1 .contact-form>.row {
    margin-left: 0px;
    margin-right: 0px;
}
.contact-style-1 .contact-form>.row>div {
    padding-left: 0px;
    padding-right: 0px;
}
.contact-style-1 .contact-form .form-wrapper {
    padding: 50px;
}
.contact-style-1 .contact-form form {
    padding: 0px;
    width: 100%;
    background-color: unset;
}
.contact-style-1 .contact-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    padding-bottom: 100px;
}
.contact-style-1 .contact-details>* {
    padding-left: 20px;
}
.contact-style-1 .contact-details .detail h4 {
    display: flex;
    align-items: center;
    color: var(--bs-secondary);
}   
.contact-style-1 .contact-details .detail h4 svg {
    width: 16px;
    height: 16px;
    margin-left: -22px;
    margin-right: 6px;
}
.contact-style-1 .contact-details .detail h4 svg path {
    fill: var(--bs-secondary);
}
.contact-style-1 .contact-details .detail p {
    line-height: 23px;
}
.contact-style-1 .contact-details .detail p a {
    color: var(--bs-secondary-gray-color);
}
.sponsors-page .clients {
    background-color: var(--bs-primary);
}
.privacy-terms .item-content {
    margin-bottom: 40px;
}
.privacy-terms .item-content h2,
.privacy-terms .item-content h3 {
    font-weight: 800;
    margin-bottom: 20px;
}
.privacy-terms .item-content h4 {
    margin-bottom: 20px;
}
.privacy-terms .item-content:last-of-type {
    margin-bottom: 0px;
}
.privacy-terms .item-content>p:last-of-type {
    margin-bottom: 0px;
}
.privacy-terms .item-content>.content {
    margin-top: 30px;
}
.privacy-terms .item-content>.content ul {
    padding-left: 40px;
}
.about-us-page-2 .content .home-2-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
}
.about-us-page-2 .blockquotes-style-2 {
    width: 100%;
    margin-top: 30px;
}
.history-page .row {
    margin-left: 0px;
    margin-right: 0px;
}
.history-page .row>div {
    padding-left: 0px;
    padding-right: 0px;
    width: max-content;
}
.history-page .row>div:last-of-type {
    flex: 1;
}
.history-page .history-list:last-of-type .content {
    padding-bottom: 0px;
}
.history-page .year {
    position: relative;
    padding-right: 56px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    height: 100%;
}
.history-page .year::after {
    position: absolute;
    content: "";
    right: -6.5px;
    top: -6.5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--bs-secondary);
    background-color: #FFF;
}
.history-page .year span {
    display: block;
    font-size: 25px;
    line-height: 25px;
    font-family: var(--bs-primary-font);
    font-weight: 700;
    color: var(--bs-secondary);
    /* min-width: 90px; */
    min-width: max-content;
}
.history-page .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 56px;
    padding-bottom: 60px;
}
.history-page .content h4 {
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: -6px;
}
.history-page .content p {
    margin-bottom: 0px;
}
.history-page .content img {
    width: 120px;
    height: 110px;
    margin-right: 30px;
}
.awards-page .image {
    display: block;
    height: 460px;
    position: relative;
    transition: .8s ease-in-out;
}
.awards-page .image img {
    height: 100%;
}
.awards-page .image .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 1);
    transition: .6s ease-in-out;
}
.awards-page .image:hover .overlay {
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}
.awards-page .image .overlay h4 {
    color: #FFF;
    font-weight: 500;
    margin-bottom: 0px;
    transition: .6s ease-in-out;
}
.awards-page .row>div {
    margin-bottom: 50px;
}
.awards-page .row>div:last-of-type {
    margin-bottom: 0px;
}
.testimonials-page .item {
    padding: 70px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.testimonials-page .item:first-of-type {
    padding-top: 0px;
}
.media-page .media-tab ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.media-page .media-tab ul li a {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-heading);
    cursor: pointer;
    margin: 5px 30px;
    padding: 0px;
}
.media-page .media-tab ul li a.active {
    color: var(--bs-secondary);
}
.media-page .media-list {
    padding: 40px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.media-page .media-list:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, .2);
}
.media-page .media-list .row {
    align-items: center;
}
.media-page .media-list .content p {
    font-family: var(--bs-primary-font);
    font-weight: 500;
}
.media-page .media-list .content p span {
    color: var(--bs-secondary-heading);
    font-weight: 600;
}
.media-page .video-style-2 .item img {
    height: 280px;
}
.media-page .video-style-2 a svg {
    width: 50px;
    height: 50px;
}
.award-details-page img {
    margin-bottom: 50px;
}
.award-details-page h2 {
    font-weight: 800;
    margin-bottom: 20px;
}
.award-details-page .details {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.award-details-page .details .detail {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 60px;
}
.award-details-page .details .detail h4 {
    font-weight: 600;
}
.award-details-page .details .detail span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bs-secondary-font);
    color: var(--bs-secondary-gray-color);
}
.search-result .search-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.search-result .search-form p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0px;
}
.search-result h2 {
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}
.search-result .result-no {
    margin-bottom: 26px;
}
.search-result form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68%;
    height: 45px;
    margin-bottom: 80px;
    border-radius: 50px;
}
.search-result form input {
    font-size: 16px;
    color: var(--bs-secondary-footer) !important;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    border: none;
    border-radius: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    height: 100%;
    padding-left: 0px;
    color: var(--bs-secondary-heading) !important;
}
.search-result form .btn-primary {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 600;
    color: #FFF;
    position: relative;
    height: 100%;
    padding: 10px 30px !important;
    border: none;
    border-radius: 0px;
    background-color: var(--bs-primary);
}
.search-result .search-list .item {
    padding-top: 38px;
    padding-bottom: 38px;
    border-top: 2px solid lightgray;
}
.search-result .search-list>.item:last-child {
    border-bottom: 2px solid lightgray;
}
.search-result .search-list .item h3 {
    font-family: var(--bs-primary-font);
    font-weight: 700;
    letter-spacing: 0.18px;
    margin-bottom: 24px;
}
.search-result .search-list .item p {
    margin-bottom: 0px;
}
.form-style-3 .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.form-style-3 .links a {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    letter-spacing: 0.16px;
    color: var(--bs-secondary-footer);
}
.form-style-3 .links a:hover {
    color: var(--bs-secondary);
}
.register-page .links {
    justify-content: center;
}
.form-style-3 .links p {
    font-size: 16px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    letter-spacing: 0.16px;
    color: var(--bs-secondary-footer);
    margin-bottom: 0px;
}
.form-style-3 .links p a {
    color: var(--bs-secondary);
}
.error-page .image {
    padding-right: 46px;
}
.error-page .image img {
    height: 460px;
}
.error-page .row {
    align-items: center;
}
.error-page .content>span {
    display: block;
    font-size: 160px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
    color: var(--bs-secondary-heading);
    letter-spacing: 8px;
    line-height: 100px;
    margin-bottom: 55px;
}
.error-page .content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}
.error-page .content .btns {
    display: flex;
    margin-top: 40px;
}
.error-page .content .btns a:first-of-type {
    margin-right: 20px;
}
.coming-maintenance {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coming-maintenance * {
    color: #FFF;
}
.coming-maintenance .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.coming-maintenance .item h2 {
    font-weight: 700;
    margin-bottom: 30px;
}
.coming-maintenance .item p {
    line-height: 22px;
    opacity: .65;
    margin-bottom: 0px;
}
.coming-maintenance .row {
    justify-content: flex-end;
    align-items: center;
}
.coming-maintenance .cs-counter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 50px;
}
.coming-maintenance .cs-counter .cs-date {
    position: relative;
    margin-right: 40px;
}
.coming-maintenance .cs-counter .cs-date:last-of-type {
    margin-right: 0px;
}
.coming-maintenance .cs-counter .cs-date img {
    width: 90px;
    height: auto;
}
.coming-maintenance .cs-counter .cs-date .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.coming-maintenance .cs-counter .cs-date .overlay span {
    font-size: 20px;
    line-height: 20px;
    font-family: var(--bs-primary-font);
    font-weight: 600;
}
.coming-maintenance .cs-counter .cs-date .overlay .counting-title {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--bs-primary-font);
}
.blog-details-full-width.sidebar-page .full-width .next-prev {
    padding: 28px 0px;
    margin-bottom: 50px;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .next-btn,
.blog-details-full-width.sidebar-page .full-width .next-prev .prev-btn {
    font-size: 15px;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .next-btn svg,
.blog-details-full-width.sidebar-page .full-width .next-prev .prev-btn svg {
    width: 13px;
    height: auto;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .prev-btn svg {
    margin-right: 10px;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .next-btn svg {
    margin-left: 10px;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .prev-btn:hover svg {
    margin-right: 5px;
}
.blog-details-full-width.sidebar-page .full-width .next-prev .next-btn:hover svg {
    margin-left: 5px;
}


.page-node-571 .section.container,
.page-node-1120 .section.container,
.page-node-1122 .section.container {
    padding: 80px 0px;
}
.page-node-571 .section.container h3,
.page-node-1120 .section.container h3,
.page-node-1122 .section.container h3 {
    margin-bottom: 15px;
}
.views-field-title-video {
    margin-bottom: 15px;
}
.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--bs-primary);
    padding-top: 100px;
    background-image: url(../bg-2.png);
}
.footer h3 {
    color: #FFF;
    font-weight: 600;
    margin-bottom: 30px;
}
.footer a:hover {
    color: var(--bs-secondary) !important;
}
.footer ul li,
.footer ul li a {
    font-family: var(--bs-secondary-font);
    color: #FFF !important;
}
.footer .footer-content {
    padding-bottom: 75px;
}
.footer .footer-1 ul {
    padding-right: 30px;
}
.footer .footer-1 ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--bs-secondary-font);
    margin-bottom: 15px;
}
.footer .footer-1 ul li a {
    color: #FFF;
    opacity: .75;
}
.footer .footer-1 ul li:last-of-type {
    margin-bottom: 0px;
}
.footer .footer-1 .icon {
    display: block;
    margin-right: 15px;
}
.footer .footer-1 .icon svg {
    width: 17px;
    height: auto;
}
.footer .footer-1 .icon svg path {
    fill: #FFF;
}
.footer .footer-2 ul {
    padding-left: 18px;
}
.footer .footer-2 ul li {
    list-style: disc;
}
.footer .footer-2 ul li::marker {
    color: rgba(255, 255, 255, .75);
}
.footer .footer-2 ul li a {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    opacity: .75;
    width: max-content;
}
.footer .footer-2 ul li:last-of-type a {
    margin-bottom: 0px;
}
.footer .footer-2 ul li a:hover {
    opacity: 1;
}
.footer .footer-3 .subscribe {
    margin-bottom: 50px;
}
.footer .footer-3 .subscribe form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer .footer-3 .subscribe form input {
    font-size: 16px;
    font-family: var(--bs-secondary-font);
    font-weight: 400;
    padding: 2px 15px 13px 0px;
    background-color: transparent;
    color: #FFF;
    border: none;
    border-radius: 0px;
    border-bottom: 1.5px solid rgb(255, 255, 255, .75);
}
.footer .footer-3 .subscribe form input::placeholder {
    color: #FFF;
    opacity: 0.75;
}
.footer .footer-3 .subscribe form .btn-primary {
    font-size: 14px;
    font-family: var(--bs-secondary-font);
    font-weight: 600;
    padding: 9.5px 25px !important;
    border-radius: 0px;
    border: none;
    background-color: #FFF;
    margin-bottom: -.5px;
}
.footer .footer-3 .subscribe form .btn-primary svg {
    width: 15px;
    height: 15px;
    margin-left: 8px;
}
.footer .footer-3 .subscribe form .btn-primary svg path {
    fill: var(--bs-secondary-heading);
    transition: .2s ease-in-out;
}
.footer .footer-3 .subscribe form .btn-primary:hover {
    color: var(--bs-secondary) !important;
}
.footer .footer-3 .subscribe form .btn-primary:hover svg path {
    fill: var(--bs-secondary);
}
.footer .footer-3 .tickets .btn-primary {
    color: #FFF !important;
}



.footer .copyrights {
    border-top: 1px solid rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer .copyrights .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 14px;
    margin-top: -15px;
    background-color: var(--bs-primary);
}
.footer .copyrights .social-icon a {
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #FFF;
    border-radius: 50%;
    margin-right: 14px;
    background-color: transparent;
    transition: all .2s ease-in-out;
}
.footer .copyrights .social-icon li:last-of-type a {
    margin-right: 0px;
}
.footer .copyrights .social-icon a:hover {
    background-color: #FFF;

}
.footer .copyrights .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    padding-top: 18px;
    width: 100%;
}
.footer .copyrights .item p {
    letter-spacing: 0.28px;
    opacity: 0.75;
    margin-bottom: 0px;
}
.footer .copyrights .item p,
.footer .copyrights .item p a {
    font-size: 14px;
    letter-spacing: 0.28px;
    font-family: var(--bs-primary-font);
    color: #FFF;
}
.footer .copyrights .item p span {
    margin: 0px 12px;
}
.footer .copyrights .item p a:hover {
    color: var(--bs-secondary);
}


.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-color: var(--bs-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}
.back-to-top:hover {
    background-color: #FFF;
    box-shadow: 0px 0px 8px -2px var(--bs-primary);
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
.back-to-top svg {
    width: 10px;
    height: 10px;
    fill: var(--bs-primary);
    line-height: 0;
}
.back-to-top:hover svg {
    fill: var(--bs-primary);
}
  






/* Animation */
/* @keyframes overlay-animation {
    from {
        height: 0px;
        opacity: 0;
    }
    to {
        height: auto;
        opacity: 1;
    }
} */
@keyframes play-animation {
    0%{
        box-shadow: 0 0 0 0 var(--bs-secondary);
    }
    40%{
        box-shadow: 0 0 0 50px rgba(255,193,7,0);
    }
    80%{
        box-shadow: 0 0 0 50px rgba(255,193,7,0);
    }
    100%{
        box-shadow: 0 0 0 rgba(255,193,7,0);
    }
}
@keyframes play-animation-white {
    0%{
        box-shadow: 0 0 0 0 #FFF;
    }
    40%{
        box-shadow: 0 0 0 25px rgba(255,193,7,0);
    }
    80%{
        box-shadow: 0 0 0 25px rgba(255,193,7,0);
    }
    100%{
        box-shadow: 0 0 0 rgba(255,193,7,0);
    }
}







/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    .header .container {
        padding: 0px;
    }
    .header .res-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 12px;
    }
    .header .res-header .res-header-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header .navbar-toggler svg {
        margin-right: -6px;
    }
    .header .lang-dropdown-menu {
        margin-right: 30px;
    }
    .header .navbar-nav {
        background-color: #FFF;
    }
    .header .nav-link {
        color: var(--bs-secondary-heading) !important;
        padding: 16px 30px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .nav-link svg {
        width: 5px;
        height: auto;
    }
    .header .nav-link svg path {
        fill: var(--bs-secondary-heading);
    }
    .header .dropdown-menu {
        box-shadow: none;
        border: none !important;
        border-radius: 0px;
        /* margin-left: 25px; */
    }
    .header .dropdown-menu a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 0px;
    }
    .header .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
    .header .dropdown-menu .dropdown-item:focus,
    .header .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
    }
    .header .nav-item>.dropdown-menu {
        max-width: 74%;
        margin-left: 55px;
        margin-top: -8px !important;
        margin-bottom: 10px;
    }
    .header .dropdown-menu a:hover,
    .header .dropdown-menu a:focus {
        color: var(--bs-secondary-heading);
        background-color: transparent;
    }
    .header .dropdown-menu a:hover svg path,
    .header .dropdown-menu a:focus svg path {
        fill: var(--bs-secondary-heading);
    }

    .header .navbar-collapse {
        min-height: 100vh;
        max-height: 100vh;
        overflow: scroll;
        background-color: #FFF;
    }


    /* Footer */
    .footer .copyrights .item {
        flex-direction: column;
        text-align: center;
    }
    .footer .footer-1,
    .footer .footer-2,
    .footer .footer-3 {
        margin-bottom: 40px;
    }


    








    #header-1 .navbar-brand svg,
    #header-2 .navbar-brand svg,
    #header-3 .navbar-brand svg {
        width: 140px;
        height: auto;
    }


    /* Header 1 */
    #header-1 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }


    /* Header 2 */
    #header-3 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }




    /* Page banner */
    /* .page-banner h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    } */
    .page-banner .breadcrumb {
        justify-content: center;
    }
    .page-banner .breadcrumb li,
    .page-banner .breadcrumb li::before {
        font-size: 12px;
    }
    /* Elements */
    [class*="pricing-style-"] .row>div {
        overflow: hidden;
        margin-bottom: 40px;
    }
    [class*="pricing-style-"] .row>div:last-of-type {
        margin-bottom: 0px;
    }
    /* Team */
    [class*="team-style-"] .image img {
        height: 400px;
    }
    [class*="team-style-"] .row>div {
        margin-bottom: 40px;
    }
    [class*="team-style-"] .row>div:nth-last-of-type(1) {
        margin-bottom: 0px;
    }
    /* Alerts */
    .alert {
        font-size: 16px;
    }
    [class*="alert-style-"] .alert {
        padding: 15px;
    }
    [class*="alert-style-"] .alert .icon {
        margin-right: 15px;
    }
    [class*="alert-style-"] .alert i {
        font-size: 18px !important;
    }
    [class*="alert-style-"] .alert .icon i {
        font-size: 14px !important;
        width: 30px;
        height: 30px;
    }
    .alert-style-1 .alert {
        padding-left: 30px;
    }
    /* Tabs */
    [class*="tabs-style-"] .nav .nav-link {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 20px;
    }
    /* Testimonials */
    [class*="slider-style-"] .item p {
        font-size: 16px;
        line-height: 26px;
    }
    .slider-style-2 .item .item-content {
        padding: 30px 20px;
    }
    .slider-style-2 .item .icon svg {
        width: 30px;
    }
    .slider-style-3 .item .icon svg {
        width: 30px;
    }
    /* Home Pages */
    .blog-style-1 .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .home-slider-1 .item {
        padding: 100px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .home-slider-1 .item h2 {
        font-size: 34px;
        line-height: 48px;
    }
    .home-slider-1 .item .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
    .home-slider-1 .item .image {
        display: none;
    }
    .about-us-1 .image {
        margin-bottom: 70px;
    }
    .about-us-1 .home-1-title {
        align-items: center;
    }
    .about-us-1 .home-1-title * {
        text-align: center;
    }
    .about-us-1 .content .row>div {
        margin-bottom: 18px;
    }
    .contact-1 .overlay {
        position: relative;
    }
    .about-us-2 .image {
        margin-top: 40px;
    }
    .video-style-1 .item {
        text-align: center;
    }
    .video-style-1 .overlay h3 {
        font-size: 28px;
        line-height: 38px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .video-style-1 .item img {
        height: 480px;
    }
    .cta-2 .item h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .counter-style-1 .row>div {
        margin-bottom: 80px;
    }
    .counter-style-1 .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .clients-2 .client {
        width: 100%;
    }
    .contact-2 .map {
        margin-top: 60px;
    }
    .about-us-3 .about-top .image {
        margin-top: 50px;
    }
    .video-style-2 .item img {
        height: 300px;
    }
    .team-3 .content {
        margin-bottom: 20px;
    }
    .slider-style-3 .item p {
        padding-left: 5px;
        padding-right: 5px;
    }
    /* Subpages */
    .event-subpage .full-width .event-description-schedule>.nav .nav-link {
        font-size: 19px;
        line-height: normal;
        margin-right: 30px;
    }
    .event-subpage .full-width .event-description-schedule>.nav .nav-link {
        padding-bottom: 20px;
    }
    [class*="event-style-"] .row>div:last-of-type {
        margin-bottom: 0px;
    }
    /* Pages */
    .gallery-grid .tabs-menu ul {
        flex-wrap: wrap;
    }
    .gallery-grid .tabs-menu ul li {
        font-size: 16px;
        margin: 5px 10px;
    }
    .gallery-full-width .full-width .details {
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-full-width .full-width .details .details-list {
        margin-bottom: 30px;
    }
    .gallery-full-width .full-width .details .details-list:last-of-type {
        margin-bottom: 0px;
    }
    .gallery-full-width .full-width img {
        height: 380px;
    }
    .history-page .year {
        padding-right: 30px;
    }
    .history-page .year span {
        font-size: 16px;
        line-height: 26px;
        min-width: max-content;
    }
    .history-page .content {
        flex-direction: column;
        padding-left: 30px;
    }
    .about-us-page-2 .image {
        margin-bottom: 40px;
    }
    .history-page .content img {
        margin: 0px;
        margin-bottom: 15px;
    }
    .awards-page .image {
        height: 380px;
    }
    .media-page .media-list .content {
        margin-bottom: 30px;
    }
    .award-details-page img {
        height: 300px;
        margin-bottom: 30px;
    }
    .form-style-3 form {
        padding-left: 20px;
        padding-right: 20px;
    }
    .error-page .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .error-page .content>span {
        font-size: 100px;
        margin-bottom: 30px;
    }
    .error-page .content h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .error-page .content .btns {
        flex-direction: column;
        margin-top: 20px;
    }
    .error-page .content .btns a:first-of-type {
        margin: 0px;
        margin-bottom: 15px;
    }
    .home-banner-2 {
        margin-bottom: 200px;
    }
    .home-banner-2 .item h1 {
        font-size: 34px;
        line-height: 44px;
    }
    .home-banner-2 .cs-counter .cs-date {
        margin: 8px 5px;
    }
    .home-banner-2 .contact-details {
        flex-direction: column;
        padding: 30px 50px;
        margin-bottom: -100px;
        box-shadow: 0px 8px 18px -3px #BFBFBF;
    }
    .home-banner-2 .contact-details .detail {
        max-width: unset;
        margin-bottom: 15px;
    }
    .home-banner-2 .contact-details .detail:last-of-type {
        margin-bottom: 0px;
    }
    .event-schedules .details {
        margin-bottom: 15px;
    }
    .event-schedules .profile {
        justify-content: flex-start;
        margin-top: 20px;
    }
    .event-schedules-2 .event-list .row>div:last-of-type {
        border-left: none;
    }
    .event-schedules-2 .event-list .content {
        margin-top: 30px;
    }
    .home-banner-3 {
        padding: 100px 0px;
    }
    .home-banner-3 .cs-counter {
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .event-style-3 .part-2 {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
    }
    .cta-1 .item {
        flex-direction: column;
    }
    .cta-1 .date {
        padding: 50px;
        border: none;
    }
    .cta-1 .content {
        padding: 0px;
        text-align: center;
    }
    .cta-1 .content .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
    .video-counter-1 .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .event-style-4 .item-content-head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .event-style-4 .item-content-head>span {
        display: none;
    }
    .event-style-4 .item-content-head .date {
        margin-bottom: 30px;
    }
    .event-style-4 .item-content-head {
        margin-bottom: 15px;
    }
    .event-style-4 .item .item-content {
        padding: 30px;
    }
    .event-style-3 .part-2 {
        height: unset;
    }
    .event-style-3 .part-2 ul {
        margin-bottom: 30px;
    }
    .event-subpage .full-width .banner img {
        height: 300px;
    }
    .contact-3 .container>.row>div:first-of-type {
        margin-bottom: 50px;
    }
    .accordion-style-1 button {
        padding: 15px;
    }
    .accordion-style-1 .icon {
        margin-right: 10px;
    }
    .accordion-style-1 .item p {
        padding: 30px 50px;
    }
    .accordion-style-2 .item {
        padding: 20px 30px;
    }
    .accordion-style-2 button {
        text-align: left;
    }
    .blog-details-full-width .full-width .next-prev .next-btn,
    .blog-details-full-width .full-width .next-prev .prev-btn {
        font-size: 14px;
    }
    .blog-details-full-width .full-width .next-prev .next-btn svg,
    .blog-details-full-width .full-width .next-prev .prev-btn svg {
        width: 14px;
        height: auto;
    }
    .blog-details-full-width .full-width .tags-social {
        flex-direction: column;
    }
    .blog-details-full-width .full-width .social-icon-wrapper {
        margin-right: auto;
        margin-top: 30px;
    }
    [class *= 'button-style-'] .item {
        flex-direction: column;
        align-items: flex-start;
    }
    [class *= 'button-style-'] .item a {
        margin-bottom: 20px;
    }
    [class *= 'button-style-'] .item a:last-of-type {
        margin-bottom: 0px;
    }
    .form-style-2 input {
        margin-bottom: 20px;
    }
    .form-style-2 .row {
        margin-bottom: 0px;
    }
    [class*="table-style-"] table th,
    [class*="table-style-"] table td {
        font-size: 12px;
        padding: 8px !important;
    }
    .icons .container {
        overflow: hidden;
    }
    .images .row>div {
        margin-bottom: 50px;
    }
    .images .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .blockquotes-style-2 {
        width: 100%;
    }
    .slider-style-1 .style-1-slider .item {
        width: 82%;
    }
    .slider-style-3 .style-3-slider .item {
        width: 85%;
    }
    .home-banner-3 .item h1 {
        font-size: 38px;
        line-height: 48px;
    }
    .about-us-3 .about-bottom .content .about-btns {
        flex-direction: column;
    }
    .about-us-3 .about-bottom .content .about-btns a:last-of-type {
        margin-top: 30px;
    }
    .team-list-style-2 .item .image {
        margin-bottom: 25px;
    }
    .contact-style-1 .contact-details {
        flex-direction: column;
    }
    .contact-style-1 .contact-form .home-2-title {
        text-align: left;
    }
    .contact-style-1 .contact-details>* {
        margin-bottom: 10px;
    }
    .search-result form {
        width: 90%;
        margin-bottom: 50px;
    }
    .coming-maintenance .cs-counter {
        flex-wrap: wrap;
    }
    .coming-maintenance .cs-counter .cs-date {
        margin: 10px;
    }
    .header .mega-menu h5 {
        margin-top: 15px;
    }
    .header .nav-item>.dropdown-menu {
        max-height: 135px;
        overflow: scroll;
    }
    .header .lang-dropdown-menu {
        padding: 0px;
    }
    .header .lang-dropdown-item>a {
        padding: 0px;
    }
    h1 {
        font-size: 32px;
    } 
    h2 {
        font-size: 28px;
    }

 }

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
   
    .header .container {
        padding: 0px;
    }
    .header .res-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 12px;
    }
    .header .res-header .res-header-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header .navbar-toggler svg {
        margin-right: -6px;
    }
    .header .lang-dropdown-menu {
        margin-right: 30px;
    }
    .header .navbar-nav {
        background-color: #FFF;
    }
    .header .nav-link {
        color: var(--bs-secondary-heading) !important;
        padding: 16px 30px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .nav-link svg {
        width: 5px;
        height: auto;
    }
    .header .nav-link svg path {
        fill: var(--bs-secondary-heading);
    }
    .header .dropdown-menu {
        box-shadow: none;
        border: none !important;
        border-radius: 0px;
        /* margin-left: 25px; */
    }
    .header .dropdown-menu a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 0px;
    }
    .header .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
    .header .dropdown-menu .dropdown-item:focus,
    .header .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
    }
    .header .nav-item>.dropdown-menu {
        max-width: 84%;
        margin-left: 55px;
        margin-top: -8px !important;
        margin-bottom: 10px;
    }
    .header .dropdown-menu a:hover,
    .header .dropdown-menu a:focus {
        color: var(--bs-secondary-heading);
        background-color: transparent;
    }
    .header .dropdown-menu a:hover svg path,
    .header .dropdown-menu a:focus svg path {
        fill: var(--bs-secondary-heading);
    }

    .header .navbar-collapse {
        min-height: 100vh;
        max-height: 100vh;
        overflow: scroll;
        background-color: #FFF;
    }


    /* Footer */
    .footer .copyrights .item {
        flex-direction: column;
        text-align: center;
    }
    .footer .footer-1,
    .footer .footer-2,
    .footer .footer-3 {
        margin-bottom: 40px;
    }


    








    #header-1 .navbar-brand svg,
    #header-2 .navbar-brand svg,
    #header-3 .navbar-brand svg {
        width: 140px;
        height: auto;
    }


    /* Header 1 */
    #header-1 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }


    /* Header 2 */
    #header-3 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }




    /* Page banner */
    /* .page-banner h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    } */
    .page-banner .breadcrumb {
        justify-content: center;
    }
    .page-banner .breadcrumb li,
    .page-banner .breadcrumb li::before {
        font-size: 12px;
    }
    /* Elements */
    [class*="pricing-style-"] .row>div {
        overflow: hidden;
        margin-bottom: 40px;
    }
    [class*="pricing-style-"] .row>div:last-of-type {
        margin-bottom: 0px;
    }
    /* Team */
    [class*="team-style-"] .image img {
        height: 500px;
    }
    [class*="team-style-"] .row>div {
        margin-bottom: 40px;
    }
    [class*="team-style-"] .row>div:nth-last-of-type(1) {
        margin-bottom: 0px;
    }
    /* Alerts */
    .alert {
        font-size: 16px;
    }
    [class*="alert-style-"] .alert {
        padding: 15px;
    }
    [class*="alert-style-"] .alert .icon {
        margin-right: 15px;
    }
    [class*="alert-style-"] .alert i {
        font-size: 18px !important;
    }
    [class*="alert-style-"] .alert .icon i {
        font-size: 14px !important;
        width: 30px;
        height: 30px;
    }
    .alert-style-1 .alert {
        padding-left: 30px;
    }
    /* Tabs */
    [class*="tabs-style-"] .nav .nav-link {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 20px;
    }
    /* Testimonials */
    [class*="slider-style-"] .item p {
        font-size: 16px;
        line-height: 26px;
    }
    .slider-style-2 .item .item-content {
        padding: 30px 20px;
    }
    .slider-style-2 .item .icon svg {
        width: 30px;
    }
    .slider-style-3 .item .icon svg {
        width: 30px;
    }
    /* Home Pages */
    .blog-style-1 .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .home-slider-1 .item {
        padding: 100px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .home-slider-1 .item h2 {
        font-size: 34px;
        line-height: 48px;
    }
    .home-slider-1 .item .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
    .home-slider-1 .item .image {
        display: none;
    }
    .about-us-1 .image {
        margin-bottom: 70px;
    }
    .about-us-1 .home-1-title {
        align-items: center;
    }
    .about-us-1 .home-1-title * {
        text-align: center;
    }
    .about-us-1 .content .row>div {
        margin-bottom: 18px;
    }
    .contact-1 .overlay {
        position: relative;
    }
    .about-us-2 .image {
        margin-top: 40px;
    }
    .video-style-1 .item {
        text-align: center;
    }
    .video-style-1 .overlay h3 {
        font-size: 28px;
        line-height: 38px;
    }
    .video-style-1 .item img {
        height: 480px;
    }
    .cta-2 .item h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .counter-style-1 .row>div {
        margin-bottom: 80px;
    }
    .counter-style-1 .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .clients-2 .client {
        width: 100%;
    }
    .contact-2 .map {
        margin-top: 60px;
    }
    .about-us-3 .about-top .image {
        margin-top: 50px;
    }
    .video-style-2 .item img {
        height: 300px;
    }
    .team-3 .content {
        margin-bottom: 20px;
    }
    .slider-style-3 .item p {
        padding-left: 5px;
        padding-right: 5px;
    }
    /* Subpages */
    .event-subpage .full-width .event-description-schedule>.nav .nav-link {
        font-size: 20px;
        line-height: normal;
        margin-right: 40px;
    }
    .event-subpage .full-width .event-description-schedule>.nav .nav-link {
        padding-bottom: 20px;
    }
    [class*="event-style-"] .row>div:last-of-type {
        margin-bottom: 0px;
    }
    /* Pages */
    .gallery-grid .tabs-menu ul {
        flex-wrap: wrap;
    }
    .gallery-grid .tabs-menu ul li {
        font-size: 16px;
        margin: 5px 10px;
    }
    .gallery-full-width .full-width .details {
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-full-width .full-width .details .details-list {
        margin-bottom: 30px;
    }
    .gallery-full-width .full-width .details .details-list:last-of-type {
        margin-bottom: 0px;
    }
    .gallery-full-width .full-width img {
        height: 380px;
    }
    .history-page .year {
        padding-right: 30px;
    }
    .history-page .year span {
        font-size: 16px;
        line-height: 26px;
        min-width: max-content;
    }
    .history-page .content {
        flex-direction: column;
        padding-left: 30px;
    }
    .about-us-page-2 .image {
        margin-bottom: 40px;
    }
    .history-page .content img {
        margin: 0px;
        margin-bottom: 15px;
    }
    .awards-page .image {
        height: 380px;
    }
    .media-page .media-list .content {
        margin-bottom: 30px;
    }
    .award-details-page img {
        height: 300px;
        margin-bottom: 30px;
    }
    .form-style-3 form {
        padding-left: 20px;
        padding-right: 20px;
    }
    .error-page .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .error-page .content>span {
        font-size: 100px;
        margin-bottom: 30px;
    }
    .error-page .content h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .error-page .content .btns {
        flex-direction: column;
        margin-top: 20px;
    }
    .error-page .content .btns a:first-of-type {
        margin: 0px;
        margin-bottom: 15px;
    }
    .home-banner-2 {
        margin-bottom: 200px;
    }
    .home-banner-2 .item h1 {
        font-size: 34px;
        line-height: 44px;
    }
    .home-banner-2 .cs-counter .cs-date {
        margin: 0px 5px;
    }
    .home-banner-2 .contact-details {
        flex-direction: column;
        padding: 30px 50px;
        margin-bottom: -200px;
        box-shadow: 0px 8px 18px -3px #BFBFBF;
    }
    .home-banner-2 .contact-details .detail {
        max-width: unset;
        margin-bottom: 15px;
    }
    .home-banner-2 .contact-details .detail:last-of-type {
        margin-bottom: 0px;
    }
    .event-schedules .details {
        margin-bottom: 15px;
    }
    .event-schedules .profile {
        justify-content: flex-start;
        margin-top: 20px;
    }
    .event-schedules-2 .event-list .row>div:last-of-type {
        border-left: none;
    }
    .event-schedules-2 .event-list .content {
        margin-top: 30px;
    }
    .home-banner-3 {
        padding: 100px 0px;
    }
    .home-banner-3 .cs-counter {
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .event-style-3 .part-2 {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
    }
    .cta-1 .item {
        flex-direction: column;
    }
    .cta-1 .date {
        padding: 50px;
        border: none;
    }
    .cta-1 .content {
        padding: 0px;
        text-align: center;
    }
    .cta-1 .content .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
    .video-counter-1 .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .event-style-4 .item-content-head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .event-style-4 .item-content-head>span {
        display: none;
    }
    .event-style-4 .item-content-head .date {
        margin-bottom: 30px;
    }
    .event-style-4 .item-content-head {
        margin-bottom: 15px;
    }
    .event-style-4 .item .item-content {
        padding: 30px;
    }
    .event-style-3 .part-2 {
        height: unset;
    }
    .event-style-3 .part-2 ul {
        margin-bottom: 30px;
    }
    .event-subpage .full-width .banner img {
        height: 300px;
    }
    .contact-3 .container>.row>div:first-of-type {
        margin-bottom: 50px;
    }
    .accordion-style-1 button {
        padding: 15px;
    }
    .accordion-style-1 .icon {
        margin-right: 10px;
    }
    .accordion-style-1 .item p {
        padding: 30px 50px;
    }
    .accordion-style-2 .item {
        padding: 20px 30px;
    }
    .accordion-style-2 button {
        text-align: left;
    }
    .blog-details-full-width .full-width .next-prev .next-btn,
    .blog-details-full-width .full-width .next-prev .prev-btn {
        font-size: 14px;
    }
    .blog-details-full-width .full-width .next-prev .next-btn svg,
    .blog-details-full-width .full-width .next-prev .prev-btn svg {
        width: 14px;
        height: auto;
    }
    .blog-details-full-width .full-width .tags-social {
        flex-direction: column;
    }
    .blog-details-full-width .full-width .social-icon-wrapper {
        margin-right: auto;
        margin-top: 30px;
    }
    [class *= 'button-style-'] .item {
        flex-direction: column;
        align-items: flex-start;
    }
    [class *= 'button-style-'] .item a {
        margin-bottom: 20px;
    }
    [class *= 'button-style-'] .item a:last-of-type {
        margin-bottom: 0px;
    }
    .form-style-2 input {
        margin-bottom: 20px;
    }
    .form-style-2 .row {
        margin-bottom: 0px;
    }
    [class*="table-style-"] table th,
    [class*="table-style-"] table td {
        font-size: 12px;
        padding: 8px !important;
    }
    .icons .container {
        overflow: hidden;
    }
    .images .row>div {
        margin-bottom: 50px;
    }
    .images .row>div:last-of-type {
        margin-bottom: 0px;
    }
    .blockquotes-style-2 {
        width: 100%;
    }
    .icons-list {
        justify-content: center;
    }
    .team-list-style-2 .item .image {
        margin-bottom: 25px;
    }
    .contact-style-1 .contact-details {
        flex-direction: column;
    }
    .contact-style-1 .contact-form .home-2-title {
        text-align: left;
    }
    .contact-style-1 .contact-details>* {
        margin-bottom: 10px;
    }
    .header .mega-menu h5 {
        margin-top: 15px;
    }
    .header .nav-item>.dropdown-menu {
        max-height: 135px;
        overflow: scroll;
    }
    .header .lang-dropdown-menu {
        padding: 0px;
    }
    .header .lang-dropdown-item>a {
        padding: 0px;
    }

 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .header .container {
        padding: 0px;
    }
    .header .res-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 12px;
    }
    .header .res-header .res-header-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header .navbar-toggler svg {
        margin-right: -6px;
    }
    .header .lang-dropdown-menu {
        margin-right: 30px;
    }
    .header .navbar-nav {
        background-color: #FFF;
    }
    .header .nav-link {
        color: var(--bs-secondary-heading) !important;
        padding: 16px 30px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .nav-link svg {
        width: 5px;
        height: auto;
    }
    .header .nav-link svg path {
        fill: var(--bs-secondary-heading);
    }
    .header .dropdown-menu {
        box-shadow: none;
        border: none !important;
        border-radius: 0px;
        /* margin-left: 25px; */
    }
    .header .dropdown-menu a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 0px;
    }
    .header .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
    .header .dropdown-menu .dropdown-item:focus,
    .header .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
    }
    .header .nav-item>.dropdown-menu {
        max-width: 84%;
        margin-left: 55px;
        margin-top: -8px !important;
        margin-bottom: 10px;
    }
    .header .dropdown-menu a:hover,
    .header .dropdown-menu a:focus {
        color: var(--bs-secondary-heading);
        background-color: transparent;
    }
    .header .dropdown-menu a:hover svg path,
    .header .dropdown-menu a:focus svg path {
        fill: var(--bs-secondary-heading);
    }


    








    #header-1 .navbar-brand svg,
    #header-2 .navbar-brand svg,
    #header-3 .navbar-brand svg {
        width: 140px;
        height: auto;
    }


    /* Header 1 */
    #header-1 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }


    /* Header 2 */
    #header-3 .nav-link {
        color: var(--bs-secondary-heading) !important;
    }


    .header .navbar-collapse {
        min-height: 100vh;
        max-height: 100vh;
        overflow: scroll;
        background-color: #FFF;
    }


    /* Footer */
    .footer .footer-3 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 30px;
    }
    .footer .footer-3 .subscribe {
        margin-bottom: 0px;
    }
    .footer .footer-3 .tickets {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;        
    }




    /* Elements */
    [class*="pricing-style-"] .row {
        justify-content: center;
        align-items: center;
    }
    [class*="pricing-style-"] .row>div {
        height: 100% !important;
        margin-bottom: 40px;
    }
    [class*="pricing-style-"] .row>div:nth-last-of-type(1) {
        margin-bottom: 0px;
    }
    .pricing-style-2 .item.silver {
        padding: 48px 30px !important;
        padding-bottom: 36px !important;
    }
    [class*="team-style-"] .row {
        margin-left: -30px;
        margin-right: -30px;
    }
    [class*="team-style-"] .row>div {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 50px;
    }
    [class*="team-style-"] .row>div:nth-last-of-type(1),
    [class*="team-style-"] .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .slider-style-3 .item::before {
        width: 450px;
    }
    .icons.dt-section {
        overflow: hidden;
    }
    .blog-style-4 .item .image,
    .blog-style-4 .item .image img {
        height: 380px;
    }
    .event-schedules .details ul li {
        font-size: 13px;
    }
    .home-slider-1 {
        padding: 100px 0px;
    }
    .about-us-1 .container>.row {
        align-items: center;
    }
    .video-counter-1 .counter-style-1 .row>div:nth-last-child(1),
    .video-counter-1 .counter-style-1 .row>div:nth-last-child(2) {
        margin-bottom: 0px;
    }
    .about-us-2 .container>.row {
        align-items: center;
    }
    .event-schedules-2 .event-list {
        padding: 22px;
    }
    .event-schedules-2 .event-list .row {
        margin-left: -22px;
        margin-right: -22px;
    }
    .event-schedules-2 .event-list .row>div {
        padding-left: 22px;
        padding-right: 22px;
    }
    .home-banner-3 {
        padding: 100px 0px;
    }
    .home-banner-3 .cs-counter {
        margin-top: 30px;
    }
    .event-style-3 .part-2 {
        margin-top: 20px;
    }
    .event-style-4 .image img {
        height: 380px;
    }
    .video-counter-1 .counter-style-1 .row>div {
        padding-left: 80px;
        padding-right: 80px;
    }
    .contact-3 .row>div .content {
        margin-top: 60px;
    }
    .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .counter-style-1 .row>div {
        margin-bottom: 50px;
    }
    .counter-style-1 .row>div:nth-last-of-type(-n+2) {
        margin-bottom: 0px;
    }
    .team-list-style-2 .item .image {
        margin-bottom: 25px;
    }
    .team-list-style-2 .item .image img {
        width: 100%;
    }
    .header .mega-menu h5 {
        margin-top: 15px;
    }
    .header .nav-item>.dropdown-menu {
        max-height: 150px;
        overflow: scroll;
    }
    .header .lang-dropdown-menu {
        padding: 0px;
    }
    .header .lang-dropdown-item>a {
        padding: 0px;
    }
    .about-us-page-2 .row {
        align-items: flex-start !important;
    }
    .about-us-page-2 .row>div:first-of-type {
        margin-bottom: 30px;
    }







 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 

    /* Dropdown Menu */
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu.show .dropdown-menu{
        display: none !important;
    }
    .dropdown:hover > .dropdown-menu {
        display: block !important;
        z-index: 999998 !important;
    }
    .dropdown-submenu:hover>.dropdown-menu {
        display: block !important;
        left: 100%;
        top: 0;
        border: none;
        border-radius: 0px;
    } 

        





    /* Mega Menu */
    .header .navbar {
        position: relative;
    }
    .header .mega-menu {
        position: static !important;
    }
    .header .mega-menu .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 872px;
        background-color: #FFF !important;
        padding: 35px 58px;
        margin-left: auto;
        margin-right: auto;
        max-height: max-content;
    }
    .header .mega-menu .dropdown-menu>li {
        min-width: max-content !important
    }
    .header .dropdown.mega-menu:hover > .dropdown-menu,
    .header .dropdown.mega-menu:focus-within > .dropdown-menu {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
    }


    /* Header */
    .header .header-right .btn-primary {
        margin-left: 20px;
        margin-right: 20px;
    }
    .header .header-right .hamburger-menu-btn {
        margin-left: 20px;
        margin-right: 0px;
    }
    .header .nav-link {
        padding: 40px 24px !important;
        padding-left: 0px !important;
    }


    /* Elements */
    .slider-style-3 .item::before {
        width: 450px;
    }
    /* Subpages */
    .events-4-grid.event-style-2 .item ul li {
        font-size: 11px;
    }
    .events-4-grid.event-style-2 .item ul li svg {
        width: auto;
        height: 10px;
    }
    .home-banner-3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .video-counter-1 .image {
        margin-right: 65px;
    }
    .video-counter-1 .counter-style-1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .team-style-2 .row>div {
        margin-bottom: 50px;
    }
    .team-style-2 .row>div:nth-last-of-type(-n+4) {
        margin-bottom: 0px;
    }
    .team-2-grid.team-style-2 .row>div {
        margin-bottom: 50px;
    }
    .team-2-grid.team-style-2 .row>div:nth-last-of-type(-n+2) {
        margin-bottom: 0px;
    }
    .clients-2 .client img {
        height: 70px;
    }
    .clients-2 .client {
        min-height: 180px;
    }
    .counter-style-1 .item {
        width: 118px;
    }
    .counter-style-1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .team-style-3 .row>div:nth-last-of-type(-n+4) {
        margin-bottom: 0px;
    }
    .sidebar-page .container>.row>div:last-of-type {
        margin-top: 0px;
    }
    .team-list-style-2 .item .image img {
        width: 100%;
    }
    .about-us-page-2 .row {
        align-items: flex-start !important;
    }
    .coming-maintenance .row {
        justify-content: center;
    }
    .header .dropdown-menu a:hover svg path {
        fill: #FFF;
    }

 }

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
 


    /* Dropdown Menu */
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu.show .dropdown-menu{
        display: none !important;
    }
    .dropdown:hover > .dropdown-menu {
        display: block !important;
        z-index: 999998 !important;
    }
    .dropdown-submenu:hover>.dropdown-menu {
        display: block !important;
        left: 100%;
        top: 0;
        border: none;
        border-radius: 0px;
    } 





    /* Header */
    /* Mega Menu */
    .header .navbar {
        position: relative;
    }
    .header .mega-menu {
        position: static !important;
    }
    .header .mega-menu .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 872px;
        background-color: #FFF !important;
        padding: 35px 58px;
        margin-left: auto;
        margin-right: auto;
        max-height: max-content;
    }
    .header .mega-menu .dropdown-menu>li {
        min-width: max-content !important
    }
    .header .dropdown.mega-menu:hover > .dropdown-menu,
    .header .dropdown.mega-menu:focus-within > .dropdown-menu {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
    }



    .header .dropdown-menu a:hover,
    .header .dropdown-menu a:focus {
        color: #FFF !important;
        background-color: var(--bs-secondary) !important;
    }




    /* Header 3 */
    #header-3 .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-bottom: 0px;
        border-bottom: 2px solid transparent;
    }
    #header-3 .nav-link.active {
        border-bottom: 2px solid #FFF;
        margin-bottom: -1.5px;
    }

   /*  #header-2 {
        margin-bottom: 100px;
    } */
    .header .nav-item {
        margin-right: 34px !important;
    }




    /* Elements */
    /* Pricing */
    .pricing-style-1 .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .pricing-style-1 .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .pricing-style-2 .row {
        margin-left: -17.5px;
        margin-right: -17.5px;
    }
    .pricing-style-2 .row>div {
        padding-left: 17.5px;
        padding-right: 17.5px;
    }
    .pricing-style-3 .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .pricing-style-3 .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* images */
    .images .container .row>div {
        max-width: 28.4%;
    }
    .images .code-block {
        margin-bottom: 0px;
    }
    /* Team */
    [class*="team-style-"] .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    [class*="team-style-"] .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Tabs */
    .tabs-style-2 ul .nav-link {
        font-size: 25px;
        min-width: 160px;
        min-height: 85px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* Testimonials */
    .slider-style-2 .item {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
    }
    .slider-style-2 .item .row>div:first-of-type {
        width: 47%;
    }
    .slider-style-2 .item .row>div:last-of-type {
        width: 53%;
    }
    .slider-style-2 .item .image {
        height: 450px;
    }
    .slider-style-2 .item .image img {
        height: 100%;
        border-radius: 10px 0px 0px 10px;
        object-fit: contain;
    }
    .slider-style-2 .item .item-content {
        border-radius: 0px 10px 10px 0px;
    }
    .slider-style-3 .item::before {
        width: 460px;
    }
    /* Elements */
    .audio-style-1 audio {
        transform: scale(2);
        margin: 40px 160px;
    }
    .video-style-2 .item img {
        height: 728px;
    }
    .video-style-3 .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .video-style-3 .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .blog-style-1 .item img {
        height: 410px;
    }
    .blog-style-1 .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .blog-style-1 .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .blog-style-2 .row,
    .blog-style-3 .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .blog-style-2 .row>div,
    .blog-style-3 .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .blog-style-4 .item .row>div:first-of-type {
        width: 44%;
    }
    .blog-style-4 .item .row>div:last-of-type {
        width: 56%;
    }
    .team-style-1 .row>div:nth-last-of-type(1),
    .team-style-1 .row>div:nth-last-of-type(2),
    .team-style-1 .row>div:nth-last-of-type(3),
    .team-style-1 .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    /* Forms */
    .form-style-1 .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .form-style-1 .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .form-style-2 .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .form-style-2 .row>div {
        padding-left: 10px;
        padding-right: 10px;
    }
    .event-style-2 .image img {
        height: 380px;
    }
    .event-style-2 .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .event-style-2 .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    /* Home Page 1 */
    .portfolio-1 .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .portfolio-1 .row>div {
        padding-left: 10px;
        padding-right: 10px;
    }
    .portfolio-1 .row>div:nth-last-of-type(1),
    .portfolio-1 .row>div:nth-last-of-type(2),
    .portfolio-1 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .about-us-1 .container>.row {
        margin-left: 0px;
        margin-right: 0px;
        align-items: center;
    }
    .about-us-1 .container>.row>div {
        padding-left: 0px;
        padding-right: 0px;
    }
    .about-us-1 .image {
        margin-right: 60px;
    }
    .about-us-1 .image img {
        height: 530px;
    }
    .about-us-1 .content .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .about-us-1 .content .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .about-us-1 .home-1-title {
        width: 50%;
    }
    .about-us-1 .home-1-title span {
        justify-content: flex-start;
    }
    .contact-1 .overlay .details {
        width: 400px;
        margin-left: -85px;
    }
    .contact-1 .overlay .details p {
        width: 90%;
    }
    .video-counter-1 .counter-style-1 .row>div:nth-last-of-type(1),
    .video-counter-1 .counter-style-1 .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .video-counter-1 .counter-style-1 {
        width: 440px;
    }
    .video-counter-1 .counter-style-1 .row>div:nth-of-type(2n) .item {
        margin-left: auto;
    }
    .counter-style-1 .item {
        width: 130px;
    }
    .video-counter-1 .image {
        margin-right: 65px;
        height: 620px;
    }
    .video-counter-1 .image img {
        height: 100%;
    }
    .video-counter-1 .dt-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .video-counter-1>.row {
        align-items: center;
    }
    .slider-style-1 .style-1-slider .item, .slider-style-3 .style-3-slider .item {
        width: 70%;
    }
    /* Home Page 2 */
    .team-style-2 .row>div {
        margin-bottom: 50px;
    }
    .team-style-2 .row>div:nth-last-of-type(1),
    .team-style-2 .row>div:nth-last-of-type(2),
    .team-style-2 .row>div:nth-last-of-type(3),
    .team-style-2 .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    .portfolio-2 .row>div:nth-last-of-type(1),
    .portfolio-2 .row>div:nth-last-of-type(2),
    .portfolio-2 .row>div:nth-last-of-type(3) {
        /* margin-bottom: 0px; */
    }
    .cta-2 .item {
        width: 60%;
    }
    .counters-2 .item {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-2 .map {
        padding-left: 30px;
    }
    .about-us-2 .content ul {
        margin-top: 30px;
        padding-right: 80px;
    }
    .about-us-2 .image {
        padding-left: 30px;
    }
    .about-us-2 .image img {
        height: 548px;
    }
    /* Home Page 3 */
    .home-3-title {
        width: 468px;
    }
    .counters-3 .row {
        justify-content: space-between;
    }
    .counters-3 .row>div {
        width: max-content;
    }
    .about-us-3 .about-top .row {
        margin-left: -40px;
        margin-right: -40px;
    }
    .about-us-3 .about-top .row>div {
        padding-left: 40px;
        padding-right: 40px;
    }
    .about-us-3 .about-top .content {
        padding-right: 60px;
    }
    .about-us-3 .about-bottom .content {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    .team-3 .content {
        width: 70%;
    }
    .team-style-3 .row>div {
        margin-bottom: 50px;
    }
    .team-style-3 .row>div:nth-last-of-type(1),
    .team-style-3 .row>div:nth-last-of-type(2),
    .team-style-3 .row>div:nth-last-of-type(3),
    .team-style-3 .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    .blog-style-1 .row>div:nth-last-child(1),
    .blog-style-1 .row>div:nth-last-child(2) {
        margin-bottom: 0px;
    }
    .blog-style-2 .row>div:nth-last-of-type(1),
    .blog-style-2 .row>div:nth-last-of-type(2),
    .blog-style-2 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .video-style-3 .row>div:nth-last-of-type(1),
    .video-style-3 .row>div:nth-last-of-type(2),
    .video-style-3 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .blog-style-3 .row>div:nth-last-of-type(1),
    .blog-style-3 .row>div:nth-last-of-type(2),
    .blog-style-3 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .portfolio-3 .portfolio-lists {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .portfolio-3 .portfolio-lists .row>div {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .home-banner-3 {
        height: 825px;
    }
    .home-banner-3 .item p {
        width: 65%;
    }
    .home-banner-3 .container {
        height: 100%;
    }
    .home-banner-3 .container .item {
        height: 100%;
    }
    .home-banner-3 .container .row {
        align-items: center;
        height: 100%;
    }
    .home-banner-3 .container .row>div:last-of-type {
        height: 100%;
        padding-bottom: 80px;
    }
    .contact-3 .contact-details {
        width: 75%;
    }
    .contact-3 .container>.row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .contact-3 .container>.row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .event-style-2 .row>div:nth-last-of-type(1),
    .event-style-2 .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    /* Subpages */
    .sidebar-page .container>.row>div:last-of-type {
        margin-top: 0px;
    }
    .events-3-grid .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .events-3-grid .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .events-3-grid.event-style-2 .row>div {
        margin-bottom: 30px;
    }
    .events-3-grid.event-style-2 .row>div:nth-last-of-type(1),
    .events-3-grid.event-style-2 .row>div:nth-last-of-type(2),
    .events-3-grid.event-style-2 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .events-4-grid.event-style-2 .row {
        margin-left: -9px;
        margin-right: -9px;
    }
    .events-4-grid.event-style-2 .row>div {
        padding-left: 9px;
        padding-right: 9px;
    }
    .events-4-grid.event-style-2 .row>div:nth-last-of-type(1),
    .events-4-grid.event-style-2 .row>div:nth-last-of-type(2),
    .events-4-grid.event-style-2 .row>div:nth-last-of-type(3),
    .events-4-grid.event-style-2 .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    .event-schedules .event-lists .row>:nth-of-type(2) {
        padding-left: 0px;
        padding-right: 0px;
    }
    .event-subpage .full-width .banner img {
        height: 530px;
    }
    .sidebar-page .container>.row>div:first-of-type {
        width: 70%;
    }
    .sidebar-page .container>.row>div:last-of-type {
        width: 30%;
    }
    .sidebar-page .container>.row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .sidebar-page .container>.row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .event-subpage.sidebar-page .full-width .banner img {
        height: 450px;
    }
    .event-subpage.sidebar-page .full-width .event-description-schedule .content-item {
        margin-bottom: 40px;
    }
    .event-subpage.sidebar-page .full-width .event-description-schedule .content-item:last-of-type {
        margin-bottom: 0px;
    }
    .team-2-grid .image img {
        height: 470px;
    }
    .team-2-grid .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .team-2-grid .row>div {
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 50px;
    }
    .team-2-grid .row>div:nth-last-of-type(1),
    .team-2-grid .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .team-2-grid .image .overlay .social-icon a {
        font-size: 24px;
    }
    .team-2-grid .item .item-content {
        margin-top: 34px;
    }
    .team-2-grid .item .item-content h4 {
        font-size: 25px;
        line-height: 31px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .team-2-grid .item .item-content h6 {
        font-size: 16px;
    }
    .team-2-grid .item .item-content h4::before {
        height: 20px;
        margin-bottom: -3px;
    }
    .team-2-grid .item .item-content>* {
        padding-left: 22px !important;
    }
    .team-3-grid .image img {
        height: 370px;
    }
    .team-3-grid .row>div {
        margin-bottom: 45px;
    }
    .team-3-grid .row>div:nth-last-of-type(1),
    .team-3-grid .row>div:nth-last-of-type(2),
    .team-3-grid .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .team-3-grid .image .overlay .social-icon a {
        font-size: 24px;
    }
    .team-3-grid .item .item-content {
        margin-top: 24px;
    }
    .team-3-grid .item .item-content>* {
        padding-left: 22px !important;
    }
    /* .team-list-style-1 .item .image, */
    .team-list-style-1 .item .image img {
        height: 100%
    }
    .team-list-style-1 .item .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    .team-list-style-1 .item .row>div {
        padding-left: 0px;
        padding-right: 0px;
    }
    .team-list-style-1 .item .row>div:first-of-type {
        width: 45%;
    }
    .team-list-style-1 .item .row>div:last-of-type {
        width: 55%;
    }
    .team-list-style-2 .container>.row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .team-list-style-2 .container>.row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .team-list-style-2 .container>.row>div:nth-last-of-type(1),
    .team-list-style-2 .container>.row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .team-subpage .full-width .profile .image,
    .team-subpage .full-width .profile .image img {
        height: 550px
    }
    .team-subpage .full-width .profile .row {
        margin-left: 0px;
        margin-right: 0px;
        align-items: center;
    }
    .team-subpage .full-width .profile .row>div {
        padding-left: 0px;
        padding-right: 0px;
    }
    .team-subpage.sidebar-page .full-width .profile .image,
    .team-subpage.sidebar-page .full-width .profile .image img {
        height: 440px;
    }
    .blog-3-grid .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .blog-3-grid .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .blog-3-grid.blog-style-1 .row>div:nth-last-of-type(1),
    .blog-3-grid.blog-style-1 .row>div:nth-last-of-type(2),
    .blog-3-grid.blog-style-1 .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .blog-4-grid .row {
        margin-left: -9px;
        margin-right: -9px;
    }
    .blog-4-grid .row>div {
        padding-left: 9px;
        padding-right: 9px;
    }
    .blog-4-grid.blog-style-1 .row>div:nth-last-of-type(1),
    .blog-4-grid.blog-style-1 .row>div:nth-last-of-type(2),
    .blog-4-grid.blog-style-1 .row>div:nth-last-of-type(3),
    .blog-4-grid.blog-style-1 .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    /* Pages */
    .about-us-style-1 .image img {
        height: 579px;
    }
    .gallery-2-grid .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .gallery-2-grid .row>div {
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 50px;
    }
    .gallery-2-grid .row>div:nth-last-of-type(1),
    .gallery-2-grid .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .gallery-2-grid .item img {
        height: 460px;
    }
    .gallery-2-grid.gallery-grid .overlay {
        padding: 25px;
    }
    .gallery-2-grid.gallery-grid .item-content-wrapper {
        padding: 25px;
    }
    .gallery-3-grid .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .gallery-3-grid .row>div {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .gallery-3-grid .row>div:nth-last-of-type(1),
    .gallery-3-grid .row>div:nth-last-of-type(2),
    .gallery-3-grid .row>div:nth-last-of-type(3) {
        margin-bottom: 0px;
    }
    .gallery-3-grid .item img {
        height: 345px;
    }
    .gallery-4-grid .row {
        margin-left: -9px;
        margin-right: -9px;
    }
    .gallery-4-grid .row>div {
        padding-left: 9px;
        padding-right: 9px;
        margin-bottom: 18px;
    }
    .gallery-4-grid .row>div:nth-last-of-type(1),
    .gallery-4-grid .row>div:nth-last-of-type(2),
    .gallery-4-grid .row>div:nth-last-of-type(3),
    .gallery-4-grid .row>div:nth-last-of-type(4) {
        margin-bottom: 0px;
    }
    .gallery-4-grid .item img {
        height: 250px;
    }
    .gallery-full-width .full-width .details {
        position: relative;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-top: -65px;
    }
    .gallery-full-width.sidebar-page .full-width>img {
        height: 440px;
    }
    .contact-style-1 .contact-details .detail {
        max-width: 260px;
    }
    .about-us-page-2 .row {
        margin-left: -30px;
        margin-right: -30px;
    }
    .about-us-page-2 .row>div {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about-us-page-2 .image img {
        height: 620px;
    }
    .awards-page .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .awards-page .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .awards-page .row>div:nth-last-of-type(1),
    .awards-page .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .testimonials-page .item * {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .media-page .video-style-2 .item {
        padding-left: 40px;
    }
    /* [class*="form-style-"] {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    } */
    .form-style-2 {
        width: 100%;
    }
    .error-page .content h2 {
        /* margin-right: -18px; */
        font-size: 30px;
    }
    .search-result form .btn-primary {
        min-width: 145px;
    }
    .search-result form .btn-primary:hover {
        background-color: var(--bs-secondary);
    }
    .coming-maintenance .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
    .coming-maintenance .cs-counter {
        justify-content: flex-start;
    }
    .home-banner-3 .row>div:first-of-type {
        padding-top: 100px;
        align-self: flex-start;
    }
    .home-banner-3 .cs-counter {
        justify-content: flex-end;
    }
    /* .home-banner-3 .cs-counter .cs-date {
        margin-right: 34px;
    } */
    .home-banner-3 .cs-counter .cs-date:last-of-type {
        margin-right: 0px;
    }
    /* .event-schedules-2 .event-list .row>div:first-of-type {
        width: 19%;
    } */
    /* .event-schedules-2 .event-list .row>div:last-of-type {
        width: 81%;
    } */
    .event-schedules-2 .event-lists {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-1 .item {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-1 .date {
        min-width: 260px;
    }
    .event-schedules .event-lists .row>:nth-of-type(1) {
        width: 23%;
    }
    .event-schedules .event-lists .row>:nth-of-type(2) {
        flex: 1;
    }
    .sidebar-page .event-schedules .event-lists .row>:nth-of-type(1) {
        width: 33.33333333%;
    }
    .history-page-1 .row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .history-page-1 .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }
    .history-page-1 .row>div:nth-last-child(1),
    .history-page-1 .row>div:nth-last-child(2) {
        margin-bottom: 0px;
    }
    .team-2-grid.team-style-2 .row>div {
        margin-bottom: 50px;
    }
    .team-2-grid .row>div:nth-last-of-type(1),
    .team-2-grid .row>div:nth-last-of-type(2) {
        margin-bottom: 0px;
    }



    .testimonials .slider-style-2 .item {
        width: 100%;
    }
    .slider-style-3 .item hr {
        width: 320px;
    }
    .about-us-1 .home-1-title>span span:last-of-type {
        margin-bottom: -15px;
    }
    .blog-4-grid .row>div {
        margin-bottom: 45px;
    }
    .blog-4-grid .row>div:nth-last-of-type(-n+4) {
        margin-bottom: 0px;
    }
    .contact-style-1 .form-style-1 .row {
        margin-left: -20px;
        margin-right: -20px;
    }
    .contact-style-1 .form-style-1 .row>div {
        padding-left: 20px;
        padding-right: 20px;
    }
    .clients-2 .client {
        min-width: 277px;
    }
    [class*="grid-style-"] .row>div {
        margin-bottom: 0px;
    }
    .icons-list {
        justify-content: flex-start;
    }
    .header .dropdown-menu a:hover svg path {
        fill: #FFF;
    }
 }



 @media (orientation: landscape) {
    .header .navbar-collapse {
        min-height: unset;
        max-height: 250px;
    }
  }
  .alert svg {
    height: 75px;
}

a.btn-ct-panel {
    width: 100%;
    max-width: 100%;
    background-color: #fd4c66;
    margin-top: 20px !important;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    border: unset;
    padding: 10px;
}
a.btn-ct-panel.btn.btn-primary:hover {
    background-color: #331391 ;
}
.color-schemes-reset-color {
  display: flex;
  margin-bottom: 20px;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#pt-reset-color {
    color: blueviolet;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    background-color: unset;
    border: 1px solid blueviolet;
    border-radius: 4px;
    box-shadow: unset;
    width: max-content !important;
    height: max-content !important;
}
.color-schemes-reset-color .title{
    margin-top: 7px;
}
a.btn-ct-panel.btn.btn-primary {
    margin-bottom: 9px;
}
nav.tabs {
    background-color: #400e83;
    margin-bottom: 0;
    padding-top: 100px;
}
nav.tabs a{
    color: white;
}
@media only screen and (max-width: 600px) {
    .node {
        background: transparent !important; 
    }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
    .banner-slider-wrapper .owl-carousel .owl-item img {
        height: 615px;
    }
}
@media (max-width: 767.98px) {
    .banner-slider-wrapper .owl-carousel .owl-item img {
        height: 740px;
    }
}