* {
    font-family: 'Open Sans', sans-serif !important;
}

/* BEGIN HEADER */
.header-container .top-bar {
    background-color: #041670;
    color: white;
}

.header-container .top-bar .top-email {
    margin-left: 5px;
    text-decoration: none;
    color: white;
}

.header-container .top-bar-content {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 600px) {
    .header-container .top-bar-content {
        display: inline;
        font-size: 13px;
    }

    .top-bar-email {
        margin-top: 10px;
    }
}

.navbar-toggler {
    border-radius: 0;
    order: 2;
}

.navbar-toggler:focus {
    box-shadow: none;
    border: 1px solid #000000;
}

.navbar-brand {
    order: 1;
}

.navbar-brand img {
    width: 200px;
}

@media only screen and (max-width: 600px) {
    .logo-toggle-container {
        justify-content: space-between;
    }
    .navbar-brand img {
        width: 150px;
    }
    .header-container .navbar-nav, .header-container .dropdown-menu.show {
        font-size: 13px;
    }
}

@media only screen and (min-width: 601px) {
    .nav-container .nav-container-row {
        width: 100%;
    }
}

.nav-container .call-anytime-container {
    justify-content: flex-end;
}

@media only screen and (max-width: 600px) {
    .nav-container .call-anytime-container {
        border-top: 1px solid #e7e4e4;
        justify-content: center;
        margin-top: 15px;
        padding-top: 5px;
    }
}

.nav-container .call-anytime-container a {
    color: black;
}

.nav-container .call-anytime-container .call-icon {
    background-color: #eef0f6;
    /* padding: 10px; */
    border-radius: 100%;
    width: 50px;
    height: 50px;
    transition: all .2s ease-in;
}

@media only screen and (max-width: 600px) {
    .nav-container .call-anytime-container .call-icon {
        width: 35px;
        height: 35px;
    }
}

.nav-container .call-anytime-container .call-icon:hover {
    background-color: #041670;
    color: white;
}

.nav-container .call-anytime-container .call-icon i {
    font-size: 25px;
}

@media only screen and (max-width: 600px) {
    .nav-container .call-anytime-container .call-icon i {
        font-size: 20px;
    }
}

.nav-container .call-anytime-container .call-info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.nav-container .call-anytime-container .call-info .title {
    font-size: 15px;
    color: #7b7d83;
}

.nav-container .call-anytime-container .call-info .number {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .nav-container .call-anytime-container .call-info .title, .nav-container .call-anytime-container .call-info .number {
        font-size: 13px;
    }
}

.nav-container .nav-container-row .nav-item a {
    font-weight: bold;
    color: #000000;
}
/* END HEADER */

/* BEGIN BANNER */
.banner-container {
    height: calc(100vh - 126px);
}

@media only screen and (max-width: 600px) {
    .banner-container {
        height: auto;
    }
}

.banner-container .carousel-caption h2 {
    font-size: 45px;
}

.banner-container .carousel-item img {
    display: block;
    min-width: 100%;
    min-height: calc(100vh - 125px);
    max-width: 100%;
    max-height: calc(100vh - 125px);
}

@media only screen and (max-width: 600px) {
    .banner-container .carousel-item img {
        min-height: 300px;
    }
}

.venobox {
    height: 80px;
    line-height: 80px;
    width: 80px;
    background: #20215f;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .venobox {
        height: 40px;
        line-height: 40px;
        width: 40px;
    }
}

.play-button-container {
    border-radius: 50%;
    display: inline-block;
    padding: 10px;
    background: white;
    position: absolute;
    top: 50%;
    left: calc(50% + 85px);
    transform: translate(-50%,-50%);
    z-index: 4;
    /* @media #{$lg} {
        left: calc(75% + 50px);
        transform: translate(-75%, -50%);
    }
    @media #{$md,$xs} {
        padding: 8px;
        top: 0px;
        transform: inherit;
        left: 0px;
        z-index: 5;
    } */
    & a {
        height: 90px;
        line-height: 90px;
        width: 90px;
        background: #041670;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        font-size: 16px;
        color: white;
        position: relative;
        z-index: 2;
        /* @media #{$md,$xs} {
            height: 50px;
            width: 50px;
            line-height: 50px;
        } */
    }
}

