@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');



:root {

    --primary-color: #ef3539;

    --secondary-color: #373435;

    --black: #202020;

}



* {

    margin: 0;

    padding: 0;

}



html,

body {

    font-family: "DM Sans", sans-serif;

}



a {

    transition: all 0.3s ease;

    text-decoration: none !important;

    outline: none !important;

    color: var(--primary-color);

}



a:active {

    background-color: transparent;

}



ul {

    padding: 0;

    margin: 0;

}



ul,

li {

    list-style-type: none;

}



img {

    display: block;

    max-width: 100%;

    width: 100%;

    height: auto;

}



p {

    color: var(--black);

    font-size: 16px;

    font-weight: 500;

    margin-bottom: 15px;

    font-family: "Nunito Sans", sans-serif;

}



.sec-title {

    text-align: center;

    margin-bottom: 20px;

}

.sec-title.left {

    text-align: left;

}

.sec-title h2 {

    font-size: 38px;

    color: var(--secondary-color);

    font-weight: 700;

}

.sec-title h2 span {

    color: var(--primary-color);

}

.sec-title .sub-title {

    position: relative;

    display: block;

    font-size: 14px;

    line-height: 14px;

    text-transform: uppercase;

    font-weight: 500;

    color: var(--primary-color);

    letter-spacing: 3px;

    text-align: left;

    display: inline-block;

    border-radius: 24px;

    margin-bottom: 20px;

}

.sec-title p {

    font-size: 22px;

}





.header {

    position: relative;

    width: 100%;

    z-index: 9; 
	margin-bottom:-6em;

}





.theme-btn-one {

    position: relative;

    display: inline-block;

    vertical-align: middle;

    -webkit-appearance: none;

    outline: none !important;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    text-transform: capitalize;

    line-height: 1.3em;

    padding: 14px 30px;

    background-color: var(--primary-color);

    border: none;

    border-radius: 0;

    transition: all 0.5s linear;

    z-index: 1;

    overflow: hidden;

}

.theme-btn-one:hover {

    background-color: var(--primary-color);

    border-color: var(--primary-color);

    color: #ffff;

}

.theme-btn-one::before {

    content: '';

    position: absolute;

    width: 100%;

    height: 0;

    top: 50%;

    left: 50%;

    background: var(--secondary-color);

    opacity: 0;

    z-index: -1;

    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);

    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);

    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);

    transform: translateX(-50%) translateY(-50%) rotate(45deg);

    transition: all 0.4s ease-in-out;

}

.theme-btn-one:hover:before {

    height: 400%;

    opacity: 1;

}

.theme-btn-one span {

    color: #fff;

    transition: all 0.5s ease;

    border-radius: 100%;

    margin-left: 7px;

    display: inline-block;

    line-height: 20px;

    transform: translateY(-2px);

}

.theme-btn-one span i {

    font-size: 20px;

    position: relative;

    transition: all 0.5s ease;

    text-align: center;

}









/* -----------------

Top Bar

--------------------*/



.top-bar {

    background-color: #fff;

    padding: 10px 60px;

    /* border-bottom: 1px solid #ffffff33; */

}





.top-bar .wrapper {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    gap: 0px;

    height: 100%;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    -webkit-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;

}



.top-bar .logo-box {

    width: 200px;

}



.top-bar .wrapper.left {

    -webkit-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;

            height: 100%;

}

.top-bar .wrapper .text h3 {

    font-size: 15px;

    color: var(--black);

    font-weight: 400;

    margin: 0;

}

.top-bar .wrapper .text h3 span {

    color: var(--secondary-color);

    font-weight: 600;

}

.top-bar .wrapper.right {

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: flex-end;

}

.top-bar .wrapper ul {

    margin-right: 40px;

}

.top-bar .wrapper ul li {

    display: inline-block;

    margin-left: 20px;

}

.top-bar .wrapper ul li a {

    font-size: 16px;

    font-weight: 500;

    color: var(--black);

}



.top-bar .wrapper .top-contact li {

    display: inline-block;

    margin-right: 0px;

    padding: 13px 20px 11px 0;

    color: #978e8e;

    font-size: 14px;

}

.top-bar .wrapper .top-contact li:last-child {

    border-right: none;

}

.top-bar .wrapper .top-contact li i {

    margin-right: 7px;

    color: var(--secondary-color);

}

.top-bar .wrapper .top-contact li a {

    transition: all 0.3s ease;

    color: #fff;

}



.top-bar .wrapper .top-social {

    display: flex;

}

.top-bar .wrapper .top-social li {

    display: inline-block;

    font-size: 14px;

    margin-left: 25px;

    padding: 11px 0;

}

.top-bar .wrapper .top-social li a {

    color: var(--secondary-color);

    text-transform: capitalize;

    float: right;

    font-size: 18px;

}

.top-bar .wrapper .top-social li a:hover {

    color: var(--primary-color);

}

.top-bar .wrapper.right .top-menu li a {

    color: #978e8e;

}











/* Reset Navbar */

.sm-clean {

    background: transparent !important;

}

.navbar .navbar-collapse {

    justify-content: space-between;

}

/* New Navbar */

#main-nav {

    margin-right: auto;

}

#main-nav #main-menu > li {

    padding: 0 30px 0 0;

    position: relative;

}

#main-nav #main-menu > li.dropdown > a {

    margin: 0 10px 0 0;

}

#main-nav #main-menu > li > a {

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    line-height: 22px;

    padding: 20px 0;

    position: relative;

}

.fixed-header #main-nav #main-menu > li > a {

    color: var(--secondary-color);

}

#main-nav #main-menu > li > a.active,

#main-nav #main-menu > li > a:hover,

#main-nav #main-menu > .dropdown.active > a {

    color: #f53a3e;

}

#main-nav #main-menu > li > a.active:after,

#main-nav #main-menu > .dropdown.active > a span::after {

    transform: scale(1);

}

#main-nav #main-menu > .dropdown.active > a .sub-arrow {

    border-color: var(--primary-color) transparent transparent transparent;

}

#main-nav #main-menu > li > a .sub-arrow {

    border-color: #fff transparent transparent transparent;

    right: -12px;

    display: inline-block;

}

.fixed-header #main-nav #main-menu > li > a .sub-arrow {

    border-color: var(--secondary-color) transparent transparent transparent;

}

#main-nav #main-menu > li > ul > li > ul {

    border-radius: 0 !important;

    border: none;

    left: 6px !important;

}





@media screen and (min-width: 768px) {

    #main-nav #main-menu > li > ul::before,

    #main-nav #main-menu > li > ul::after {

        display: none;

    }

    #main-nav #main-menu > li > ul {

        left: 0px !important;

        margin-top: 0 !important;

        width: 260px;

        opacity: 0;

        transform: translateY(50px);

        transition: all 300ms ease;

        display: block !important;

        visibility: hidden;

        padding: 20px 10px;

        border: none;

        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 0px !important;

    }



    #main-nav #main-menu > li > ul li ul {

        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 0px !important;

        padding: 20px 10px;

    }

}

#main-nav #main-menu > li:hover > ul {

    opacity: 1;

    visibility: visible;

    transform: translateY(0px);

}

#main-nav #main-menu > li > ul li a {

    color: #000;

    transition: 300ms ease color;

    position: relative;

    margin: 0 10px;

    font-size: 16px;

    font-weight: 500;

    display: block;

    background-color: transparent;

    -ms-transition: all .45s ease;

    -o-transition: all .45s ease;

    -moz-transition: all .45s ease;

    -webkit-transition: all .45s ease;

    transition: all .45s ease;

}

#main-nav #main-menu > li > ul li a:hover {

    color: var(--primary-color);

}



#main-nav #main-menu .mega-menu {

    width: 1170px;

    left: -190px !important;

    padding: 30px;

}

#main-nav #main-menu .mega-menu .item {

    margin-bottom: 20px;

}

#main-nav #main-menu .mega-menu .item h3 {

    font-size: 20px;

    font-weight: 600;

    color: var(--primary-color);

    margin-bottom: 15px;

}

#main-nav #main-menu .mega-menu .item ul {

    display: block;

    box-shadow: none;

    border: none;

    padding: 0;

    position: relative;

    width: 100%;

}

#main-nav #main-menu .mega-menu .item ul li {

    margin-bottom: 0px;

}

#main-nav #main-menu .mega-menu .item ul li a {

    padding: 7px 0;

    border-bottom: 1px solid #e4e4e4 !important;

    margin: 0;

    font-size: 16px;

    line-height: normal;

}

/* #main-nav #main-menu > li > ul li a:after {

    content: "";

    position: absolute;

    top: calc(100% - 10px);

    left: 0;

    width: 0;

    height: 1px;

    background-color: transparent;

    -ms-transition: all .3s ease;

    -o-transition: all .3s ease;

    -moz-transition: all .3s ease;

    -webkit-transition: all .3s ease;

    transition: all .3s ease;

}

#main-nav #main-menu > li > ul li a:hover:after {

    width: 100%;

    background-color: var(--primary-color);

} */

 /* #main-nav #main-menu > li > ul li a > span {

    position: relative;

 }

#main-nav #main-menu > li > ul li a > span:not(.sub-arrow)::before {

    content: "";

    display: block;

    position: absolute;

    left: 0;

    width: 100%;

    bottom: 0px;

    height: 1px;

    background-color: var(--secondary-color);

    transform: scaleX(0);

    transform-origin: right;

    transition: 300ms ease transform;

}

#main-nav #main-menu > li > ul li a > span:hover::before {

    transform: scaleX(1);

    transform-origin: left;

} */

/* #main-nav #main-menu > li > ul li a .sub-arrow {

    border-width: 0;

    position: absolute;

    right: 0;

}

#main-nav #main-menu > li > ul li a .sub-arrow::after {

    content: "\f105";

    font-family: "Font Awesome 6 Free";

} */









/* -----------------

Navbar

--------------------*/



.navbar {

    padding: 0 60px;

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    -webkit-transition: 0.5s;

    -o-transition: 0.5s;

    transition: 0.5s;

    /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */

    background: rgb(255 255 255 / 10%);

    backdrop-filter: blur(12px);

    /* -webkit-box-shadow: 0 -2px 18px 0 #0000001c;

            box-shadow: 0 -2px 18px 0 #0000001c; */

}



.fixed-header {

    background-color: #fff !important;

    width: 100%;

    z-index: 999;

    position: fixed;

    top: -1px;

    -webkit-box-shadow: 0 -2px 18px 0 #0000001c;

            box-shadow: 0 -2px 18px 0 #0000001c;

}



.navbar-brand {

    width: 130px;

}



.navbar-brand.dark {

    display: none;

}



.fixed-header .navbar-brand.dark {

    display: block;

}

.fixed-header .navbar-brand.light {

    display: none;

}



.navbar-nav {

    margin-left: 40px;

}



