/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --prim: #f9f9f9;
    --second: #2c94bb;
    --second2: #055c9d;
    --third: #585858;
    --black: #000;
}

body {
    background-color: #fff;
    /*  */
}

body * {
    font-family: "Alexandria", sans-serif;
    color: var(--third);
    /*  */
}

a {
    color: var(--third);
    text-decoration: none;
}

a:hover {
    color: var(--second);
    text-decoration: none;
}

.blue-color {
    color: var(--second);
}

.bntrip-btn-primary {
    position: relative;
    display: block;
    background-color: var(--second);
    border-radius: 15px;
    font-size: 18px;
    color: #fff;
    border: 1px solid var(--second);
    padding: 20px;
    transition: 0.2s;
    overflow: hidden;
    text-align: center;
}

.bntrip-btn-secondary {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 15px;
    font-size: 18px;
    color: var(--second);
    border: 1px solid var(--second);
    padding: 20px;
    overflow: hidden;
}

/*//////////////////*/

.bntrip-btn-primary:after {
    position: absolute;
    content: "";
    top: 0;
    right: 1px;
    width: 0;
    height: 100%;
    background: var(--prim);
    transition: all 0.25s;
    border-radius: 15px;
}

.bntrip-btn-primary:hover span {
    color: var(--second) !important;
}

.bntrip-btn-primary:hover:after {
    width: 100%;
}

.bntrip-btn-primary span {
    color: #fff;
    position: relative;
    z-index: 2;
}

.bntrip-btn-secondary:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--second);
    transition: all 0.25s;
    border-radius: 15px;
}

.bntrip-btn-secondary:hover span {
    color: #fff !important;
}

.bntrip-btn-secondary:hover:after {
    width: 100%;
}

.bntrip-btn-secondary span {
    color: var(--second);
    position: relative;
    z-index: 2;
}

/*//////////////////*/

.trip-btns {
    flex-direction: row;
    gap: 15px;
}

p {
    font-size: 16px;
    color: var(--third);
}

b {
    font-weight: unset;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--second);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.2s;
}

.back-to-top:hover {
    background: var(--second);
    bottom: 30px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

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

#header {
    height: 105px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(42, 44, 57, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.479);
    backdrop-filter: blur(5px);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 95.4px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
    height: 105px;
    background-color: transparent;
    padding-top: 5px;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    align-items: start;
    padding-top: 10px;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px 7px 15px;
    margin-left: 5px;
    font-size: 16px;
    color: #8e8e8e;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
    font-weight: 300;
}

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

.navbar a:hover,
.navbar a:focus,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--second) !important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
}

.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: #fff;
}

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

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    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%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: var(--third);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    /* .navbar ul {
        display: none;
    }*/
    #header .logo img {
        max-height: 40px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20, 21, 28, 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: 0;
    right: 0;
    bottom: 0;
    padding: 0 50px;
    left: px;
    padding: 0 50px 0 0;
    border-radius: 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--third);
}

.navbar-mobile .getstarted {
    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: #fff;
}

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

.background-text {
    font-size: 50px;
    color: #f0f0f0;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}

#hero .bg-prim {
    background-color: var(--prim);
    border-radius: 50px;
    padding: 50px 20px;
}

.hero-images {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 400px;
}

#hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    position: relative;
    padding-top: 70px;
}

#hero .header_card {
    color: var(--black);
    margin-bottom: 30px;
    font-size: 18px;
}

#hero h1 {
    color: var(--black);
    margin-bottom: 25px;
    font-size: 58px;
    font-weight: 600;
    line-height: 140%;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #ef6603;
}

#hero .btn-get-started:hover {
    background: #ef6603;
    color: #fff;
    text-decoration: none;
}

#hero .img1 {
    position: absolute;
    width: 260px;
    top: 20px;
    left: 0px;
}

#hero .img2 {
    width: 390px;
    top: 105px;
    left: 120px;
}

