body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.d-none {
    display: none !important;
}

section {
    overflow: hidden;
}

a:hover {
    color: #FFF;
}

header {
    width: 100%;
    background-color: #162e40;
    position: absolute;
    top: 0;
    z-index: 1000;
}

.header-info-list {
    display: flex;
    margin-bottom: 0;
    padding: 10px;
}

.header-info-list>li {
    padding: 8px 10px;
    text-align: center;
}

.header-info-list>li::after {
    content: '';
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1px 1px;
    position: relative;

}

.header-info-list>li>a>span:nth-child(1) {
    font-size: 21px;
    padding: 1px 2px 0 2px;
    color: #ec4e4f;
    position: relative;
    top: 2px;
}

.header-info-list>li>a>span:nth-child(2) {
    font-size: 13px;
    padding: 0 10px 0 5px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #FFF;
}

.mobile-header-container {
    position: absolute;
    width: 0;
    height: 100vh;
    z-index: 150;
    background-color: #162e40e8;
    transition: width 0.1s ease-in-out;
    overflow: hidden;
}

.mobile-header-container.active {
    width: 100%;
    margin-top: -10px;

}

.hamburger {
    width: 20px;
    cursor: pointer;
    position: absolute;
    z-index: 500;
    left: 15px;
    top: 20px;
}

.desktop-logo {
    width: 220px;
    height: 60px;
    padding-left: 20px;
}

.desktop-logo>img {
    width: 100%;
    height: 100%;
}

#main-logo {
    padding-top: 5px;
    height: 50px;
    width: 100%;
}

#main-logo>img {
    width: 130px;
    height: 45px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: #fff;
    transition: 0.2s all;
    border-radius: 20px;
}

.stuffing {
    margin: 5px 0;
}

.top-bun.active {
    transform: rotate(-45deg) translateX(-9.5px);
    width: 50%;
}

.stuffing.active {
    width: 80%;
    transform: translateX(3px);
}

.bottom-bun.active {
    width: 50%;
    transform: rotate(45deg) translateX(-9.5px);
}

.mobile-header {
    padding-left: 10px;
    margin-top: 20px;
}

.mobile-header>li>a>span:nth-child(1) {
    color: #ec4e4f;
    font-size: 30px;
    padding: 0 12px;
    font-weight: 600;
    display: inline-block;
    width: 70px;
}

.mobile-header>li>a>span:nth-child(2) {
    color: #FFF;
    font-size: 25px;
    font-weight: 400;
}

.mobile-header>li {
    padding: 10px 0px;
}

.mobile-header-logo {
    height: 100px;
    padding-top: 20px;
    position: relative;
}

