@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Teko:wght@300;400;500;600;700&display=swap');
:root {
    --primary: #46b7b2;
    --secondry: #de4e9c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Teko';
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: #fff;
}

input,
input:focus {
    border: none;
    outline: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    width: 100%;
}

.heading-style {
    font-size: 70px;
    font-weight: 400;
    color: #333;
    font-family: 'Teko';
    line-height: 1;
}

.heading-style::after {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #46b7b2;
    margin-left: 4px;
}

.prm-btn {
    padding: 20px 40px;
    color: #000;
    background: var(--primary);
    border-radius: 5px;
    font-family: 'Teko';
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 999;
}

.prm-btn.headerBtn {
    padding: 10px 40px;
    margin-top: 0px;
    border-bottom: 0;
}

.prm-btn::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(110%, 20%) rotate(15deg);
    transform-origin: 0 0;
    background-color: #000;
    width: 300px;
    height: 300px;
    transition: all ease .3s;
    z-index: -1;
    opacity: .2;
}

.prm-btn:hover::before {
    transform: translate(46%, 20%) rotate(0deg);
    transition: all ease .3s;
    opacity: .9;
    width: 500px;
}

.prm-btn.black {
    background-color: #000;
    color: #fff;
}

.prm-btn.black::before {
    background-color: #fff;
}

.prm-btn.black:hover {
    color: #000;
}


/* Header */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
    padding: 15px 0;
}

header nav>ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header .logo {
    max-width: 200px;
    font-weight: 900;
    font-size: 35px;
    color: #fff;
}

header nav>ul>li a {
    display: block;
    padding: 0px 0;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

header nav>ul>li a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    transition: .2s ease;
}

header .sub-menu:hover .menu-box {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: all ease .3s;
}

header .menu-box {
    transition: all ease .3s;
    width: calc(100% + 150px);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
}

header .menu-box li a {
    transition: all ease .3s;
    color: #333;
    margin: 5px 0;
    display: block;
    padding: 5px;
}

header .menu-box li a:hover {
    transition: all ease .3s;
    color: #dc8d03;
}

header nav>ul li {
    position: relative;
}

.nav_mob_icon {
    display: none;
}

.nav_mob_icon img {
    width: 30px;
}

.mob_nav_menu {
    position: absolute;
    right: 0;
    top: 0;
    background: #111;
    color: #fff;
    width: 50%;
    padding: 100px 20px 0 20px;
    transition: all linear 0.3s;
    display: none;
    z-index: 1000;
    height: 100vh;
    overflow: auto;
}

.slide_nav {
    transform: translate(100%);
    transition: all ease 0.5s;
}

.mob_nav_menu.active {
    display: block;
    -webkit-animation: mob-nav 0.5s ease;
    animation: mob-nav 0.5s ease;
}

.nav-overlay.active {
    transition: all ease 0.5s;
    width: 100%;
}

.nav-overlay {
    transition: all ease 0.5s;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100vh;
    background: #000;
    z-index: 1000;
    opacity: .5;
}

.mob_nav_head label {
    background-color: #fff;
    fill: #000;
    border-radius: 1px;
}