#hero .img4 {
    width: 192px;
    top: 80px;
    right: -150px;
    box-shadow: 0 10px 10px #00000040;
    border-radius: 12px;
}

#hero .img3 {
    width: 385px;
    top: 325px;
    left: 110px;
}

#hero .background-text-1 {
    position: absolute;
    z-index: -1;
    inset-inline-start: -290px;
    top: 50%;
    transform: rotate(90deg);
}

#hero .background-text-2 {
    position: absolute;
    z-index: -1;
    inset-inline-end: -75px;
    bottom: -65px;
    word-spacing: 250px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 25px;
}

.section-title h3 {
    font-size: 32px;
    font-weight: 500;
    padding: 0;
    line-height: 160%;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/

.services {
    background-color: var(--prim);
}

.services .section-title {
    text-align: center;
}

.services .description {
    text-align: center;
    max-width: 440px;
    margin-inline: auto;
    color: #787878;
    margin-bottom: 40px;
}

.services .trip-btns {
    justify-content: center;
}

.services .trip-btns .bntrip-btn-primary {
    width: 243px;
    text-align: center;
}

.card1 {
    background-color: transparent;
}

.card1 .card-image {
    width: 50%;
    margin-inline: auto;
    aspect-ratio: 123/123;
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    background-color: var(--prim);
}

.card1 .card-image img {
    max-width: 50%;
    max-height: 50%;
}

.card1 .card-text {
    width: 100%;
    background-color: #fff;
    padding: 80px 20px 20px;
    margin-top: -60px;
    border-radius: 16px;
    z-index: 0;
    position: relative;
    text-align: center;
    height: 230px;
    overflow: hidden;
}

.card1 .card-text .title {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 15px;
}

.card1 .card-text .desc,
.card1 .card-text .desc * {
    font-size: 16px;
    font-weight: 300;
    color: #989898;
}

/*--------------------------------------------------------------
# who-are-we
--------------------------------------------------------------*/

.who-are-we {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.who-are-we .background-shape-1 {
    position: absolute;
    bottom: 40px;
    inset-inline-start: 0;
    z-index: -1;
}

#who-are-we .section-title {
    position: relative;
}

#who-are-we .background-text-1 {
    position: absolute;
    z-index: -1;
    inset-inline-start: -70px;
    top: -55px;
}

#who-are-we .col {
    padding-inline-start: 100px;
}

.who-are-we .description {
    max-width: 95%;
}

.who-are-we h4 {
    font-size: 30px;
    font-weight: 600;
    max-width: 90%;
}

.who-are-we p {
    color: #787878;
}

.who-are-we .images {
    position: relative;
    width: 100%;
}

.who-are-we .featuresImg {
    border-radius: 10px;
    border: 7px solid #fff;
}

.who-are-we .featuresImg1 {
    width: 52%;
    aspect-ratio: 290/355;
    object-fit: cover;
}

.who-are-we .featuresImg2 {
    width: 52%;
    position: absolute;
    top: 100px;
    inset-inline-end: 0;
    aspect-ratio: 294/338;
    object-fit: cover;
}

.who-are-we .featuresImg3 {
    display: block;
    width: 40%;
    position: relative;
    top: -20px;
    margin-inline-start: 15%;
    aspect-ratio: 234/270;
    object-fit: cover;
}

.who-are-we .games-download {
    display: flex;
    gap: 15px;
    align-items: center;
}

