/* ===== common classes ===== */
body {
    font-family: 'Raleway', sans-serif;
}

main {
    padding-top: 70px;
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact-hero .overlay {
    padding-top: 28px;
    padding-bottom: 24px;
}

.lang-menu {
    max-height: 320px;
    overflow-y: auto;
}

.county-card {
    color: inherit;
    display: block;
}

.county-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12) !important;
}

.location-search {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.location-search .form-control {
    border-radius: 999px;
    padding-left: 48px;
    padding-right: 48px;
    height: 56px;
    border: 1px solid #d7dde5;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.location-search > i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B3FA0;
}

.location-search-spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #d7dde5;
    border-top-color: #6B3FA0;
    border-radius: 50%;
    animation: location-spin 0.7s linear infinite;
}

@keyframes location-spin {
    to { transform: rotate(360deg); }
}

html[dir="rtl"] .navbar-nav.ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.card {
    border-radius: 16px !important;
    border: 0 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
}

.landing-hero-photo {
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px !important;
}

#features {
    background: #ffffff;
}

#testimonial {
    background: #ffffff;
}

#price-section {
    background: #F7FBFC !important;
}

#count-section {
    background: linear-gradient(-45deg, #6B3FA0, #5B4BDB);
}
/* ===== header / navbar ===== */
#header-nav {
    z-index: 999999;
}

    #header-nav .navbar-brand img {
        height: 44px;
    }

/* ===== main section image ===== */
.main-section .main-section-img {
    background-image: url("../../img/landing/coming-soon-background.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}

.main-section .media-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    font-size: 30px;
    padding-left: 5px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    border: transparent;
    background: #fff;
    color: #dc3545 !important;
    cursor: pointer;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgb(50 100 245 / 0%);
    }
}

.main-section .media-icon:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

/* === feature section === */
#features {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    -webkit-animation: slide 100s linear infinite;
    background: linear-gradient(#dee2e6a6, #adb5bd0d), url("/content/img/landing/partical-svg.svg");
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -600px 0;
    }
}

#features .card {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    #features .card:hover {
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

#features .baloon-left {
    position: absolute;
    margin-top: 5rem;
    left: 5rem;
}

#features .balon-right {
    position: absolute;
    margin-top: 20rem;
    right: 5rem;
}

#features .balon-left-bottom {
    position: absolute;
    margin-top: 35rem;
    left: 5rem;
}

/* auto movement icons */
#features .icon-effects img {
    -webkit-animation: mover 30s infinite alternate;
    animation: mover 30s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* === You deserve better business section === */
#better-business ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    margin-right: 10px;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 5px;
    font-size: 10px;
}

/* === Pricing section === */

#price-section ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: 400;
    margin-right: 10px;
    color: #007bff;
}

#price-section .price-layer-svg {
    pointer-events: none;
}

#price-section .price-layer-svg svg {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

#price-section .price-start-btn {
    position: relative;
    z-index: 2;
    background: #6B3FA0 !important;
    border-color: #6B3FA0 !important;
    color: #fff !important;
}

#price-section .price-card-odd {
    animation: none;
}

#price-section .price-card-baloon-svg img {
    position: absolute;
    top: 0;
    right: -78px;
    width: 156px;
}

#price-section .price-card-elephant-svg img, #price-section .price-card-flower-svg img {
    height: 180px;
    position: absolute;
    right: 4px;
    top: 4px;
}

/* auto movement Price cards Odd/Even */

/* Odd card */
#price-section .price-card-odd {
    animation: none;
}

