
@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/futura-pt/FuturaPT-Bold.woff2') format('woff2'),
        url('../fonts/futura-pt/FuturaPT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/futura-pt/FuturaPT-Medium.woff2') format('woff2'),
        url('../fonts/futura-pt/FuturaPT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {    
    --main_color: #1A3F70;
    --sec_color: #E7EEF4;
    --ter_color: #F8A23B;
    --quat_color: #7099C7;

    --headings_font: "Futura PT", serif;
    --body_font: "Inter", sans-serif;

    --main_spacer: clamp(30px, 10vh, 90px);
    --small_spacer: clamp(30px, 6vh, 50px);

    --large_headingFS: clamp(35px, 7vw, 60px);
    --main_headingFS: clamp(28px, 5vw, 50px);
    --sec_headingFS: clamp(24px, 5vw, 27px);
    --ter_headingFS: 23px;
    --quat_headingFS: 18px;
    --body_text: 16px;
}


* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*::-moz-selection {
    color: #fff;
    background-color: var(--main_color);
}

*::selection {
    color: #fff;
    background-color: var(--main_color);
}

body {
    margin: 0;
    padding: 0;    
    background-color: var(--body_bg, #fff);
    font-family: var(--body_font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: var(--headings_font);
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

p {
    color: inherit;
    margin-bottom: .5rem;
}

strong {
    font-weight: 600;
}

img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Target the specific number input and hide the spin buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox, you may need this additional CSS rule */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

button.accordion-button,
button.nav-link {
    white-space: normal;
}

button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

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

hr {
    border-color: #e4e4e4;
    opacity: 1;
}

.body_font {
    font-family: var(--body_font) !important;
}

.headings_font {
    font-family: var(--headings_font) !important;
}

.special_font {
    font-family: var(--speacial_font) !important;
}

.w-screen {
    width: 100dvw;
}

.max-w-full {
    max-width: 100%;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.h-screen {
    height: 100vh;
}

.main_spacer {
    padding-block: var(--main_spacer);
}

.main_spacer_top {
    padding-top: var(--main_spacer);
}

.main_spacer_bottom {
    padding-bottom: var(--main_spacer);
}

.small_spacer {
    padding-block: var(--small_spacer);
}

.small_spacer_top {
    padding-top: var(--small_spacer);
}

.small_spacer_bottom {
    padding-bottom: var(--small_spacer);
}

body h1, .main_heading {
    font-size: var(--main_headingFS);
}

body h2, .sec_heading {
    font-size: var(--sec_headingFS);
}

body h3, .ter_heading {
    font-size: var(--ter_headingFS);
}

h4, .quat_heading {
    font-size: var(--quat_headingFS);
}

h1.large_heading {
    font-size: var(--large_headingFS);
}

.text_xs {
    font-size: 13px;
}

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

.main_bg {
    color: #fff;
    background-color: var(--main_color);
}

.border_main {
    border-color: var(--main_color) !important;
}

.main_bg *::-moz-selection {
    color: var(--main_color);
    background-color: #fff;
}

.main_bg *::selection {
    color: var(--main_color);
    background-color: #fff;
}

.hover_main_color:hover {
    color: var(--main_color);
}

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

.sec_bg {
    background-color: var(--sec_color);
}

.sec_border {
    border-color: var(--sec_color) !important;
}

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

.ter_bg {
    background-color: var(--ter_color);
}

.quat_bg {
    background-color: var(--quat_color);
}

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

.quin_bg {
    background-color: var(--quin_color);
}

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

.text-underline {
    text-decoration: underline;
}

.min-h-screen {
    min-height: 100vh;
}

.row {
    margin-inline: 0;
}

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

.inset-0 {
    inset: 0;
}

.col_spacer {
    padding-inline: calc(var(--bs-gutter-x) * .5);
}

.swiper-slide {
    height: auto;
}

.aspect-ratio-1 {
    aspect-ratio: 1 / 1;
}

.stars {
    color: #F0AD4E;
}

.max-h-screen {
    max-height: 100vh;
}

.marqueeSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

/* ---------------------------------- Header ---------------------------------------------- */

header#site-header {
    z-index: 20;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

ul.main_list li * {
    margin: 0;
}

ul.main_list li {
    position: relative;
}

ul.main_list li a {
    transition: color .3s ease-in-out;
}

ul.main_list li a:hover,
ul.main_list li a.active {
    color: var(--ter_color);
}

ul.main_list > li > ul {
    position: absolute;
    padding: 0;
    list-style: unset;
    border-radius: 6px;
    z-index: 1;
    left: -5px;
    transform: translateY(20px);
    background-color: var(--sec_color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);    
    transition: clip-path .2s ease-in .1s, transform .2s ease-in;
}

ul.main_list > li:hover > ul {
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: clip-path .2s ease-in, transform .2s ease-in;
}

ul.main_list > li > ul li {
    padding: 14px;
}

ul.main_list > li > ul li a:hover {
    color: var(--main_color);
}

ul.main_list > li > ul li:last-child {
    padding-top: 0;
}


@media only screen and (max-width: 1200px) {
    header#site-header ul.main_list {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease-in-out, padding .4s ease-in;
    }
    #navBarToggler:checked + header#site-header {
        border-bottom: 2px solid var(--main_color);
    }
    #navBarToggler:checked + header#site-header * ul.main_list {
        padding: 20px 0;
        max-height: 100vh;
    }
}

/* ---------------------------------- Header END ---------------------------------------------- */

.min-h-view {
    min-height: calc(100vh - var(--header-height, 80px));
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

/* ---------------------------------- Global END ---------------------------------------------- */

/* ---------------------------------- UTILS  ---------------------------------------------- */

.bgImg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.bgImg img {
    height: 100%;
    object-fit: cover;
}

.bgImg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
}

.fixedBg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fixedBg.isIphone {
    background-attachment: unset;
}

.rowMargin {
    margin-inline: calc(-.5 * var(--bs-gutter-x));
}

/* ---------------------------------- UTILS END ---------------------------------------------- */

body > main > section {
    scroll-margin-top: var(--sticky-header-height, 80px);
}

header#site-header {
    background-color: #fff;
}