.who-are-we .games-download a {
    color: var(--second);
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.who-are-we .image {
    display: block;
}

.who-are-we .games-download .image img {
    border-radius: 5px;
    transition: 0.3s;
}

.who-are-we .games-download .image:hover img {
    box-shadow: 0 10px 10px #00000040;
    transform: scale(1.05);
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/

.about {
    position: relative;
    padding-top: 130px;
    padding-bottom: 100px;
}

.about .background-shape-1 {
    position: absolute;
    top: 70px;
    inset-inline-end: 0;
    z-index: -1;
}

.about .background-shape-2 {
    position: absolute;
    bottom: 0;
    inset-inline-end: 80px;
    z-index: -1;
}

.about .background-text-1 {
    position: absolute;
    z-index: 0;
    inset-inline: 0;
    top: 70px;
    text-align: center;
    font-size: 60px;
    padding-inline-end: 70px;
    opacity: 50%;
}

.about .item {
    margin-bottom: 25px;
}

.about .item .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about .item .card-header img {
    width: 48px;
}

.about .item h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.about .item .description {
    font-size: 16px;
    color: #787878;
    font-weight: 300;
    line-height: 160%;
    max-width: 530px;
}

.about .images {
    position: relative;
    width: 100%;
}

.about .aboutImg {
    border-radius: 9px;
    border: 9px solid #fff;
    aspect-ratio: 496/380;
    object-fit: cover;
}

.about .aboutImg1 {
    width: 85%;
    position: relative;
    top: 180px;
    z-index: 1;
    box-shadow: 0 10px 30px #00000040;
}

.about .aboutImg2 {
    width: 85%;
    position: absolute;
    top: 0px;
    inset-inline-end: 0;
}

/*--------------------------------------------------------------
# pricing
--------------------------------------------------------------*/

.pricing {
    position: relative;
    background-color: #fff;
    z-index: 1;
    padding-bottom: 80px;
}

.pricing .background-shape-1 {
    position: absolute;
    bottom: 50px;
    inset-inline-start: 0;
    z-index: -1;
}

.pricing .section-title {
    text-align: center;
}

.pricing .description {
    text-align: center;
    max-width: 1164px;
    margin-inline: auto;
    color: #787878;
    margin-bottom: 40px;
}

.pricing .pricing-row {
    max-width: 1069px;
    margin-inline: auto;
}

.pricing .pricing-row .col-lg-4 {
    padding: 0;
}

.pricingTab {
    margin-block: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--second);
    width: max-content;
    margin-inline: auto;
    border-radius: 24px;
    padding: 12px;
}

.pricingTab .nav-link {
    font-size: 16px;
    color: var(--black);
    border-radius: 16px;
    padding: 11px 35px 14px;
}

.pricingTab .nav-link.active,
.pricingTab .nav-link:hover {
    background-color: var(--second);
    color: #fff;
}

.card2 {
    background-color: #f9f9f9;
    border: 3px solid #ebebeb;
    border-radius: 20px;
    padding: 20px;
}

.card2.featured {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 0;
    box-shadow: 0 0 25px #00000040;
}

.card2 .title {
    font-size: 23px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.card2 .price {
    display: flex;
    gap: 10px;
    align-items: end;
    margin-bottom: 20px;
}

.card2 .price h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--second);
    margin-bottom: 0;
}

.card2 .price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--second);
}

.card2 .content {
    height: 290px;
    overflow: auto;
    padding-inline-end: 5px;
}