.mobile-header-logo>img {
    width: 200px;
    height: 70px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-icons {
    height: 100%;
    width: 100%;
    display: flex;
}

.social-icons>span {
    display: block;
    width: 200px;
    text-align: center;
    padding-top: 20px;
    font-size: 16px;
}

.social-icons>span>a {
    color: #FFF;
}

.social-icons .fa-whatsapp,
.social-icons .fa-instagram,
.social-icons .fa-facebook,
.social-icons .fa-linkedin,
.social-icons .fa-twitter {
    color: #FFF;
    transition: color 0.3s ease-in-out;
}

.social-icons .fa-whatsapp:hover {
    color: #25D366;
}

.social-icons .fa-twitter:hover {
    color: #1DA1F2;
}

.social-icons .fa-linkedin:hover {
    color: #0A66C2;
}

.social-icons .fa-facebook:hover {
    color: #1877F2;
}

.social-icons .fa-youtube-play:hover {
    color: #ff0000;
}

.social-icons .fa-instagram:hover {
    background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5, #1CD8D2);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.o-none {
    opacity: 0;
}

.o-10 {
    opacity: 1;
    transition: 0.3s ease-in-out;
}

ul {
    list-style: none;
}

.section-main-heading {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes drop-main-heading-animation {
    from {
        transform: translate(-90px);
    }

    to {
        transform: translate(0px);
    }
}

.section__subheading {
    font-size: 25px;
    font-weight: 600;
    color: #ec4e4f;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
}

.service-card {
    width: 90%;
    height: 300px;
    background-color: #000;
    border-radius: 10px;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.service-card:hover {
    transform: scale(0.95);
    box-shadow: -1px 34px 25px -15px #162e40;
}

.service-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.1s ease-in-out;
}

.service-card:hover>.service-image-wrapper {
    transform: scale(1.1);
    filter: blur(5px);
}

.service-image-wrapper>img {
    width: 100%;
    height: 100%;
}

.service-heading {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 15px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    background-color: #162e40;
    width: 100%;
    min-height: 85px;
}

.service-card:hover>.service-heading {
    opacity: 0;
    z-index: -1;
}

.service-heading>h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.div-descripotion {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    padding: 15px;
    opacity: 0;
    bottom: -100px;
    transition: opacity 0.4s ease-in-out;
    background-color: #162e4096;
}

.footer-contact a {
    color: #FFF;
    text-decoration: underline;
}

.div-descripotion>p {
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
}

.service-card:hover>.div-descripotion {
    bottom: 0;
    opacity: 1;
}

.service-read-more-btn {
    display: block;
    color: #ec4e4f;
    text-shadow: 1px 5px 5px rgba(0, 0, 0, 0.5);
    padding-top: 10px;
}

.service-read-more-btn:hover {
    cursor: pointer;
    color: #ec4e4f;
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-sub-title {
    font-size: 20px;
}

.banner::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #00000080;
}

.banner-content {
    position: relative;
    z-index: 100;
}

.banner-image-wrapper,
.callback-description-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 90px;
}

.banner-center-content {
    color: #FFF;
    width: 80%;
}

.banner-center-content>h1 {
    font-size: 60px;
}

.banner-center-content>h2 {
    font-size: 20px;
}

.banner-image {
    width: 450px;
    height: 500px;
    border-radius: 10px;
    border-color: #162e40;
    position: relative;
}

.banner-image>img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    border-radius: 10px;
    transform: skew(-10deg, 10deg);
}

.banner-image::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 10px double #ec4e4f;
    position: absolute;
    left: -90px;
    top: 10px;
    border-radius: 10px;
    transform: skew(10deg, 10deg)
}

.callback-description {
    display: flex;
    justify-content: center;
    align-items: center;
}

.callback-now-heading>h1 {
    color: #ec4e4f;
}

.callback-description>p {
    color: #FFF;
}

h1 {
    color: #FFF;
}

.prime-input {
    height: 45px;
}

.prime-btn {
    background-color: #ec4e4f;
    color: #FFF;
    min-width: 150px;
    min-height: 45px;
    font-weight: 600;
    border: 1px solid #ec4e4f;
    transition: 0.2s ease-in-out;
}

.prime-btn:hover {
    background-color: transparent;
    color: #FFF
}

.contact-us .prime-btn:hover,
.modal-content .prime-btn:hover {
    color: #162e40;
}


.bullet::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 100%;
    position: relative;
    top: -3px;
    background-color: #ec4e4f;
}


.read-more-btn {
    display: block;
    color: #ec4e4f;
    width: 150px;
    height: 40px;
    border-radius: 25px;
    text-align: center;
    padding-top: 5px;
    border: 1px solid #ec4e4f;
}

.read-more-btn:hover {
    color: #ec4e4f;
}

.read-arrow {
    font-size: 14px;
    position: relative;
    animation-name: right-direction;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
}

@keyframes right-direction {
    from {
        left: 0;
    }

    to {
        left: 5px;
    }
}

.quote {
    width: 750px;
    margin: 0 auto;
    font-size: 20px;
    color: transparent;
    animation: revealText 2s 1 forwards;
}


