@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesque-Black.eot"); /* IE9 Compat Modes */
    src: url("../fonts/GalanoGrotesque-Black.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
         url("../fonts/GalanoGrotesque-Black.woff2") format("woff2"), /* Super Modern Browsers */
         url("../fonts/GalanoGrotesque-Black.woff") format("woff"), /* Pretty Modern Browsers */
         url("../fonts/GalanoGrotesque-Black.ttf") format("truetype"); /* Safari, Android, iOS */
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesque-Light.eot");
    src: url("../fonts/GalanoGrotesque-Light.eot?#iefix") format("embedded-opentype"),
         url("../fonts/GalanoGrotesque-Light.woff2") format("woff2"),
         url("../fonts/GalanoGrotesque-Light.woff") format("woff"),
         url("../fonts/GalanoGrotesque-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesque-Medium.eot");
    src: url("../fonts/GalanoGrotesque-Medium.eot?#iefix") format("embedded-opentype"),
         url("../fonts/GalanoGrotesque-Medium.woff2") format("woff2"),
         url("../fonts/GalanoGrotesque-Medium.woff") format("woff"),
         url("../fonts/GalanoGrotesque-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesque-SemiBold.eot");
    src: url("../fonts/GalanoGrotesque-SemiBold.eot?#iefix") format("embedded-opentype"),
         url("../fonts/GalanoGrotesque-SemiBold.woff2") format("woff2"),
         url("../fonts/GalanoGrotesque-SemiBold.woff") format("woff"),
         url("../fonts/GalanoGrotesque-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesque-ExtraBold.eot');
    src: url('../fonts/GalanoGrotesque-ExtraBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/GalanoGrotesque-ExtraBold.woff2') format('woff2'),
         url('../fonts/GalanoGrotesque-ExtraBold.woff') format('woff'),
         url('../fonts/GalanoGrotesque-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


body {
    font-family: "Galano Grotesque", sans-serif;
    background-color: #FCFCFD;
}

h1 {
    font-weight: 900;
    font-size: 3.5rem;
    color: #1b506d;
}

h2 {
    font-weight: 600;
    font-size: 3rem;
    color: #1b506d;
}

p {
    font-weight: 300;
    font-size: 1.4rem;
    color: #344054;
}

a {
    color: #181818;
    text-decoration: none;
}
a:hover {
    color: #3d9fba;
}

.navbar-toggler {
    border: none;
    background: none;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #1d2939;
}

.navbar-toggler.toggled .top-bar {
    transform: rotate(-45deg) translate(-5px, 6px); 
}

.navbar-toggler.toggled .middle-bar {
    opacity: 0;
}

.navbar-toggler.toggled .bottom-bar {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.mask-custom {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link {
    color: #1d2939 !important;
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after,
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #3d9fba;

    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #3d9fba !important;
}

.footer-link {
    color: #181818;
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
}

.footer-link:hover {
    color: #3d9fba;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Reset padding to ensure accurate centering */
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #181818;
    border: 1px solid #667085;
    border-radius: 50%;
    transition: color 0.3s, border-color 0.3s;
}

.social-icon i {
    font-size: 1.2rem; /* Adjust size to fill the circle appropriately */
    line-height: 0; /* Remove any extra line-height */
}

.social-icon:hover {
    color: #3d9fba;
    background-color: #edf7fa;
    border-color: #3d9fba;
}

@media only screen and (max-width: 600px) {

    h1 {
        font-size: 3.3rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    p {
        font-size: 1.3rem;
    }
}

.footer-heading {
    color: #3d9fba;
    font-weight: 800;
    font-size: 2rem;
}

/* For Webkit browsers like Chrome, Safari */
::-webkit-scrollbar {
    width: 6px;
    /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent;
    /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: rgb(61, 159, 186, 0.5);
    /* Background color of the scrollbar thumb */
    border-radius: 6px;
    /* Round corners of the scrollbar thumb */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    /* Adjust the width of the scrollbar */
    scrollbar-color: rgb(61, 159, 186, 0.5) transparent;
    /* Scrollbar thumb and track colors */
}

*:hover,
*:active,
*:focus {
    scrollbar-color: #3d9fba transparent;
    /* Solid color thumb */
}

::selection {
    background-color: #3d9fba;
    color: #ffffff;
  }

  .preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999; /* Make sure the preloader appears above everything else */
    opacity: 1; /* Initially visible */
    transition: opacity 0.5s; 
}
.loaded .preloader {
    opacity: 0; /* Fade out the preloader */
    pointer-events: none; /* Disable pointer events on the preloader */
}

/* Styles for preloader image */
.preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.language-switcher {
    position: relative;
    display: inline-block;
    /*margin-top: 1.5vh;*/
}

.flag-dropdown {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.flags-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 30px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 0 15px;
    left: 50%;
    transform: translateX(-50%);
    top: 32px;
    border-radius: 16px;
}

.flag-option {
    width: 30px;
    height: 30px;
    display: block;
    margin: 15px 0;
    border-radius: 50%;
    object-fit: cover;
}

.flag-option:hover {
    background-color: #949494;
}

.language-switcher:hover .flags-dropdown-content {
    display: block;
}