@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: white;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background-color: hsl(0, 0%, 7%);
    display: flex;
    flex-direction: column;
}
* a {
    text-decoration: none;
}
.scroll-target {
    position: relative;
    top: 60px;
    opacity: 0;
    transition: 0.4s ease;
}

/*///////////////////// HEADER /////////////////////*/
.header-container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
.header {
    max-width: calc(100% - 100px);
    background-color: transparent;
    margin: 0 auto;
    width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}
.header-logo-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-logo {
    height: 26px;
    width: auto;
}
.header-name {
    line-height: 1;
    font-size: 34px;
    font-weight: 600;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-link {
    font-size: 16px;
    color: hsl(0, 0%, 100%);
    font-weight: 400;
}
.header-link:hover {
    text-decoration: underline;
}
.btn-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: hsl(0, 0%, 10%);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 22px;
    transition: 0.2s ease;
}
/*//////////////////////////////////////////////////*/

/*///////////////////// HERO SECTION /////////////////////*/
.hero-filler {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    min-height: 770px;
}
.hero-bg-container {
    background-image: url(images/bg1.jpg);
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: -10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 770px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.hero-bg-fade {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -8;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.4);
}
.hero-bg-vert {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -7;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0.85), hsla(0, 0%, 0%, 0.0));
}

.hero-container {
    margin: 100px auto 0;
    width: 1400px;
    max-width: calc(100% - 100px);
}
.hero-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.hero-title-col {
    opacity: 1;
}
.hero-review {
    letter-spacing: .5px;
    font-size: 14px;
    font-weight: 300;
    color: hsla(0, 0%, 100%, 0.8);
}
.hero-star {
    margin-right: 6px;
    color: #fddf40;
}
.hero-title {
    font-family: "Barlow Condensed", sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 140px;
    font-weight: 800;
    line-height: 1.05;
}
.hero-exp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 62px;
    padding: 4px 20px 4px 12px;
    border-left: 1px solid #fddf40;
}
.hero-exp-txt {
    line-height: 1;
    font-size: 15px;
    color: hsla(0, 0%, 100%, 0.8);
}
.hero-exp-link {
    margin-top: 8px;
    font-size: 15px;
    color: #fddf40;
}
.hero-bottom {
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
}
.hero-vid-flex {
    height: 130px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.hero-vid {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 16 / 9;
    height: 100%;
    width: auto;
    border: 1px solid hsl(0, 0%, 40%);
    border-radius: 4px;
}
.hero-vid-img {
    z-index: -2;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-vid-border1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid hsla(50, 98%, 62%, 0.5);
}
.hero-vid-border2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 100px;
    border: 1px solid hsla(50, 98%, 62%, 0.5);
}
.hero-vid-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 200px;
    background-color: #fddf40;
}
.hero-vid-play {
    font-size: 11px;
    color: hsl(0, 0%, 10%);
}
.hero-vid-hr {
    min-width: 1px;
    width: 1px;
    height: 100%;
    background-color: #fddf40;
}
.hero-vid-col {
    width: 190px;
    opacity: 1;
}
.hero-avt-flex {
    display: flex;
}
.hero-avt {
    margin-left: -12px;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    border: 1px solid hsl(0, 0%, 40%);
}
.hero-avt:first-child {
    margin-left: 0;
}
.hero-avt-img {
    border-radius: 100px;
    width: 100%;
    height: 100%;
}
.hero-avt-txt {
    max-width: 100%;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .5px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.4;
}
span.hero-avt-txt {
    color: #fddf40;
    font-weight: 500;
}
.hero-cta-txt {
    width: 450px;
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.7;
}
.btn-hero-cta {
    margin-top: 25px;
    cursor: pointer;
    display: inline-block;
    background-color: #fddf40;
    color: hsl(0, 0%, 10%);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 22px;
    transition: 0.2s ease;
}
/*////////////////////////////////////////////////////////*/

