body {
    font-family: 'Poppins';
    font-weight: 400;
}
.logo {
    height: 45px;
    position: absolute;
    top: 30px;
    z-index: 9999;
    left: 30px;
}

.sc-home {
    position: relative;
    color: #fff;
}
.sc-home .img-after {
    position: absolute;
    bottom: 0;
}
.sc-home video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
.sc-home .content {
    color: #fff;
    max-width: 800px;
    width: 100%;
    padding: 0 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-top: -17%;
}
.sc-home .txt-coming {
    font-weight: 300;
    letter-spacing: 3px;
}
.sc-home .txt-title {
    font-size: 64px;
}
.sc-home .sub-txt {
    min-height: 90px;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'IBM Plex Mono';
    font-size: 22px;
}
.sc-home .line {
    height: 1px;
    border-top: 1px solid #002C57;
    width: 110px;
    margin: 0 auto 30px;
}
.sc-home .contact a {
    color: #fff;
    text-decoration: none;
}
.sc-home .contact a:hover{
    color: #fff;
    text-decoration: none;
}
.sc-home .txt-contact {
    font-size: 14px;
}
.sc-home svg {
    width: 14px;
    display: block;
    margin: 10px auto;
    color: #fff;
}
.sc-home svg .arrow {
    animation: scroll .4s ease-in alternate infinite;
}

.sc-contact {
    color: #fff;
    position: relative;
}
.sc-contact .content-contact {
    letter-spacing: 2px;
}
.sc-contact .copyright {
    color: rgba(79, 99, 120, 1);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
}
.sc-contact .row-contact a {
    color: #fff;
    text-decoration: none;
}
.sc-contact .row-contact a:hover {
    color: #fff;
}
.sc-contact .txt-head-con {
    letter-spacing: 3px;
}

@media (max-width: 991px) {
    .row-contact {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .sc-home .txt-title {
        font-size: 44px;
    }
}
@media (max-width: 575px) {
    .sc-home .txt-title {
        font-size: 30px;
    }
    .sc-home .content {
        margin-top: -50%;
    }
    .sc-home .txt-coming {
        font-size: 14px;
    }
    .sc-home .sub-txt {
        font-size: 16px;
        min-height: 100px;
        max-width: 300px;
    }
    .content-contact {
        padding-left: 15px;
        font-size: 14px;
    }
    .content-contact .fs-1 {
        font-size: 24px !important;
    }
    .content-contact .fs-4 {
        font-size: 18px !important;
    }
    .logo {
        height: 30px;
    }
}

@keyframes scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(10px);
    }
}

