/* CSS Document */

/* Images as Background Images */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}


#hero {
    position: relative;
    height: 750px;
    /* display: none; */
}

.wpcp-single-content {
    padding: 0px!important;
}

.hero-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,.6);
    height: 100%;
    width: 100vw!important;
    line-height: 1;
}

.hero-subtitle {
    color: white;
    color: var(--style-sec);
    font-size: 40px;
    font-family: var(--reg-font);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-title {
    color: white;
    color: var(--style-main);
    font-family: var(--reg-font);
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px!important;
    display: block;
}

.hero-link {
    background: white;
    border-radius: 0px;
    padding: 10px 20px;
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--reg-font);
    color: #707070;
    transition: .3s;
}

.hero-link:hover {
    background: var(--style-sec);
    color: white;
}



/* SERVICES */

#services {
    padding: 50px 0px;
}

.services-main-title {
    font-weight: bold;
    font-size: 45px;
    text-align: center;
    color: var(--style-main);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.service-item {
    margin: 40px;
    width: calc(33.3% - 80px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-item img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    /* border-radius: 55px; */
    margin-bottom: 20px;
}

.service-title {
    color: var(--style-main);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
}

.service-item p {
    color: #707070;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link {
    color: var(--style-main);
    font-weight: bold;
    padding: 10px 20px;
    border: 3px solid var(--style-main);
    border-radius: 0px;
    text-transform: uppercase;
}

.service-link:hover {
    background: var(--style-main);
    color: white;
}


/* MISSION */

#mission {
    position: relative;
    padding: 130px 0px;
    background: black;
}

#mission img {
    opacity: .5;
}

.mission-title {
    color: white;
    font-size: 60px;
    font-weight: 500;
    border-bottom: 7px solid white;
    padding-bottom: 20px;
}

.mission-content {
    display: flex;
    position: relative;
    max-width: 1500px;
    padding: 0px 20px;
}

.mission-subtitle {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.mission-left{
    width: 40%;
    padding-right: 100px;
}

.mission-right {
    width: 60%;
    background: rgba(255,255,255,.7);
    padding: 75px 50px;
    border-radius: 0px;
    -webkit-backdrop-filter: blur(7px)!important;
    backdrop-filter: blur(7px)!important;
    border: 2px solid #fff;
    border-bottom: 0px;
}

.mission-right p {
    font-size: 25px;
    color: #000;
    line-height: 35px;
    margin-bottom: 30px;
}

.mission-link {
    background: white;
    padding: 10px 20px;
    color: var(--style-main);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0px;
    transition: .3s;
}

.mission-link:hover {
    background: var(--style-main);
    color: white;
}



/* BLOG */

#blog {
    padding: 50px 30px;
}

.blog-wrap {
    max-width: 1800px;
    margin: auto;
}

.blog-main-title {
    color: var(--style-main);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 60px;
    margin-bottom: 40px;
}

.blog-text-flex {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.blog-post {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-container {
    display: flex;
    gap: 30px;
}

.blog-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.blog-post-title {
    color: var(--style-main);
    text-transform: uppercase;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 30px;
}

.blog-excerpt {
    font-size: 18px;
    line-height: 23px;
    flex-grow: 1;
    color: #707070;
}

.blog-link {
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0px;
    border: 3px solid var(--style-main);
}

.blog-link:hover {
    background: var(--style-main);
    color: white;
}

/* VIDEO */

#video {
    position: relative;
    max-height: 900px;
    margin: auto;
    aspect-ratio: 16 / 6;
}

#video iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 15px;
}



/* GUARANTEE */

#guarantee {
    padding: 75px 20px;
}

.guarantee-main-title {
    text-align: center;
    color: var(--style-main);
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
}


.g-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.g-item {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 33%;
    text-align: center;
}

.g-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
}

.g-title {
    font-size: 20px;
    color: #707070;
    text-transform: uppercase;
}

.g-item:first-of-type {
    border-right: 5px solid var(--style-main);
}

.g-item:last-of-type {
    border-left: 5px solid var(--style-main);
}

.g-item p {
    font-size: 14px;
    color: #707070;
    padding: 0px 15px;
    margin: 0px;
}



/* TESTIMONIALS */

#testimonials {
    position: relative;
    padding: 150px 20px;
    background: rgba(0,0,0,.5);
}

#testimonials .octane-background img {
    opacity: .5;
}

.test-wrap {
    max-width: 1200px;
    margin: auto;
}

.ti-name {
    text-transform: uppercase;
}

.ti-stars {
    position: absolute;
    right: 20px;
    top: 10px;
}

#testimonials .ti-inner {
    -webkit-backdrop-filter: blur(7px)!important;
    backdrop-filter: blur(7px)!important;
    border-radius: 0px!important;
}




/* AREAS */


#areas {
    padding: 100px 20px;
}

.areas-wrap {
    max-width: 1200px;
    display: flex;
    margin: auto;
}

.areas-left, .areas-right {
    width: 50%;
    position: relative;
}

.areas-right iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0px;
}

.areas-left {
    padding-right: 50px;
}

.areas-title {
    text-transform: uppercase;
    color: var(--style-main);
    font-weight: bold;
    font-size: 50px;
    border-bottom: 5px solid var(--style-main);
    padding-bottom: 10px;
}

.areas-left ul {
    columns: 2;
}

.areas-left p {
    font-size: 30px;
    text-transform: uppercase;
}

.areas-left a {
    font-weight: bold;
}


/* CTA */

#cta {
    background: var(--style-main);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.logo-1, .logo-2 {
    height: 300px;
    width: auto;
}

