/*
html {
    scroll-behavior: smooth;
}

body {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
*/
a {
    text-decoration: none;
}

a:hover {
    color: #80c792;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 1000 !important;
    height: 60px;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: #5cb874;
}

#header .logo img {
    max-height: 40px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    z-index: 1000 !important;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: self-start;
}

@media only screen and (max-width: 1680px) {
    /* Custom styles for screens with a width of 1680px or less  menu*/
    .navbar {
        align-items: center;
        justify-content: flex-start;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: contents;
        list-style: none;
    }

}

.global-search-box {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media only screen and (min-width: 768px) {
    .global-search-box {
        width: 650px;
    }

    .tk3-large-text {
        width: 650px;
    }

    .tk3-container-large-text {
        margin-top: 20px;
    }

    .tk3-img-center {
        text-align: center !important;
    }

}

@media only screen and (min-width: 1366px) {
    .global-search-box {
        width: 900px;
    }

    .tk3-large-text {
        width: 900px;
    }

    .tk3-container-large-text {
        margin-top: 40px;
    }

    .tk3-border-right {
        border-right: 2px solid #f1f1f1;
    }
}

@media only screen and (min-width: 1920px) {
    .global-search-box {
        width: 1050px;
    }

    .tk3-large-text {
        width: 1050px;
    }

    .tk3-container-large-text {
        margin-top: 100px;
    }

    .tk3-border-right {
        border-right: 2px solid #f1f1f1;
    }
}

.tk3-container-large-text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50px;
    right: 50px;
    top: 35% !important;
    z-index: 99999 !important;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 10px 0 10px 30px;*/
    padding: 10px 10px 10px 10px;
    font-size: 14px;
    white-space: nowrap;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #5cb874;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    color: #5cb874;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    border: 2px solid #5cb874;
    font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #5cb874;
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    /*left: 14px; */
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    /*z-index: 99;*/
    z-index: 1000;
    /*opacity: 0;*/
    opacity: 1 !important;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    /*TIP*/
    background-color: whitesmoke;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #5cb874;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    left: 0;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    /*left: calc(100% - 30px);*/
    left: calc(100%);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        /*left: -90%;*/
        left: 100%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        /*left: -100%;*/
        left: 100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .tk3-large-text {
        display: none !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
    background-color: whitesmoke;
    opacity: 1;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #5cb874;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #5cb874;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Slide land page Section
--------------------------------------------------------------*/
#tk3-slide {
    width: 100%;
    height: 100vh;
    background-color: rgba(9, 9, 9, 0.8);
    /*overflow: hidden;*/
    /*position: relative;*/
}

#tk3-slide .carousel-item {
    height: 100vh;
    /*height:100%;*/
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#tk3-slide .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#tk3-slide .carousel-indicators li.active {
    opacity: 1;
    background: #5cb874;
}


/*#hero .carousel,*/
/*#hero .carousel-inner,*/
/*#hero .carousel-item,*/
/*#hero .carousel-item::before {*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*}*/

/*#hero .carousel-item::before {*/
/*    content: "";*/
/*    !*background-color: rgba(45, 103, 60, 0.8); *!*/
/*}*/

/*.carousel-container {*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    bottom: 0;*/
/*    top: 0;*/
/*}*/

/*#hero h2 {*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    font-weight: 700;*/
/*}*/

/*#hero p {*/
/*    -webkit-animation-delay: 0.4s;*/
/*    animation-delay: 0.4s;*/
/*    margin: 0 auto 30px auto;*/
/*    color: #fff;*/
/*}*/

/*#hero .carousel-inner .carousel-item {*/
/*    transition-property: opacity;*/
/*    background-position: center top;*/
/*}*/

/*#hero .carousel-inner .carousel-item,*/
/*#hero .carousel-inner .active.carousel-item-start,*/
/*#hero .carousel-inner .active.carousel-item-end {*/
/*    opacity: 0;*/
/*}*/

/*#hero .carousel-inner .active,*/
/*#hero .carousel-inner .carousel-item-next.carousel-item-start,*/
/*#hero .carousel-inner .carousel-item-prev.carousel-item-end {*/
/*    opacity: 3;*/
/*    transition: 0.5s;*/
/*}*/

/*#hero .carousel-control-next-icon,*/
/*#hero .carousel-control-prev-icon {*/
/*    background: none;*/
/*    font-size: 30px;*/
/*    line-height: 0;*/
/*    width: auto;*/
/*    height: auto;*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    border-radius: 50px;*/
/*    transition: 0.3s;*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*    width: 54px;*/
/*    height: 54px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*#hero .carousel-control-next-icon:hover,*/
/*#hero .carousel-control-prev-icon:hover {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*}*/


/*#hero .btn-get-started {*/
/*    font-family: "Raleway", sans-serif;*/
/*    font-weight: 500;*/
/*    font-size: 14px;*/
/*    letter-spacing: 1px;*/
/*    display: inline-block;*/
/*    padding: 14px 32px;*/
/*    border-radius: 4px;*/
/*    transition: 0.5s;*/
/*    line-height: 1;*/
/*    color: #fff;*/
/*    -webkit-animation-delay: 0.8s;*/
/*    animation-delay: 0.8s;*/
/*    background: #5cb874;*/
/*}*/

/*#hero .btn-get-started:hover {*/
/*    background: #6ec083;*/
/*}*/


/*--------------------------------------------------------------
# Slide show land page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    padding: 30px 0;
}


#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #5cb874;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #449d5b;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}


.select2-results__option--highlighted {
    background-color: #F3F2F2 !important;
    color: #000000 !important;
}

.required label::after {
    content: "*";
    color: red; /* Adjust color as needed */
    margin-left: 5px; /* Adjust spacing as needed */
}


.circle-language {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
}

.circle-language .img-language {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* start dark google translate theme */
div#google_translate_element div.goog-te-gadget-simple {
    /*background-color: #333;*/
    /*border-color: #222;*/
    border: none;
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
    /*color: #ccc;*/
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span:hover {
    /*color:#eee;*/
}