.attestation-quote {
    background-color: #162e40;
    height: 200px;
    padding-top: 70px;
    margin-top: 45px;
}

.number-of-countries-heading {
    color: #FFF;
    font-weight: 600;
    text-transform: capitalize;
    font-style: italic;
}

.attestation-countries::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
    background-image: url('../images/pattern-8.png');
    background-size: cover;
    position: absolute;
    top: 0px;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 35px;
}

.about-image {
    width: 400px;
    height: 500px;
    transition: 0.2s ease-in-out;
    border: 8px solid #FFF;
    border-radius: 30px;
    box-shadow: 10px 10px 80px 2px #ccc inset;
}

.our-partners .section__subheading {
    font-size: 70px;
    text-align: left;
    text-shadow: -15px 15px 10px #df474882;
}

.partner-logo {
    width: 100%;
    height: 130px;
}

.partner-logo>img {
    width: 100%;
    height: 100%;
}

.contact-us input {
    height: 45px;
}

.form-message-box {
    height: 122px;
}

.contact-details {
    display: flex;
}

.contact-details>span {
    font-size: 40px;
    position: relative;
    top: -15px;
    color: #ec4e4f;
}

.contact-details>p {
    padding-left: 10px;
}

.contact-box {
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 560px) {
    .contact-box {
        justify-content: left;
        align-items: left;
        padding-left: 20px;
    }

    .mobile-header>li>a>span:nth-child(1) {
        font-size: 22px !important;
    }

    .mobile-header>li>a>span:nth-child(2) {
        font-size: 17px !important;
    }
}



.attestation-countries {
    background-color: #162e40;
    position: relative;
}

.attestation-countries::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-8.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: absolute;
    top: 0px;

}

.countries {
    position: relative;
    z-index: 100;
}

.countries>h3 {
    color: #FFF;
    font-weight: 600;
}

.country-image-card {
    padding: 35px;
}

.country-image-card>img {
    width: 100%;
    margin-bottom: 20px;
}