@-webkit-keyframes CardmoverOdd {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

@keyframes CardmoverOdd {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

/* Even card */
#price-section .price-card-even {
    -webkit-animation: CardmoverEven 10s infinite alternate;
    animation: CardmoverEven 10s infinite alternate;
}

@-webkit-keyframes CardmoverEven {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

@keyframes CardmoverEven {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

/*========= testimonial section ===== */

.client-testimonials .owl-dots {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.client-testimonials .owl-dots .owl-dot,
.client-testimonials .owl-dot {
    display: inline-flex !important;
}

.client-testimonials .owl-dots span {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block !important;
    background: #fff;
    border: 2px solid #6B3FA0;
    margin: 0;
}

.client-testimonials .owl-dots .active {
    box-shadow: none;
}

.client-testimonials .owl-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    position: static;
}

.client-testimonials .owl-nav button.owl-prev,
.client-testimonials .owl-nav button.owl-next {
    position: static !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6B3FA0 !important;
    color: #fff !important;
    font-size: 16px;
}

.client-testimonials .owl-dots .active span {
    background: #6B3FA0;
    box-shadow: none;
    height: 12px;
    width: 12px;
}

.client-testimonials .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
}

    .client-testimonials .card .card-img-top {
        max-width: 100px;
        border-radius: 50%;
        margin: 15px auto 0;
        box-shadow: 0 8px 20px -4px #95abbb;
        width: 100px;
        height: 100px;
    }

.client-testimonials .active {
    opacity: 0.5;
    transition: all 0.3s;
}

.client-testimonials .center {
    opacity: 1;
}

    .client-testimonials .center .card-img-top {
        max-width: 100%;
        height: 120px;
        width: 120px;
    }

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0;
}

/*========= @media queries section ===== */
@media (min-width: 300px) and (max-width: 767.98px) {
    .main-section .display-4 {
        font-size: 2.5rem;
    }

    .media-icon {
        margin-left: -8px;
        margin-top: -14px;
    }
}

@media (min-width: 300px) and (max-width: 1023.98px) {
    #features .card:hover {
        transform: none !important;
    }

    #price-section .price-card-odd, #price-section .price-card-even, .animated {
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

    .btn-sm-md-block {
        display: block;
        width: 100%;
    }
}

@media (min-width: 300px) and (max-width: 1198.98px) {
    .main-section .main-section-img {
        min-height: auto !important;
    }
}

@media (min-width: 1200px) {
    .main-section .main-section-img {
        padding-top: 10%;
    }
}


/* ===== About Page CSS ===== */

/*========= main section ===== */
.main-section-aboutimg {
    background-image: url("../../img/about/aboutus2.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: auto !important;
}

    .main-section-aboutimg .overlay {
        background: black;
        opacity: 0.7;
        min-height: auto !important;
    }

    .main-section-aboutimg .breadcrumb {
        background: transparent;
    }

/*========= aboutus section ===== */
#aboutus .media-icon {
    position: absolute;
    left: 43%;
    top: 40%;
    width: 80px;
    height: 80px;
    font-size: 30px;
    padding-left: 5px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    border: transparent;
    background: #fff;
    color: #dc3545 !important;
    cursor: pointer;
}

    #aboutus .media-icon:hover {
        background-color: #dc3545 !important;
        color: white !important;
    }

#aboutus img {
    border-radius: 20px;
    outline: 2px dashed white;
    outline-offset: -20px;
}
/*========= count section ===== */
#count-section {
    background: linear-gradient(-45deg, #6B3FA0, #5B4BDB);
}

    #count-section hr {
        overflow: visible; /* For IE */
        width: 50px;
        border-color: white;
        opacity: 0.5;
    }

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(107, 63, 160, 0.1);
    color: #6B3FA0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-form-card .input-group-text {
    background: #f8f5fc;
    border-color: #e2d7f0;
    color: #6B3FA0;
}

.contact-form-card .form-control {
    border-color: #e2d7f0;
}

.contact-form-card .form-control:focus {
    border-color: #6B3FA0;
    box-shadow: 0 0 0 0.2rem rgba(107, 63, 160, 0.15);
}
/*========= Our-team section ===== */
.our-team img {
    transition: all 0.3s ease 0s;
    filter: brightness(100%);
    transition: filter .3s ease;
}

    .our-team img:hover {
        filter: brightness(20%);
    }

.our-team .team-content {
    width: 93%;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2,0.1,0.9);
}

.our-team:hover .team-content {
    bottom: 0px;
    opacity: 1;
}