.card2 .desc {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.card2 .desc img {
    padding-inline-end: 10px;
}

.card2 .bntrip-btn-primary {
    text-align: center;
    max-width: 243px;
    margin-inline: auto;
}

/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/

.features {
    background-color: var(--prim);
}

.features .section-title {
    position: relative;
}

.features .section-title h3 {
    position: relative;
    z-index: 1;
}

.features .background-text-1 {
    position: absolute;
    z-index: 0;
    inset-inline-start: 0px;
    top: -45px;
}

.features .description {
    max-width: 95%;
}

.features p {
    color: #787878;
    margin-bottom: 40px;
}

.features .images {
    position: relative;
    width: 100%;
}

.features .featuresImg {
    border-radius: 10px;
    border: 7px solid #fff;
}

.features .featuresImg1 {
    width: 52%;
    aspect-ratio: 290/355;
    object-fit: cover;
}

.features .featuresImg2 {
    width: 52%;
    position: absolute;
    top: 100px;
    inset-inline-end: 0;
    aspect-ratio: 294/338;
    object-fit: cover;
}

.features .featuresImg3 {
    display: block;
    width: 40%;
    position: relative;
    top: -20px;
    margin-inline-start: 15%;
    aspect-ratio: 234/270;
    object-fit: cover;
}

.features .item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.features .item .image {
    background-color: #fff;
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 10px #0000001a;
}

.features .item .image img {
    /*max-width: 60%;
    object-fit: none*/
    width: 25px;
    height: 25px;
}

.features .item .text h4 {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 10px;
}

.features .item .text h5 {
    font-size: 13.5px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 0px;
}

.features .download-btn {
    display: flex;
    justify-content: end;
}

.features .bntrip-btn-primary {
    margin: 0;
    margin-inline-start: auto;
    width: 240px;
    font-size: 18px;
    padding-block: 10px 14px;
}

/*--------------------------------------------------------------
# download
--------------------------------------------------------------*/

.download {
    position: relative;
    padding-block: 80px;
}

.download .description {
    font-size: 20px;
    color: var(--second);
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.download .section-title h3 {
    font-size: 56px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0px;
    text-align: center;
}

.download .download-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.download .bntrip-btn-primary {
    width: 376px;
}

.download .download-btns .image img {
    border-radius: 5px;
    transition: 0.3s;
}

.download .download-btns .image:hover img {
    box-shadow: 0 10px 10px #00000040;
    transform: scale(1.05);
}

.download .bntrip-btn-primary {
    margin-inline: auto;
    text-align: center;
}

.download .images-right {
    position: absolute;
    right: -50px;
    bottom: 0;
    z-index: -1;
}

.download.start .images-right {
    animation-name: MoveUpDown2;
    animation-duration: 5s;
    animation-direction: alternate;
}

.download.start .images-left {
    animation-name: MoveUpDown;
    animation-duration: 5s;
    animation-direction: alternate;
}

.download .images-left {
    position: absolute;
    left: -50px;
    bottom: 0;
    z-index: -1;
}

@-webkit-keyframes MoveUpDown {
    0%,
    100% {
        bottom: 0;
        left: -50px;
    }
    50% {
        bottom: -50px;
        left: 0;
    }
}

@-webkit-keyframes MoveUpDown2 {
    0%,
    100% {
        bottom: 0;
        right: -50px;
    }
    50% {
        bottom: -50px;
        right: 0;
    }
}

#ex1 {
    /*height: 100vh;
        width: 100vw;*/
    width: 90%;
    margin: 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

#ex1-layer {
    /*border: 2px solid red;
        height: 100px;
        width: 100px;
        position: absolute;*/
    /*border: 2px solid red;*/
    width: 100%;
    padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
    background: var(--prim);
}

.contact .section-title h3 {
    color: #3e3e3e;
}

.contact .description {
    font-weight: 400;
    color: #787878;
    margin-bottom: 40px;
}

.contact .info {
    width: 100%;
}

.contact h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3e3e3e;
    margin-top: 45px;
}

.contact .social-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact .social-links a {
    transition: 0.3s;
    padding: 10px;
    border-radius: 25px;
}

.contact .social-links a:hover {
    background-color: #fff;
    box-shadow: 0 0 10px #00000086;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: #000d15;
}

.contact .info .email,
.contact .info .phone,
.contact .info .address {
    align-items: center;
    gap: 20px;
    display: flex;
    margin-bottom: 30px;
}

.navbar .email:hover p,
.contact .info .phone:hover p,
.contact .info .email:hover p {
    color: var(--second);
}

.contact .php-email-form {
    width: 100%;
    padding-inline-start: 20px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 7px;
    color: #000d15;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: var(--second);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .select2 {
    width: 100% !important;
    height: 47px;
}

.select2-dropdown {
    margin-block: 10px;
    border: 0;
    border-radius: 10px;
    padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 5px;
    box-shadow: none;
    outline: 0;
    border-color: var(--prim);
}

