@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../fonts/gilroy-full/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Regular.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Semibold.eot');
    src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
        url('../fonts/gilroy-full/Gilroy-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Semibold.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Semibold.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../fonts/gilroy-full/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Bold.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --theme-primary: #EC2024;
    --theme-secondary: #F8F9FA;
    --theme-blue: #112A54;
    --theme-dark: #0C0E15;
    --text-black: #0C0E15;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-grey: #6A6D76;
    --radius-20: 20px;
}

.theme-primary {
    background-color: var(--theme-primary);
}

.theme-secondary {
    background-color: var(--theme-secondary);
}

.theme-blue {
    background-color: var(--theme-blue);
}

.theme-dark {
    background-color: var(--theme-dark);
}

.text-black {
    color: var(--text-black);
}

.black-color {
    color: var(--black-color);
}

.white-color {
    color: var(--white-color);
}

.text-grey {
    color: var(--text-grey);
}

body {
    font-family: 'Gilroy' !important;
    font-weight: 400;
    font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
    color: var(--theme-dark);
}

.container {
    max-width: 1140px;
}

img {
    max-width: 100%;
}

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
    line-height: normal;
    color: inherit;
    font-weight: 700;
    font-family: 'Gilroy' !important;
}

a {
    text-decoration: none !important;
}

p {
    line-height: clamp(1.625rem, 1.5536rem + 0.3571vw, 1.875rem);
}

.w-normal {
    font-weight: 400 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

.w-semibold {
    font-weight: 600 !important;
}

.w-bold {
    font-weight: 700 !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.spacer-xl {
    padding-block: 90px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.br-0 {
    border-radius: 0px;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.padding-right {
    --page-width: 1600px;
    padding-right: calc(50% - (var(--page-width) / 2) + 12px);
}

.button {
    padding: 16px 24px;
    font-weight: 600;
    display: inline-flex;
    gap: 18px;
    align-items: center;
    transition: all .3s ease;
    border-radius: 50px;
}

.button svg {
    animation: arrow-move 0.5s infinite alternate;
}

@keyframes arrow-move {
    0% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(-3px);
    }
}

.button-bordered {
    border: 1px solid transparent !important;
    color: var(--white-color) !important;
    background: var(--theme-primary);
}

.button-bordered:hover {
    background-color: var(--white-color);
    color: var(--theme-primary) !important;
    border-color: var(--theme-primary);
}

.button-primary {
    background-color: var(--theme-primary) !important;
    color: var(--white-color);
}

.button-primary:hover {
    background-color: var(--theme-blue) !important;
    color: var(--white-color);
}

.button-primary:hover svg path{
    stroke: var(--white-color);
}

.button-white {
    background-color: var(--white-color) !important;
    color: var(--text-black);
}

.button-white:hover {
    background-color: var(--theme-blue) !important;
    color: var(--white-color);
}

.button-white:hover svg path{
    fill: var(--white-color);
}


/* Lenis */

html.lenis, html.lenis body {
    height: auto;
}
  
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
  
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
  
.lenis.lenis-stopped {
    overflow: hidden;
}
  
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Social Lists */

.form-social {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 30px;
}

.form-social a,
.form-social a:hover {
    color: var(--white-color);
    transition: all 0.3s;
}

/* Commen Header */

.site-header {
    background-color: var(--white-color);
    position: sticky;
    top: 0px;
    z-index: 10;
}

.header-top {
    color: var(--white-color);
    background-color: var(--theme-dark);
    padding: 14px 0;
    border-bottom: 0.5px solid #DBDFEC;
}

.logo img {
    width: 100%;
    max-width: 210px;
    object-fit: cover;
}

.phone-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mail-link,
.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.navigation-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.navigation-nav .nav-link {
    font-size: 20px;
    font-weight: 600;
}

.navbar-nav {
    display: flex;
    gap: 50px;
    flex-direction: row;
}

.navbar-toggler {
    display: none;
}

#nav-icon1 {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 18px;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    right: 0;
    height: 3px;
    width: 100%;
    background: var(--theme-blue);
    border-radius: 2px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
	top: 3px;
	width: 24px;
}

#nav-icon1 span:nth-child(2) {
	top: 12px;
	width: 21px;
}

#nav-icon1 span:nth-child(3) {
	top: 20px;
	width: 17px;
    background-color: var(--theme-primary);
}

