*{
    margin: 0;
    padding: 0;
    background-color: #0c002b; 
} 
.container{
    width: 95vw;   
    margin: auto; 
    box-shadow: 1px 2px 10px 1px blue;  
    height: 90vh;   
    overflow: hidden; 
} 
.main{ 
    padding-top: 5vh; 
}
.navbar{
    background: #020421; 
    padding: 10px 30px; 
    display: flex;
    justify-content: space-between; 
    box-shadow: 2px 2px 8px #01010e; 
}
.navbar h1{ 
    color: #fff;
    font-family: 'Century Gothic';    
    text-transform: uppercase; 
    font-size: 25px; 
    font-weight: 400;
    background: #020421; 
    line-height: 30px; 
}
.items{
    background: #020421; 
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    padding: 0 15px;
    background: #020421; 
} 
.navbar ul{
    margin-right: 10px; 
    margin-top: 3px; 
    background: #020421;  
}
.navbar ul li a{  
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 25px; 
    text-transform: uppercase;  
    font-family: Dotum; 
    font-weight: 600; 
    background: #020421; 
}
.navbar ul li a:after{  
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: blue; 
    margin: auto;
}
.navbar ul li a::before{ 
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: blue;  
    margin: auto;
    text-align: right;
}
.navbar ul li a:hover:after{ 
    width: 100%; 
    transition: all .3s;  
}
.navbar ul li a:hover:before{  
    width: 100%; 
    transition: all .3s;  
} 
.subs{ 
    margin-bottom: 100px;
}
.subs h1{
    padding-left: 40px;
    font-family: 'Dotum';    
    text-transform: uppercase;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
} 

.subs .inputs .row{
    display: flex;
} 
.subs .inputs .row .right{  
    flex-basis: 30%;  
} 
.subs .inputs .row .left{
    flex-basis: 70%;   
    padding-left: 40px;  
}
.subs .inputs .row .left input{    
    width: 70%; 
    border: none;
    border-radius: 50px;  
    padding: 15px 0;
    text-align: center;
    background: #fff;
    font-family: 'Century Gothic';    
    font-size: 20px;
    display: block;
}

.subs .inputs .row .left input:focus{  
    outline: none; 
}  

.subs a{      
    position: absolute;    
    color: #1670f0;
    padding: 18px 40px;  
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none; 
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    overflow: hidden;  
    font-family: 'Century Gothic';    
}
.subs a:before{ 
    content: '';
    position: absolute; 
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255,255,255,0.05);
}
.subs a span:nth-child(1){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0c002b, #1779ff);
    animation: animate1 2s linear infinite;
}
@keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
.subs a span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0c002b, #1779ff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
} 
@keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}
.subs a span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0c002b, #1779ff);
    animation: animate3 2s linear infinite;
}
@keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.subs a span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #0c002b, #1779ff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    } 
}
.service{
    padding: 40px; 
}
.service .row{ 
    display: flex; 
    justify-content: space-between;
} 
.service .row .col-1{ 
    text-align: center;  
    margin: 0 20px;
    box-shadow: 1px 1px 7px blue;     
    height: 300px;      
    padding: 0 10px; 
}
.service .row .col-1 h4{ 
    color: #fff;
    font-family: 'Dotum';  
    font-size: 22px;   
    padding: 30px 0 20px; 
}
.service .row .col-1 p{
    color: #fff;
    font-family: 'Century Gothic';    
    font-size: 14px;
} 
.line{ 
    width: 100px; 
    height: 2px;
    background: #0c002b; 
    box-shadow: 1px 1px 7px blue;
    margin: auto;
    margin-bottom: 20px; 
}
.service .row .col-1:hover{
    transform: scale(1.1); 
    transition: ease-in-out .3s;
}
.service .row .col-1:hover h4{
    font-weight: 500;
}
.service .row .col-1:hover .line{
    box-shadow: 2px 2px 10px blue;
    width: 100%;
    transition: ease-in-out .3s; 
}
.opac{ 
    opacity: .2;
}
.contact{
    display: none;
}
footer{
    text-align: center;
    font-family: 'Dotum';
    color: blue;
}