.select2-container--default .select2-results__option--selectable {
    margin: 10px;
    font-size: 14px;
    border-radius: 10px;
    padding: 10px 8px;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--second);
}

.contact .select2 span {
    box-shadow: none;
    font-size: 13px;
    font-weight: 400;
    background-color: #f3f3f3;
    color: var(--black);
    border: 0;
    border-radius: 8px;
    padding-block: 5px 10px;
}

.select2-container--default[dir="rtl"]
    .select2-selection--single
    .select2-selection__arrow {
    top: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 13px;
    font-weight: 400;
    background-color: #f3f3f3;
    color: var(--black);
    border: 0;
    border-radius: 8px;
}

.contact .php-email-form input {
    height: 47px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form p {
    font-size: 12px;
    color: #919191;
    font-weight: 400;
}

.contact .php-email-form button[type="submit"] {
    position: relative;
    width: 100%;
    max-width: unset;
    padding-block: 10px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: var(--second);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: #919191;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #fff;
    color: var(--second);
    font-size: 14px;
    text-align: start;
    padding: 30px 0;
    box-shadow: 0 0 20px #0000001a;
}

#footer .col-md-3 {
    display: flex;
    justify-content: end;
}

#footer hr {
    opacity: 20%;
    border-top-color: #2b3d51;
    margin-block: 30px;
}

#footer .footer-links {
    padding: 0;
    margin: 0;
}

#footer .footer-links a {
    font-size: 16px;
    color: #373737;
    padding-inline-end: 50px;
}

#footer p {
    font-size: 14px;
    color: #2b2b2b;
    margin: 0;
}

#footer .privacy-link {
    font-size: 14px;
    color: #2b2b2b;
    padding-inline-end: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1400px) {
    #hero h1 {
        font-size: 55px;
        line-height: 120%;
    }
    #hero p {
        font-size: 14px;
        margin-top: 60px;
    }
}

@media (min-width: 1400px) and (max-width: 1500px) {
    #hero .background-text-1,
    #hero .background-text-2 {
        display: none;
    }
}

@media (max-width: 1300px) {
    #hero .background-text-1,
    #hero .background-text-2 {
        display: none;
    }
}