/* Mega Menu */

.dropdown.megamenu {
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 80%;
    margin: auto;
    background: var(--white-color);
    border-radius: 0 0 10px 10px;
    padding: 30px 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 2%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown.megamenu.active {
    visibility: visible;
    opacity: 1;
}

.nav-item i {
    transition: all 0.3s;
    font-size: 15px;
}

.nav-item.active i {
    rotate: -180deg;
}

.dropdown.megamenu .nav-tabs {
    width: 100%;
    border: none;
    display: flex;
    gap: 20px;
    border-right: 1px solid #dddddd50;
    padding: 0 20px 0 0;
}

.dropdown.megamenu .nav-tabs li {
    width: 100%;
}

.dropdown.megamenu .nav-tabs li .nav-link {
    width: 100%;
    border: unset !important;
    color: var(--text-black);
    text-align: left;
    font-size: 20px;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
}

.dropdown.megamenu .nav-tabs li .nav-link:hover,
.dropdown.megamenu .nav-tabs li .nav-link.active {
    background-color: #ec20240d;
}

.dropdown.megamenu .nav-tabs .nav-link p {
    font-size: 16px;
}

.megamenu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.megamenu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 30px 0 0;
    border-right: 1px solid #dddddd50;
}

.megamenu-wrapper .mega-nav-link {
    padding: 18px 18px;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s;
    width: 100%;
    display: flex;
}

.megamenu-wrapper .mega-nav-link:hover {
    background-color: #ec20240d;
}

.megamenu-content ul {
    list-style: disc;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.submenu {
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
    width: 180px;
    margin: auto;
    background: var(--white-color);
    border-radius: 0 0 10px 10px;
    padding: 20px 20px 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 2%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 60px;
    z-index: 1;
}

.submenu .nav-link {
    border-bottom: 1px solid #dddddd50;
}

.submenu ul li:last-child .nav-link {
    border-bottom: unset;
}

.mobile-navbar-nav {
    display: none;
}


/* Footer Commen */

.footer {
    background: var(--theme-blue);
    color: var(--white-color);
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-link li a {
    color: #ABBCDE;
    display: flex;
    transition: all 0.3s;
}

.footer-link li a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-award {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-award img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-20);
}

.footer-bottom {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #FFFFFF4D;
}

/* Faq Block */

.new-faq {
    border-top: 1px solid #BEDBE0;
}

.new-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #BEDBE0;
    padding: 28px 0px;
    border-radius: 0px;
}

.new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
    color: var(--black-color);
    font-weight: 700;
    background: none !important;
    padding: 0px;
    box-shadow: none !important;
}

.new-faq .accordion-body {
    padding: 0px;
    margin-top: 20px;
    font-size: 18px;
    max-width: 1300px;
}

.new-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40 ' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.new-faq .accordion-button::after {
    transition: all 0.5s;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

/* Font Responsive */

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 2.25rem;
    }
    h3, .h3 {
        font-size: 1.875rem;
    }
    h4, .h4 {
        font-size: 1.5rem;
    }
    h5, .h5 {
        font-size: 1.125rem;
    }
    h6, .h6, .text-md {
        font-size: 1rem;
    }
    body {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: calc(2.25rem + 0.833vw);
    }
    h2, .h2 {
        font-size: calc(1.875rem + 0.417vw);
    }
    h3, .h3 {
        font-size: calc(1.5rem + 0.417vw);
    }
    h4, .h4 {
        font-size: calc(1.25rem + 0.235vw);
    }
    h5, .h5 {
        font-size: calc(1.125rem + 0.235vw);
    }
    h6, .h6, .text-md {
        font-size: calc(0.875rem + 0.139vw);
    }
    body {
        font-size: calc(1rem + 0.139vw);
    }
}

