/********** Template CSS **********/

:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body {
    background: #000000;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /* border-bottom: 1px solid #1A1A1A; */
    background: #000000;
}

.top-bar .top-zone {
    color: #FFFFFF;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navi-drop {
    background: #000000;
}

.navi-drop a {
    color: #FFFFFF;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 25px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.logo img {
    width: 225px;
}

.navbar {
    background: #000000 !important;
}

.navbar .navbar-nav {
    background: #000000 !important;
    color: #FFFFFF !important;
}

.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF !important;
}

.navbar .navbar-nav .nav-link {
    color: #FFFFFF !important;
}

.nav-zone {
    color: #02055A;
}

.nav-zone-bg {
    background: #FFFFFF;
}


/*** Header ***/

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #000000;
    border: 10px solid #000000;
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}


/* #header-carousel{
    margin-top: 100px;
} */

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/

.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/

.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/

.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/

.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/

.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/

.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/

.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
    color: #FFFFFF;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: #FFFFFF;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: #000000;
}

.testimonial-carousel .owl-dot.active::after {
    background: #FFFFFF;
}


/*** Footer ***/

.footer {
    margin-top: 140px !important;
    background: #000000 !important;
    border-top: 1px solid #1A1A1A;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn-outline-light {
    color: #FFFFFF;
}

.footer .btn-outline-light:hover {
    color: #02055A;
    background: #FFFFFF;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.bi {
    color: #000000;
}

.btn-lg-square {
    background: #FFFFFF;
}

.footer .fa {
    color: #FFFFFF;
}

.footer .fa-solid {
    color: #FFFFFF;
}

.footer p {
    color: #FFFFFF;
}

.copyright {
    color: var(--light);
    background: #000000;
    border-top: 1px solid #1A1A1A;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: #FFFFFF;
}

.about-sec a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    margin-left: 20px;
    color: #FFFFFF;
}

.about-btn {
    margin-top: 30px;
}

.about-sec a:hover {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}


/* .about-text p{
    margin-top: -100px !important;

} */

.services-sec {
    margin-top: 140px;
}

.service-text {
    text-align: center;
}

.service-text h1 {
    margin-top: 25px;
    color: #FFFFFF;
    font-size: 46px;
}

.services-sec .cards {
    text-align: center;
    padding: 30px 0px;
    background: var(--light);
    margin-top: 50px;
    border-radius: 5px;
    transform: translateY(25px);
    transition: 0.5s;
}

.cards:hover {
    transform: translateY(0px);
}

.services-sec .cards h3 {
    font-size: 28px;
    color: var(--dark);
    margin-top: 25px;
}

.services-sec .cards .fa-solid {
    font-size: 50px;
    color: var(--primary);
}

.about-part {
    margin-top: 140px;
}

.about-part img {
    margin-top: 50px;
}

.about-part h1 {
    color: #FFFFFF;
    /* text-align: center; */
    font-size: 46px;
}

.about-sec h1 {
    text-align: start;
    margin-top: -325px !important;
    margin-left: 20px;
    font-size: 46px;
}

.about-sec p {
    margin-left: 20px;
    margin-top: 20px;
}

.testi {
    margin-top: 75px;
}

.testi h1 {
    color: #FFFFFF;
    font-size: 46px;
}

.testi h4 {
    color: #FFFFFF;
}

.testi span {
    color: #FFFFFF;
}

.service-set h1 {
    text-align: start;
    margin-top: -300px !important;
    font-size: 46px;
    color: #FFFFFF;
}

.service-set p {
    margin-top: 20px;
}

.service-set a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    color: #FFFFFF;
}

.service-set a:hover {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.intro-contact {
    margin-top: 140px;
}

.intro-contact-details {
    border: 1px solid #FFFFFF;
    padding: 70px;
    border-radius: 5px;
}

.intro-contact-btn {
    margin-top: 50px;
}

.intro-contact-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    color: #FFFFFF;
}

.intro-contact-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}


/* About Page Styles */

.about-page {
    margin-top: 200px;
}

.about-title-sec {
    text-align: center;
    /* border: 1px solid #FFFFFF;
    padding: 70px;
    border-radius: 5px; */
}

.about-title-sec h1 {
    font-size: 46px;
    color: #FFFFFF;
}

.about-page-parts {
    margin-top: 140px;
}

.about-page-parts-details h1 {
    font-size: 30px;
    color: #FFFFFF;
}

.about-page-parts-details p {
    color: silver;
    line-height: 30px;
    /* margin-top: 20px; */
    font-size: 20px;
}

.about-contact-btn {
    margin-top: 35px;
}

.about-contact-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    color: #FFFFFF;
}

.about-contact-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}

.intro-services {
    margin-top: 140px;
}

.intro-services-details {
    border: 1px solid #FFFFFF;
    padding: 70px;
    border-radius: 5px;
}

.intro-services-btn {
    margin-top: 50px;
}

.intro-services-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    color: #FFFFFF;
}

.intro-services-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}


/* Services Page Styles */

.services-page {
    margin-top: 200px;
}

.services-title-sec {
    text-align: center;
    /* border: 1px solid #FFFFFF;
    padding: 70px;
    border-radius: 5px; */
}

.services-title-sec h1 {
    font-size: 46px;
    color: #FFFFFF;
}

.services-page-parts {
    margin-top: 140px;
}

.services-page-parts-details h1 {
    font-size: 46px;
    color: #FFFFFF;
}

.services-page-parts-details p {
    color: silver;
    line-height: 30px;
    margin-top: 20px;
    font-size: 20px;
}

.aservices-contact-btn {
    margin-top: 30px;
}

.services-contact-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    /* margin-left: 20px; */
    color: #FFFFFF;
}

.services-contact-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}


/* Contact Page Style */

.contact-page {
    margin-top: 200px;
}

.contact-title-sec {
    text-align: center;
    /* border: 1px solid #FFFFFF;
    padding: 70px;
    border-radius: 5px; */
}

.contact-title-sec h1 {
    font-size: 46px;
    color: #FFFFFF;
}

.form-control {
    background: #000000;
    border: 1px solid #FFFFFF;
}

.form-control:active {
    background: #000000;
}

.contact-form {
    margin-top: 140px;
}

.contact-form h1 {
    font-size: 46px;
}

.contact-page-button button {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    /* margin-left: 20px; */
    color: #FFFFFF;
}