/*///////////////////// ABOUT SECTION /////////////////////*/
.abt-container {
    max-width: calc(100% - 100px);
    width: 1400px;
    margin: 80px auto 100px;
}
.abt-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.abt-head {
    color: #fddf40;
    font-size: 15px;
}
.abt-head-icon {
    font-size: 15px;
    color: #fddf40;
    margin-right: 8px;
}
.abt-title {
    margin-top: 14px;
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 90px;
    font-weight: 600;
    line-height: 1;
}
.abt-para {
    max-width: 100%;
    margin-top: 26px;
    width: 620px;
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.75;
}
.abt-info {
    margin-top: 42px;
    display: flex;
    gap: 50px;
}
.info-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-section {
    display: flex;
    align-items: center;
    gap: 20px;
}
.info-icon-box {
    cursor: pointer;
    background-color: hsl(0, 0%, 10%);
    border: 1px solid hsl(0, 0%, 18%);
    width: 45px;
    height: 45px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.info-icon-box:hover {
    background-color: hsl(0, 0%, 5%);
}
.info-icon {
    font-size: 18px;
    color: #fddf40;
}
.info-txt {
    color: white;
    font-size: 16px;
    font-weight: 600;
}
.btn-abt {
    margin-top: 50px;
    cursor: pointer;
    display: inline-block;
    background-color: #fddf40;
    color: hsl(0, 0%, 10%);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 22px;
    transition: 0.2s ease;
}
.abt-img-container {
    border-radius: 10px;
    height: 650px;
    width: 460px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.abt-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.abt-bottom {
    margin-top: 50px;
    width: 100%;
    display: flex;
    gap: 30px;
}
.abt-box {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.abt-box-img {
    z-index: -2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
}
.abt-box-bg {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.6);
}
.abt-box-title {
    width: 320px;
    max-width: 100%;
    color: white;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}
.abt-box-stat {
    color: #fddf40;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 74px;
    font-weight: 600;
    line-height: 1;
}
/*/////////////////////////////////////////////////////////*/

/*///////////////////// TESTIMONIALS SECTION /////////////////////*/
.test-container {
    max-width: calc(100% - 100px);
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.test-head {
    color: #fddf40;
    font-size: 16px;
}
.test-head-icon {
    font-size: 14px;
    color: #fddf40;
    margin-right: 8px;
}
.test-title {
    margin-top: 14px;
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
}
.test-para {
    max-width: 100%;
    margin-top: 26px;
    width: 620px;
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.75;
}
.btn-test {
    margin-top: 36px;
    cursor: pointer;
    display: inline-block;
    background-color: #fddf40;
    color: hsl(0, 0%, 10%);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 22px;
    transition: 0.2s ease;
}

.test-flex {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.test-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.test-pfp {
    width: 40px;
    height: 40px;
    border-radius: 100px;
}
.test-name {
    color: white;
    font-weight: 500;
    font-size: 15px;
}
.test-txt {
    margin: 16px 0 20px;
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.65;
}
.test-date {
    color: hsl(0, 0%, 75%);
    font-size: 14px;
}
.test-wrapper {
    border: 1px solid hsl(0, 0%, 14%);
    border-radius: 12px;
    padding: 20px 16px;
    background-color: hsl(0, 0%, 10%);
}
.test-col {
    mask-image: linear-gradient(
        to bottom,
        hsla(0, 0%, 0%, 0) 0%,
        hsla(0, 0%, 0%, 1) 20%,
        hsla(0, 0%, 0%, 1) 80%,
        hsla(0, 0%, 0%, 0) 100%
    );
    overflow: hidden;
    height: 880px;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tw-1 {
    animation: test_slide1 20s linear infinite;
}
.tw-2 {
    animation: test_slide2 20s linear infinite;
}
.col1 {
    justify-content: flex-start;
}
.col2 {
    justify-content: flex-end;
}
@keyframes test_slide1 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-936px);
    }
}
@keyframes test_slide2 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(914px);
    }
}
/*////////////////////////////////////////////////////////////////*/

