/* 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 */

#hero {
    position: relative;
    z-index: 0;
    margin-top: -118px;

    padding-top: 250px;
    padding-bottom: 100px;
    overflow: hidden;
}

#hero .wrap {
    display: flex;
    /* justify-content: space-between; */
    gap: 30px;
}

#hero .wrap::before, #hero .wrap::after {
    content: none;
}

#hero img {
    object-position: 0% 60%;
    height: 120%;
}

#hero img:nth-of-type(2) {
    display: none;
}

/* hero right / form */

#hero .gform-field-label {
    color: white;
}

#field_1_11 .gfield_label {
    display: block;
    color: white;
    margin: 0px!important;
    text-transform: uppercase;
}

.hero-right {
    max-width: 400px;
    padding: 15px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
}

.hero-right ul {
    margin-bottom: 30px;
}

.hero-right li {
    list-style-type: disc;
    margin-left: 20px;
}

#hero .gform_title {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin: 0px!important;
}

#hero input {
    background: none;
    color: white;
    border: 2px solid white;
    border-radius: 15px;
}

#hero .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 0px;
}

#hero .gform_button {
    background: var(--style-main);
    width: 100%;
    font-weight: bold;
    padding: 5px;
}

#hero .gform_heading .gform_description {
    display: none;
}

#hero .gform-field-label--type-sub {
    display: none;
}

/* hero left */

.hero-left {
    width: 50%;
}

.hero-subtitle {
    margin: 0px;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.hero-title {
    font-size: 130px;
    color: white;
    font-weight: 900;
    margin: 0px;
    line-height: 100px;
}

#hero .ti-widget-container {
    display: flex;
    justify-content: flex-start;
}

#hero .gform-field-label {
    margin: 0px!important;
}





/* LINKS */

#links {
    background: var(--style-main);
    padding: 10px;
}

.links {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.link {
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 15px;
    transition: .3s;
    padding: 10px;
    text-align: center;
    
    position: relative;
    display: block;
    background: var(--style-main);
    z-index: 1;
}

.link:before {
    content: "\f0c1";
    font-family: 'Font Awesome 5 Free';
    display: block;

    position: absolute;
    top: 0;
    left: 50%;
    color: var(--style-main);
    
    background: white!important;
    padding: 10px 15px;
    border-radius: 100%;
    transform: translate(-50%, -0%);
    transition: .3s;
    opacity: 0;
    z-index: -1;
}

.link:hover:before {
    transform: translate(-50%, -60%);
    opacity: 1;
}

.link:hover {
    background: white;
    color: var(--style-main);
    transition-delay: 0s;
}


/* ABOUT */

#about {
    padding: 100px 0px;
}

#about .wrap {
    display: flex;
    gap: 80px;
}

.about-left, .about-right {
    width: 50%;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-right img {
    max-width: 475px;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0px 0px 10px #00000029;
}

.about-right img:first-of-type {
    margin-left: auto;
}

.about-right img:nth-of-type(2) {
    margin-top: -50px;
}

.window-subtitle {
    font-weight: bold;
    font-size: 28px;
    color: var(--style-sec);
}

.window-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--style-sec);
}

.divider {
    width: 200px;
    border: 0px;
    height: 4px;
    background: #071520;
    border-radius: 15px;
}

.blue-text {
    color: var(--style-main);
}

.about-left p {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}

.about-left ul, .why-left ul {
    margin-bottom: 20px;
}

.about-left li, .why-left li {
    font-weight: bold;
}

.about-left li::before, .why-left li::before {
    content: "\f14a";
    font-family: "Font AWesome 5 Free";
    font-weight: 500;
    margin-right: 10px;
    color: var(--style-main);
}

.window-link {
    background: var(--style-main);
    z-index: 50;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    transition: .3s;
    display: block;
    width: fit-content;
    position: relative;
    overflow: hidden;
    border: 3px solid white;
}

.window-link::before {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: black;
    z-index: -1;
    transition: .3s;
}

.window-link:hover {
    transform: scale(1.05);
    color: white;
}