.contact-page-button button:hover {
    background: #FFFFFF;
    color: #000000;
}

.map {
    margin-top: 100px;
    display: none;
}


/* .map iframe{
    min-height: 500px;
} */

.footer-social {
    margin-right: 15px !important;
}

.about-sec-page {
    margin-top: 75px;
}

.about-sec-details h1 {
    font-size: 46px;
    color: #FFFFFF;
}

.about-sec-details p {
    color: silver;
    line-height: 30px;
    margin-top: 20px;
    font-size: 20px;
}

.about-sec-btn {
    margin-top: 35px;
}

.about-sec-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    /* margin-left: 20px; */
    color: #FFFFFF;
}

.about-sec-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}

.services-sec-page {
    margin-top: 140px;
}

.services-sec-details h1 {
    font-size: 36px;
    color: #FFFFFF;
}

.services-sec-details p {
    color: silver;
    line-height: 30px;
    margin-top: 20px;
    font-size: 20px;
}

.services-sec-btn {
    margin-top: 35px;
}

.services-sec-btn a {
    border: 1px solid #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    /* margin-left: 20px; */
    color: #FFFFFF;
}

.services-sec-btn a:hover {
    background: #FFFFFF;
    color: #000000;
}

.mobile {
    display: none;
}

.mobile-service {
    display: none;
}

.imp-about {
    margin-top: 50px;
}

.toggle-icon .fas {
    font-size: 30px;
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    padding: 5px 10px;
    border-radius: 5px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:hover {
    border: none;
}

.mobile-banner {
    display: none;
}


/* .desk-banner{
    margin-top: 130px;
} */

.corou-btn {
    padding: 15px 35px !important;
}

.corou-btn:hover {
    background: #FFFFFF;
    color: #000000 !important;
}


/* NEW MENU SECTION STYLES */

header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #FFF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed !important;
}

header.transparent {
    background: transparent;
}

header.transparent .main-header-wraper {
    background: transparent !important;
}

header .logo a {
    display: block;
}

header.header-1 {
    position: relative;
}

header.header-1 .main-menu.main-menu_4 ul>li:hover>a,
header.header-1 .main-menu.main-menu_4 ul>li:focus>a,
header.header-1 .main-menu.main-menu_4 ul>li.active>a {
    color: #FFFFFF;
}

header.header-1 .main-menu ul>li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

header.header-1 .main-menu ul>li>a {
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    line-height: 19px;
    color: #0E1E36;
    padding: 40.5px 24px;
    display: inline-block;
    text-transform: capitalize;
}

@media (max-width: 1299px) {
    header.header-1 .main-menu ul>li>a {
        padding-left: 20px;
        padding-right: 20px;
    }
}

header.header-1 .main-menu ul>li>a i {
    margin-left: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-1 .main-menu ul>li:hover>a,
header.header-1 .main-menu ul>li:focus>a,
header.header-1 .main-menu ul>li.active>a {
    color: #FFFFFF;
}

header.header-1 .main-menu ul>li:hover>a i,
header.header-1 .main-menu ul>li:focus>a i,
header.header-1 .main-menu ul>li.active>a i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

header.header-1 .main-menu ul>li:hover>ul,
header.header-1 .main-menu ul>li:focus>ul,
header.header-1 .main-menu ul>li.active>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

header.header-1 .main-menu ul>li>ul {
    left: 0;
    top: 100%;
    opacity: 0;
    min-width: 230px;
    z-index: 999;
    position: absolute;
    visibility: hidden;
    padding: 10px 0px;
    background-color: #FFF;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
    box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}

header.header-1 .main-menu ul>li>ul li {
    display: block;
}

header.header-1 .main-menu ul>li>ul li a {
    display: block;
    color: #0E1E36;
    padding: 12px 25px;
}

header.header-1 .main-menu ul>li>ul li a:hover {
    color: #FFFFFF !important;
}

header.header-1 .main-menu ul>li>ul ul {
    top: 0;
    left: 100%;
}

header.header-1 .top-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 9px 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed !important;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
}

header.header-1 .top-header.top-header-2 {
    padding: 0;
    background-color: #FFF;
}

header.header-1 .top-header.top-header-2 .header-cta ul>li>a {
    color: #243342;
}

header.header-1 .top-header.top-header-2 .header-cta ul>li>a i {
    color: #FF9C00;
}

header.header-1 .top-header.top-header-2 .social-profile a i {
    color: #243342;
}

header.header-1 .top-header.top-header_4 .header-cta i {
    color: #FFFFFF !important;
}

header.header-1 .top-header.top-header_4 .social-profile li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}

header.header-1 .top-header.top-header_4 .social-profile li a:hover,
header.header-1 .top-header.top-header_4 .social-profile li a:focus {
    background-color: #FFFFFF !important;
}

header.header-1 .top-header .header-cta ul {
    margin: 0;
    padding: 0;
    gap: 49.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 991px) {
    header.header-1 .top-header .header-cta ul {
        gap: 40px;
    }
}

header.header-1 .top-header .header-cta ul li {
    position: relative;
}

header.header-1 .top-header .header-cta ul li::before {
    top: 50%;
    width: 1.5px;
    content: "";
    height: 30px;
    right: -24.75px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    header.header-1 .top-header .header-cta ul li::before {
        right: -18.5px;
    }
}

header.header-1 .top-header .header-cta ul li:last-child::before {
    display: none;
}

header.header-1 .top-header .header-cta ul li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    font-family: "Lato", sans-serif;
    cursor: default;
    display: inline-block;
}

header.header-1 .top-header .header-cta ul li a i {
    margin-right: 10px;
}

header.header-1 .top-header .header-cta ul li a:hover:-moz-any-link,
header.header-1 .top-header .header-cta ul li a:focus:-moz-any-link {
    color: #000;
    cursor: pointer;
}

header.header-1 .top-header .header-cta ul li a:hover:any-link,
header.header-1 .top-header .header-cta ul li a:focus:any-link {
    color: #000;
    cursor: pointer;
}

header.header-1 .top-header .header-right-socail {
    gap: 30px;
}

@media (max-width: 991px) {
    header.header-1 .top-header .header-right-socail {
        gap: 20px;
    }
}

header.header-1 .top-header .header-right-socail h6 {
    font-size: 15px;
    line-height: 18px;
}

