*{
    box-sizing: border-box;
}
#hero-section-single{
    background-color: #F0F3F9;
    /* background-color: red; */
    margin-top: 0px;
    padding-top: 100px; 
    text-align: center;
    position: relative;
    z-index: 1;
}
header,
.sticky{
    background-color: #F0F3F9;
}
#hero-section-single::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../img/templates-bg-after.png);
    z-index: -1;
    right: 20px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.col-hero-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-hero-icon img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.col-hero-icon span{
    font-size: 14px;
    color: var(--Core-Base-Black);
}
.col-hero-text{
    margin: 20px 0 0 0;
}
.col-hero-text h1{
    /* font-size: 56px; */
    font-size: 3.88vw;
    font-weight: 500;
    color: var(--Core-Base-Black);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}
.col-hero-text p{
    /* font-size: 24px; */
    font-size: 1.66vw;
    font-weight: 300;
    color: var(--Core-Base-Black);
    text-align: center;
    line-height: 1.2;
}
.col-hero-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--Core-Base-White);
    border-radius: 16px;
    border: 1px solid #D7DFE9;
    width: 40%;
    margin: 0 auto;
    box-shadow: 0px 0px 78px 8px rgba(0,0,0,0.19);
    -webkit-box-shadow: 0px 0px 78px 8px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 0px 78px 8px rgba(0,0,0,0.19);
    position: relative;
    top: 100px;
}
.block-form-title,
.block-form-content{
    width: 100%;
    text-align: center;
}
.block-form-title{
    border-bottom: 1px solid #D7DFE9;
}
.block-form-title h2{
    font-size: 20px;
    font-weight: 500;
    color: var(--Core-Base-Black);
    text-align: left;
}
.block-form-title,
.block-form-content{
    padding: 20px;
}
.grid-btn{
    /* margin-top: 20px; */
}
.grid-btn button{
    width: 100%;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-btn button img{
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.grid-input{
    display: grid;
    margin-bottom: 15px;
}
.grid-input:last-child{
    margin-bottom: 0;
}
.grid-1{
    grid-template-columns: 1fr;
    gap: 15px;
}
.grid-2{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.input-wrap{
    position: relative;
}
.input-wrap input{
    width: 100%;
    padding: 15px 15px;
    border-radius: 10px;
    border: 1px solid #AFBACA;
}
.input-wrap input:focus{
    border-color: var(--Core-Violet);
    outline: none;
}
.input-wrap input::placeholder{
    /* color: #AFBACA; */
}

.col-title-section h2{
    /* font-size: 40px; */
    font-size: 2.77vw;
    font-weight: 500;
    color: var(--Core-Base-Black);
    text-align: center;
    margin-bottom: 30px;
}
.col-title-section p,
.col-title-section-video p{
    /* font-size: 20px; */
    font-size: 1.38vw;
    font-weight: 300;
    color: #455468;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
}
.col-title-section-video p:first-child{
    margin-top: 30px;
}
.col-title-section p:last-child,
.col-title-section-video p:last-child{
    margin-bottom: 0;
}

#section-three-blocks{
    margin-top: 250px;
}
.row-three-blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.col-three-blocks{
    border: 1px solid #E9EFF6;
    border-radius: 16px;
    padding: 30px;
}
.col-three-blocks .block-icon{
    margin-bottom: 10px;
}
.col-three-blocks .block-icon img{
    width: 45px;
    height: 45px;
}

.block-body h3{
    /* font-size: 24px; */
    font-size: 1.66vw;
    font-weight: 400;
    line-height: 1.3;
    color: var(--Core-Base-Black);
    margin-bottom: 20px;
}
.block-body p{
    /* font-size: 16px; */
    font-size: 1.11vw;
    font-weight: 300;
    color: #455468;
    margin-bottom: 10px;
}
.block-body p:last-child{
    margin-bottom: 0;
}

.col-title-section-video h2{
    /* font-size: 48px; */
    font-size: 3.33vw;
    font-weight: 500;
    color: var(--Core-Base-Black);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}
.col-yt-video iframe{
    width: 100%;
    height: 600px;
    border-radius: 16px;
    border: 1px solid #E9EFF6;
}
.row-yt-video{
    margin-top: 30px;
}

@media(min-width: 1440px){
    .col-hero-text h1{
        font-size: 56px;
    }
    .col-hero-text p{
        font-size: 24px;
    }
    .col-title-section h2{
        font-size: 40px;
    }
    .col-title-section p,
    .col-title-section-video p{
        font-size: 20px;
    }

    .block-body h3{
        font-size: 24px;
    }
    .block-body p{
        font-size: 16px;
    }

    .col-title-section-video h2{
        font-size: 48px;
    }
}

@media(max-width: 1321px){
    /* .col-hero-text h1 {
        font-size: 50px;
    } */
    .col-hero-text p {
        font-size: 20px;
        line-height: 1.4;
    }
    /* .block-form-title h2 {
        font-size: 19px;
    } */
}

@media(max-width: 1000px){
    h1 br,
    h2 br,
    h3 br,
    p br{
        display: none;
    }

    .col-hero-text h1{
        font-size: 40px;
    }
    .col-hero-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .col-hero-form{
        width: 95%;
        padding: 0px 20px 0 20px;
        top: 70px;
    }
    .block-form-title, .block-form-content {
        padding: 20px 0;
    }

    #section-three-blocks {
        margin-top: 120px;
    }
    .col-title-section p, 
    .col-title-section-video p,
    #integration-section .section-title p {
        font-size: 16px;
    }
    .row-three-blocks {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    .col-three-blocks {
        padding: 15px;
    }
    .block-body h3 {
        font-size: 20px;
    }
    .block-body p {
        font-size: 15px;
        line-height: 1.6;
    }

    .col-yt-video iframe {
        height: 400px;
    }

    #section-video{
        margin-top: 100px;
    }
    .col-title-section h2,
    .col-title-section-video h2,
    .section-description-title h2,
    #integration-section .section-title h2{
        font-size: 35px;
    }
}