@media only screen and (max-width: 600px) {
    .play-button-container {
        left: calc(50% + 20px);
    }
}

.play-button-container::after, .play-button-container::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid white;
    animation-name: popupBtn;
    animation-duration: 1.8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.play-button-container::before {
    animation-delay: 0.8s;
}
@keyframes popupBtn{
    0% {
        transform: scale(1);
        opacity: .6;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.3;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.play-button-container .play-icon {
    font-size: 35px;
}

@media only screen and (max-width: 600px) {
    .play-button-container .play-icon {
        font-size: 25px;
    }
}
/* END BANNER */

/* BEGIN SERVICES */
.service-container {
    display: flex;
    justify-content: center;
}

.service-content {
    width: 80%;
    position: relative;
}

.service-card .card-title {
    color: black;
    font-weight: bold;
}

.service-card .card-text {
    color: black;
    margin-bottom: 20px;
    margin-top: 20px;
}

.service-card-img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
}

.service-card .read-more {
    color: #041670;
}

.service-card .read-more i {
    font-size: 20px;
}

.service-card .read-more-icon {
    margin-left: 10px;
}

a.services-carousel-left {
    cursor: pointer;
    padding: 15px;
    top: 30%;
    position: absolute;
    left: -85px;
    text-decoration: none;
    color: black;
}

a.services-carousel-right {
    cursor: pointer;
    padding: 15px;
    top: 30%;
    position: absolute;
    right: -85px;
    text-decoration: none;
    color: black;
}

@media only screen and (max-width: 600px) {
    .service-content .owl-nav {
        margin-top: 0;
    }
    .service-content .owl-nav .owl-prev span, .service-content .owl-nav .owl-next span {
        font-size: 30px;
    }
    a.services-carousel-left, a.services-carousel-right {
        display: none;
    }
}

a.services-carousel-left i, a.services-carousel-right i {
    font-size: 40px;
    font-weight: bold;
}
/* END SERVICES */

/* BEGIN WHY CHOOSE US */
section.why-choose-us .service-items .service-item {
    margin-left: 10px;
}

@media only screen and (max-width: 600px) {
    section.why-choose-us .service-items .service-item {
        font-size: 13px;
    }
}

section.why-choose-us .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

@media only screen and (max-width: 600px) {
    section.why-choose-us .section-title {
        font-size: 20px;
    }
    .why-choose-us-sub-title {
        font-size: 13px;
    }
}

section.why-choose-us .section-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.why-choose-us .section-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}

/* END WHY CHOOSE US */

/* BEGIN OUR CLIENTS */
section.our-clients .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

section.our-clients .section-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.our-clients .section-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}

section.our-clients .owl-stage {
    display: flex;
    align-items: center;
}
/* END OUR CLIENTS */


/* BEGIN ABOUT US */
section.about-us .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    section.about-us .section-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    section.about-us .section-sub-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    section.about-us .company-info {
        font-size: 14px;
    }
}

section.about-us .section-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.about-us .section-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}

.about-company-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.about-us .about-company-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about-us .about-company-img img {
    max-width: 400px;
}

@media only screen and (max-width: 600px) {
    section.about-us .about-company-img img {
        max-width: 90%;
    }
}
/* END ABOUT US */

/* BEGIN WHY CHOOSE US */
section.why-choose-us .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    section.why-choose-us .section-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    section.why-choose-us .why-choose-us-text {
        font-size: 14px;
    }
}

section.why-choose-us .section-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.why-choose-us .section-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}
/* END WHY CHOOSE US */

/* OUR SERVICES */
section.our-services .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    section.our-services .section-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    section.our-services .our-services-text {
        font-size: 14px;
    }
}

section.our-services .section-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.our-services .section-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}
/* OUR SERVICES */