/* .navbar {

  padding: 0;

  background-color: #fff !important;

  border-bottom: 1px solid #e7e7e7;

} */



/* Menu Lines */

.navbar .navbar-toggler {

    -webkit-box-shadow: none;

            box-shadow: none;

}

.navbar .navbar-toggler-icon {

    width: 24px;

    height: 0px;

    position: relative;

    padding: 0;

    float: left;

    margin: 14px 0;

    border-top: 2px solid var(--primary-color);

}

.navbar .navbar-toggler-icon::before,

.navbar .navbar-toggler-icon::after {

    content: "";

    position: absolute;

    display: block;

    border-top-width: 2px;

    border-top-style: solid;

    left: 0;

    right: 0;

    top: 0;

    -webkit-transition: 300ms ease all;

    -o-transition: 300ms ease all;

    transition: 300ms ease all;

    -webkit-transform: translateY(0);

    -ms-transform: translateY(0);

    transform: translateY(0);

    -webkit-transform-origin: -0.75px 1px;

    -ms-transform-origin: -.75px 1px;

    transform-origin: -0.75px 1px;

    border-top-color: var(--primary-color);

}

.navbar .navbar-toggler-icon::before {

    -webkit-transform: translateY(-10px);

    -ms-transform: translateY(-10px);

    transform: translateY(-10px);

}

.navbar .navbar-toggler-icon::after {

    -webkit-transform: translateY(7px);

    -ms-transform: translateY(7px);

    transform: translateY(7px);

}





.navbar .navbar-collapse {

    position: relative !important;

    /* display: flex !important; */

    /* flex-grow: unset !important; */

}



.menu-opened {

    background-color: #fff !important;

    padding-bottom: 40px;

}



.menu-opened .navbar-toggler-icon,

.menu-opened .navbar-toggler-icon::before,

.menu-opened .navbar-toggler-icon::after,

.fixed-header .navbar-toggler-icon,

.fixed-header .navbar-toggler-icon::before,

.fixed-header .navbar-toggler-icon::after {

    border-color: #000;

}





.navbar .dropdown {

    position: inherit;

}



.navbar-nav>li {

    padding: 0 50px 0 0;

}

.navbar-nav>li:last-child {

    padding-right: 0;

}



/* .navbar-nav>li:last-child {

    margin-right: 0;

} */



.navbar-nav li .nav-link {

    padding: 35px 0px !important;

    color: #fff !important;

    font-weight: 500;

    font-size: 16px;

    text-transform: capitalize;

    position: relative;

}

.fixed-header .navbar-nav li .nav-link {

    color: #000 !important;

}



.navbar-nav li .nav-link.active,

.navbar-nav li:hover .nav-link {

    color: var(--primary-color) !important;

}





.dropdown-menu,

.sub-dropdown-menu {

    border-bottom: none;

    border-left: none;

    border-right: none;

    border-top: none;

    -webkit-box-shadow: 0 10px 10px 0 #00000017;

    box-shadow: 0 10px 10px 0 #00000017;

    width: 220px;

    opacity: 0;

    visibility: hidden;

    -webkit-transform-origin: top center;

    transform-origin: top center;

    -webkit-transform: scaleY(0) translateZ(100px);

    transform: scaleY(0) translateZ(100px);

    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;

    z-index: 99;

    background-color: rgb(255, 255, 255);

    padding: 25px 20px 15px;

    border-top-left-radius: 0px;

    border-top-right-radius: 0px;

    border-bottom-left-radius: 10px;

    border-bottom-right-radius: 10px;

    border-top: 3px solid var(--primary-color);

}



.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    -webkit-transform: scaleY(1) translateZ(0px);

    transform: scaleY(1) translateZ(0px);

}

.dropdown-menu li {

    margin-bottom: 5px;

}

.dropdown-menu li a {

    padding: 6px 20px 6px;

    font-weight: 400;

    font-size: 15px;

    color: var(--black);

    text-transform: capitalize;

}



.dropdown-menu li a,

.sub-dropdown-menu li a {

    border-bottom: 1px solid #ffffff1c;

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

}



.dropdown-menu li a:hover,

.sub-dropdown-menu li a:hover {

    background-color: #F7F9FA;

}



.dropdown-menu li:last-child a {

    border-bottom: 0px solid;

}



.dropdown .dropdown-toggle::after {

    content: "+";

    position: absolute;

    right: -15px;

    border: none;

}

.navbar-nav li.dropdown:hover .dropdown-toggle::after {

    content: "-";

}





.navbar .contact-info {

    position: relative;

    display: flex;

    align-items: center;

    margin-left: 10px;

}



.navbar .contact-info .call-box {

    position: relative;

    display: flex;

    align-items: center;

    padding: 25px 0;

    z-index: 5;

}

.navbar .contact-info .call-box .icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    color: var(--secondary-color);

    margin-right: 5px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}

.navbar .contact-info .call-box .icon svg {

    height: 25px;

    width: 25px;

}

.navbar .contact-info .call-box .content {

    margin-left: 10px;

    top: 3px;

    position: relative;

}

.navbar .contact-info .call-box .content p {

    font-size: 14px;

    font-weight: 500;

    line-height: 12px;

    margin-bottom: 5px;

}

.navbar .contact-info .call-box .content h5 {

    font-size: 16px;

    font-weight: 500;

    line-height: 20px;

    color: #000;

}

.navbar .contact-info .call-box .content h5 a {

    color: var(--secondary-color);

}

.navbar .contact-info .btn-box {

    position: relative;

    display: block;

    margin-left: 30px;

}



.fixed-header .contact-info .call-box .content p {

    color: var(--black);

}



@media only screen and (min-width: 992px) {

    .dropdown .dropdown-menu {

        display: block;

    }



    .sub-dropdown:hover .sub-dropdown-menu {

        display: block;

    }

}









/* -----------------

Banner Area

--------------------*/



.banner-slider {

    position: relative;

    overflow: hidden;

}



.banner-slider .shape-1 {

    position: absolute;

    left: 100px;

    top: 20%;

    z-index: 2;

}

.banner-slider .shape-2 {

    position: absolute;

    left: 20px;

    top: 50%;

    z-index: 2;

}



.banner-slider .slide-item {

    position: relative;

    /* padding-top: 165px; */

    /* padding-bottom: 65px; */

    /* height: 100vh; */

    overflow: hidden;

}

.banner-slider .slide-item:before {

    position: absolute;

    content: '';

    width: 100%;

    height: 100%;

    background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.004) 12.16%, var(--secondary-color) 82.49%) !important;

    top: 0px;

    right: 0px;

    z-index: 1;

}

.banner-slider .slide-item .image-layer {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    background-position: center bottom;

    background-size: cover;

    /* -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1); */

    -webkit-transition: all 8000ms linear;

    -moz-transition: all 8000ms linear;

    -ms-transition: all 8000ms linear;

    -o-transition: all 8000ms linear;

    transition: all 8000ms linear;

}

.banner-carousel .active .slide-item .image-layer {

    -webkit-transform: scale(1.25);

    -ms-transform: scale(1.25);

    transform: scale(1.25);

}

.banner-carousel .content-box {

    position: absolute;

    top: 40%;

    z-index: 9;

    max-width: 30%;

    /* position: absolute;

    width: 100%;

    top: 60%;

    transform: translateY(-50%);

    z-index: 5;

    padding: 0 70px;

    z-index: 99; */

}