.logo-1 {
    position: absolute;
    bottom: -80px;
    left: -150px;
}

.logo-2 {
    position: absolute;
    top: -80px;
    right: -150px;
}

.cta-wrap {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-title {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    position: relative;
    margin-bottom: 30px;
}

.cta-title::after {
    content: "";
    display: block;
    max-width: 400px;
    margin: auto;
    height: 7px;
    background: white;
    margin-top: 20px;
}

.cta-link {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    border: 3px solid white;
}

.cta-link:hover {
    background: white;
    color: var(--style-main);
}







@media(max-width: 1200px) {
    #hero {
        height: 550px;
    }

    #wpcpro-wrapper-1314 #sp-wp-carousel-pro-id-1314.wpcp-carousel-section.sp-wpcp-1314.wpcp-content-carousel .wpcp-single-content, .wpcp-single-item {
        height: 550px!important;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-link {
        font-size: 20px;
    }

    /* services */

    .services-main-title {
        font-size: 30px;
    }

    /* mission */

    .mission-title {
        font-size: 30px;
    }

    .mission-subtitle {
        font-size: 20px;
    }

    .mission-right {
        padding: 30px;
    }
    
    .mission-right p {
        font-size: 20px;
    }

    /* blog */

    .blog-main-title {
        font-size: 30px;
    }
    
    .blog-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blog-post {
        width: calc(50% - 20px);
    }

    .blog-post-title {
        font-size: 22px;
    }

    /* Guarantee */

    .guarantee-main-title {
        font-size: 30px;
    }

    /* areas */

    .areas-title {
        font-size: 30px;
    }

    .areas-left p {
        font-size: 20px;
    }

    .cta-title {
        font-size: 30px;
    }

}

@media(max-width: 1024px) {
    
    .service-item {
        margin: 20px;
        width: calc(33.3% - 40px);
    }

    .mission-content {
        flex-direction: column;
    }

    .mission-left, .mission-right {
        width: 100%;
    }

    .mission-left {
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .blog-main-title, .guarantee-main-title {
        font-size: 30px;
    }
}

@media(max-width: 960px) {
    .g-title {
        font-size: 16px;
    }

    .areas-wrap {
        flex-direction: column;
    }

    .areas-left, .areas-right {
        width: 100%;
    }

    .areas-right {
        height: 300px;
    }

    .areas-left {
        padding-right: 0px;
        padding-bottom: 30px;
    }

    .areas-title {
        font-size: 40px;
    }

    .areas-left p {
        font-size: 20px;
    }

    /* cta */

    .cta-title {
        font-size: 40px;
    }
}

@media(max-width: 800px) {
    #hero {
        height: 450px;
    }

        #wpcpro-wrapper-1314 #sp-wp-carousel-pro-id-1314.wpcp-carousel-section.sp-wpcp-1314.wpcp-content-carousel .wpcp-single-content, .wpcp-single-item {
        height: 450px!important;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-link {
        font-size: 16px;
    }

    /* services */

    .service-item {
        margin: 20px;
        width: calc(50% - 40px);
    }

        /* video */

        #video {
        aspect-ratio: 16 / 9;
    }

    /* guarantee */

    .guarantee-main-title {
        margin-bottom: 15px;
    }

    .g-container {
        flex-direction: column;
        align-items: center;
    }

    .g-item img {
        margin-bottom: 15px;
    }

    .g-item {
        padding: 15px;
        width: auto;
    }

    .g-item:first-of-type {
        border-bottom: 5px solid var(--style-main);
        border-right: none;
    }
    
    .g-item:last-of-type {
        border-top: 5px solid var(--style-main);
        border-left: none;
    }

    /* testimonials */

    #testimonials {
        padding: 50px 20px;
    }

    .ti-stars {
        position: relative;
        right: initial;
        top: initial;
    }
}

@media(max-width: 768px) {
    .service-title, .service-link {
        text-align: center;
    }

    .service-item {
        align-items: center;
    }

    #video {
        text-align: initial;
    }

    .blog-link {
        margin: auto;
    }
}

@media(max-width: 700px) {
    .cta-title {
        font-size: 30px;
    }

    .cta-title::after {
        height: 5px;
    }

    .logo-1, .logo-2 {
        height: 200px;
    }

    .logo-1 {
        bottom: -50px;
        left: -120px;
    }

    .logo-2 {
        top: -50px;
        right: -120px;
    }
}

@media(max-width: 550px) {
    .service-item {
        margin: 20px;
        width: calc(100%);
    }

    #mission {
        padding: 30px 0px; 
    }

    .mission-left {
        margin-bottom: 0px;
    }

    .mission-title {
        font-size: 30px;
        border-bottom: 4px solid white;
    }

    .mission-right p, .mission-link {
        font-size: 16px;
    }

    /* blog */

    .blog-post {
        width: 100%;
    }

    .blog-post-title {
        font-size: 20px;
    }

    .areas-title {
        font-size: 30px;
    }

    .areas-left p {
        font-size: 18px;
    }

    #areas {
        padding: 30px 20px;
    }


}

@media(max-width: 450px) {
    .hero-content {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 35px;
    }

    #hero {
        height: auto;
    }

        #wpcpro-wrapper-1314 #sp-wp-carousel-pro-id-1314.wpcp-carousel-section.sp-wpcp-1314.wpcp-content-carousel .wpcp-single-content, .wpcp-single-item {
        height: auto!important;
    }

    /* services */

    .services-main-title {
        font-size: 30px;
    }
}