.country-image-card>span {
    color: #FFF;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.country-contact-us-btn {
    display: block;
    width: 250px;
    background-color: #ec4e4f;
    color: #FFF;
    margin: 0 auto;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.country-contact-us-btn:hover {
    color: #FFF;
    text-shadow: 1px 5px 5px rgba(0, 0, 0, 0.5);
}

.whatsapp-btn {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    left: 30px;
    color: green;

}

.whatsapp-btn>img {
    width: 100%;
}

.mylivechat_inline {
    z-index: 999;
}

.about-us {
    background-image: url('../images/hero-bg28.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-us::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #162e40d6;
}

.about-us>.container {
    position: relative;
    z-index: 1;
}

.about-us-title {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}

.about-us-subtitle {
    font-size: 30px;
    font-weight: 600;
    padding: 12px;
    padding-left: 0;
    color: #162e40;
}

.about-us-description {
    font-size: 15px;
    color: #ffffffc0;
    font-weight: 600;
    border-left: 10px solid #ec4e4f;
    border-radius: 10px;
    padding-left: 10px;
}


.testimonials a {
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    background-color: #162e40;
    padding: 5px;
    border-radius: 5px;
}

.card-text {
    color: #707070;
    font-size: 15px;
    font-weight: 600;
    min-height: 90px;
}

.card-title {
    font-size: 17px;
    color: #ec4e4f
}

.testimonial-card {
    height: 150px;
    border: none;
    border-right: 2px solid #ec4e4f;
    padding-left: 10px;
}

.contact-us h2 {
    color: #707070;
    font-size: 20px;
    font-weight: 600;
}

.contact-details>p {
    font-size: 14px;
    color: #707070;
    font-weight: 600;
}

.location-card {
    width: 70%;
    height: 250px;
    border-radius: 10px;
    background-color: #162e40;
    display: flex;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: background 0.3s ease-in-out, box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
    cursor: pointer;
    margin: 0 auto;
}

.location-card:hover {
    background-size: 110% 110%;
    box-shadow: -22px 30px 30px -12px #000;
}

.location-card:hover p>span:nth-child(1) {
    display: none;
}

.location-card:hover p>.view-location-btn {
    opacity: 1;
    display: block;
}


.location-card:hover .location-details {
    background-color: #000000ab;
}

.view-location-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.2s ease;
    display: none;
    width: 100%;
    text-align: center;
    font-size: 30px;
}

.view-location-btn>span {
    color: #ec4e4f;
}

.location-details {
    background-color: #0000003d;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.location-details>p {
    color: #FFF;
    font-size: 15px;
    padding: 20px;
    line-height: 35px;
    font-weight: 600;
    width: 100%;
    position: relative;
}

.location-name {
    display: block;
    width: 100%;
    height: 40px;
    text-align: center;
    background-color: #162e40;
    color: #FFF;
    padding-top: 7px;
    font-weight: 600;
    transition: transform 0.1s ease-in-out, box-shadow 0.3s ease-in-out;
}

.location-card:hover .location-name {
    transform: translate(-3px, -3px);
    box-shadow: -2px 12px 22px -1px #000;
}

.footer {
    background-color: #162e40;
}

.footer p {
    color: #FFF;
}

.footer-link-list {
    padding-left: 5px;
    list-style: none;
}

.footer-link-list>li {
    padding: 5px;
    color: #FFF;
}

.footer-link-list>li::before {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    background-color: #ec4e4f;
    border-radius: 100%;
}

.footer-link-list>li>a {
    color: #FFF;
    padding-left: 10px;
}

.footer-link-list>li>p {
    padding-left: 10px;
    margin-bottom: 0px;
    display: inline-block;
}

.footer-link-list>li>p,
.footer-link-list>li>a,
.footer>p {
    font-size: 14px;
}

.footer h4 {
    color: #FFF;
    font-weight: 600;
}

.title span {
    --total: calc(var(--duration) + var(--delay));
    position: relative;
    display: block;
    color: transparent;
    overflow: hidden;
    height: auto;
    margin-bottom: 10px;
    animation: revealText 1s var(--total) forwards;
    font-weight: 600;
}

.title span:nth-child(2)::after {
    border-top: 3px solid #162e40;
}

.modal-content {
    border-radius: 15px;
}

.modal-body {
    color: #162e40;
    font-weight: 600;
}

.modal-header {
    color: #FFF;
    background-color: #162e40;
}

.modal-header>button {
    background-color: transparent;
    outline: none;
    color: #ec4e4f;
}

.modal-header>button:hover {
    color: #ec4e4f;
}

.modal-header>.modal-title {
    font-size: 16px;
    font-weight: 600;
}

.callback-input-label {
    font-size: 14px;
}

@keyframes revealText {
    to {
        color: #FFF;
    }
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1920px 0;
    }
}

.on-desktop-hide {
    display: none;
}

@media only screen and (max-width: 560px) {
    header {
        background-color: #0000004f;
        position: absolute;
        margin-top: 10px;
    }

    .banner-center-content>h1 {
        font-size: 35px;
    }

    .banner-sub-title {
        font-size: 15px;
    }

    .title {
        margin-top: 100px;
    }

    .section-main-heading {
        font-size: 30px;
    }

    .banner-content>.prime-btn {
        margin-top: 50px;
    }

    .on-mobile-hide {
        display: none !important;
    }

    .on-desktop-hide {
        display: initial;
    }

    .quote {
        width: 100%;
        font-size: 16px;
    }

    .location-card {
        width: 100%;
        margin-bottom: 50px;
    }

    .our-partners .section__subheading {
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .our-partners .section-main-heading {
        text-align: center;
    }

    .social-icons {
        display: none;
    }

    .footer-link-list>li>p,
    .footer-link-list>li>a,
    .footer>p {
        font-size: 11px;
    }
}