.banner-carousel .content-box .sub-title {

    position: relative;

    display: block;

    font-size: 12px;

    line-height: 14px;

    text-transform: uppercase;

    font-weight: 400;

    color: #fff;

    background-color: var(--secondary-color);

    letter-spacing: 1px;

    text-align: left;

    display: inline-block;

    padding: 8px 12px 5px 10px;

    border-style: solid;

    border-width: 1px;

    border-color: rgba(255, 255, 255, 0.18);

    border-radius: 24px;

    margin-bottom: 20px;

    opacity: 0;

    -webkit-transform: translateY(-50px);

    -moz-transform: translateY(-50px);

    -ms-transform: translateY(-50px);

    -o-transform: translateY(-50px);

    transform: translateY(-50px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .active .content-box .sub-title {

    opacity: 1;

    -webkit-transition-delay: 700ms;

    -moz-transition-delay: 700ms;

    -ms-transition-delay: 700ms;

    -o-transition-delay: 700ms;

    transition-delay: 700ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box h2 {

    position: relative;

    display: block;

    font-size: 2.5vw;

    line-height: 3vw;

    font-weight: 600;

    padding: 0px 0px 0px;

    text-align:left;

    text-transform: capitalize;

    color: #fff;

    margin-bottom: 20px;

    opacity: 0;

    -webkit-transform: translateY(-50px);

    -moz-transform: translateY(-50px);

    -ms-transform: translateY(-50px);

    -o-transform: translateY(-50px);

    transform: translateY(-50px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .active .content-box h2 {

    opacity: 1;

    -webkit-transition-delay: 700ms;

    -moz-transition-delay: 700ms;

    -ms-transition-delay: 700ms;

    -o-transition-delay: 700ms;

    transition-delay: 700ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box h2 span {

    position: relative;

    display: block;

    font-weight: 700;

    color: #fff;

}

.banner-carousel .content-box .lower-box {

    position: relative;

    display: block;

    width: 650px;

    opacity: 0;

    -webkit-transform: translateY(10px);

    -moz-transform: translateY(10px);

    -ms-transform: translateY(10px);

    -o-transform: translateY(10px);

    transform: translateY(10px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .active .content-box .lower-box {

    opacity: 1;

    -webkit-transition-delay: 1000ms;

    -moz-transition-delay: 1000ms;

    -ms-transition-delay: 1000ms;

    -o-transition-delay: 1000ms;

    transition-delay: 1000ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box .lower-box .text {

    position: relative;

    display: block;

    font-size: 1vw;

    line-height: 1.4vw;

    color: #fff;

    font-weight: 400;

    margin-bottom: 31px;

    /* max-width: 360px; */

}



.banner-carousel .slide-1 .content-box h2,

.banner-carousel .slide-1 .content-box .lower-box .text {

    color: #fff;

}



.banner-carousel .slide-1 .content-box .theme-btn-two {

    border-color: #fff;

    color: #fff;

}



.banner-carousel .content-box .wrapper {

    position: relative;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin-top: 40px;

}

.banner-carousel .content-box .wrapper .video-box {

    position: relative;

    display: flex;

    align-items: center;

    margin-left: 35px;

}

.banner-carousel .content-box .wrapper .video-box a {

    color: #fff;

}

.banner-carousel .content-box .wrapper .video-box .video-icon {

    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    line-height: 44px;

    text-align: center;

    font-size: 15px;

    color: var(--primary-color);

    background-color: #fff;

    border-radius: 50%;

    transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    -webkit-transition: all 0.5s ease;

    -ms-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

}

.banner-carousel .content-box .wrapper .video-box .video-icon:before {

    content: "";

    position: absolute;

    top: -4px;

    left: -4px;

    right: -4px;

    bottom: -4px;

    border: 4px solid #ffffff33;

    border-radius: 50%;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple, 

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before, 

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    -webkit-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    -ms-box-shadow: 0 0 0 0 #ffffff99;

    -o-box-shadow: 0 0 0 0 #ffffff99;

    -webkit-box-shadow: 0 0 0 0 #ffffff99;

    box-shadow: 0 0 0 0 #ffffff99;

    -webkit-animation: ripple 3s infinite;

    animation: ripple 3s infinite;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before {

    -webkit-animation-delay: 0.9s;

    animation-delay: 0.9s;

    content: "";

    position: absolute;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {

    -webkit-animation-delay: 0.6s;

    animation-delay: 0.6s;

    content: "";

    position: absolute;

}

@keyframes ripple {

    70% {

        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);

    }

}







.banner-slider .owl-nav {

    position: absolute;

    top: 40%;

    right: 50px;

}

.banner-slider .owl-nav button {

    width: 50px;

    height: 50px;

    background-color: #fff !important;

    border-radius: 50%;

    display: block;

    margin: 10px;

}

.banner-slider .owl-nav button:hover {

    background-color: var(--primary-color) !important;

    color: #fff !important;

}



.banner-slider .owl-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

    position: absolute;

    left: 0;

    right: 0;

    bottom: 40px;

    padding: 16px 0;

    margin: 0 auto !important;

    height: 0;

    line-height: 0;

    border-radius: 16px;

}

.banner-slider .owl-dots .owl-dot span {

    position: relative;

    display: block;

    width: 16px;

    height: 16px;

    border-radius: 50%;

    background-color: transparent;

    border: 1px solid #fff;

    margin: 0;

    -webkit-transition: all 300ms ease;

    transition: all 300ms ease;

}



.banner-slider .owl-dots .owl-dot:hover span, 

.banner-slider .owl-dots .owl-dot.active span {

    background-color: #fff;

}











/* banner-bottom */

.banner-bottom {

    margin-top:-80px;

    position: relative;

    z-index: 2;

}

.banner-bottom .box {

    display: flex;

    gap: 30px;

    padding: 40px 50px;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

    transition: 0.4s;

}

.banner-bottom .box-1 {

    background-color: #fff;

}

.banner-bottom .box-1 .icon img {

    filter: invert(53%) sepia(97%) saturate(6592%) hue-rotate(343deg) brightness(99%) contrast(89%);

}

.banner-bottom .box-2 {

    background-color: var(--primary-color);

    background-image: url(../images/shape-4.png);

    background-position: bottom right;

    background-repeat: no-repeat;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

}

.banner-bottom .box .icon {

    width: 50px;

    flex: 0 0 auto;

    position: relative;

    z-index: 2;

}

.banner-bottom .box .icon::before {

    content: "";

    width: 40px;

    height: 40px;

    background-color: #ef35391a;

    border-radius: 50%;

    position: absolute;

    right: -20px;

    top: 20px;

    z-index: -1;

}



.banner-bottom .box .text h3 {

    font-size: 28px;

    font-weight: 700;

}

.banner-bottom .box-2 .icon img {

    filter: invert(1);

}

.banner-bottom .box-2 .icon::before {

    background-color: #ffffff28;

}

.banner-bottom .box-2 .text h3 {

    color: #fff;

}

.banner-bottom .box-2 .text p {

    color: #fff;

}

.banner-bottom .box-2 .text a {

    color: #fff;

}




/* about-section */

.about-section {

    position: relative;

    display: block;

    padding: 120px 0 150px;

    overflow: hidden;

    z-index: 1;

}

.about-section .b-shape {

    position: absolute;

    bottom: 0;

    left: 0;

    opacity: 0.2;

}

.about-section .sec-title {

    margin-bottom: 20px;

}

.about-section .img-box {

    overflow: hidden;

}

.about-section .img-wrap {

    position: relative;

    display: block;

    z-index: 1;

    padding-left: 200px;

    padding-right: 0;

    padding-top: 0px;

}

.about-section .img-wrap .img-1 {

    position: absolute;

    left: 30px;

    bottom: -60px;

    z-index: 1;

    width: 40%;

    border-radius: 0px;

    overflow: hidden;

    box-shadow: 5px 6px 20px 0px rgb(0 0 0 / 30%);

    border: 3px solid #fff;

}

.about-section .img-wrap .exp-box {

    position: absolute;

    bottom: -10%;

    right: -2%;

    z-index: 1;

    background: var(--primary-color);

    padding: 20px 30px;

    border-radius: 0px;

    box-shadow: 0 0 20px 0 #0000001c;

}

.about-section .img-wrap .num h3 {

    color: #fff;

    font-size: 35px;

    font-weight: 700;

    margin-bottom: 0;

}

.about-section .img-wrap .exp-box h4 {

    margin: 0;

    color: #fff;

    font-size: 15px;

    font-weight: 500;

    text-transform: capitalize;

}



.about-section .img-wrap .shape-1 {

    position: absolute;

    left: 0;

    top: 65%;

    z-index: 1;

}

.about-section .img-wrap .shape-1 img {

    width: 80%;

}











.about-section .content {

    padding-left: 0px;

}

.about-section .content .colms {

    margin-top: 50px;

}



.about-section .img-box {

    overflow: hidden;

    position: relative;

}



.about-section .img-box:after {

    content: "";

    position: absolute;

    width: 200%;

    height: 0%;

    left: 50%;

    top: 50%;

    background-color: rgba(255, 255, 255, .3);

    transform: translate(-50%, -50%) rotate(-45deg);

    z-index: 1;

}

.about-section .img-box:hover::after {

    height: 250%;

    transition: all 600ms linear;

    background-color: transparent;

}



.about-section .content .points li {

    position: relative;

    padding-left: 30px;

    margin-bottom: 30px;

    color: var(--secondary-color);

    font-weight: 500;

    font-size: 15px;

}

.about-section .content .points li::before {

    content: "\f00c";

    font-family: FontAwesome;

    position: absolute;

    left: 0;

    top: 0;

    width: 20px;

    height: 20px;

    font-size: 11px;

    background: #fff;

    border: 1px solid var(--primary-color);

    color: var(--primary-color);

    border-radius: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.about-section .btn-box {

    margin-top: 30px;

}





.about-section .content .counter-wrap {

    background-color: var(--third-color);

    padding: 30px;

    border-radius: 30px;

}

.about-section .content .counter-wrap .item {

    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid #fff;

}

.about-section .content .counter-wrap .item:last-child {

    padding-bottom: 0px;

    margin-bottom: 0px;

    border-bottom: 0px solid #fff;

}

.about-section .content .counter-wrap .item h4 {

    color: var(--primary-color);

    font-size: 35px;

    font-weight: 600;

}

.about-section .content .counter-wrap .item p {

    color: var(--black);

    font-size: 18px;

    font-weight: 500;

    margin: 0;

}





.float-bob-x {

    -webkit-animation-name: float-bob-x;

    animation-name: float-bob-x;

    -webkit-animation-duration: 2s;

    animation-duration: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

}



@-webkit-keyframes float-bob-x {

    0% {

        transform: translateX(-30px);

    }

    50% {

        transform: translateX(-10px);

    }

    100% {

        transform: translateX(-30px);

    }

}

.float-bob-y {

    -webkit-animation-name: float-bob-y;

    animation-name: float-bob-y;

    -webkit-animation-duration: 2s;

    animation-duration: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

}

@-webkit-keyframes float-bob-y {

    0% {

        transform: translateY(-20px);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(-20px);

    }

}



.img-bounce {

    -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;

    animation: ImgBounce 5s ease-in-out 0s infinite alternate;

}

@keyframes ImgBounce {

    0% {

        -webkit-transform: translateY(0);

        transform: translateY(0);

    }

    100% {

        -webkit-transform: translateY(-30px);

        transform: translateY(-30px);

    }

}









/* services-section */

.services-section {

    padding: 100px 0;

    background-color: #F5F5F5;

    background-image: url(../images/products-bg.jpg);

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

    position: relative;

}

.services-section .shape-1 {

    position: absolute;

    right: 7%;

    bottom: 10%;

}

.services-section .sec-title {

    margin-bottom: 40px;

}

.services-section .custom-nav {

    text-align: right;

    padding-top: 0px;

}

.services-section .custom-nav button {

    width: 50px;

    height: 50px;

    line-height: 55px;

    background-color: var(--primary-color);

    border-radius: 0px;

    border: none;

    margin: 0 8px;

    color: #fff;

    font-size: 25px;

    transition: all .4s ease-in-out;

}

.services-section .custom-nav button:hover {

    background-color: var(--secondary-color);

    color: #fff;

}

.services-section .item {

    background-color: #fff;

    -webkit-transition: all .4s ease;

    transition: all .4s ease;

    position: relative;

    z-index: 2;

    overflow: hidden;

}

.services-section .item .img-box {

    position: relative;

}

.services-section .item .img-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: linear-gradient(180deg, #ffffff00 40%, var(--secondary-color) 96%);

    opacity: 0.9;

}

.services-section .item .info-box {

    position: absolute;

    bottom: 0;

    z-index: 1;

    padding: 30px;

}

.services-section .item .info-box:before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    border-radius: inherit;

    display: block;

    opacity: 0;

    z-index: -1;

    pointer-events: none;

    transition: opacity 0.4s;

    background-color: transparent;

    background-image: linear-gradient(180deg, #02010100 0%, var(--secondary-color) 46%);

}

.services-section .item:hover .info-box:before {

    opacity: 1;

}

.services-section .item .info-box .content {

    transform: translateY(63%);

    transition-duration: 0.6s;

}

.services-section .item:hover .info-box .content {

    transform: translateY(0%);

}



.services-section .item .info-box .content h2 {

    color: #fff;

    font-size: 28px;

    font-weight: 600;

}

.services-section .item .info-box .info {

    opacity: 0;

    transition: opacity 0.4s;

}

.services-section .item:hover .info-box .info {

    animation: 0.6s ease-in 0.3s normal forwards 1 slide_top;

}

.services-section .item .info-box .info p {

    color: #fff;

    font-weight: 400;

}

.services-section .item .info-box .btn-box {

    margin-top: 10px;

}

.services-section .item .info-box .btn-box a {

    display: block;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    color: #fff;

    background-color: #ffffff6e;

    display: flex;

    align-items: center;

    justify-content: center;

}

.services-section .item .info-box .btn-box a:hover {

    background-color: var(--primary-color);

}















/* service-two */

.service-two {

    background-image: url("../images/services-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

}

.service-two .item {

    padding: 300px 30px 60px;

    border-right: 1px solid #ffffff47;

    position: relative;

    z-index: 2;

}

.service-two .item:before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    border-radius: inherit;

    display: block;

    opacity: 0;

    z-index: -1;

    pointer-events: none;

    transition: opacity 0.4s;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

}

.service-two .item:hover:before {

    opacity: 1;

}

.service-two .item-4 {

    border-right: 0;

}

.service-two .item .content {

    transform: translateY(53%);

    transition-duration: 0.6s;

}

.service-two .item:hover .content {

    transform: translateY(0%);

}

.service-two .item .content h4 {

    font-size: 24px;

    font-weight: 400;

    color: var(--primary-color);

    line-height: 1.6;

}

.service-two .item .content h2 {

    color: #fff;

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 20px;

}

.service-two .item .content .info {

    opacity: 0;

    transition: opacity 0.4s;

}

.service-two .item:hover .content .info {

    animation: 0.6s ease-in 0.3s normal forwards 1 slide_top;

}

@keyframes slide_top {

    0% {

        opacity: 0;

    }

    30% {

        opacity: 0;

    }

    100% {

        opacity: 1;

    }

}



.service-two .item .content p {

    color: #fff;

    font-size: 16px;

    font-weight: 400;

}

.service-two .item .btn-box {

    margin-top: 30px;

}

.service-two .item .btn-box a {

    display: block;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    color: #fff;

    background-color: #ffffff36;

    display: flex;

    align-items: center;

    justify-content: center;

}









/* industries-serve */

.industries-serve {

    padding: 100px 60px;

}



.industries-serve .item {

    background-color: #fff;

    -webkit-transition: all .4s ease;

    transition: all .4s ease;

    position: relative;

    z-index: 2;

    overflow: hidden;

}

.industries-serve .item::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #3734352e;

    opacity: 0;

    z-index: 1;

    transition: opacity 0.6s;

    backdrop-filter: blur(6.3px);

}

.industries-serve .item:hover::before {

    opacity: 1;

}

.industries-serve .item .img-box {

    position: relative;

}

.industries-serve .item .img-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: linear-gradient(180deg, #ffffff00 40%, var(--secondary-color) 96%);

    opacity: 0.9;

}

.industries-serve .item .info-box {

    position: absolute;

    bottom: 0;

    z-index: 1;

    padding: 30px;

}

.industries-serve .item .info-box .content {

    transform: translateY(63%);

    transition-duration: 0.6s;

}

.industries-serve .item:hover .info-box .content {

    transform: translateY(0%);

}



.industries-serve .item .info-box .content h2 {

    color: #fff;

    font-size: 28px;

    font-weight: 600;

    border-bottom: 1px solid #ffffff5b;

    padding-bottom: 20px;

    margin-bottom: 10px;

    transition: 0.6s;

}

.industries-serve .item:hover .info-box .content h2 {

    border-bottom: 1px solid #ff5659;

}

.industries-serve .item .info-box .info {

    opacity: 0;

    transition: opacity 0.6s;

}

.industries-serve .item:hover .info-box .info {

    animation: 0.6s ease-in 0.3s normal forwards 1 slide_top;

}

.industries-serve .item .info-box .info p {

    color: #fff;

    font-weight: 400;

}

.industries-serve .item .info-box .btn-box {

    margin-top: 10px;

}

.industries-serve .item .info-box .btn-box a {

    display: block;

    color: #fff;

    font-size: 16px;

    font-weight: 500;

}











.why-section {

    padding: 100px 0;

    background-color: var(--secondary-color);

}

.why-section .sec-title h2 {

    color: #fff;

}

.why-section .content p {

    color: #fff;

}

.why-section .box-wrap {

    background-color: var(--primary-color);

    padding: 40px 50px;

    margin: 40px -80px -20px 0px;

    position: relative;

    z-index: 1;

}

.why-section .box-wrap::after {

    content: "";

    position: absolute;

    top: 0;

    right: -60px;

    border-width: 0px 0px 50px 60px;

    border-color: #ff000000 var(--primary-color);

    border-style: solid;

}

.why-section .box-wrap ul li {

    color: #fff;

    margin-bottom: 15px;

}

.why-section .box-wrap ul li:last-child {

    margin-bottom: 0;

}

.why-section .box-wrap ul li::before {

    content: "\f061";

    font-family: FontAwesome;

    font-size: 14px;

    margin-right: 10px;

}

.why-section .icon-wrap {

    margin-top: 40px;

}

.why-section .icon-wrap .item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 40px;

}

.why-section .icon-wrap .item .icon {

    width: 50px;

    flex: 0 0 auto;

    background-color: var(--primary-color);

    border-radius: 50%;

    padding: 14px;

    margin-bottom: 0px;

    transition: all 0.4s ease-in-out;

    position: relative;

}



.why-section .icon-wrap .item:hover .icon:before {

    transform: scale(1);

}

.why-section .icon-wrap .item .icon img {

    filter: invert(1);

}



.why-section .icon-wrap .item .text h3 {

    font-family: "Golos Text", sans-serif;

    font-size: 18px;

    font-weight: 600;

    color: var(--secondary-color);

    transition: all 0.4s ease-in-out;

    margin: 0;

}

.why-section .img-wrap {

    position: relative;

    padding-right: 50px;

}

.why-section .img-wrap .shape-1 {

    position: absolute;

    bottom: 0;

    right: 0;

}











/* counter-section */

.counter-section {

    padding: 100px 0;

    background-color: var(--third-color);

    background-image: url(../images/world-map.png);

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;

}

.counter-section .sec-title {

    margin-bottom: 40px;

}

.counter-section .item {

    padding: 0px 20px;

    -webkit-transition: all .4s ease;

    transition: all .4s ease;

    position: relative;

    z-index: 2;

}



.counter-section .item .num h2 {

    color: var(--primary-color);

    font-size: 50px;

    font-weight: 700;

    text-align: center;

}

.counter-section .item .num.plus h2::after {

    content: "+";

}

.counter-section .item .icon {

    width: 50px;

    border-radius: 50%;

    margin-bottom: 20px;

    margin-left: auto;

    margin-right: auto;

}

.counter-section .item .icon img {

    opacity: 0.5;

}

.counter-section .item .text h3 {

    color: var(--secondary-color);

    font-size: 22px;

    font-weight: 600;

    text-align: center;

    text-transform: capitalize;

    margin-bottom: 12px;

}

.counter-section .item .text p {

    text-align: center;

}

















/* quote-section */

.quote-section {

    padding: 100px 0;

    background-image: url(../images/contact-bg.jpg);

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}

.quote-section .img-wrap {

    padding: 20px;

    position: relative;

    z-index: 2;

    margin-right: 50px;

}

.quote-section .img-wrap::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    z-index: -1;

    opacity: 0.3;

    background-color: var(--third-color);

    border-radius: 30px 30px 30px 0;

    width: 280px;

    height: 270px;

}

.quote-section .img-wrap .img-box {

    border-radius: 25px;

    overflow: hidden;

    position: relative;

}



.quote-section .img-wrap .img-box:after {

    content: "";

    position: absolute;

    width: 200%;

    height: 0%;

    left: 50%;

    top: 50%;

    background-color: rgba(255, 255, 255, .3);

    transform: translate(-50%, -50%) rotate(-45deg);

    z-index: 1;

}

.quote-section .img-wrap .img-box:hover::after {

    height: 250%;

    transition: all 600ms linear;

    background-color: transparent;

}

.quote-section .img-wrap .img-circle {

    position: absolute;

    bottom: -20px;

    right: -20px;

}

.quote-section .img-wrap .img-circle img {

    animation: rotate 30s infinite linear;

}

@keyframes rotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}



.quote-section .content {

    padding-left: 20px;

}

.quote-section .content .sec-title h2 {

    color: #fff;

    text-align: center;

    font-size: 60px;

}

.quote-section .content p {

    color: #fff;

}

.quote-section .content .btn-box {

    margin-top: 30px;

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}

.quote-section .content .btn-box a {

    background-color: var(--primary-color);

    color: #fff;

}

.quote-section .content .btn-box a span {

    color: #fff;

}

















/* faq-section */

.faq-section  {

    padding: 100px 0;

    background-image: url("../images/bg-8.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.faq-section .list {

    margin-top: 50px;

}

.faq-section .list .item {

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--third-color);

}

.faq-section .list .item:last-child {

    border-bottom: none;

}

.faq-section .list .item h3 {

    color: var(--secondary-color);

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 20px;

    position: relative;

    padding-left: 30px;

}

.faq-section .list .item h3::before {

    content: "\f00c";

    font-family: FontAwesome;

    position: absolute;

    left: 0;

    top: 0;

    width: 20px;

    height: 20px;

    font-size: 11px;

    background: #fff;

    border: 1px solid var(--primary-color);

    color: var(--primary-color);

    border-radius: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

}





.faq-section .accordion-box .accordion-item {

    padding: 0;

    border: 1px solid #DFE1DE;

    border-radius: 0px;

    overflow: hidden;

    margin-bottom: 20px;

    transition: all 0.3s ease-in-out;

}

.faq-section .accordion-box .accordion-item h2 {

    border: none;

}

.faq-section .accordion-box .accordion-item .accordion-button {

    position: relative;

    cursor: pointer;

    -webkit-transition: all 500ms ease;

    padding: 15px 20px;

    background: no-repeat;

    font-size: 18px;

    line-height: 30px;

    color: var(--secondary-color);

    background-color: #fff;

    font-weight: 600;

    box-shadow: none;

}

.faq-section .accordion-box .accordion-item .accordion-button:not(.collapsed) {

    background: var(--primary-color);

    color: #000;

    border-bottom: 1px solid #ffffff33;

    color: #fff;

}

.faq-section .accordion-box .accordion-item .accordion-button::after {

    content: "\f068";

    font-family: 'FontAwesome';

    color: var(--secondary-color);

    background: #fff;

    border-radius: 0px;

    font-size: 14px;

    width: 30px;

    height: 30px;

    line-height: 30px;

    text-align: center;

    background-image: none;

}

.faq-section .accordion-box .accordion-item .accordion-button.collapsed::after {

    content: "\f067";

}

.faq-section .accordion-box .accordion-item .accordion-body {

    background: #f3f3f3;

    padding: 20px;

}

.faq-section .accordion-box .accordion-item .accordion-body p {

    /* color: #fff; */

}

.faq-section .accordion-box .accordion-item .accordion-button:not(.collapsed)::after {

    transform: none;

}











/* testimonials-section */

.testimonials-section {

    padding: 100px 0;

    background-image: url("../images/products-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.testimonials-section .slider .custom-nav {

    text-align: center; padding-top: 30px;

}

.testimonials-section .slider .custom-nav button {

    width: 50px;

    height: 50px;

    background-color: #fff;

    border-radius: 8px;

    border: none;

    margin: 0 8px;

    color: var(--primary-color);

    font-size: 25px;

    transition: all .4s ease-in-out;

}

.testimonials-section .slider .custom-nav button:hover {

    background-color: var(--secondary-color);

    color: #fff;

}



.testimonials-section .slider {

    position: relative;

    z-index: 2;

}



.testimonials-section .owl-carousel {

    padding: 0 0 0px 0;

}

.testimonials-section .item {

    padding: 40px;

    margin: 15px;

    background-color: #fff;

    border-radius: 0px;

    box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.1);

}

.testimonials-section .item .content h4 {

    font-size: 22px;

    color: var(--primary-color);

    font-weight: 600;

    margin-bottom: 15px;

}

.testimonials-section .item .info {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

}

.testimonials-section .item .info .img {

    flex: 0 0 auto;

    width: 60px;

}

.testimonials-section .item .info .details h4 {

    font-size: 20px;

    font-weight: 600;

    text-transform: capitalize;

    margin-bottom: 5px;

}

.testimonials-section .item .info .details p {

    font-size: 16px;

    font-weight: 400;

    margin-bottom: 0;

    text-transform: capitalize;

}





















.inner-banner {

    position: relative;

    z-index: 2;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

    padding: 300px 0;

    overflow: hidden;

}

.inner-banner::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.004) 12.16%, var(--secondary-color) 82.49%) !important;

}

/* .inner-banner::after {

    content: "";

    position: absolute;

    left: -20%;

    top: 90%;

    z-index: 0;

    width: 800px;

    height: 800px;

    transform: rotate(45deg) translate(-50%, -50%);

    background-color: #891e1e45;

} */

.inner-banner .inner {

    position: absolute;

    left: 0;

    top: 0;

    z-index: 1;

    width: 100%;

    height: 100%;

    padding: 0 60px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: start;

    -ms-flex-pack: start;

    justify-content: flex-start;

}

.inner-banner .content-box {

    position: relative;

    top: 80px;

    width: 60%;

}

.inner-banner .content-box .caption-title {

    color: #fff;

    font-weight: 600;

    font-size: 2vw;

}





/* company-section */

.company-section {

    padding: 100px 0;

    position: relative;

    z-index: 2;

}

.company-section .inner {

    background-image: url("../images/bg-1.png");

    background-position: top right;

    background-repeat: no-repeat;

    background-size: cover;

    position: relative;

    z-index: 2;

    padding: 50px 120px 50px 50px;

}

.company-section .img-wrap {

    position: relative;

    padding-left: 30px;

}

.company-section .img-wrap .exp-box {

    position: absolute;

    bottom: -4%;

    right: 0%;

    z-index: 1;

    background: var(--primary-color);

    padding: 20px 30px;

    border-radius: 0px;

    box-shadow: 0 0 20px 0 #0000001c;

}

.company-section .img-wrap .num h3 {

    color: #fff;

    font-size: 35px;

    font-weight: 700;

    margin-bottom: 0;

}

.company-section .img-wrap .exp-box h4 {

    margin: 0;

    color: #fff;

    font-size: 15px;

    font-weight: 500;

    text-transform: capitalize;

}

.company-section .img-wrap .shape-1 {

    position: absolute;

    left: 0;

    bottom: 0;

}



.company-section .content {

    padding-left: 20px;

}









/* mission-vision */

.mission-vision {

    padding: 0 0 100px 0;

}

.mission-vision .box {

    padding: 40px 50px;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

    transition: 0.4s;

    background-color: #fff;

    min-height: 340px;

    transition: 0.6s;

    position: relative;

    border-bottom: 2px solid #fff;

}

.mission-vision .box:hover {

    padding: 20px 50px 60px 50px;

    border-bottom: 2px solid var(--primary-color);

}



.mission-vision .box .icon {

    width: 50px;

    position: relative;

    z-index: 2;

    margin-bottom: 20px;

}

.mission-vision .box .icon img {

    filter: invert(53%) sepia(97%) saturate(6592%) hue-rotate(343deg) brightness(99%) contrast(89%);

}

.mission-vision .box .icon::before {

    content: "";

    width: 40px;

    height: 40px;

    background-color: #ef35391a;

    border-radius: 50%;

    position: absolute;

    right: -20px;

    top: 20px;

    z-index: -1;

}

.mission-vision .box .text h3 {

    font-size: 28px;

    font-weight: 700;

}

.mission-vision .box .text p {

    margin: 0;

}







/* company-three */

.company-three {

    background-color: #97191c;

    padding: 100px 0 60px;

    position: relative;

}

.company-three .b-shape {

    position: absolute;

    bottom: 0;

    left: 0;

    opacity: 0.1;

    filter: invert(1);

}

.company-three .item {

    margin-bottom: 60px;

}

.company-three .item .icon {

    width: 60px;

    position: relative;

}

.company-three .item .icon::before {

    content: "";

    width: 50px;

    height: 50px;

    background-color: #ffffff14;

    border-radius: 50%;

    position: absolute;

    right: -20px;

    top: 20px;

}

.company-three .item .icon img {

    filter: invert(1);

}

.company-three .item .text {

    margin-top: 30px;

    padding-top: 30px;

    border-top: 1px solid #ffffff49;

}

.company-three .item .text h3 {

    color: #fff;

    font-size: 30px;

    font-weight: 600;

}

.company-three .item .text p {

    color: #fff;

    font-weight: 300;

}















.whyus-section {

    padding: 100px 0;

    background-image: url("../images/bg-2.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.whyus-section .box-wrap {

    background-color: var(--primary-color);

    padding: 40px 50px;

    margin: 40px -80px -20px 0px;

    position: relative;

    z-index: 1;

}

.whyus-section .box-wrap::after {

    content: "";

    position: absolute;

    top: 0;

    right: -60px;

    border-width: 0px 0px 50px 60px;

    border-color: #ff000000 var(--primary-color);

    border-style: solid;

}

.whyus-section .box-wrap ul li {

    color: #fff;

    margin-bottom: 15px;

}

.whyus-section .box-wrap ul li:last-child {

    margin-bottom: 0;

}

.whyus-section .box-wrap ul li::before {

    content: "\f061";

    font-family: FontAwesome;

    font-size: 14px;

    margin-right: 10px;

}

.whyus-section .icon-wrap {

    margin-top: 40px;

}

.whyus-section .icon-wrap .item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 40px;

}

.whyus-section .icon-wrap .item .icon {

    width: 50px;

    flex: 0 0 auto;

    background-color: var(--primary-color);

    border-radius: 50%;

    padding: 14px;

    margin-bottom: 0px;

    transition: all 0.4s ease-in-out;

    position: relative;

}



.whyus-section .icon-wrap .item:hover .icon:before {

    transform: scale(1);

}

.whyus-section .icon-wrap .item .icon img {

    filter: invert(1);

}



.whyus-section .icon-wrap .item .text h3 {
    font-family: "Golos Text", sans-serif;
    font-size:20px;
    font-weight:800;
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
    margin: 0;
}

.whyus-section h4{
	font-family: "Golos Text", sans-serif;
    font-size:26px;
    font-weight:600;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
    margin: 0; padding:0px 0px 10px 0px;}











/* about-founder */

.about-founder {

    padding: 100px 0;

    background-image: url("../images/bg-3.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.about-founder .wrap {

    display: flex;

    position: relative;

    z-index: 1;

    margin: 50px 0 58px 100px;

    margin-bottom: 58px;

    background-repeat: no-repeat;

    background-position: 100% 100%;

    background-color: #003b49;

}

.about-founder .wrap .shape-1 {

    position: absolute;

    right: 0;

    bottom: 0;

    z-index: -1;

    width: 10%;

}

.about-founder .wrap .img-box {

    position: relative;

    z-index: 1;

    flex-shrink: 0;

    width: 40%;

    margin: -50px 80px 50px -100px;

    border-radius: 0;

}

.about-founder .wrap .content {

    padding: 70px 100px 70px 0;

}

.about-founder .wrap .content h2 {

    color: #fff;

    font-size: 40px;

}

.about-founder .wrap .content h4 {

    color: #fff;

    font-size: 22px;

    font-weight: 400;

    margin-bottom: 30px;

}

.about-founder .wrap .content p {

    color: #fff;

    font-weight: 300;

}













/* management-section */

.management-section {

    padding: 100px 0;

    background-image: url("../images/bg-4.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.management-section .item .img-box {

    overflow: hidden;

}

.management-section .item .img-box img {

    transition: 0.6s ease;

}

.management-section .item:hover .img-box img {

    transform: scale(1.1);

}

.management-section .item .text {

    margin-top: 20px;

}

.management-section .item .text h3 {

    color: var(--black);

    font-size: 25px;

    text-align: center;

    font-weight: 700;

    text-transform: capitalize;

}

.management-section .item .text p {

    color: var(--primary-color);

    text-align: center;

    margin: 0;

}

.management-section .item .text p a{

    color: var(--primary-color);
}






/* awards-section */

.awards-section {

    padding: 100px 0;

    background-image: url("../images/bg-5.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

}

.awards-section .item {
    overflow: hidden;
    border: 1px solid #e7e7e7;
    box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.1);
	margin:10px 0px 14px 0px;
}

.awards-section .item  img {
    transition: 0.6s ease;
	

}

.awards-section .item:hover img {

    transform: scale(1.1);

}







/* clients-section */

.clients-section {

    padding: 100px 0;

    background-color: #FFFFFF;

    padding: 100px 0;

    background-image: url("../images/bg-6.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.clients-section .item {

    padding: 15px 20px;

    background-color: #fff;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

    margin-bottom: 30px;

}



.clients-section .item  img {

    transition: 0.6s ease;

    opacity: 0.5;

}

.clients-section .item:hover img {

    transform: scale(1.1);

    opacity: 1;

}







/* solution-inner-page */

.solution-inner-page {

    padding: 100px 0;

    background-color: #fff;

    position: relative;

}

.solution-inner-page .shape-1 {

    position: absolute;

    right: 7%;

    bottom: 10%;

}

.solution-inner-page .custom-nav {

    text-align: right;

    padding-top: 0px;

}

.solution-inner-page .custom-nav button {

    width: 50px;

    height: 50px;

    line-height: 55px;

    background-color: var(--primary-color);

    border-radius: 0px;

    border: none;

    margin: 0 8px;

    color: #fff;

    font-size: 25px;

    transition: all .4s ease-in-out;

}

.solution-inner-page .custom-nav button:hover {

    background-color: var(--secondary-color);

    color: #fff;

}

.solution-inner-page .item {

    background-color: #fff;

    -webkit-transition: all .4s ease;

    transition: all .4s ease;

    position: relative;

    z-index: 2;

    overflow: hidden;

    margin-bottom: 25px;

}

.solution-inner-page .item::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: linear-gradient(180deg, #ffffff00 40%, var(--secondary-color) 96%);

    opacity: 0.9;

}

.solution-inner-page .item .info-box {

    position: absolute;

    bottom: 0;

    z-index: 1;

    padding: 30px;

}

.solution-inner-page .item .info-box:before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    border-radius: inherit;

    display: block;

    opacity: 0;

    z-index: -1;

    pointer-events: none;

    transition: opacity 0.4s;

    background-color: transparent;

    background-image: linear-gradient(180deg, #02010100 0%, var(--secondary-color) 46%);

}

.solution-inner-page .item:hover .info-box:before {

    opacity: 1;

}

.solution-inner-page .item .info-box .content {

    transform: translateY(83%);

    transition-duration: 0.6s;

}

.solution-inner-page .item:hover .info-box .content {

    transform: translateY(-40%);

}



.solution-inner-page .item .info-box .content h2 {

    color: #fff;

    font-size: 28px;

    font-weight: 600;

}

.solution-inner-page .item .info-box .info {

    opacity: 0;

    transition: opacity 0.4s;

}

.solution-inner-page .item:hover .info-box .info {

    animation: 0.6s ease-in 0.3s normal forwards 1 slide_top;

}

.solution-inner-page .item .info-box .info p {

    color: #fff;

    font-weight: 400;

}

.solution-inner-page .item .info-box .btn-box {

    margin-top: 10px;

}

.solution-inner-page .item .info-box .btn-box a {

    display: block;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    color: #fff;

    background-color: #ffffff6e;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.4s;

}

.solution-inner-page .item:hover .info-box .btn-box a {

    background-color: var(--primary-color);

}

.solution-inner-page .item .info-box .btn-box a span {

    transition: 0.4s;

}

.solution-inner-page .item:hover .info-box .btn-box a span {

    transform: rotate(45deg);

}



.solution-inner-page .item .img-box img {

    transition: 0.6s;

}

/* .solution-inner-page .item:hover .img-box img {

    transform: scale(1.1);

} */

.solution-inner-page .item .info-box {

    width: 100%;

}

.solution-inner-page .item .info-box .content {

    transform: translateY(0%);

    transition-duration: 0.6s;

}













/* product-page */

.product-page {

    padding: 100px 0;

}



.product-page .sidebar {

    position: sticky;

    top: 90px;

}

.product-page .sidebar .products-list {

    padding: 40px;

    background-color: #fff;

    border-radius: 0px;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

}

.product-page .sidebar .products-list h2 {

    color: var(--primary-color);

    font-weight: 600;

    font-size: 22px;

    margin-bottom: 5px;

}

.product-page .sidebar .products-list .list-wrap {

    margin-bottom: 10px;

}

.product-page .sidebar .products-list ul li a {

    padding: 10px 0;

    margin-bottom: 0;

    color: #000;

    display: block;

    font-size: 16px;

    border-bottom: 1px solid #e3e3e8;

    font-weight: 500;

    position: relative;

    padding-left: 20px;

    -ms-transition: all .5s ease;

    -o-transition: all .5s ease;

    -moz-transition: all .5s ease;

    -webkit-transition: all .5s ease;

    transition: all .5s ease;

}

.product-page .sidebar .products-list ul li a:hover,

.product-page .sidebar .products-list ul li a.active {

    color: #c31014;

}

.product-page .sidebar .products-list ul li a::before {

    content: "\f105";

    font-family: FontAwesome;

    font-size: 14px;

    vertical-align: middle;

    margin-right: 14px;

    color: var(--primary-color);

    position: absolute;

    top: 11px;

    left: 0;

}

.product-page .sidebar .products-list ul li:last-child a {

    border-bottom: none;

}





.product-page .content .img-box {

    margin-bottom: 30px;

}

.product-page .content .sec-title h2 {

    font-size: 30px;

    font-weight: 800;

    color: var(--primary-color);

}

.product-page .content h4 {

    font-size: 19px;

    color: #000000;

    font-weight: 700;

    margin-top: 20px;

    margin-bottom: 10px;

}

.product-page .content h5 {

    font-size: 20px;

    color: var(--secondary-color);

    font-weight: 700;

    margin-top: 20px;

    margin-bottom: 10px;

}

.product-page .content .points li {

    position: relative;

    padding-left: 25px;

    margin-bottom: 12px;

    font-family: "Nunito Sans", sans-serif;

    font-weight: 500;

}

.product-page .content .points li::before {

    content: "\f061";

    font-family: FontAwesome;

    font-size: 14px;

    color: var(--primary-color);

    position: absolute;

    left: 0;

    top: 1px;

}

.product-page .content .products-wrap {

    margin-top: 30px;

    margin-bottom: 30px;

}

.product-page .content .products-wrap .item .img-box {

    margin-bottom: 0;

}





.product-page .tele-products .item .img-box {

    border: 1px solid #ccc;

    margin-bottom: 10px;

}

.product-page .tele-products .item h3 {

    text-align: center;

    font-size: 16px;

}





.strapping-section {

    padding: 100px 0;

}

.strapping-section .content h2 {

    font-size: 28px;

    font-weight: 600;

}

.strapping-section .row-2 {

    margin-top: 60px;

}







/* careers-section */

.careers-section {

    position: relative;

    display: block;

    padding: 100px 0;

    z-index: 2;

    background-image: url("../images/bg-7.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

}

.careers-section .sec-title {

    margin-bottom: 30px;

}

.careers-section .img-box {

    border-radius: 20px;

    overflow: hidden;

    margin-right: 40px;

}

.careers-section .inner {

    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    margin: 0 auto;

    border-bottom: 0;

    background-color: #fff;

    border-radius: 0px;

    padding: 60px 60px;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

}

.careers-section .left {

    position: relative;

    display: block;

    margin-right: 58px;

}

.careers-section .left h2 {

    font-size: 36px;

    font-weight: 700;

    line-height: 46px;

    color: var(--black);

}

.careers-section .left p {

    font-size: 16px;

    line-height: 28px;

    margin-top: 30px;

}

.careers-section .form-box fieldset {

    margin-bottom: 20px;

}

.careers-section .form-box label {

    display: block;

    font-size: 18px;

    font-weight: 500;

    text-transform: capitalize;

    margin-bottom: 2px;

}



.careers-section .form-box input[type="text"], 

.careers-section .form-box input[type="email"], 

.careers-section .form-box select, 

.careers-section .form-box textarea {

    height: 38px;

    width: 100%;

    border: none;

    padding-right: 30px;

    outline: none;

    font-size: 14px;

    padding: 10px;

    color: #414651;

    display: block;

    font-weight: 500;

    background-color: #f3f3f3;

    /* border-bottom: 1px solid #D0D5DD; */

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}

.careers-section .form-box input[type="file"] {

    border: 1px solid #ccc;

    width: 100%;

    padding: 6px;

}

.careers-section .form-box textarea {

    height: 100px;

}

.careers-section .form-box button {

    font-size: 16px;

    color: #fff;

    text-transform: capitalize;

    padding: 10px 25px;

    background: var(--primary-color);

    display: -webkit-inline-box;

    display: -ms-inline-flexbox;

    display: inline-flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    border: 1px solid transparent;

    text-align: center;

    -webkit-transition: all 500ms ease-in-out;

    -o-transition: all 500ms ease-in-out;

    transition: all 500ms ease-in-out;

}

.careers-section .form-box button:hover {

    background-color: var(--secondary-color);

}









/* service-page-section */

.service-page-section {

    padding: 100px 0;

}













/* General Table Styling */

.table-style-2 {

    width: 100%;

    border-collapse: collapse;

    font-size: 16px;

    min-width: 100%;

    border-radius: 0;

    overflow: hidden;

    margin-bottom: 20px;

}



.table-style-2 thead tr {

    background-color: var(--primary-color);

    color: #fff;

    text-align: left;

}

.table-style-2 thead .trow-2 {

    background-color: var(--secondary-color);

    color: #fff;

}

.table-style-2 thead .trow-2 th {

    font-weight: 400;

}



.table-style-2 th,

.table-style-2 td {

    padding: 12px 15px;

    border: 1px solid #e9e9e92a;

    vertical-align: top;

}



.table-style-2 tbody tr {

    border-bottom: 1px solid #ffffff2a;

}



.table-style-2 tbody tr:nth-of-type(odd) {

    background-color: #f3f3f3;

}

.table-style-2 tbody tr:nth-of-type(even) {

    background-color: #e7e7e7;

}



.table-style-2 tbody tr:last-of-type {

        border: 1px solid #ddd;

}



.table-style-2 ul {

    margin: 0;

    padding-left: 20px;

}



.table-style-2 li {

    margin-bottom: 5px;

    list-style-type: disc;

}



/* Responsive Styling (Mobile) */

@media screen and (max-width: 600px) {

    .table-style-2 {

        min-width: 100%;

        box-shadow: none;

    }



    .table-style-2 thead {

        display: none;

    }



    .table-style-2 tr {

        display: block;

        margin-bottom: 15px;

        border: 1px solid #ddd;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

    }



    .table-style-2 td {

        display: block;

        text-align: left;

        border-bottom: 1px solid #eee;

        position: relative;

        padding-left: 50%;

    }



    .table-style-2 td::before {

        content: attr(data-label);

        position: absolute;

        left: 15px;

        width: 45%;

        padding-right: 10px;

        white-space: nowrap;

        text-align: left;

        font-weight: bold;

        color: var(--secondary-color);

    }



    .table-style-2 ul {

        list-style: none;

        text-align: left;

    }

}

















/* ----------------------

Contact Section

------------------------*/

.contact-section .wrap {

    padding: 60px 60px 60px 60px;

    background: #ffffff;

}

.contact-section {

    padding: 100px 0;

}



.contact-section .sec-title {

    margin-bottom: 10px;

}

.contact-section .contact-col {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

}



.contact-section .c-info {

    margin-bottom: 80px;

}

.contact-section .item {

    padding: 35px;

    background-color: #fff;

    border-bottom: 2px solid var(--primary-color);

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

    min-height: 260px;

}

.contact-section .item .icon {

    margin-bottom: 15px;

}

.contact-section .item .icon span {

    font-size: 30px;

}

.contact-section .item .content h3 {

    color: var(--primary-color);

    font-size: 25px;

    font-weight: 600;

}

.contact-section .item .content p,

.contact-section .item .content p a {

    margin: 0;

    color: var(--black);

}



.contact-section .contact-box {

    padding: 50px;

    background-color: #fff;

    box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);

}



.contact-section .contact-form {

    padding: 40px;

    border-radius: 30px;

}

.contact-section .first-input label {

    font-size: 18px;

    font-weight: 600;

}

.contact-section .first-input input,

.contact-section .first-input textarea,

.contact-section .first-input select {

    width: 100%;

    border-radius: 4px;

    border: 1px solid #e6e6e6;

    background: #fff;

    padding: 16px;

    margin-bottom: 24px;

    outline: none;

}

.textarea textarea {

    border-radius: 4px;

    border: 1px solid #e6e6e6;

    background: #fff;

    outline: none;

    width: 100%;

    padding: 16px;

    margin-top: 0px;

    height: 120px;

}







.contact-form fieldset {

    margin-bottom: 2em;

}



.contact-form input:focus,

.contact-form textarea:focus,

.contact-form select:focus {

    border-color: var(--primary-color);

}



.contact-form .bottom-btn button {

    margin-top: 0px;

    font-size: 16px;

    color: #fff;

    background-color: #070F3A;

    padding: 17px 30px 17px 30px;

    -webkit-box-shadow: none;

            box-shadow: none;

    border: none;

    display: block;

    border-radius: 50px;

    font-weight: 500;

    text-transform: uppercase;

    -webkit-transition: all 0.3s;

    -o-transition: all 0.3s;

    transition: all 0.3s;

}



.contact-form .theme-button:hover {

    background-color: var(--primary-color);

}



.contact-form textarea {

    padding: 20px;

    height: 120px;

}



.contact-form::-webkit-input-placeholder {

    /* Edge */

    color: #cacaca;

}



.contact-form:-ms-input-placeholder {

    /* Internet Explorer 10-11 */

    color: #cacaca;

}



.contact-form::-moz-placeholder {

    color: #cacaca;

}



.contact-form::-ms-input-placeholder {

    color: #cacaca;

}



.contact-form::placeholder {

    color: #cacaca;

}



form fieldset .radio {

    margin-top: 10px;

    position: relative;

}



form fieldset .radio li {

    margin: 0 10px;

}



.contact-form input[type="radio"] {

    width: auto;

    margin-bottom: 0;

}



form fieldset .radio li label {

    width: auto;

}



.contact-section {

    background-image: url("../images/service2-bg.png");

    background-repeat: no-repeat;

    background-size: cover;

    position: relative;

}

.contact-section .contact-from {

    padding-top: 20px;

}

.contact-section .contact-wrap h2 {

    margin-bottom: 10px;

    font-size: 30px;

    font-weight: 600;

    color: var(--black);

}



.contact-section .contact-wrap .nav-tabs .nav-link {

    color: #000;

    font-size: 18px;

    font-weight: 500;

    padding: 10px 30px;

}

.contact-section .contact-wrap .nav-tabs .nav-link.active {

    color: var(--primary-color);

}

.contact-section .contact-wrap .tab-content {

    padding-top: 30px;

}



.contact-section .contact-box {

    /* background-color: #fff; */

    height: 100%;

    padding-left: 40px;

}





.contact-section .contact-box .address-box {

    display: flex;

    margin-bottom: 35px;

}



.contact-section .contact-box .address-box .icon {

    margin-right: 25px;

    width: 40px;

    height: 40px;

}



.contact-section .contact-box .address-box .text span {

    font-size: 18px;

    line-height: 27px;

    font-weight: 700;

    color: #ffffff;

    display: block;

    margin-bottom: 5px;

}

.contact-section .contact-box .address-box .text p {

    color: #ffffff;

    margin-bottom: 0;

    font-size: 16px;

}

.contact-section .contact-box .address-box .text a {

    color: #ffffff;

}



.contact-section .social-wrap {
    margin-top: 30px;
}

.contact-section .social-wrap .social-icons {
    margin-top: 10px;
}



.contact-section .contact-info {

    display: flex;

    gap: 15px;

    position: relative;

    border-radius: 4px;

    background: #fff;

    padding: 24px 22px;

    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .09);

    transition: all .4s ease-in-out;

    margin-bottom: 20px;

}

.contact-section .contact-info .icon {

    width: 40px;

    height: 40px;

    display: inline-block;

    flex: 0 0 auto;

}

.contact-section .contact-bg {

    background: #1a237e;

}

.contact-section .contact-info .text h3 {

    font-size: 20px;

    font-weight: 600;

    color: var(--primary-color);

    margin-bottom: 2px;

}

.contact-section .contact-info .text p,

.contact-section .contact-info .text p a {

    font-size: 17px;

    font-weight: 500;

    text-align: left;

    margin-bottom: 0;

    color: var(--black);

}

.contact-section .contact-bg .text h3,

.contact-section .contact-bg .text p,

.contact-section .contact-bg .text a {

    color: #fff !important;

}







/* -----------------

Footer Section

--------------------*/

footer {

    position: relative;

    display: block;

    background-color: #F5F5F5;

    overflow: hidden;

    z-index: 1;

}

/* footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    z-index: -1;

    width: 100%;

    height: 100%;

    background-color: #152952f0;

} */



footer .footer-content {

    padding: 100px 0 60px;

}



footer .widget h2 {

    color: var(--primary-color);

    font-size: 21px;

    text-transform: capitalize;

    font-weight: 600;

    margin-bottom: 20px;

    margin-right: 15px;

    padding-bottom: 0px;

    position: relative;

}





footer .widget p {

    color: #e3e3e3;

    margin: 0;

}

footer .widget-about .logo-box {

    margin-bottom: 20px;

    width: 180px;

}

footer .widget-about .logo-box img {

    mix-blend-mode: darken;

}

footer .widget-about p {

    text-align: left;

    font-size: 16px;

    color: var(--third-color);

}



footer .widget-links,

footer .widget-contact {

    position: relative;

    display: block;

    margin-left: 15px;

}



footer .widget-links .nav-links ul {

    padding: 0;

    list-style-type: none;

}



footer .widget-links .nav-links ul li {

    margin-bottom: 0;

}



footer .widget-links .nav-links ul li a {

    color: var(--third-color);

    font-size: 16px;

    padding: 8px 0;

    font-weight: 500;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;

}



/* footer .widget-links .nav-links ul li a:before {

    content: "\f105";

    font-family: "FontAwesome";

    padding-right: 10px;

    color: #7ed200;

    font-size: 12px;

} */



footer .widget-links .nav-links ul li a:hover {

    color: var(--primary-color);

    background-color: transparent;

}



footer .widget-contact .contact-info ul {

    padding: 0;

}



footer .widget-contact .contact-info ul li {

    position: relative;

    display: flex;

    margin-bottom: 15px;

}



footer .widget-contact .contact-info ul li .content h3 {

    font-size: 14px;

    color: #000;

    font-weight: 600;

    margin-bottom: 5px;

}

footer .widget-contact .contact-info ul li .content p {

    font-size: 16px;

    line-height: 22px;

    text-transform: none;

}



footer .widget-contact .contact-info ul li .icon {

    position: relative;

    top: 5px;

    display: inline-block;

}

footer .widget-contact .contact-info ul li .icon span {

    position: relative;

    display: inline-block;

    font-size: 21px;

    color: var(--primary-color);

}



footer .widget-contact .contact-info ul li .content {

    position: relative;

    display: block;

    margin-left: 12px;

}



footer .widget-contact .contact-info ul li p {

    display: -ms-grid;

    display: grid;

    text-align: left;

    font-size: 16px;

    color: var(--third-color);

}



footer .widget-contact .contact-info ul li a {

    color: var(--third-color);

    font-size: 16px;

}



footer .widget-contact .contact-info ul li a.email {

    margin-top: 10px;

}



/* footer .widget-contact .contact-info h4 {

  font-size: 15px;

  color: #fff;

  margin-bottom: 20px;

} */



/* ----------------------

Footer Bottom Section

------------------------*/

.footer-bottom {

    padding: 25px 0;

    border-top: 1px solid #e6e9e9;

}



.footer-bottom p,

.footer-bottom p a {

    margin: 0;

    color: var(--third-color);

    font-size: 15px;

}



.footer-bottom .copyrights {

    float: left;

}



.footer-bottom .copyrights p span {

    margin-left: 10px;

}

.footer-bottom .copyrights p span a:hover {

    color: #a5e767;

}



.footer-bottom .design {

    float: right;

}



.social-icons {
    margin-top:10px;
    margin-bottom: 0px;
}

.social-icons li {

    display: inline-block;

    margin: 0 5px 0 0;

}



.social-icons li a {

    width: 35px;

    height: 35px;

    display: block;

    color: var(--secondary-color);

    background-color: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 50px;

    text-align: center;

    line-height: 35px;

    -webkit-transition: 600ms ease all;

    -o-transition: 600ms ease all;

    transition: 600ms ease all;

}

.social-icons li a:hover {

    background-color: var(--primary-color);

    border-color: var(--primary-color);

}

.social-icons li a:hover i {

    color: #fff;

}



.social-icons li a i {

    font-size: 16px;

}



/* ----------------------

Go To Top

------------------------*/



.scroll-top {

    width: 45px;

    height: 45px;

    line-height: 40px;

    border: none;

    position: fixed;

    bottom: 105%;

    right: 50px;

    font-size: 22px;

    border-radius: 50%;

    z-index: 99;

    color: #ffffff;

    text-align: center;

    cursor: pointer;

    background: var(--primary-color);

    -webkit-transition: 0.5s ease;

    -o-transition: 0.5s ease;

    transition: 0.5s ease;

  }

  .scroll-top i {

    color: #fff;

  }

  .scroll-top:hover{

    background: var(--secondary-color);

  }

  .scroll-top.show {

    bottom: 45px;

  }

  .scroll-top i {

    color: #fff;

    transform: rotate(90deg);

    display: inline-block;

  }

  .scroll-top:after {

    position: absolute;

    z-index: -1;

    content: '';

    top: 100%;

    left: 5%;

    height: 10px;

    width: 90%;

    opacity: 1;

    background: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);

    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);

  }

  













.captcha-img {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

}



.captcha-img img {

    width: 200px;

}



#captcha_reload i {

    color: #000000;

    font-size: 22px;

    line-height: 40px;

    padding-left: 10px;

}



#captcha-field {

    margin: 0;

}



#captcha-error {

    text-align: center;

}



