/* ___ costomize bootstrap ___ */

/* _ loading _ */
body.is-loading .navbar {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.is-loaded .navbar {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
/* _ loading end _ */

/* _navbar _ */
.navbar {
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all 0.4s ease;
    display: none;
}

.navbar.navbar-fixed {
    position: fixed;
}

.navbar.visible {
    display: flex;
}

.navbar .link-gp {
    margin-right: -130px;
}

.navbar .input-group {
    width: 250px;
}

@media (max-width: 765px) {
    .navbar .input-group {
        width: 100% !important;
    }
}

.navbar .input-group .search-dropdown {
    display: none;
}

.navbar .input-group #search-bar:focus ~ .search-dropdown {
    border-radius: 5px;
    top: 48px;
    display: block;
}

.navbar .input-group #search-bar:focus ~ .search-dropdown .list-group-item {
    transition: 0.4s;
}

.navbar
    .input-group
    #search-bar:focus
    ~ .search-dropdown
    .list-group-item:hover {
    background-color: #eefff4;
}

.navbar .register-input-gp .language .change-language {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    pointer-events: none;
}

.navbar .register-input-gp .language .change-language.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar .register-input-gp .language .language-btn {
    width: 34px;
    height: 34px;
    cursor: pointer;
}
/* _navbar end _ */

/* ___ landing Page ___ */
.landing-page {
    position: relative;
}

.landing-page .popup-circle {
    position: fixed;
    z-index: 5;
    top: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #00c87a;
    box-shadow: -7px 6px 10px 6px rgb(0 0 0 / 46%);
    transition: 0.8s;
}

.landing-page .popup-circle.show {
    left: -90px;
}

.landing-page .popup-circle.hide {
    left: -310px;
}

.landing-page .popup-circle .popup-circle-icon {
    cursor: pointer;
    position: absolute;
    width: 35px;
    border-radius: 7px;
    background-color: #00c87a;
    right: -10px;
    top: 32%;
    color: white;
    box-shadow: -5px 6px 10px 6px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.landing-page .popup-circle .popup-circle-icon.to-show {
    box-shadow: 5px -5px 10px 6px rgba(0, 0, 0, 0.1);
    transform: rotate(180deg);
    right: -41px;
}

.landing-page .popup-circle .popup-circle-icon .svg {
    width: 100%;
    color: white;
}

.landing-page .popup-circle .popup-circle-content {
    z-index: 2;
    position: absolute;
    top: 28%;
    right: 42px;
    width: 160px;
}

.landing-page .popup-circle .popup-circle-content h4 {
    font-weight: bold;
}

.landing-page .popup-circle .popup-circle-content p {
    margin-bottom: 25px;
}

.landing-page .popup-circle .popup-circle-content .popup-circle-btn {
    text-decoration: none;
    color: white;
}

.landing-page .popup-circle .popup-circle-content .popup-circle-btn.wavy span {
    display: inline-block;
    animation: wave 2s infinite ease-in-out;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes wave {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.landing-page .landing-page-text-container .landing-page-title {
    font-size: 63px;
    font-weight: bold;
}

.landing-page .landing-page-text-container p {
    animation-duration: 1.4s;
}

.landing-page .landing-page-text-container div {
    animation-duration: 1.5s;
}

.landing-page .svg-icon-container {
    width: 100%;
    height: 100%;
    position: absolute;
}

.landing-page .svg-icon-container div {
    width: 80px;
    height: 80px;
    position: absolute;
}

.landing-page .svg-icon-container div:nth-child(1) {
    bottom: 20%;
    left: 15%;
}

.landing-page .svg-icon-container div:nth-child(2) {
    bottom: 14%;
    right: 11%;
}

.landing-page .svg-icon-container div:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 32%;
    right: 0%;
}

.landing-page .svg-icon-container div:nth-child(4) {
    top: 12%;
    left: 17%;
}

.landing-page .svg-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

/* ___ landing Page end ___ */

/* ___ about ___ */
.about-section {
    max-width: 1300px;
    margin: 70px auto 0 auto;
}

.about-section .lottie-animate {
    width: 100%;
    height: 100%;
}

.about-section .lottie-animate #lottie5 {
    width: 100%;
    height: 100%;
}

@media (max-width: 320px) {
    .landing-page .landing-page-text-container .landing-page-title {
        font-size: 50px;
    }
}

@media (max-width: 765px) {
    .navbar .link-gp {
        margin-right: 0px;
    }

    .landing-page {
        padding-top: 45px;
    }

    .landing-page .landing-page-text-container .landing-page-title {
        font-size: 63px;
    }

    .landing-page .svg-icon-container div {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (min-width: 992px) {
    .navbar .link-gp {
        margin-right: -130px;
    }
}