/*///////////////////// CONTACT FORM SECTION /////////////////////*/
.con-container {
    max-width: calc(100% - 100px);
    margin: 100px auto;
    width: 1400px;
}
.con-title {
    margin-top: 14px;
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 140px;
    font-weight: 600;
    line-height: 1;
}
.con-para {
    max-width: 100%;
    margin-top: 26px;
    width: 350px;
    font-size: 17px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.75;
}
.con-flex {
    margin-top: 130px;
    width: 1100px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
}
.con-form {
    width: 650px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.con-input {
    outline: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid hsl(0, 0%, 40%);
    background-color: transparent;
    font-size: 16px;
    color: white;
    padding-bottom: 8px;
}
.con-input::placeholder {
    color: hsla(0, 0%, 100%, 0.8);
}
.btn-con {
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    background-color: #fddf40;
    color: hsl(0, 0%, 10%);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 15px 0;
    width: 100%;
    transition: 0.2s ease;
}
.con-info {
    width: 250px;
    display: flex;
    flex-direction: column;
}
.con-label {
    text-transform: uppercase;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.con-txt {
    margin-top: 10px;
    margin-bottom: 35px;
    font-size: 15px;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}
.con-social {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.con-icon-container {
    cursor: pointer;
    background-color: hsl(0, 0%, 10%);
    border: 1px solid hsl(0, 0%, 18%);
    width: 45px;
    height: 45px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.con-icon-container:hover {
    background-color: hsl(0, 0%, 5%);
}
.con-icon {
    font-size: 18px;
    color: #fddf40;
}
/*////////////////////////////////////////////////////////////////*/

/*///////////////////////////////// FOOTER ////////////////////////////////////*/
.footer-container {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: hsl(0, 0%, 0%);
    padding: 60px 0 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}
.footer-link {
    font-size: 16px;
    color: hsl(0, 2%, 50%);
    transition: 0.2s ease;
}.footer-link:hover {color: white;}
.footer-logo-flex {
    margin: 55px 0 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.footer-icon {
    cursor: pointer;
    color: white;
    opacity: 0.5;
    font-size: 24px;
    transition: 0.3s ease;
}
.footer-icon:hover {
    opacity: 1;
}
.copy-txt {
    line-height: 1.7;
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
    color: hsl(0, 2%, 50%);
}
/*/////////////////////////////////////////////////////////////////////////////*/


.header-menu-holder {
    display: none;
}
#footerBr {
    display: none;
}


@media only screen and (max-width: 1460px){
    .test-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 80px;
    }
    .test-content {
        max-width: 100%;
    }
    .test-flex {
        justify-content: center;
    }
    .test-title {
        font-size: 64px;
    }
    .test-para {
        font-size: 14px;
        line-height: 1.7;
    }

    .abt-img-container {
        display: none;
    }
}
@media only screen and (max-width: 1150px){
    .hero-top {
        flex-direction: column;
    }
    .hero-title {
        font-size: 105px;
    }
    .hero-exp {
        margin-top: 25px;
    }
    .hero-bottom {
        margin-top: 80px;
        gap: 42px;
        flex-direction: column;
    }
    .hero-cta-col {
        order: 1;
    }
    .hero-vid-flex {
        order: 2;
    }
    .header-nav {
        display: none;
    }
    .btn-header {
        display: none;
    }
    .header-menu-holder {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 8px;
    }
    .header-line {
        height: 2px;
        border-radius: 10px;
        background-color: white;
    }
    .line1 {
        width: 34px;
    }
    .line2 {
        width: 20px;
    }
    .line3 {
        width: 26px;
    }

    .abt-bottom {
        display: none;
    }
    .abt-title {
        font-size: 64px;
    }
    .abt-content {
        width: 100%;
    }
    .abt-para {
        font-size: 15px;
        max-width: 100%;
    }
    .abt-info {
        flex-direction: column;
        gap: 25px;
    }

    .con-title {
        font-size: 70px;
    }
    .con-para {
        font-size: 16px;
        max-width: 100%;
    }
    .con-form {
        max-width: 100%;
    }
    .con-flex {
        margin-top: 50px;
        gap: 65px;
        flex-direction: column;
    }
}
@media only screen and (max-width: 700px){
    .header {
        max-width: calc(100% - 30px);
    }
    .hero-container {
        margin-top: 60px;
        max-width: calc(100% - 30px);
    }
    .header-logo {
        height: 24px;
    }
    .header-name {
        font-size: 30px;
    }
    .hero-title {
        font-size: 66px;
    }
    .hero-cta-txt {
        font-size: 14px;
        width: 400px;
        max-width: 100%;
    }
    .hero-bottom {
        margin-top: 50px;
    }
    .hero-vid-flex {
        height: 100px;
    }
    .hero-vid {
        height: 90px;
        max-width: 120px;
        overflow: hidden;
    }
    .hero-vid-img {
        width: auto;
    }
    .hero-avt {
        width: 40px;
        height: 40px;
    }
    .hero-avt-txt {
        max-width: 100%;
    }

    .con-container, .test-container, .abt-container {
        max-width: calc(100% - 30px);
    }

    .test-container {
        gap: 60px;
    }
    .col2 {
        display: none;
    }
    .test-col {
        width: 100%;
    }
    .test-title {
        font-size: 56px;
    }
    .test-title br {
        display: none;
    }

    .footer-nav {
        gap: 30px;
        flex-direction: column;
    }
    .footer-link {
        font-size: 14px;
    }
    .copy-txt {
        font-size: 14px;
    }
    #footerBr {
        display: block;
    }
}