#captcha-error p {

    margin: 0;

}



#captcha_reload i {

    color: #000;

    font-size: 20px;

    height: 100%;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

}



#captcha-field {

    margin-top: 0px;

}



#captcha_image {

    width: 80%;

    height: 100%;

    margin: 0 0px 0 0;

    text-align: center;

}



#success_message {

    text-align: center;

    background-color: #dff2d5;

    padding: 5px 10px;

    border: 1px solid #399d04;

    margin-top: 20px;

}



#success_message h3 {

    color: #000;

    font-size: 16px;

    font-weight: 500;

    margin: 0;

}



.help-block.error,

#file-error p {

    color: #f00;

    font-size: 14px;

}



#employment_type-error {

    position: absolute;

    top: 100%;

}



#error_message {

    text-align: center;

    background-color: #f2d5d5;

    padding: 5px 10px;

    border: 1px solid #9d0404;

    margin-top: 20px;

}



#error_message h3 {

    color: #000;

    font-size: 16px;

    font-weight: 500;

    margin: 0;

}











@media only screen and (min-width: 1320px) {
	.mblgn{ display:none;}

    .container {

        max-width: 1200px;

    }

}



@media only screen and (max-width: 1440px) {
	.mblgn{ display:none;}

    .banner-slider .shape-1 {

        left: 30px;

        width: 4%;

    }

    .banner-slider .shape-2 {

        left: -30px;

        width: 8%;

    }

    .mission-vision .box {

        min-height: 360px;

    }

    .why-section .img-wrap .shape-1 {

        width: 20%;

    }

}