@media (min-width: 768px) and (max-width: 1024px) {
    
    .container{
        width: 95vw;   
        margin: auto; 
        box-shadow: 1px 2px 10px 1px blue;  
        height: 96vh;   
        overflow: hidden; 
    } 
    .main{ 
        padding-top: 2vh;  
    }
    .subs h1{
        text-align: center; 
    }
    .subs .inputs .row{
        display: block;
    } 
    .subs .inputs .row .left{
        padding: 0 40px 40px;
    }
    .subs .inputs .row .left input{
        width: 100%;
    }
    .subs a{
        display: block;
        left: 40%;
    }
    .service .row .col-1{     
        height: 400px;       
    }
    .service .row .col-1 {
        margin: 0 10px;
    }
    .service{
        padding: 40px 5px;
    }


}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  

  



}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
    .container{
        width: 95vw;   
        margin: auto; 
        box-shadow: 1px 2px 10px 1px blue;  
        height: 3000px;   
        overflow: hidden; 
    } 
    .main{ 
        padding-top: 2vh;  
        padding-bottom: 2vh;
    }
    .subs h1{
        text-align: center; 
        padding-left: 10px;
        padding-right: 10px;
    }
    .subs .inputs .row{
        display: block;
    } 
    .subs .inputs .row .left{
        padding: 0 10px 40px;
    }
    .subs .inputs .row .left input{
        width: 100%;
    }
    .subs a{ 
        display: block;
        left: 23%;
    }
    .service .row .col-1{     
        height: 300px;       
    }
    .service .row{
        display: block;
    }
    .service .row .col-1 {
        margin: 30px 10px;
    }
    .service{
        padding: 40px 5px;
    }
    .items{
        display: none;
    }
    .navbar .logo{
        text-align: center;
        display: block;
        margin: auto;
    }
    .contact{
        display: block;
        padding: 50px 0;
        text-align: center;
    }
    .contact h2{
        color: #fff;
        font-family: 'Dotum';
        margin-bottom: 50px;
        display: block;
    }
    .contact input{
        width: 85%;
        border: 1px solid blue;
        padding: 17px 0;
        color: #fff;
        padding-left: 20px;
        display: block;
        margin: 20px auto;
        box-shadow: 1px 2px 5px  blue;
    }
    .contact input:focus{
        outline: none;
    }
    .contact input::placeholder{
        color: #fff;
        font-family: 'Dotum';
    }
    .contact textarea{
        width: 85%;
        padding: 20px 0;
        border: 1px solid blue;
        margin-top: 5px;
        color: #fff;
        display: block;
        margin: 0 auto;
        padding-left: 20px;
        box-shadow: 1px 2px 5px  blue;
    }
    .contact textarea:focus{
        outline: none;
    }
    .contact textarea::placeholder{
        color: #fff;
        font-family: 'Dotum';
    }
    .button a{      
        position: absolute;    
        color: #1670f0;
        padding: 18px 40px;  
        font-size: 20px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none; 
        box-shadow: 0 20px 50px rgba(0,0,0,.5);
        overflow: hidden;  
        font-family: 'Century Gothic';   
        display: block;
        left: 23%; 
        margin: 40px 0 20px;
    }
    .button a:before{ 
        content: '';
        position: absolute; 
        top: 2px;
        left: 2px;
        bottom: 2px;
        width: 50%;
        background: rgba(255,255,255,0.05);
    }
    .button a span:nth-child(1){
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, #0c002b, #1779ff);
        animation: animate1 2s linear infinite;
    }
    @keyframes animate1{
        0%{
            transform: translateX(-100%);
        }
        100%{
            transform: translateX(100%);
        }
    }
    .button a span:nth-child(2){
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #0c002b, #1779ff);
        animation: animate2 2s linear infinite;
        animation-delay: 1s;
    } 
    @keyframes animate2{
        0%{
            transform: translateY(-100%);
        }
        100%{
            transform: translateY(100%);
        }
    }
    .button a span:nth-child(3){
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, #0c002b, #1779ff);
        animation: animate3 2s linear infinite;
    }
    @keyframes animate3{
        0%{
            transform: translateX(100%);
        }
        100%{
            transform: translateX(-100%);
        }
    }
    .button a span:nth-child(4){
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(to top, #0c002b, #1779ff);
        animation: animate4 2s linear infinite;
        animation-delay: 1s;
    }
    @keyframes animate4{
        0%{
            transform: translateY(100%);
        }
        100%{
            transform: translateY(-100%);
        } 
    }
    footer{
        margin-top: 150px;
    }



}
