/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&family=Taviraj:wght@400;500;600&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai+Looped:wght@400;600;700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
html body{
    background-color: #041C32;
    color: #fff;
    /*font-family: 'Open Sans', 'Taviraj', sans-serif; */
	font-family: "Poppins", "Noto Sans Thai Looped", serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

h1{
    font-weight: 600;
}

a:link {
    color: #fff;
}

.hero{
    margin: auto;
    width: 100%;
    height: 80vh;
    background-color: #04293A;
    display: inline-block;
}

.hero-img{
    width: 50%;
    background-image: url("img/ice.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.container{
    display: flex;
    background-color: #fff;
    margin: 1rem;
}

.box{
    flex: 1;
    height: 75vh;
    background-color: #16213E;
    text-align: center;
    position: relative;
}

.box-img{
    background-image: url("img/ice.jpg");
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.text-center-screen{
    color: #fff;
}

h1.header-box{
    padding-top: 0;
    margin: 0;
}

p.subtitle-box{
    padding: 0;
    margin: 0;
}

.boxs{
    background-color: #064663;
    margin: 2rem;
    padding: 2rem;
    color: #fff;
}

a.btn{
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #167b6c;
    display: inline-block;
    width: 15%;
    padding: 0.5rem;
    border-radius: 5px;
    transition: 0.1s;
}

a.btn:hover{
    transition: 0.3s;
    background-color: #136054;
}

a.btn:active{
    background-color: #167b6c;
    color: #fff;
}

.t1{
    transform: translateY(275px);
}

.project{
    background-color: #04293A;
    margin-bottom: 1rem;
}


@media (max-width: 400px) {
	.box-img{
    	background-image: url("img/ice.jpg");
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
    	position: relative;
	}	
    .container{
        height: 500px;
        flex-direction: column;
    }
    
    .hero{
        height: 45%;
    }

    a.btn{
        text-align: center;
        text-decoration: none;
        color: #000;
        background-color: #167b6c;
        display: inline-block;
        margin: auto;
        width: max-content;
        border-radius: 5px;
        transition: 0.1s;
    }
    
    .t1{
        transform: translateY(50px);
    }    
}


@media (max-width: 720px){
    .t1{
        transform: translateY(220px);
    }
} 

@media (max-width: 893px) {	
	.box-img{
    	background-image: url("img/ice.jpg");
    	background-position: center 35%;
    	background-repeat: no-repeat;
    	background-size: cover;
    	position: relative;
	}		
    .container{
        height: 500px;
        flex-direction: column;
    }
    
    .hero{
        height: 45%;
    }

    a.btn{
        text-align: center;
        text-decoration: none;
        color: #000;
        background-color: #167b6c;
        display: inline-block;
        margin: auto;
        width: max-content;
        border-radius: 5px;
        transition: 0.1s;
    }

    .t1{
        transform: translateY(70px);
    }
}