@media only screen and (max-width: 1399px) {
	.mblgn{ display:none;}

    .banner-slider .slide-content .content .sub-heading h4 {

        font-size: 16px;

    }

    .banner-slider .slide-content .content .heading h2 {

        font-size: 45px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .sub-heading-2 h5 {

        font-size: 28px;

    }

}



@media only screen and (max-width: 1366px) {
	.mblgn{ display:none;}

    .navbar {

        padding: 0 30px;

    }

    .banner-carousel .content-box .lower-box {

        width: 500px;

    }

    .about-section .col-1 {

        justify-content: normal;

        gap: 20px;

    }

    .about-section .content {

        padding: 0 30px 30px 30px;

    }

    .why-choose-section .main-img img {

        width: 45%;

    }

    .why-choose-section .inner .content {

        margin-top: -492px;

        padding-top: 60px;

        padding-bottom: 60px;

    }

}



@media only screen and (max-width: 1199px) {
	.mblgn{ display:none;}

    .navbar .contact-info {

        display: none;

    }

    #main-nav #main-menu > li > a {

        padding: 10px 0;

    }

    .banner-slider .slide-content .content .sub-heading h4 {

        font-size: 16px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .heading h2 {

        font-size: 40px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .sub-heading-2 h5 {

        font-size: 25px;

    }

    .about-section .left-box {

        margin: 0 auto 0;

    }

    .about-section .right-box {

        margin: 120px auto 0;

    }

    .counter-section .left {

        margin: 0 auto 0;

    }    

    .why-choose-section .main-img img {

        width: 45%;

        min-height: 680px;

        object-fit: cover;

    }

    .why-choose-section .inner .content {

        margin-top: -692px;

    }

    .showroom-section .heading h2 {

        font-size: 90px;

        line-height: 100px;

    }

    .showroom-section .inner {

        margin-top: -150px;

    }





    footer .widget {

        margin-bottom: 40px;

    }

    footer .widget-links, 

    footer .widget-contact {

        margin-left: 0;

    }

}



@media only screen and (max-width: 991px) {
	.mblgn{ display:block; width:160px;}
    .top-bar {

        display: none;

    }

    .navbar {

        background-color: #fff !important;

        padding: 20px 0;

    }

    .navbar-brand.light {

        display: none;

    }

    .navbar-brand.dark {

        display: block;

        width: 130px;

    }

    .navbar-nav {

        margin-top: 30px;

    }

    #main-nav {

        margin-left: 0px;

        margin-top: 40px;

    }

    #main-nav #main-menu > li > a .sub-arrow {

        background-color: #f1f1f1;

        margin-left: 10px;

        top: 1px;

    }

    #main-nav #main-menu > li > a {

        color: #000;

    }

    .navbar-nav li .nav-link {

        padding: 10px 0px !important;

        color: var(--black) !important;

    }

    .dropdown .dropdown-toggle::after {

        content: "\f107";

        font-family: FontAwesome;

    }

    .navbar-nav li.dropdown:hover .dropdown-toggle::after {

        content: "\f107";

        font-family: FontAwesome;

    }

    .banner-carousel .content-box .wrapper {

        margin-top: 10px;

    }

    .banner-carousel .content-box .theme-btn-two {

        display: flex;

        align-items: center;

        font-size: 14px;

        line-height: 30px;

        padding: 6px 11px 6px 20px;

    }

    .banner-carousel .content-box .theme-btn-two span {

        width: 30px;

        height: 30px;

        display: flex;

        justify-content: center;

        align-items: center;

    }

    .banner-carousel .content-box .theme-btn-two span svg {

        width: 20px;

    }

    .banner-carousel .content-box .theme-btn-two span i {

        font-size: 10px;

    }

    .banner-slider .slide-content {

        padding: 190px 0 120px;

    }

    .banner-slider .slide-content .content {

        top: 60%;

    }

    .banner-carousel .content-box .lower-box {

        margin-top: 20px;

        width: 370px;

    }

    .banner-carousel .content-box .lower-box .text {

        font-size: 1.5vw;

        line-height: 2.2vw;

    }

    .about-section .col-1 {

        justify-content: space-between;

    }

    .about-section .content {

        padding: 40px 0 0 0;

    }

    .about-section .content .counter-wrap {

        margin-top: 30px;

    }

    .services-section .item {

        margin-bottom: 30px;

    }

    .why-section .img-wrap {

        margin-top: 60px;

    }

    .counter-section .item {

        margin-bottom: 40px;

    }

    .counter-section .item-b::after,

    .counter-section .item-t::after {

        background: none;

    }

    .counter-section .item-b {

        margin-top: 0;

    }

    .counter-section .item-t {

        margin-bottom: 0;

    }

    .counter-section .item {

        margin-bottom: 30px;

    }

    .quote-section {

        padding: 100px 0 180px;

    }

    .quote-section .content {

        margin-top: 40px;

    }

    .support-section .icon-box {

        margin-bottom: 20px;

    }

    .support-section .icon-box.left {

        justify-content: flex-end;

        padding-right: 0px;

        flex-direction: row-reverse;

    }

    .support-section .icon-box.left .text {

        text-align: left;

    }

    .support-section .icon-box.right {

        padding-left: 0;

    }

    .testimonials-section .content {

        margin-bottom: 40px;

    }



    footer .footer-newsletter .title {

        font-size: 26px;

    }

    footer .widget {

        margin-bottom: 40px;

    }

    .footer-bottom .copyrights,

    .footer-bottom .design {

        float: none;

    }

    .footer-bottom .copyrights p,

    .footer-bottom .design p {

        text-align: center;

    }

}