.window-link:hover::before {
    top: 0%;
}


/* SERVICES */

#services {
    padding: 100px 0px;
    background: var(--style-tri);
}

.services {
    display: flex;
    gap: 10px;
    max-width: 1000px;
    margin: auto;
    margin-top: 50px;
}

#services .window-subtitle, #services .window-title {
    text-align: center;
}

#services .window-title {
    font-size: 48px;
}

.service {
    position: relative;
    border-radius: 15px;
    transition: .3s;
    transform-origin: bottom;
    cursor: pointer;

    perspective: 150rem;
  -moz-perspective: 150rem;
    width: 33.3%;
}

.service:hover {
    transform: translatey(-30px);
}

.service:hover + .service,
.service:has(+ .service:hover) {
  transform: translatey(-10px) ;
}

.service-title-section {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(112, 112, 112, .9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-title {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 24px;
}

.service-content {
    background: var(--style-main);
    height: 100%;
    color: white;
    padding: 20px;
    position: relative;
    transform: rotateY(180deg);
    border-radius: 15px;
    transition: .5s;
    pointer-events: none;
}

.service-content, .service-front {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-content p {
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    margin: 0px;
}

.active .service-content {
    transform: rotateY(0);
}

.service-front {
    position: absolute;
    background: black;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: .5s;
}

.active .service-front {
    transform: rotatey(-180deg)
}



/* CTA */

#cta {
    position: relative;
}

.cta-background {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

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

.cta-content {
    padding: 100px 20px;
    background: transparent linear-gradient(90deg, #071520 45%, #59626A00 100%) 0% 0% no-repeat padding-box;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}

.cta-title {
    color: white;
    font-weight: 900;
    font-size: 55px;
}

.cta-content p {
    color: white;
    font-size: 30px;
}


/* STEPS */

#steps {
    padding: 100px 0px;
}

.steps-title {
    text-align: center;
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    gap: 20px;
}

.step {
    padding: 20px;
    box-shadow: 0px 0px 20px #00000029;
    border: 8px solid white;
    background: var(--style-tri);
    border-radius: 15px;
    width: 33.3%;

    display: flex;
    flex-direction: column;
}

.num {
    text-align: center;
    color: var(--style-main);
    font-size: 100px;
    font-weight: 900;
    line-height: 110px;
}

.step-title {
    text-align: center;
    font-weight: 900;
}

.step p {
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}


/* why */
#why {
    background: var(--style-tri)
}

.pad {
    padding: 100px 0px;
}

.why-flex {
    display: flex;
    gap: 100px;
}

.why-flex::before, .why-flex::after {
    content: none;
}

.why-left, .why-right {
    width: 50%;
}

.why-left p {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.why-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    height: 100%;
}


.why-card {
    width: calc((100% / 2) - 10px);
    background: #EBEBEB;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #00000029;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-card-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
}

.why-card p {
    text-align: center;
    line-height: 24px;
}

.why-card img {
    margin-bottom: 20px;
}


/* ita */

.ita {
    position: relative;
}

.ita-gradient {
    position: relative;
    background: linear-gradient(-90deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.ita-right .octane-background {
    width: 50%;
    left: 0;
}

.ita-left .ita-gradient {
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.ita-left .octane-background {
    width: 50%;
    right: 0;
    left: initial;
}

.ita-right .ita-content {
    margin-left: auto;
    width: 50%;
    color: white;
}

.ita-left .ita-content {
    width: 50%;
    color: white;
}


.white-text {
    color: white;
}

.ita-content ul {
    margin-bottom: 20px;
}

.ita-content li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.ita-content li::before {
    content: "\f0eb";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: var(--style-main);
    font-size: 30px;
}

.ita-left .ita-content li::before {
    content: "\f14a"
}


/* reviews */

#reviews .window-subtitle, #reviews .window-title {
    text-align: center;
}

#reviews .window-link {
    text-align: center;
    margin: auto;
}



/* packages */

#packages {
    background: var(--style-tri);
}

#packages p {
    font-weight: bold;
}

#packages p, #packages .window-title {
    text-align: center;
}

.package-cards {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.package-card {
     background: white;
     width: 25%;
     padding: 15px;

     display: flex;
     flex-direction: column;
     align-items: center;
    box-shadow: 0px 0px 6px #00000029;
}

.package-title {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}

.package-card ul {
    flex-grow: 1;
    margin-bottom: 20px;
    width: 100%;
}

.package-card li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.package-card li::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--style-main);
}