@media (max-width: 1200px) {
    #hero .container {
        display: block;
    }
    .hero-images {
        position: relative;
        height: 600px;
        inset: unset;
        width: 50%;
        margin-inline: auto;
        margin-top: 40px;
    }
    #who-are-we .col {
        padding-inline-start: 0;
    }
    .card1 .card-text {
        padding-inline: 10px;
    }
    .card1 .card-text .title,
    .download .description {
        font-size: 16px;
    }
    .features .item .text h4 {
        font-size: 14px;
    }
    .card1 .card-text .desc,
    .card1 .card-text .desc *,
    .features .item .text h5 {
        font-size: 12px;
    }
    .download .section-title h3 {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    #hero h1 {
        font-size: 40px;
    }
    #hero p {
        margin-top: 20px;
    }
    .background-text {
        font-size: 40px !important;
    }
    .section-title h3,
    .contact h4 {
        font-size: 22px !important;
    }
    .who-are-we .description,
    .about .item .description {
        max-width: 100%;
        font-size: 14px;
    }
    .who-are-we .games-download .image img {
        width: 100px;
    }
    .services .row {
        row-gap: 20px;
        justify-content: center;
    }
    .about {
        padding-bottom: 0px;
    }
    .card2 {
        margin: 20px;
    }
    .card2 .content {
        height: auto;
    }
    #footer .footer-links a {
        font-size: 14px;
        padding-inline-end: 20px;
    }
    .offcanvas-header {
        display: flex;
        flex-direction: row-reverse;
    }
    .navbar ul {
        padding: 50px 20px 30px !important;
        display: flex;
        row-gap: 20px;
    }
    .offcanvas {
        height: 100vh;
        background-image: url("../img/images/images-right.png");
        background-repeat: no-repeat;
        background-position: 100% 120%;
        background-color: rgb(252 252 252);
        background-blend-mode: overlay;
    }
    .navbar .social-links {
        padding-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .navbar .social-links a {
        transition: 0.3s;
        padding: 10px;
        border-radius: 25px;
    }
    .navbar .social-links a:hover {
        background-color: #fff;
        box-shadow: 0 0 10px #00000086;
    }
    .navbar .email {
        padding-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .navbar .email p {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .trip-btns {
        flex-wrap: wrap;
        justify-content: center;
    }
    #hero h1 {
        font-size: 30px;
    }
    #hero a {
        width: 100%;
        text-align: center;
    }
    .hero-images {
        width: 100%;
    }
    .card1 .card-text {
        padding-block: 40px 20px;
        height: 160px;
        margin-top: -30px;
    }
    .about .images {
        height: 100%;
        min-height: 600px;
    }
    .features .bntrip-btn-primary {
        width: 100%;
    }
    .download .images-right img,
    .download .images-left img {
        max-width: 70%;
    }
    .download .images-left {
        display: flex;
        justify-content: end;
    }
    .download .description,
    .download .section-title,
    .download .download-btns {
        margin-bottom: 15px;
        padding: 0;
    }
    .download .download-btns .image img {
        max-width: 100px;
    }
    .download .bntrip-btn-primary {
        max-width: 200px;
        font-size: 14px;
        padding-block: 10px;
    }
    #footer .col-md-3 {
        justify-content: center;
        margin-bottom: 20px;
    }
    #footer .footer-links,
    #footer .col-md-6 {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    #hero .img4 {
        right: -80px;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 25px;
    }
    #hero .bg-prim {
        margin: auto;
    }
    #hero .img1 {
        width: 50%;
    }
    #hero .img2 {
        width: 80%;
    }
    #hero .img4 {
        right: 0;
        max-width: 50%;
    }
    #ex1 {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .container .row {
        padding-inline: 10px;
    }
    #who-are-we .background-text-1 {
        inset-inline-start: 0;
    }
    .card1 .card-image {
        width: 40%;
    }
    .background-text {
        font-size: 30px !important;
    }
    .about .background-text-1 {
        padding-inline-end: 0;
    }
    .about {
        padding-top: 80px;
    }
    .about .images {
        min-height: 550px;
    }
    .download .images-right img,
    .download .images-left img {
        max-width: 50%;
    }
}

@media (max-width: 375px) {
    #hero .bg-prim {
        padding: 30px 12px;
        border-radius: 25px;
    }
    #hero .header_card {
        font-size: 13px;
        margin-bottom: 20px;
    }
    #hero h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    #hero p,
    .who-are-we .description,
    .about .item .description,
    .contact .description,
    .features .description,
    .pricing .description,
    .services .description {
        font-size: 12px;
        line-height: 26px;
    }
    #hero .trip-btns {
        margin-top: 20px !important;
    }
    .bntrip-btn-primary,
    .bntrip-btn-secondary,
    #footer .privacy-link,
    #footer p,
    .who-are-we .games-download a {
        font-size: 13px;
    }
    #hero .img2 {
        left: 70px;
    }
    .hero-images {
        height: 450px;
    }
    .section-title {
        padding-bottom: 15px;
    }
    .section-title h3,
    .contact h4 {
        font-size: 18px !important;
    }
    .about .images {
        min-height: 450px;
    }
    #footer .footer-links a {
        font-size: 12px;
        padding: 5px;
    }
    .card2 .price h2 {
        font-size: 35px;
    }
}

@media (max-width: 320px) {
    #hero h1 {
        font-size: 18px;
    }
    .bntrip-btn-primary,
    .bntrip-btn-secondary,
    #footer .privacy-link,
    #footer p,
    .who-are-we .games-download a {
        font-size: 12px;
    }
}