@media only screen and (max-width: 767px) {
	.banner-bottom{ margin-top:40px;}
	.banner-slider{ margin-top:100px;}
	.banner-slider .owl-nav {top: 30%;}
	.mblgn{ display:block; width:160px;}

    #main-nav #main-menu > .dropdown > a .sub-arrow::after {

        height: 0;

    }

    #main-nav #main-menu > li > a .sub-arrow {

        top: 21px;

        right: 0;

        position: absolute;

    }

    .about-section .right-box {

        margin: 80px auto 0;

    }

    .banner-carousel .content-box {

        max-width: 100%;

        padding: 0 20px;

    }

    .banner-carousel .content-box h2 {

        margin-bottom: 0;

    }

    .banner-carousel .content-box .lower-box {

        width: 100%;

    }

    .banner-slider .slide-content .image {

        display: none;

    }

    .banner-slider .slide-content {

        padding: 240px 0 350px;

    }

    .sec-title h2 {

        font-size: 30px;

    }

    .banner-carousel .content-box h2 {

        line-height: 3vw;

    }

    .banner-carousel .content-box .lower-box {

        width: 300px;

    }

    .banner-carousel .content-box .lower-box .text {

        margin-bottom: 20px;

    }

    .banner-carousel .content-box .theme-btn-two {

        display: flex;

        align-items: center;

        font-size: 12px;

        line-height: 30px;

        padding: 2px 6px 2px 10px;

    }

    .about-section .col-1 {

        flex-direction: row;

    }

    .about-section .img-main {

        margin-top: 20px;

    }

    .about-section .img-main img {

        height: 400px;

        object-fit: cover;

    }

    .testimonials-section .slider::before {

        width: 100%;

    }



    footer .footer-newsletter .newsletter-form {

        max-width: 498px;

        margin: 0 auto 0 0;

        position: relative;

    }

    footer .footer-newsletter .title {

        font-size: 26px;

        margin-bottom: 30px;

    }

    .timeline .swiper-slide-active .timeline-title {

        margin-bottom: 10px;

    }

    .timeline .swiper-container {

        height: 140px;

    }

}