/* BEGIN SERVICES LIST PAGE */
section.services-list {
    padding-bottom: 20px;
}

.service-container {
    margin-top: 20px;
}

.service-container .card-title {
    color: black;
    font-weight: bold;
}

.service-container .card-text {
    color: black;
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 15px;
}

.service-container-img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
}

.service-container .read-more {
    color: #041670;
}

.service-container .read-more i {
    font-size: 20px;
}

.service-container .read-more-icon {
    margin-left: 10px;
}
/* END SERVICES LIST PAGE */

/* BEGIN SERVICE DETAILS PAGE */
section.service-section {
    padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    section.service-section {
        padding-top: 20px;
    }
}

section.service-section .page-title {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    section.service-section .page-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

section.service-section .page-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.service-section .page-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}

section.service-section .service-preview img {
    max-width: 100%;
}

@media only screen and (max-width: 600px) {
    section.service-section .all-services-items {
        margin-bottom: 10px;
    }
}

section.service-section .all-services-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    color: black;
    border-color: #cccccc;
    transition: all .2s ease-in;
}

@media only screen and (max-width: 600px) {
    section.service-section .all-services-item {
        font-size: 13px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

section.service-section .all-services-item.active {
    background-color: #041670;
}

section.service-section .all-services-item.active, section.service-section .all-services-item:hover {
    color: white;
}

section.service-section .all-services-item:hover {
    background-color: #041670;
}

section.service-section .all-services-item .left-icon {
    font-size: 20px;
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {
    section.service-section .all-services-item .left-icon {
        font-size: 13px;
    }
}

section.service-section .all-services-item .right-icon {
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    section.service-section .all-services-item .right-icon {
        font-size: 13px;
    }
}

section.service-section .description-container {
    margin-top: 20px;
}
/* END SERVICE DETAILS PAGE */

.footer {
    /* background-color: #0d1e6f; */
    /* background-color: #0d1c67; */
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .footer {
        font-size: 13px;
    }
}

.footer-menu {
    list-style-type: none;
}

.footer-menu li a {
    text-decoration: none;
    color: #fff;
}

/* BEGIN BLOGS LIST PAGE */
section.blogs {
    padding-bottom: 50px;
}

.blog-container {
    margin-top: 20px;
}

.blog-container .card-title {
    color: black;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .service-card .card-title {
        font-size: 16px;
    }
    .service-card .card-text, .service-card .read-more {
        font-size: 13px;
    }
}

.blog-container .card-text {
    color: black;
    margin-bottom: 10px;
    /* margin-top: 20px; */
    font-size: 15px;
}

.blog-container-img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
}

.blog-container .read-more {
    color: #041670;
}

.blog-container .read-more i {
    font-size: 20px;
}

.blog-container .read-more-icon {
    margin-left: 10px;
}
/* BEGIN BLOGS LIST PAGE */

/* BEGIN BLOG DETAILS PAGE */
section.blog-details {
    padding-top: 50px;
    padding-bottom: 50px;
}

section.blog-details .page-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

section.blog-details .page-title:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -14px;
    background-color: #041670;
}

section.blog-details .page-title:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #041670;
}

section.blog-details .service-preview img {
    max-width: 100%;
}
/* END BLOG DETAILS PAGE */

/* BEGIN WHATSAPP FLOATING ICON */
.whatsapp-icon-container .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* WhatsApp Icon */
.whatsapp-icon-container .whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
    animation: shake 1.5s infinite;
}

/* Shaking Animation */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-6deg); }
    40% { transform: rotate(6deg); }
    50% { transform: rotate(-4deg); }
    60% { transform: rotate(4deg); }
    70% { transform: rotate(-2deg); }
    80% { transform: rotate(2deg); }
    90% { transform: rotate(-1deg); }
}

/* Continuous Ripple Waves */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    animation: ripple 2s infinite;
    z-index: -1;
}

/* Second ripple, staggered */
.whatsapp-float::after {
    animation-delay: 1s;
}

/* Ripple animation */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-icon-container .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
}
/* END WHATSAPP FLOATING ICON */