header.header-1 .top-header .header-right-socail .social-profile ul {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    header.header-1 .top-header .header-right-socail .social-profile ul {
        gap: 15px;
    }
}

header.header-1 .top-header .header-right-socail .social-profile ul li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}

header.header-1 .top-header .header-right-socail .social-profile ul li a:hover,
header.header-1 .top-header .header-right-socail .social-profile ul li a:focus {
    color: #000;
}

header.header-1 .main-header-wraper {
    left: 0;
    top: 41px;
    width: 100%;
    z-index: 1030;
    padding: 0 15px;
    background-color: #000000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed !important;
}

header.header-1 .main-header-wraper.main-header-wraper-2 {
    background: #0E0A01 !important;
}

@media (max-width: 1199px) {
    header.header-1 .main-header-wraper {
        padding: 18px 0;
    }
}

@media (max-width: 767px) {
    header.header-1 .main-header-wraper {
        top: 0;
    }
}

header.header-1 .main-header-wraper .header-menu {
    margin-right: auto;
    padding-left: 76px !important;
}

@media (max-width: 1299px) {
    header.header-1 .main-header-wraper .header-menu {
        padding-left: 60px !important;
    }
}

header.header-1 .main-header-wraper .header-right {
    gap: 30px;
    padding-right: 55px !important;
}

@media (max-width: 1299px) {
    header.header-1 .main-header-wraper .header-right {
        gap: 20px;
        padding-right: 0 !important;
    }
}