@media only screen and (max-width: 575px) {
	.banner-slider{ margin-top:100px;}
	.banner-bottom{ margin-top:40px;}
	.banner-slider .owl-nav {top: 30%;}
	.mblgn{ display:block; width:160px;}

    .banner-carousel .content-box .sub-title {

        font-size: 8px;

        padding: 4px 12px 3px 10px;

    }

    .banner-carousel .content-box .lower-box .theme-btn-two {

        font-size: 12px;

        padding: 2px 6px 2px 10px;

    }

    .theme-btn-two span i {

        font-size: 14px;

    }

    .banner-carousel .content-box .lower-box {

        width: 230px;

        margin-top: 10px; 

    }

    .banner-slider .owl-dots {

        display: none;

    }

    .about-section .col-1 {

        width: 100%;

        flex-direction: column;

    }

    .services-section .sec-title {

        margin-bottom: 10px;

    }

    .why-choose-section .content .item {

        margin-bottom: 20px;

    }







}



@media only screen and (max-width: 480px) {
	.banner-slider{ margin-top:100px;}
	.banner-bottom{ margin-top:40px;}
	.banner-slider .owl-nav {top:20%;}
    .banner-carousel .content-box .lower-box {

        width: 170px;

    }

    .banner-carousel .content-box .lower-box .theme-btn-two {

        font-size: 10px;

        padding: 0 10px;

        line-height: normal;

    }

    .banner-carousel .content-box .theme-btn-two span {

        width: 25px;

        height: 25px;

    }

    .services-section .right-box {

        flex-direction: column;

        gap: 10px;

    }

    .projects-header-section .wrap {

        text-align: center;

    }

    .appointment-section .content p {

        text-align: center;

    }

    .showroom-section .heading h2 {

        font-size: 38px;

        line-height: 48px;

    }

    

}


.pointss li {

    position: relative;

    padding-left: 25px;

    margin-bottom: 12px;

    font-family: "Nunito Sans", sans-serif;

    font-weight: 500;

}

.pointss li::before {

    content: "\f061";

    font-family: FontAwesome;

    font-size: 14px;

    color: var(--primary-color);

    position: absolute;

    left: 0;

    top: 1px;

}
.stmns p{ text-align:center;}
.map-box{ border:1px solid #ccc; padding:10px; margin-top:10px;}
.map-boxh{ border:1px solid #ccc; padding:10px;}

.whatsapp{border:none;position:fixed;bottom: 105px; right: 50px; z-index: 99; cursor: pointer; 
-webkit-transition:0.5s ease; -o-transition: 0.5s ease;transition: 0.5s ease;}
.whatsapp.show {bottom:105px; opacity:1; visibility: visible;}

.thank-col{ padding:0px; width:100%; text-align:center; height:200px; display:table; overflow:hidden; }
.thank-col div{ display:table-cell; vertical-align:middle; text-align:center; width:100%; }
.thank-col div img{ margin:0 auto;}
.thank-col h2{ color:#555; font-weight:bold;}
.thank-col p{ color:#333;}