/* FAQ */

#faq .window-title, #faq p {
    text-align: center
}

#faq p {
    font-weight: 500;
}

.faq-flex {
    display: flex;
    gap: 50px;
}

.faq-left {
    width: 50%;
}

.faq-right {
    display: block;
    width: 50%;
    position: relative;
}

.faq-right img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0px 0px 10px #00000029;
}


/* Areas */
#areas {
    position: relative;
}

.areas-image {
    width: 70%;
    right: 0px;
    left: initial;
}

.areas-gradient {
    position: relative;
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
}

.areas-content {
    max-width: 700px; 
}

.areas-content h4 {
    font-weight: bold;
    font-size: 22px;
    color: var(--style-sec);
}

.areas-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.areas-content li {
    font-size: 22px;
    font-weight: 600;
    width: calc(50% - 5px);
}

.areas-content li::before {
    content: "\f3c5";
    font-weight: 900;
    color: var(--style-main);
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}


/* end */

#end {
    position: relative;
}

.end-gradient {
    position: relative;
    padding: 300px 30px;
    background: transparent linear-gradient(180deg, #344651DE 0%, #0A0E10 100%) 0% 0% no-repeat padding-box;
}

.end-subtitle {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.end-title {
    font-size: 80px;
    color: white;
    text-align: center;
    font-weight: 900;
    line-height: 85px;
}

.end-content {
    max-width: 1200px;
    margin: auto;
}

.end-content .window-link {
    margin: auto;
}









@media(max-width: 1650px) {
    .hero-left {
        flex-grow: 1;
    }
    
    .hero-title {
        font-size: 100px;
    }

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

    .link {
        font-size: 18px;
    }

    /* end */

    .end-title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media(max-width: 1440px) {
    .about-right img:first-of-type {
        margin-left: initial;
    }

    .about-right img:nth-of-type(2) {
        margin: initial;
    }

    .about-right {
        gap: 20px;
    }
}

@media(max-width: 1350px) {
    .services {
        flex-wrap: wrap;
    }

    .service {
        flex-grow: 1;
        width: calc(33.3% - 10px);
    }

    .service:hover + .service,
    .service:has(+ .service:hover) {
      transform: initial;
    }
}

@media(max-width: 1250px) {
    .links {
        flex-wrap: wrap;
    }

    .link {
        flex-grow: 1;
        width: calc(33.3% - 20px);
    }

    #about .wrap {
        flex-direction: column;
        gap: 20px;
    }

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

    .about-right {
        align-items: center;
    }

    .num {
        font-size: 60px;
        line-height: initial;
    }

    /* why */

    .why-flex {
        flex-direction: column;
        gap: 30px;
    }

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

    .why-card-title {
        font-size: 18px;
    }


    .why-card p {
        font-size: 16px;
        line-height: 24px;
    }

    /* packages */

    .package-cards {
        flex-wrap: wrap;
    }

    .package-card {
        width: 100%;
        max-width: 400px;
    }
}

@media(max-width: 1150px) {
    .hero-right {
        max-width: 300px;
    }

    .steps {
        flex-wrap: wrap;
    }

    .step {
        width: calc(50% - 20px);
        flex-grow: 1;
    }
}

@media(max-width: 1024px) {
    .pad {
        padding: 70px 0px;
    }

    
    #hero {
        padding-top: 130px;
        padding-bottom: 20px;
    }
    
    #hero .wrap {
        flex-direction: column;
        gap: 0px;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,.3);
        padding: 20px;
        border-radius: 20px;
        border: 3px solid white;
    }
    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-title, .hero-subtitle {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 300px;
        margin: auto;
    }
    
    .hero-title {
        font-size: 50px;
        line-height: 50px;
    }

    #hero .ti-widget-container {
        justify-content: center;
    }

    #hero img:nth-of-type(2) {
        display: block;
    }

    #hero img:nth-of-type(1) {
        display: none;
    }

    .hero-right {
        max-width: 500px;
        margin: auto;
    }

    .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: 1!important;
    }

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

    .cta-content {
        background: transparent linear-gradient(0deg, #071520 50%, #59626A00 100%) 0% 0% no-repeat padding-box;
    }

    .cta-content p {
        font-size: 25px;
    }

    .cta-background {
        width: 100%;
        height: 50%;
    }

    /* ita */

    .ita .window-title {
        text-align: center;
    }

    .ita .window-link {
        text-align: center;
        margin: auto;
    }

    .ita-content {
        width: 100%!important;
    }
    
    .ita-gradient {
        padding-top: 300px;
        background: linear-gradient(0deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%)!important;
    }
    
    .ita .octane-background {
        width: 100%;
        height: 50%;
    }

    /* faq */

    .faq-flex {
        flex-direction: column;
        gap: 30px;
    }

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

    .faq-right img {
        width: 100%;
    }

    /* areas */

    .areas-content {
        max-width: 100%;
        padding-top: 100px;
    }

    #areas .window-title {
        text-align: center;
    }

    .areas-content h4 {
        text-align: center;
    }

    .areas-image {
        width: 100%;
        height: 50%;
    }

    .areas-gradient {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    }

    /* end */

    .end-content {
        max-width: 700px;
    }

    .end-gradient {
        padding: 150px 0px;
    }

    .end-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .end-title {
        font-size: 40px;
        line-height: 45px;
    }

}


