*{margin: 0;padding: 0;box-sizing: border-box;}

body{
    font-family: "Roboto Condensed", sans-serif;
}
.btn{
    width:200px !important;
}
.btn:hover{
    background: red;
    
}
h1, h2, h3, h4, h5, h6{
    font-family: "Oswald", sans-serif;
}

.bg-red{
    background-color: red;
}
.text-red{
    color: red;
}
#top{
    /* height: 100vh; */
    background: url(https://technext.github.io/zacson/assets/img/hero/h1_hero.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header ul li a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
#header ul li a:hover{
    text-decoration: underline;
}

#hero .col-12{
    height: 100vh;

}
.title{
    color: rgba(255, 255, 255, 0);
    font-size: 40px; 
    font-weight: 800;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
}
.sub-title{
    font-size: 40px;
    color: #fff;
    font-weight: 800;
}

#services .left{
    background: url(https://technext.github.io/zacson/assets/img/gallery/cat1.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
}
#services .right{
    background: url(https://technext.github.io/zacson/assets/img/gallery/cat2.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    
}
#services .right::before, #services .left::before{
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.7;
}

#gallery .main{
    position: relative;
    
}
#gallery .main img{
    height: 300px;
}

#gallery .main .text-box{
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    color: #fff;
    opacity: 0;
    transition: all ease-in-out 0.5s;
}
#gallery .main .text-box h2{
    font-weight: bold;
    font-size: 20px !important;
    color: rgb(255, 255, 255);
}
#gallery .main:hover .text-box{
    opacity: 1;
}
#gallery .main:hover img{
    filter: blur(1px);
}
.triangle{
    height: 0px;
    width: 0px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid #ff0000;
    border-left: 20px solid #ff0d00;
    border-right: 20px solid transparent;
    position: relative;
    left: 220px;
    bottom: 30px;
    transform: rotateY(180deg);
}
.triangle span{
    position: absolute;
    top: -13px;
    font-size: 23px;
    right: 2px;
    top: -9px;
    color: rgb(0, 0, 0);
}

#video{
    width: 100%;
    
    background: url(https://technext.github.io/zacson/assets/img/gallery/video-bg.png) no-repeat;
    background-size: 100% 100%;
    
}
#video .col-12{
    height: 100%;
    display: flex;
    height: 50vh;
    justify-content: center;
    align-items: center;
}
#video .col-12 span{
    border: 2px solid red;
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
}
#video .col-12 i{
    font-size: 100px;
}

footer a:hover{
    background: red;
    padding: 10px;
    color: #fff;
    border-radius: 50%;
}

@media screen and (min-width: 720px) {
    #hero .col-12 h1{
        color: rgba(255, 255, 255, 0);
        font-size: 70px; 
        font-weight: 800;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgb(255, 255, 255);
    }
    #hero .col-12 h2{
        font-size: 70px;
        color: #fff;
        font-weight: 800;
    }
}