@import 'common.css';


.banner {
    height: 100vh;
    background: url(img/banner.jpg) center / cover fixed;
    position: relative;
}
.banner_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: rgba(255,255,255, 0.15);
    backdrop-filter: blur(15px);
}

.banner .container {
    position: relative;
    height: 100%;
}

.banner .row {
    height: 100%;
    align-items: center;
}

.banner_heading {
    font-size: 185px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
}
.banner_heading span  {
    background: url(img/banner.jpg) center / cover fixed;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_heading_1 {
    margin-left: 157px;
}

.banner_info {
    display: flex;
    align-items: center;
}
.banner_info p {
    font-size: 14px;
    min-width: 380px;
    margin-top: 45px;
    margin-right: 42px;
    line-height: 1.7;
    color: rgba(255,255,255, 0.7);
}


.btn_video {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    top: -85px;
    left: 200px;
    cursor: pointer;
    border-top: 2px solid rgba(255,255,255, 0.35);
    border-left: 2px solid rgba(255,255,255, 0.35);
    transition: 500ms;
}
.btn_video img {
    width: 45%;
    position: relative;
    left: 4px;
}
.btn_video:hover {
    transform: scale(1.1);
}