@media(max-width: 850px) {
    .service {
        width: calc(50% - 10px);
    }
}

@media(max-width: 768px) {
    .pad {
        padding: 40px 0px;
    }

    
    #hero .gfield--type-checkbox {
        text-align: left!important;
    }

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

    .links {
        gap: 10px;
    }
    
    .link {
        font-size: 16px;
        background: white;
        color: var(--style-main);
    }

    #about, #services, #steps {
        padding: 40px 0px;
    }
    
    .window-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .window-title {
        text-align: center;
    }

    .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .window-title, #services .window-title {
        font-size: 25px;
    }

    #about p, .step p, .ita-content, #packages p, .package-card li, #faq p {
        font-size: 16px;
    }

    #about ul {
        text-align: left;
    }

    .about-right img {
        width: 100%;
    }

    .window-link {
        margin: auto;
    }

    .cta-title {
        text-align: center;
    }

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

    .step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step {
        width: 100%;
    }
}

@media(max-width: 650px) {
    .service {
        width: 100%;
    }

    .service:hover {
        transform: none;
    }

    .service-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .service-content .service-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-content br {
        display: none;
    }

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

    .cta-content p {
        font-size: 18px;
    }

    /* why */
    .why-cards {
        gap: 10px;
        justify-content: center;
    }
    
    .why-card {
        width: calc((100% / 2) - 7px);
        padding: 10px;
    }
    
    .why-card img {
        max-height: 40px;
    }

    .why-card-title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 20px;
    }

    /* ita */

    .ita-gradient {
        padding-top: 150px;
        background: linear-gradient(0deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    }

    /* areas */

    .areas-content li {
        width: 100%;
        font-size: 18px;
    }
    
}

@media(max-width: 550px) {
    #hero {
        margin: 0px;
        padding-top: 20px;
    }

    #hero .wrap {
        padding: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 35px;
        margin-bottom: 20px;
    }

    .link {
        width: calc(50% - 21px);
    }

    /* why */

    .why-card {
        width: 100%;
        max-width: 300px;
    }

    /* end */

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

    .end-title {
        font-size: 30px;
        line-height: 35px;
    }
}