* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-image: url(/componentImage/Transparent.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
    background-position: top center;
}


/* Navigation Bar */

.custom-nav {
    width: 100%;
}

#navbarNavDropdown .nav-item .nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 12px;
}

#navbarNavDropdown .nav-item .nav-link:hover {
    color: #bfbfbf;
    transition: all 0.3s ease;
}

#navbarNavDropdown .nav-item.dropdown .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}


/* Styling the menu button */

.navbar-toggler {
    position: absolute;
    z-index: 3;
    right: 3px;
    top: 12px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}


/* Styling the hamburger lines */

.navbar-toggler .btn-line {
    width: 25px;
    height: 3px;
    margin: 0 0 5px 0;
    background: black;
    transition: all 0.5s ease-out;
}


/* Adding transform to the X */

.navbar-toggler.close {
    transform: rotate(180deg);
}


/* Styling the three lines to make it an X */

.navbar-toggler.close .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.close .btn-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.close .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media only screen and (max-width: 990px) {
    .custom-nav {
        background-color: #ffffff;
    }
    .custom-nav .navbar-brand img {
        width: 224px;
        height: 22px;
    }
    #navbarNavDropdown .nav-item .nav-link {
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: #000000;
        text-transform: uppercase;
        font-weight: 600;
        margin-right: 12px;
    }
}

.custom-nav.scrolled {
    background: #ffffff;
    transition: 0.5s ease-in-out;
}


/* Banner */

.jumbotron {
    height: 520px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #22273c;
    border-radius: 0px !important;
}


/* Our Services */

.service {
    padding: 5px 0;
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
}

.max-width {
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}

.max-width h1 {
    text-align: center;
    position: relative;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.max-width h1::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 3px;
    background: #ffffff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cards {
    padding: 50px 25px;
    width: calc(26% - 20px);
    border-radius: 6px;
    background: #222222;
    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.box i {
    margin-bottom: 30px;
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.box h3 {
    font-weight: 600;
    font-size: 18px;
    padding: 10px 0px 0px;
}

.cards:hover {
    background-color: #dc143c;
}

.cards:hover .box {
    transform: scale(1.05);
}

.cards:hover .box i {
    color: #22273c;
}

@media screen and (max-width: 1190px) {
    .max-width {
        padding: 0 25px;
    }
    .cards {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px) {
    .cards {
        width: 100%;
    }
}


/* Footer */

.site-footer {
    background-color: #22273c;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
}

.site-footer hr {
    border-top-color: #ffffff;
    opacity: 0.5;
}

.site-footer hr.small {
    margin: 20px 0;
}

.site-footer h6 {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.site-footer a {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.footer-links li {
    display: block;
}

.footer-links a li {
    color: #ffffff;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a li:hover {
    color: #000000;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block;
}

.site-footer .social-icons {
    text-align: right;
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d;
}

.copyright-text {
    margin: 0;
}

@media (max-width: 990px) {
    .site-footer [class^="col-"] {
        margin-bottom: 30px;
    }
    .site-footer {
        text-align: center;
    }
    .site-footer h6,
    .footer-links {
        text-align: center !important;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 0;
    }
    .site-footer h6,
    .footer-links {
        text-align: center !important;
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #343a40;
    font-weight: 700;
    font-size: 13px;
}

.social-icons a {
    background-color: #ffffff !important;
    color: #343a40;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #ffffff;
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}

.social-icons a.facebook:hover {
    background-color: #3b5999 !important;
}

.social-icons a.twitter:hover {
    background-color: #00aced !important;
}

.social-icons a.instagram:hover {
    background-color: #c32aa3 !important;
}

.social-icons a.linkedin:hover {
    background-color: #2867b2 !important;
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}


/* Whatsapp Chat */


/* for desktop */

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999999;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 16px;
}


/* for mobile */

@media screen and (max-width: 767px) {
    .whatsapp-icon {
        margin-top: 10px;
    }
    .whatsapp_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
        z-index: 100;
    }
}