header#site-header .logo_wrapper {
    max-width: 200px;
    transition: max-width .3s ease-in-out;
}

body.scrolled header#site-header .logo_wrapper {
    max-width: 120px;
}

header.top_strip a {
    margin: 0;
}

header.top_strip a {
    font-size: 13px;
    opacity: .6;
}

.ter_btn {
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 12px 45px;
    background-color: var(--ter_color);
    border: 2px solid var(--ter_color);
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.ter_btn:hover {
    color: var(--ter_color);
    background-color: transparent;
}

body {
    color: #444444;
}

body h1 {
    font-weight: 700;
}

body h2 {
    font-weight: 600;
}

body h3 {
    font-weight: 500;
}

body p {
    color: rgba(86, 86, 86, 0.8);
}

body .text-white p,
body .main_bg p {
    color: #ffffffc4;
}

.team {
    height: 100%;
    text-align: center;
    background-color: #fff;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.team:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.team .social_links > a,
.social_links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    color: var(--main_color);
    align-items: center;
    justify-content: center;
    background-color: #eeeeee;
}

.sec_bg .social_links a {
    background-color: #fff;
}

.fixedBg {
    z-index: -1;
    background-image: url('../images/hero-bg.jpg');
}

.fixedBg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .7;
    pointer-events: none;
    background-color: #f3f3f3;
}

footer#site-footer ul {
    margin-top: 20px;
}

footer#site-footer ul li {
    margin-bottom: 10px;
}

footer#site-footer ul li a {
    opacity: .8;
    transition: color .3s ease-in, opacity .3s ease-in;
}

footer#site-footer ul li a:hover {
    opacity: 1;
    color: var(--ter_color);
}

.navBtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navBtns > li > button {
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    width: fit-content;
    padding: 12px 45px;
    color: var(--main_color);
    border: 2px solid var(--main_color);
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.navBtns > li > button:hover {
    color: #fff;
    background-color: var(--main_color);
}

.navBtns > li > button.active {
    color: #fff;
    background-color: var(--main_color);
}

.main_underline:hover {
    color: var(--ter_color);
}

@media only screen and (max-width: 767px) {
    .navBtns {
        gap: 10px;
    }
    .navBtns > li {
        width: 48%;
    }

    .navBtns > li > button {
        width: 100%;
        padding: 10px;
    }
}

.main_underline {
    position: relative;
    color: var(--main_color);
    transition: color .3s ease-in;
}

.main_underline::before,
.main_underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main_color);
}

.main_underline::after {
    width: 0;
    left: auto;
    right: 0;
    background-color: var(--ter_color);
    transition: width .3s ease-in;
}

.main_underline:hover::after {
    left: 0;
    width: 100%;
}

.blog {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.blog .blog_links {
    font-size: 12px;
    margin: 10px 0;
}

.partner {
    padding: 20px;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

@media only screen and (min-width: 767px) {
    .partnersSwiper .partner {
        padding-right: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .partnersSwiper .partner {
        padding-right: 70px;
    }
}

.inner_banner {
    min-height: 400px;
    display: flex;
    color: var(--sec_color);
    align-items: center;
}

.inner_banner a {
    color: var(--sec_color);
}

.inner_banner a.active {
    color: var(--ter_color);
}

.inner_banner h1 {
    text-transform: uppercase;
}

.contact_links li {
    margin-bottom: 10px;
}

.contact_links li a {
    opacity: .8;
    transition: color .3s ease-in, opacity .3s ease-in;   
}

.contact_links li a:hover {
    opacity: 1;
    color: var(--main_color);
}

.mainForm input,
.mainForm textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    resize: none;
    border: 1px solid var(--main_color);
}

.mainForm button {
    border-radius: 6px;
    padding: 10px 20px;
    background-color: var(--ter_color);
}

.map_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-color: var(--sec_color);
}


.clientsSwiper .partner {
    background-color: var(--sec_color);
}

.sec_bg .clientsSwiper .partner {
    background-color: #fff;
}



body > main > section ul {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

body > main > section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

body > main > section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--main_color);    
}

.specs .icon_wrapper {
    max-width: 40px;    
}