@media (min-width: 1700px) {
    h1, .h1 {
        font-size: calc(2.25rem + 1.25vw);
    }
    h2, .h2 {
        font-size: calc(1.875rem + 0.938vw);
    }
    h3, .h3 {
        font-size: calc(1.5rem + 0.625vw);
    }
    h4, .h4 {
        font-size: calc(1.25rem + 0.521vw);
    }
    h5, .h5 {
        font-size: calc(1.125rem + 0.313vw);
    }
    h6, .h6, .text-md {
        font-size: calc(0.875rem + 0.208vw);
    }
    body {
        font-size: calc(1rem + 0.208vw);
    }
}

@media (max-width: 991px) {
    h1, .h1 {
        font-size: 2rem;
    }
    h2, .h2 {
        font-size: 1.875rem;
    }
    h3, .h3 {
        font-size: 1.5rem;
    }
    h4, .h4 {
        font-size: 1.50rem;
    }
    h5, .h5 {
        font-size: 1.125rem;
    }
    h6, .h6, .text-md {
        font-size: 0.875rem;
    }
    body {
        font-size: 0.875rem;
    }
}


@media (min-width: 1600px) {
    .container {
        max-width: 1600px !important;
        width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 1200px !important;
        width: 100%;
    }

    /* .padding-left,
    .padding-right {
        padding-inline: 12px;
    } */

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media screen and (max-width: 1440px) {

    .award-block img {
        max-width: 200px;
        height: 30px !important;
    }
}

@media screen and (max-width: 1200px) {

    .navbar-nav {
        display: none;
    }

    .mobile-navbar-nav {
        display: flex;
        gap: 5px;
        position: fixed;
        flex-direction: column;
        top: -100%;
        height: auto;
        background-color: var(--theme-secondary);
        width: 100%;
        max-width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        padding: 10px 20px;
        transition: all 0.3s;
    }

    .mobile-navbar-nav .accordion-button {
        background-color: var(--theme-secondary);
    }

    .site-header.active .mobile-navbar-nav {
        top: 158px;
    }

    .mobile-navbar-nav .nav-link {
        color: #212529 !important;
        font-weight: 400;
        font-size: 16px;
        padding: 12px 20px;
        border-bottom: 1px solid #dddddd;
    }

    .mobile-navbar-nav .nav-link {
        color: #212529 !important;
        font-weight: 400;
        font-size: 16px;
        padding: 12px 20px;
        border-bottom: 1px solid #dddddd;
    }

    .site-header.active .mobile-navbar-nav li:last-child .nav-link {
        border: none !important;
    }

    .border-acc {
        border-bottom: 1px solid #dddddd;
    }

    .navbar-toggler {
        display: block;
    }

    .mobile-navbar-nav .accordion-body {
        height: 200px;
        overflow-y: scroll;
        padding: 15px 8px;
    }

    .megamenu-wrapper {
        border-right: unset;
        padding: 0 12px;
    }

    .megamenu-wrapper .mega-nav-link {
        padding: 14px 12px;
        font-size: 14px;
    }

    .mobile-navbar-nav .accordion-button:not(.collapsed) {
        color: #0c0e15;
        background-color: #ec20240d;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
        font-weight: 600;
    }
}

@media screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .spacer-xl {
        padding-block: 70px;
    }

    .mb-50 {
        margin-bottom: 30px;
    }

    .award-list {
        grid-template-columns: repeat(3, 1fr);
        display: grid !important;
        gap: 40px 20px !important;
    }

    .award-block {
        text-align: center;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .site-header.active .mobile-navbar-nav {
        top: 190px;
    }
}

@media screen and (max-width: 767px) {

    .new-faq .accordion-item h2.accordion-header button {
        font-size: 20px !important;
        gap: 18px;
    }

    .mb-20 {
        margin-bottom: 15px;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    .award-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-award {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-award img {
        max-width: 180px;
    }

    .footer .logo {
        display: flex;
    }
    
    .logo img {
        margin: auto;
    }
}

@media (max-width: 575px) {

    header .logo {
        width: 100%;
        max-width: 140px;
    }

    .site-header.active .mobile-navbar-nav {
        top: 128px;
    }

    .new-faq .accordion-item h2.accordion-header button {
        font-size: 18px !important;
        gap: 12px;
    }

    .phone-list,
    .navigation-nav .button-primary  {
        display: none;
    }

    .footer-award {
        flex-direction: column;
    }

    .footer-award img {
        max-width: 100%;
    }
}