header.header-1 .main-header-wraper .header-right .header-search {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

header.header-1 .main-header-wraper .header-right .header-search.header-search_2 .search-toggle:hover {
    color: #FFFFFF !important;
}

@media (max-width: 575px) {
    header.header-1 .main-header-wraper .header-right .header-search {
        margin-right: 15px;
    }
}

header.header-1 .main-header-wraper .header-right .header-search .search-toggle {
    cursor: pointer;
    color: #0E1E36;
}

header.header-1 .main-header-wraper .header-right .header-search .search-toggle:hover {
    color: #FFFFFF;
}

header.header-1 .main-header-wraper .header-right .header-search .search-toggle span {
    font-size: 20px;
    font-weight: 500;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box {
    width: 0;
    left: 50%;
    border: 0;
    opacity: 0;
    z-index: 1;
    padding: 10px 20px;
    border-radius: 4px;
    visibility: hidden;
    position: absolute;
    background: #FFF;
    top: calc(100% + 30px);
    -webkit-filter: drop-shadow(0px 24px 24px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 24px 24px rgba(0, 0, 0, 0.16));
    -webkit-transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 1200px) {
    header.header-1 .main-header-wraper .header-right .header-search .search-box {
        top: calc(100% + 45px);
    }
}

@media (max-width: 767px) {
    header.header-1 .main-header-wraper .header-right .header-search .search-box {
        left: -285%;
    }
}

header.header-1 .main-header-wraper .header-right .header-search .search-box:before {
    left: 0;
    right: 0;
    top: -5px;
    z-index: -1;
    content: "";
    width: 12px;
    height: 12px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    border-radius: 2px;
    background: #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 480px) {
    header.header-1 .main-header-wraper .header-right .header-search .search-box:before {
        right: -132px;
    }
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group {
    margin: 0;
    padding: 0;
    position: relative;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group:before {
    left: 0;
    width: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 1px;
    margin-left: auto;
    background: #25415d;
    margin-right: auto;
    position: absolute;
    -webkit-transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1);
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-input {
    width: 100%;
    border: 0 !important;
    font-size: 16px !important;
    padding: 10px 0 !important;
    line-height: 22px !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 22px !important;
    color: #243342 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-webkit-input-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-moz-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-ms-input-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-moz-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit {
    right: 0;
    top: auto;
    border: 0;
    bottom: auto;
    font-size: 16px;
    color: #243342;
    position: absolute;
    background: transparent;
    -webkit-transition: all all 0.3s ease ease-in-out;
    transition: all all 0.3s ease ease-in-out;
}

header.header-1 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:hover {
    color: #0E0A01;
}

header.header-1 .main-header-wraper .header-right .header-search.show .search-toggle {
    color: #FFFFFF;
}

header.header-1 .main-header-wraper .header-right .header-search.show .search-box {
    opacity: 1;
    width: 530px;
    visibility: visible;
}

@media (max-width: 767px) {
    header.header-1 .main-header-wraper .header-right .header-search.show .search-box {
        width: 280px;
    }
}

header.header-1 .main-header-wraper .header-right .header-search.show .search-box .form-group:before {
    width: 100%;
}

header.header-1 .main-header-wraper .header-right .horizontal-bar {
    width: 1px;
    height: 40px;
    background: #D9D9D9;
}

header.header-1 .main-header-wraper .header-right .header-contact {
    gap: 15px;
    color: #000000;
}

header.header-1 .main-header-wraper .header-right .header-contact:hover .icon i,
header.header-1 .main-header-wraper .header-right .header-contact:focus .icon i {
    color: #000000;
}

header.header-1 .main-header-wraper .header-right .header-contact:hover .text span,
header.header-1 .main-header-wraper .header-right .header-contact:hover .text h5,
header.header-1 .main-header-wraper .header-right .header-contact:focus .text span,
header.header-1 .main-header-wraper .header-right .header-contact:focus .text h5 {
    color: #000000;
}

header.header-1 .main-header-wraper .header-right .header-contact .icon {
    width: 40px;
    height: 40px;
    font-size: 30px;
    margin-top: -15px;
}

header.header-1 .main-header-wraper .header-right .header-contact .icon i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-1 .main-header-wraper .header-right .header-contact .icon img {
    width: 100%;
    height: 100%;
}

header.header-1 .main-header-wraper .header-right .header-contact .text h5 {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-1 .main-header-wraper .header-right .header-contact .text span {
    font-size: 14px;
    line-height: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-1.stop .top-header {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

header.header-1.stop .main-header-wraper {
    top: 0;
    background: #000000;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
}

header.bg_dark .main-header-wraper {
    background: #EFF0F6;
}

header.bg_dark .main-menu ul>li>ul {
    background-color: #EFF0F6;
}

header.bg_dark .header-right .header-search .search-box {
    background: #EFF0F6 !important;
}

header.bg_dark .header-right .header-search .search-box:before {
    background: #EFF0F6 !important;
}

header.header-3 .top-header {
    background: #000000;
}

header.header-3 .top-header .header-right-socail .social-profile ul li a:hover,
header.header-3 .top-header .header-right-socail .social-profile ul li a:focus {
    color: #FFFFFF;
}

header.header-3 .top-header .header-cta ul {
    gap: 34px;
}

header.header-3 .top-header .header-cta ul li::before {
    content: inherit;
}

header.header-3 .top-header .header-cta ul li a i {
    color: #FFFFFF;
}

header.header-3 .top-header .header-cta.header-cta-2 a i {
    color: #FF9C00;
}

header.header-3 .main-header-wraper .main_wrapper {
    padding: 5px 10px;
    border-radius: 4px;
    width: 1386px;
    position: absolute;
    z-index: 999;
    max-width: 100%;
    background-color: rgb(255, 255, 255);
    margin: 0 auto !important;
}

@media (max-width: 1400px) {
    header.header-3 .main-header-wraper .main_wrapper {
        width: 1320px;
        margin: 0 auto !important;
    }
}

@media (max-width: 1300px) {
    header.header-3 .main-header-wraper .main_wrapper {
        width: 1140px;
    }
}

@media (max-width: 1200px) {
    header.header-3 .main-header-wraper .main_wrapper {
        position: relative;
        width: 100%;
        max-width: none;
    }
}

header.header-3 .main-header-wraper .header-right .horizontal-bar {
    background: rgba(14, 30, 54, 0.15);
}

header.header-2.stop .main-header-wraper {
    background: #000 !important;
}

header.header-2 .top-header {
    padding: 27.5px 0;
    background: transparent;
}

header.header-2 .top-header .header-right-socail {
    gap: 50px;
}

@media (max-width: 1399px) {
    header.header-2 .top-header .header-right-socail {
        gap: 30px;
    }
}

header.header-2 .top-header .header-right-socail .header-contact {
    gap: 10px;
    display: block;
    cursor: default;
    color: #0E1E36;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:-moz-any-link,
header.header-2 .top-header .header-right-socail .header-contact:focus:-moz-any-link {
    cursor: pointer;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:any-link,
header.header-2 .top-header .header-right-socail .header-contact:focus:any-link {
    cursor: pointer;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:-moz-any-link .icon i,
header.header-2 .top-header .header-right-socail .header-contact:focus:-moz-any-link .icon i {
    color: #FFFFFF;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:any-link .icon i,
header.header-2 .top-header .header-right-socail .header-contact:focus:any-link .icon i {
    color: #FFFFFF;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:-moz-any-link .text span,
header.header-2 .top-header .header-right-socail .header-contact:hover:-moz-any-link .text h5,
header.header-2 .top-header .header-right-socail .header-contact:focus:-moz-any-link .text span,
header.header-2 .top-header .header-right-socail .header-contact:focus:-moz-any-link .text h5 {
    color: #FFFFFF !important;
}

header.header-2 .top-header .header-right-socail .header-contact:hover:any-link .text span,
header.header-2 .top-header .header-right-socail .header-contact:hover:any-link .text h5,
header.header-2 .top-header .header-right-socail .header-contact:focus:any-link .text span,
header.header-2 .top-header .header-right-socail .header-contact:focus:any-link .text h5 {
    color: #FFFFFF !important;
}

header.header-2 .top-header .header-right-socail .header-contact .icon i {
    font-size: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-2 .top-header .header-right-socail .header-contact .icon i:not(.icon-phone) {
    font-size: 22px;
}

header.header-2 .top-header .header-right-socail .header-contact .icon img {
    width: 100%;
    height: 100%;
}

header.header-2 .top-header .header-right-socail .header-contact .text h5 {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 1399px) {
    header.header-2 .top-header .header-right-socail .header-contact .text h5 {
        font-size: 18px;
        line-height: 24px;
    }
}

header.header-2 .top-header .header-right-socail .header-contact .text span {
    font-size: 14px;
    line-height: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-2 .main-menu ul>li>a {
    color: #FFF;
    font-weight: 600;
    padding: 28px 24px;
}

header.header-2 .main-menu ul>li>a:hover,
header.header-2 .main-menu ul>li>a:focus {
    color: #FF9C00;
}

header.header-2 .main-menu ul>li>a i {
    color: #FF9C00;
}

header.header-2 .main-header-wraper {
    top: 100px;
}

@media (max-width: 1199px) {
    header.header-2 .main-header-wraper {
        top: 0;
    }
}

header.header-2 .main-header-wraper .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 1199px) {
    header.header-2 .main-header-wraper .border-top {
        border: inherit !important;
    }
}

header.header-2 .main-header-wraper .social-profile ul {
    gap: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

header.header-2 .main-header-wraper .social-profile ul li {
    position: relative;
}

header.header-2 .main-header-wraper .social-profile ul li.no_bullet:after {
    content: inherit;
}

header.header-2 .main-header-wraper .social-profile ul li:after {
    content: "";
    width: 1px;
    right: -16px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    background: rgba(255, 255, 255, 0.1);
}

header.header-2 .main-header-wraper .social-profile ul li a {
    color: #FFF;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

header.header-2 .main-header-wraper .social-profile ul li a:hover,
header.header-2 .main-header-wraper .social-profile ul li a:focus {
    color: #FF9C00;
}

header.header-2 .main-header-wraper .header-menu {
    margin-left: auto;
}

header.header-2 .main-header-wraper .header-menu ul>li>ul {
    background: #000;
}

header.header-2 .main-header-wraper .header-menu ul>li>ul li a {
    color: #FFF;
}

header.header-2 .main-header-wraper .header-menu ul>li>ul li a:hover {
    color: #FF9C00;
}

header.header-2 .main-header-wraper .header-right {
    gap: 40px;
    padding-right: 0 !important;
}

@media (max-width: 1399px) {
    header.header-2 .main-header-wraper .header-right {
        gap: 30px;
    }
}

@media (max-width: 420px) {
    header.header-2 .main-header-wraper .header-right {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    header.header-2 .main-header-wraper .header-right {
        gap: 15px;
    }
}

header.header-2 .main-header-wraper .header-right .header-search {
    margin-right: 0 !important;
}

header.header-2 .main-header-wraper .header-right .header-search.show .search-toggle {
    color: #FF9C00;
}

header.header-2 .main-header-wraper .header-right .header-search .search-toggle {
    color: #FFF;
}

header.header-2 .main-header-wraper .header-right .header-search .search-toggle span {
    font-weight: 300;
}

header.header-2 .main-header-wraper .header-right .header-search .search-toggle:hover {
    color: #FF9C00;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box {
    left: -678%;
    top: calc(100% + 30px);
}

@media (max-width: 767px) {
    header.header-2 .main-header-wraper .header-right .header-search .search-box {
        left: -157%;
    }
}

header.header-2 .main-header-wraper .header-right .header-search .search-box:before {
    right: -296px;
}

@media (max-width: 767px) {
    header.header-2 .main-header-wraper .header-right .header-search .search-box:before {
        right: -78px;
    }
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group::before {
    background: #FF9C00;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit,
header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-input {
    color: #FF9C00 !important;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-webkit-input-placeholder,
header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-webkit-input-placeholder {
    color: #FF9C00;
    font-size: 16px;
    font-weight: 400;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-moz-placeholder,
header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-moz-placeholder {
    color: #FF9C00;
    font-size: 16px;
    font-weight: 400;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:-ms-input-placeholder,
header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-ms-input-placeholder {
    color: #FF9C00;
    font-size: 16px;
    font-weight: 400;
}

header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:-moz-placeholder,
header.header-2 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-moz-placeholder {
    color: #FF9C00;
    font-size: 16px;
    font-weight: 400;
}

header.header-2 .main-header-wraper .header-right .horizontal-bar {
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 350px) {
    header.header-2 .main-header-wraper .header-right .horizontal-bar {
        display: none;
    }
}

header.header-2 .main-header-wraper .header-right .shop-cart {
    color: #FFF;
    margin-right: 7px;
    position: relative;
}

header.header-2 .main-header-wraper .header-right .shop-cart i {
    font-size: 20px;
}

header.header-2 .main-header-wraper .header-right .shop-cart .number {
    top: -4px;
    right: -7px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    line-height: 15px;
    text-align: center;
    position: absolute;
    border-radius: 500px;
    background: #FF9C00;
}

header.header-2 #hamburger {
    color: #FF9C00 !important;
}

header.header-3 .top-header {
    padding-top: 0;
    padding-bottom: 0;
}

header.header-3 .top-header .header-right-socail {
    gap: 20px;
}

header.header-3 .top-header .header-right-socail .social-profile ul {
    gap: 0;
}

header.header-3 .top-header .header-right-socail .social-profile ul li a {
    display: block;
    font-size: 15px;
    padding: 8px 20.5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

header.header-3 .top-header .header-right-socail .social-profile ul li a:hover,
header.header-3 .top-header .header-right-socail .social-profile ul li a:focus {
    background: #EF0548;
    color: #FFF;
}

header.header-3 .top-header .header-cta ul {
    gap: 40px;
}

header.header-3 .top-header .header-cta ul li {
    z-index: 1;
    position: relative;
}

header.header-3 .top-header .header-cta ul li:last-child:after {
    content: inherit;
}

header.header-3 .top-header .header-cta ul li:after {
    width: 1px;
    top: -13px;
    z-index: -1;
    height: 50px;
    right: -20px;
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

header.header-3 .top-header .header-cta ul li a {
    color: #FFF;
    cursor: default;
    font-size: 15px;
    font-weight: 400;
}

header.header-3 .top-header .header-cta ul li a:hover:-moz-any-link,
header.header-3 .top-header .header-cta ul li a:focus:-moz-any-link {
    color: #EF0548;
    cursor: pointer;
}

header.header-3 .top-header .header-cta ul li a:hover:any-link,
header.header-3 .top-header .header-cta ul li a:focus:any-link {
    color: #EF0548;
    cursor: pointer;
}

header.header-3 .top-header .header-cta ul li a i {
    color: #EF0548;
    font-size: 15px;
}

header.header-3 .top-header .header-cta ul li a i.icon-phone {
    font-size: 16px !important;
}

header.header-3 .top-header .header-cta ul li a i.icon-email {
    font-size: 12px !important;
}

header.header-3 .header-menu {
    margin-left: auto;
}

header.header-3 .header-menu ul>li:hover>a,
header.header-3 .header-menu ul>li:focus>a,
header.header-3 .header-menu ul>li.active>a {
    color: #EF0548;
}

header.header-3 .header-menu ul>li a {
    color: #FFFFFF;
    padding: 33px 20px;
}

header.header-3 .header-menu ul>li>ul li a:hover {
    color: #EF0548;
}

@media (max-width: 1199px) {
    header.header-3 .main-header-wraper {
        top: 0;
    }
}

header.header-3 .main-header-wraper .header-right {
    padding-right: 0 !important;
}

header.header-3 .main-header-wraper .header-right .header-search {
    margin-right: 0 !important;
}

header.header-3 .main-header-wraper .header-right .header-search.show .search-toggle {
    color: #EF0548;
}

header.header-3 .main-header-wraper .header-right .header-search .search-toggle {
    color: #04213F;
}

header.header-3 .main-header-wraper .header-right .header-search .search-toggle span {
    font-weight: 300;
}

header.header-3 .main-header-wraper .header-right .header-search .search-toggle:hover {
    color: #EF0548;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box {
    left: -678%;
    top: calc(100% + 37px);
}

@media (max-width: 767px) {
    header.header-3 .main-header-wraper .header-right .header-search .search-box {
        left: -157%;
    }
}

@media (max-width: 500px) {
    header.header-3 .main-header-wraper .header-right .header-search .search-box {
        left: -344%;
        top: calc(100% + 40px);
    }
}

header.header-3 .main-header-wraper .header-right .header-search .search-box:before {
    right: -296px;
}

@media (max-width: 767px) {
    header.header-3 .main-header-wraper .header-right .header-search .search-box:before {
        right: -78px;
    }
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group::before {
    background: #EF0548;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit,
header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-input {
    color: #EF0548 !important;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-webkit-input-placeholder,
header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-webkit-input-placeholder {
    color: #EF0548;
    font-size: 16px;
    font-weight: 500;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-moz-placeholder,
header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-moz-placeholder {
    color: #EF0548;
    font-size: 16px;
    font-weight: 500;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:-ms-input-placeholder,
header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-ms-input-placeholder {
    color: #EF0548;
    font-size: 16px;
    font-weight: 500;
}

header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:-moz-placeholder,
header.header-3 .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-moz-placeholder {
    color: #EF0548;
    font-size: 16px;
    font-weight: 500;
}

header.header-3 .main-header-wraper .header-btn {
    border: 0;
    z-index: 1;
    color: #FFF;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    padding: 15px 28px;
    background-color: #EF0548;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    header.header-3 .main-header-wraper .header-btn {
        padding: 12.5px 28px;
    }
}

@media (max-width: 500px) {
    header.header-3 .main-header-wraper .header-btn {
        display: none;
    }
}

header.header-3 .main-header-wraper .header-btn:after {
    top: 50%;
    left: 50%;
    height: 0%;
    width: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background: #FF9C00;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

header.header-3 .main-header-wraper .header-btn i {
    font-size: 12px;
    margin-left: 10px;
}

header.header-3 .main-header-wraper .header-btn:hover,
header.header-3 .main-header-wraper .header-btn:focus {
    background: #FF9C00;
}

header.header-3 .main-header-wraper .header-btn:hover:after,
header.header-3 .main-header-wraper .header-btn:focus:after {
    height: 380%;
}

header.header-3 .main-header-wraper #hamburger {
    color: #EF0548;
}

header.header-4 .main-nav-menu {
    background: #000000;
    padding: 0 0;
}

@media (max-width: 1200px) {
    header.header-4 .main-nav-menu {
        padding: 0px 15px;
    }
}

header.header-4 .social-profile a:hover i {
    color: #FF9C00 !important;
}

header.header-4 .main-menu li a {
    color: #FFF !important;
    padding: 15px 10px !important;
}

header.header-4 .main-menu li:hover a {
    color: #FF9C00 !important;
}

header.header-4 .main-menu li ul {
    min-width: 200px !important;
}

header.header-4 .main-menu li ul>li a {
    color: #FFFFFF !important;
}

header.header-4 .main-menu li ul>li:hover a {
    color: #FF9C00 !important;
}

header.header-4 .header-right {
    gap: 20px;
    padding-right: 0px !important;
}

@media (max-width: 1299px) {
    header.header-4 .header-right {
        gap: 20px;
        padding-right: 0 !important;
    }
}

header.header-4 .header-right .header-search {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media (max-width: 575px) {
    header.header-4 .header-right .header-search {
        margin-right: 15px;
    }
}

header.header-4 .header-right .header-search .search-toggle {
    cursor: pointer;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 6px;
    background-color: #FF9C00;
}

header.header-4 .header-right .header-search .search-toggle:hover {
    background-color: #FFF;
    color: #FF9C00;
}

header.header-4 .header-right .header-search .search-toggle span {
    font-size: 20px;
    font-weight: 500;
}

header.header-4 .header-right .header-search .search-box {
    width: 0;
    left: 50%;
    border: 0;
    opacity: 0;
    z-index: 1;
    padding: 10px 20px;
    border-radius: 4px;
    visibility: hidden;
    position: absolute;
    background: #FFF;
    top: calc(100% + 30px);
    -webkit-filter: drop-shadow(0px 24px 24px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 24px 24px rgba(0, 0, 0, 0.16));
    -webkit-transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 1200px) {
    header.header-4 .header-right .header-search .search-box {
        top: calc(100% + 45px);
    }
}

@media (max-width: 767px) {
    header.header-4 .header-right .header-search .search-box {
        left: -285%;
    }
}

header.header-4 .header-right .header-search .search-box:before {
    left: 0;
    right: 0;
    top: -5px;
    z-index: -1;
    content: "";
    width: 12px;
    height: 12px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    border-radius: 2px;
    background: #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 480px) {
    header.header-4 .header-right .header-search .search-box:before {
        right: -132px;
    }
}

header.header-4 .header-right .header-search .search-box .form-group {
    margin: 0;
    padding: 0;
    position: relative;
}

header.header-4 .header-right .header-search .search-box .form-group:before {
    left: 0;
    width: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 1px;
    margin-left: auto;
    background: #25415d;
    margin-right: auto;
    position: absolute;
    -webkit-transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1);
}

header.header-4 .header-right .header-search .search-box .form-group .search-input {
    width: 100%;
    border: 0 !important;
    font-size: 16px !important;
    padding: 10px 0 !important;
    line-height: 22px !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 22px !important;
    color: #243342 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

header.header-4 .header-right .header-search .search-box .form-group .search-input::-webkit-input-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-4 .header-right .header-search .search-box .form-group .search-input::-moz-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-4 .header-right .header-search .search-box .form-group .search-input:-ms-input-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-4 .header-right .header-search .search-box .form-group .search-input:-moz-placeholder {
    color: #243342;
    font-size: 16px;
    font-weight: 400;
}

header.header-4 .header-right .header-search .search-box .form-group .search-submit {
    right: 0;
    top: auto;
    border: 0;
    bottom: auto;
    font-size: 16px;
    color: #243342;
    position: absolute;
    background: transparent;
    -webkit-transition: all all 0.3s ease ease-in-out;
    transition: all all 0.3s ease ease-in-out;
}

header.header-4 .header-right .header-search .search-box .form-group .search-submit:hover {
    color: #0E0A01;
}

header.header-4 .header-right .header-search.show .search-toggle {
    color: #FFFFFF;
}

header.header-4 .header-right .header-search.show .search-box {
    opacity: 1;
    width: 530px;
    visibility: visible;
}

@media (max-width: 767px) {
    header.header-4 .header-right .header-search.show .search-box {
        width: 280px;
    }
}

header.header-4 .header-right .header-search.show .search-box .form-group:before {
    width: 100%;
}

header.header-4 .header-right .horizontal-bar {
    width: 1px;
    height: 40px;
    background: #D9D9D9;
}

header.header-4 .header-right .header-contact {
    gap: 15px;
    color: #0E1E36;
}

header.header-4 .header-right .header-contact:hover .icon i,
header.header-4 .header-right .header-contact:focus .icon i {
    color: #FF9C00;
}

header.header-4 .header-right .header-contact:hover .text span,
header.header-4 .header-right .header-contact:hover .text h5,
header.header-4 .header-right .header-contact:focus .text span,
header.header-4 .header-right .header-contact:focus .text h5 {
    color: #FF9C00;
}

header.header-4 .header-right .header-contact .icon {
    width: 40px;
    height: 40px;
    font-size: 40px;
}

header.header-4 .header-right .header-contact .icon i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-4 .header-right .header-contact .icon img {
    width: 100%;
    height: 100%;
}

header.header-4 .header-right .header-contact .text h5 {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-4 .header-right .header-contact .text span {
    font-size: 14px;
    line-height: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.header-4 .header-right .theme-btn {
    padding: 20px 40px;
}

header.hover-color-green .header-menu ul>li:hover a,
header.hover-color-green .header-menu ul>li:focus a {
    color: #FFFFFF;
}

header.hover-color-green .header-menu ul>li>ul li a {
    color: #04213F !important;
}

header.hover-color-green .header-menu ul>li>ul li a:hover,
header.hover-color-green .header-menu ul>li>ul li a:focus {
    color: #FFFFFF !important;
}

header.hover-color-green .main-header-wraper .header-right .header-search.show .search-toggle,
header.hover-color-green .main-header-wraper .header-right .header-search:hover .search-toggle {
    color: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group:before {
    background: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit {
    color: #FFFFFF !important;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-webkit-input-placeholder,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-webkit-input-placeholder {
    color: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-moz-placeholder,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-moz-placeholder {
    color: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input:-ms-input-placeholder,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit:-ms-input-placeholder {
    color: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input::-ms-input-placeholder,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::-ms-input-placeholder {
    color: #FFFFFF;
}

header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-input::placeholder,
header.hover-color-green .main-header-wraper .header-right .header-search .search-box .form-group .search-submit::placeholder {
    color: #FFFFFF;
}

.header-gutter {
    top: 150px;
    min-height: 150px;
}

.header-gutter.home {
    top: 135px;
    min-height: 135px;
}

@media (max-width: 1199px) {
    .header-gutter.home {
        top: 85px;
        min-height: 85px;
    }
}

@media (max-width: 1199px) {
    .header-gutter {
        top: 132px;
        min-height: 132px;
    }
}

@media (max-width: 767px) {
    .header-gutter {
        top: 76px;
        min-height: 76px;
    }
}


/* .page-banner {
    z-index: 1;
    position: relative;
    background-color: #0E1E36;
  }
  .page-banner:before {
    left: -28px;
    width: 486px;
    content: "";
    z-index: -1;
    bottom: -280px;
    height: 486.71px;
    position: absolute;
    background-image: url("assets/img/page-banner/pattern.svg");
  }
  @media (max-width: 767px) {
    .page-banner:before {
      bottom: -12px;
    }
  }
  @media (max-width: 480px) {
    .page-banner:before {
      left: -181px;
    }
  }
  .page-banner__content {
    position: relative;
  }
  .page-banner__content .transparent-text {
    left: 0;
    top: -34px;
    z-index: -1;
    opacity: 0.3;
    font-size: 128px;
    font-weight: 700;
    line-height: 100px;
    position: absolute;
    white-space: nowrap;
    -webkit-text-stroke: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  }
  @media (max-width: 1346px) {
    .page-banner__content .transparent-text {
      top: -26px;
      font-size: 120px;
      line-height: 80px;
    }
  }
  @media (max-width: 1299px) {
    .page-banner__content .transparent-text {
      font-size: 106px;
    }
  }
  @media (max-width: 1199px) {
    .page-banner__content .transparent-text {
      top: -15px;
      font-size: 80px;
      line-height: 60px;
    }
  }
  @media (max-width: 991px) {
    .page-banner__content .transparent-text {
      top: -18px;
      font-size: 60px;
    }
  }
  @media (max-width: 380px) {
    .page-banner__content .transparent-text {
      font-size: 54px;
    }
  }
  .page-banner__content h1 {
    color: #FFF;
    font-weight: 700;
  }
  .page-banner__content h1 span {
    font-weight: 300;
  }
  @media (max-width: 1199px) {
    .page-banner__content h1 {
      font-size: 54px;
      line-height: 68px;
    }
  }
  @media (max-width: 991px) {
    .page-banner__content h1 {
      font-size: 40px;
      line-height: 54px;
    }
  }
  @media (max-width: 380px) {
    .page-banner__content h1 {
      font-size: 35px;
      line-height: 49px;
    }
  }
  .page-banner .breadcrumb {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
  }
  .page-banner .breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
  }
  .page-banner .breadcrumb .breadcrumb-item a {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
  }
  .page-banner .breadcrumb .breadcrumb-item a:hover {
    color: #4069FF;
  }
  .page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 15px;
  }
  .page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    color: #4069FF;
    padding-right: 15px;
    content: var(--bs-breadcrumb-divider, "|");
  }
  .page-banner .breadcrumb .breadcrumb-item.active {
    color: #4069FF;
  }
  .page-banner__media {
    max-height: 450px;
    position: relative;
    margin-right: calc(-50vw + 50%) !important;
  }
  .page-banner__media:after {
    top: 0;
    width: 100%;
    left: -1px;
    content: "";
    z-index: 1;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-image: url(assets/img/page-banner/page-banner-overly.png);
  }
  .page-banner__media:before {
    content: "";
    top: -395px;
    z-index: 1;
    left: 790px;
    width: 144.86px;
    height: 1194.97px;
    position: absolute;
    -webkit-transform: rotate(-30.99deg);
            transform: rotate(-30.99deg);
    background: rgba(64, 105, 255, 0.5);
  }
  @media (max-width: 767px) {
    .page-banner__media:before {
      top: 0;
      height: 100%;
      left: -9999px;
      width: 9999px;
      -webkit-transform: inherit;
              transform: inherit;
      background-color: #0E1E36;
    }
  }
  .page-banner__media .start {
    z-index: 2;
    left: 86px;
    bottom: 67px;
    position: absolute;
  }
  @media (max-width: 1199px) {
    .page-banner__media .start {
      left: 72px;
    }
  }
  @media (max-width: 1199px) {
    .page-banner__media .start {
      left: 30px;
    }
  }
  @media (max-width: 767px) {
    .page-banner__media .start {
      left: -5px;
    }
  }
  @media (max-width: 575px) {
    .page-banner__media .start {
      bottom: 75px;
      max-width: 100px;
    }
  }
  @media (max-width: 400px) {
    .page-banner__media .start {
      bottom: 40px;
      max-width: 70px;
    }
  } */

.mobile-nav {
    top: 0;
    width: 320px;
    right: -380px;
    max-width: 100%;
    padding: 20px;
    z-index: 1032;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
    scroll-behavior: smooth;
    background-color: #000000;
    -webkit-transition: right 0.5s ease-in;
    transition: right 0.5s ease-in;
    -webkit-box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
    box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}

.mobile-nav.show {
    right: 0px;
}

.mobile-nav-yellow {
    background-color: #FF9C00;
}

.mobile-nav-yellow .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu {
    background-color: #FF9C00 !important;
}

.mobile-nav-red {
    background-color: #EF0548;
}

.mobile-nav-red .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu {
    background-color: #EF0548 !important;
}

.mobile-nav .close-nav {
    border: 0;
    left: 20px;
    top: 10px;
    color: #fff;
    font-size: 25px;
    position: absolute;
    border-radius: 30px;
    background: transparent;
}

.mobile-nav .navigation {
    padding-top: 30px;
}

.mobile-nav .navigation .consulter-mobile-nav {
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-nav .navigation ul:not(.dropdown-menu) {
    position: relative;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li {
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFF;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li:last-child {
    border-bottom: inherit;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li>a {
    color: #FFF;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: transparent;
    /* text-transform: capitalize; */
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown {
    float: none;
    position: static !important;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown>a .dropdown-toggle {
    width: 30px;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown>a .dropdown-toggle:after {
    vertical-align: 0;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu {
    top: 0;
    border: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
    width: 100%;
    display: block;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 15px;
    position: absolute;
    background: #FFFFFF;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate3d(110%, 0, 0);
    transform: translate3d(110%, 0, 0);
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu .control svg {
    width: 20px;
    height: 20px;
    color: #FFF;
    margin-left: 7px;
    display: inline-block;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li {
    margin-bottom: 15px;
    padding: 0px 20px;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li>a {
    color: #000000;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: transparent;
    text-transform: capitalize;
    font-weight: bold;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li.dropdown-back {
    cursor: pointer;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 1px solid #000000;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li.dropdown-back a {
    font-size: 18px;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li:hover a,
.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown .dropdown-menu li:focus a {
    color: #000000;
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li.dropdown.is-open>.dropdown-menu {
    display: block;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mobile-nav .navigation ul:not(.dropdown-menu)>li:hover a,
.mobile-nav .navigation ul:not(.dropdown-menu)>li:focus a {
    color: #FFFFFF;
}

.sidebar-nav__bottom-contact-infos ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sidebar-nav__bottom-contact-infos ul li i {
    margin-right: 5px;
}

.sidebar-nav__bottom-contact-infos ul li a .icon i {
    font-size: 35px;
    margin-right: 10px;
}

.sidebar-nav__bottom-contact-infos ul li a .text h5 {
    color: #000;
}

.sidebar-nav__bottom-contact-infos ul li:hover a,
.sidebar-nav__bottom-contact-infos ul li:focus a {
    color: #FFF !important;
}

.sidebar-nav__bottom-contact-infos ul li:hover a:-moz-any-link,
.sidebar-nav__bottom-contact-infos ul li:focus a:-moz-any-link {
    color: #000 !important;
}

.sidebar-nav__bottom-contact-infos ul li:hover a:any-link,
.sidebar-nav__bottom-contact-infos ul li:focus a:any-link {
    color: #000 !important;
}

.sidebar-nav__bottom-social ul {
    gap: 20px;
    margin-top: 10px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.sidebar-nav__bottom-social ul>li {
    padding: 0 !important;
    border: 0 !important;
}

.sidebar-nav__bottom-social ul>li a {
    font-weight: 400 !important;
}

#hamburger {
    display: none;
    line-height: 1;
    color: #FFFFFF;
    font-size: 36px;
    text-align: right;
}

#hamburger i {
    cursor: pointer;
}

@media (max-width: 1199px) {
    #hamburger {
        display: block;
    }
}

.header ul li {
    list-style: none;
}

.header .main-menu ul li a {
    /* margin-left: 10px; */
    font-size: 18px !important;
}

.header .main-menu ul li a:hover {
    color: #FFFFFF !important;
}

.social-profile ul li a:hover {
    background: #FFFFFF !important;
    color: #000000 !important;
}

.header .main-menu ul .drop-color a {
    color: #FFFFFF !important;
}

.header .main-menu ul .drop-color a:hover {
    color: #000000 !important;
    background: #FFFFFF !important;
}

.header .main-menu ul {
    background: #000000 !important;
}

.dropdown-menu {
    color: #000000;
}


/* .mobile-nav .navigation ul:not(.dropdown-menu) > li{
    padding-left: -30px;
  } */

ul {
    padding-inline-start: 0px;
}

.header.header-3 .main-header-wraper #hamburger {
    color: #FFFFFF;
    font-size: 45px;
}


/* .sidebar-nav__bottomul .sidebar-nav__bottom-contact-infos ul .mail a:hover{
    color: #FFFFFF !important;
  } */

.mobile-nav .navigation ul:not(.dropdown-menu)>li>a:hover {
    color: #FFFFFF !important;
}

header.header-3 .top-header .header-cta ul li a:hover {
    color: #FFFFFF !important;
}

#hamburger img {
    width: 55px;
}

.mobile-menu-contact-small .mb-5 {
    margin-bottom: 0px !important;
}

.sidebar-nav__bottom-contact-infos .mb-5 {
    margin-bottom: 0px !important;
}

.sidebar-nav__bottom-social .mb-5 {
    margin-bottom: 0px !important;
}

.banner-texts .wel {
    font-size: 20px;
    /* margin-top: -100px; */
}

.banner-texts h1 {
    margin-top: 25px;
}

.cont-rw h1 {
    font-size: 64px !important;
    margin-top: 100px !important;
}

.cont-rw p {
    font-size: 64px !important;
    font-weight: bold;
}

.offset:before {
    display: block;
    content: "";
    height: 110px;
}

.offset-scnd:before {
    display: block;
    content: "";
    height: 110px;
}

.offset-third:before {
    display: block;
    content: "";
    height: 110px;
}

.offset-fourth:before {
    display: block;
    content: "";
    height: 110px;
}

.mobile-offset {
    display: none;
}

.service-card {
    margin-top: 140px;
}

.service-card .row {
    margin-top: 140px;
}