@-webkit-keyframes mob-nav {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes mob-nav {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.mob_nav_menu>ul>li {
    width: 100%;
}

.mob_nav_menu>ul>li>.mob_nav_head {
    width: 100%;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob_nav_menu>ul>li>.mob_nav_head>a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.mob_nav_head.active {
    background-color: #dc8d03;
}

.mob_nav_menu>ul>li.mob_nav>.active>a {
    color: #111;
}

.mob_nav_menu>ul>li>.mob_nav_head>img {
    width: 30px;
}

.mob_submenu {
    height: 0;
    overflow: hidden;
}

.mob_nav input {
    display: none;
}

.mob_nav input:checked~.mob_submenu {
    height: 100%;
}

.mob_nav input:checked~.mob_nav_head img {
    transform: rotate(90deg);
    transform-origin: center;
}

.mob_submenu img {
    width: 20px;
    margin-right: 10px;
}

.mob_submenu li {
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 700;
}

.search {
    width: 100%;
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.searchTerm {
    width: 100%;
    border: none;
    height: 45px;
    outline: none;
    color: #9DBFAF;
    padding: 0 15px;
}

.searchButton {
    width: 45px;
    height: 45px;
    border: 1px solid #c5a862;
    background: #c5a862;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

.searchButton img {
    width: 15px;
}

.mob_nav_lwr {
    padding: 10px 25px;
    border-top: 1px solid #666;
}

.mob_nav_lwr .cart_icon svg {
    width: 30px;
    margin-bottom: 20px;
}

.close_mob_nav {
    position: absolute;
    right: 20px;
    top: 30px;
}

.close_mob_nav svg {
    width: 30px;
}


/* Hero Section */

.hero-sec {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-image {
    width: 120%;
    height: 110vh;
    margin-top: -153px;
    left: 50%;
    transform: translateX(-10%);
    background: url(assets/seo-2-slide-1-background-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-image img {
    width: 100%;
    height: 150%;
}

ul#scene li {
    width: 100%;
    height: 100%;
}

.btmstrp1,
.btmstrp2,
.btmstrp3,
.btmstrp4 {
    background: url(assets/home-2-slide-shape-4a.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    width: 120%;
    height: 200px;
    position: absolute;
    bottom: 150px;
    margin-left: -15%;
    z-index: 4;
    animation: wave 8.22222s 0.3s infinite ease;
}

.btmstrp2 {
    background-image: url(assets/home-2-slide-shape-3b.png);
    z-index: 3;
    bottom: 80px;
    animation: wave 12.22222s 0.4s infinite ease;
}

.btmstrp3 {
    background-image: url(assets/home-2-slide-shape-2-1.png);
    z-index: 2;
    bottom: 20px;
    animation: wave 16.22222s 0.2s infinite ease;
}

.btmstrp4 {
    background-image: url(assets/home-2-slide-shape-1a.png);
    z-index: 1;
    bottom: 0;
    animation: wave 6.22222s 0.1s infinite ease;
}

@keyframes wave {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(4%, 0, 0);
        -moz-transform: translate3d(4%, 0, 0);
        transform: translate3d(4%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.hero-sec .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content h1 {
    color: #fff;
    font-family: 'Teko';
    font-size: 70px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}

.hero-content p {
    font-family: 'Teko';
    color: #eee;
    max-width: 700px;
    font-size: 25px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-content a {
    font-size: 20px;
}


/* Stats Section */

.stats-sec {
    background: #111;
    padding-bottom: 100px;
    color: #fff;
}

.stat-box {
    padding-top: 100px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.stats-holder .row>div:not(:last-child) {
    border-right: 1px solid #555;
}

.stat-box::after {
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: inline-block;
    background-color: var(--primary);
    position: absolute;
    width: 0;
    height: 5px;
    transition: all ease .5s;
}

.stat-box:hover::after {
    width: 100%;
    transition: all ease .5s;
}

.stat-box h1 {
    font-family: 'Teko';
    font-size: 80px;
    font-weight: 400;
}

.stat-box span {
    font-family: 'Teko';
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Feature 1 */

.feature1 {
    padding: 100px 0;
    background: #eee;
}

.feature1-text p {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
    max-width: 600px;
    margin: 20px 0;
    letter-spacing: 0.5px;
}

.feat-parts {
    margin-top: 50px;
}

.feat-parts div {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}

.feat-parts .row div::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: var(--primary);
    margin-left: 4px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 10px;
}

.feat-parts h2 {
    font-size: 25px;
    font-family: 'Teko';
    font-weight: 400;
    letter-spacing: 2px;
}

.feat-parts p {
    margin: 0;
}

.feature1-img {
    max-width: 500px;
    margin: auto;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.feature1-img::after {
    content: "";
    display: inline-block;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%) rotate(45deg);
}

.feature1-img img {
    filter: grayscale(1);
    transition: all ease .5s;
}

.feature1-img:hover img {
    transition: all ease .5s;
    filter: grayscale(0);
}


/* Section 3 */

.feature2 {
    padding: 100px 0;
    position: relative;
}

.feature2::after {
    background: url('assets/image-3.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.feature2 .bg-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
    color: #fff;
    z-index: 2;
}

.feature2-text {
    position: relative;
    z-index: 3;
    margin: 20px 0;
}

.feature2-text h1 {
    color: #fff;
    font-family: 'Teko';
    max-width: 600px;
    font-size: 80px;
}

.feature2-text i {
    font-size: 30px;
    color: #fff;
    margin: 20px 0;
}

.feature2-text p {
    font-size: 30px;
    font-family: 'Teko';
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.benefits-holder .row .col-md-4:not(:last-child) .benefit-box {
    border-right: 1px solid #555;
}


/* Get A Quote */

.quote {
    padding: 100px 0;
}

.quote-upr-img img {
    max-width: 250px;
    border-radius: 5px;
    filter: grayscale(1);
}

.upr-quote {
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.quote h2 {
    font-size: 50px;
    letter-spacing: 0;
}

.quote p {
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 20px;
    color: #666;
}

.lwr-quote {
    padding-top: 50px;
}

.quote-lwr-img {
    text-align: right;
}

.quote-lwr-img img {
    border-radius: 5px;
    width: 250px;
    filter: grayscale(1);
}

.quote-form {
    background: #fff;
    box-shadow: 0 0 50px 20px #00000030;
    padding: 50px;
    border-radius: 10px;
    margin-top: -150px;
    position: relative;
    z-index: 99;
}

.quote-form h2 {
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 45px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 25px 20px;
    color: #666;
    margin-bottom: 10px;
    background: #eee;
    border: none;
    font-size: 20px;
}

.quote-form .prm-btn {
    width: 100%;
    text-align: center;
}


/* Partners Section */

.partners {
    padding: 100px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.partners .item {
    text-align: center;
}


/* Split Screen */

.split-scr {
    display: flex;
    width: 100%;
}

.split-scr>div {
    padding: 100px 20px;
    text-align: center;
    flex-basis: 50%;
    position: relative;
}

.split-scr>div h1 {
    max-width: 600px;
    margin: auto;
    z-index: 3;
    position: relative;
    color: #fff;
}

.split-scr>div h1::after {
    width: 0;
    height: 0;
}

.split-scr>div::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #000000;
    opacity: .9;
}

.split-scr>div::after {
    background: url('assets/image-3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.split-scr>div:nth-child(2)::before {
    background-color: var(--primary);
}

.split-scr>div:nth-child(2) h1 {
    color: #000;
}

.split-scr .prm-btn {
    z-index: 3;
    position: relative;
}


/* Services Section */

.services-sec {
    padding: 100px 0;
    background: url(assets/service-bg.png) #222429;
}

.services-sec h1 {
    color: #fff;
}

.services-sec p {
    color: #fff;
    letter-spacing: 1px;
    font-size: 20px;
}

.serv-card {
    transition: all ease .3s;
    background-color: #1c1e22;
    padding: 40px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.serv-card img {
    width: 80px;
    position: absolute;
    top: 50px;
    right: 50px;
}

.serv-card p {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.serv-card h1 {
    margin-bottom: 50px;
    opacity: .1;
    font-size: 50px;
    font-weight: 400;
}

.serv-card .hover-effect {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(103%, 20%) rotate(15deg);
    transform-origin: 0 0;
    background-color: #00000015;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 20px;
    transition: all ease .3s;
}

.serv-card:hover {
    background-color: var(--primary);
    transition: all ease .3s;
}

.serv-card:hover .hover-effect span {
    transform: rotate(-32deg) translate(-26px, 35px);
    transition: all ease .3s;
}

.serv-card .hover-effect span {
    transform: rotate(-32deg) translate(-6px, 35px);
    transition: all ease .3s;
}

.serv-card:hover .hover-effect {
    transform: translate(103%, 20%) rotate(33deg);
    background-color: #00000080;
    /* background-color: #dc8d03; */
    transition: all ease .3s;
}


/* Footer */

footer {
    padding: 50px 0;
    color: #fff;
    background: url(assets/footer-bg.png), #333;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

footer p {
    color: #aaa;
    letter-spacing: 1px;
}

footer .heading-style {
    color: #fff;
}

footer li {
    letter-spacing: 1px;
}

footer .list-unstyled .head {
    font-size: 25px;
    color: #fff;
    margin-bottom: 20px;
}

footer .list-unstyled li:not(:first-child) {
    color: #aaa;
}

.social i {
    margin-right: 10px;
}

.input-email input {
    background: unset;
    border: none;
    color: #aaa;
    width: 100%;
}

.input-email {
    padding: 10px;
    background-color: #eeeeee20;
    display: flex;
    align-items: center;
}

.input-email button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--primary);
    font-size: 14px;
    padding: 10px;
    border-radius: 50%;
}

.news-ltr p {
    max-width: 200px;
    margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
    .quote-form {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .split-scr>div h1 {
        font-size: 50px;
    }
    .stat-box:hover::after {
        width: 0;
        transition: all ease .5s;
    }
    .stats-holder .row>div:nth-child(2n) {
        border-right: none;
    }
    .feature1-text {
        margin-top: 50px;
    }
    .nav_mob_icon {
        display: block;
    }
    header>nav {
        display: none;
    }
    header {
        padding: 20px 0;
    }
}

@media only screen and (max-width: 767px) {
    .stats-holder .row>div:nth-child(n) {
        border-right: none;
    }
    .quote-upr-img img {
        max-width: unset;
    }
    .quote-upr-text {
        padding-left: 0 !important;
        text-align: center;
        margin-top: 20px;
    }
    .quote-lwr-img img {
        width: 100%;
    }
    .split-scr>div h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .mob_nav_menu {
        width: 100%;
    }
    .feature1-text h1,
    .feature2-text h1 {
        font-size: 50px;
    }
    .quote-form {
        padding: 40px 25px;
    }
    .split-scr {
        flex-direction: column;
    }
}