@charset "utf-8";
/* BASIC CSS */
html {
	scroll-padding-top:100px;
	scroll-behavior: smooth;
}


/* FONT STYLE */
body{
	font-family: "Nunito", sans-serif;
	padding: 0%;
	margin: 0%;
}

h2, h3 {
	font-family: "DM Serif Text", serif;
  	font-style: normal;
	font-weight: 500;
	align-content: center;
	margin: 0;
	letter-spacing: 1px;
}

li {
	font-family: "DM Serif Text", serif;
  	font-style: normal;
	font-weight: 200;
	font-size: 26px;
	align-content: center;
	margin: 0;
	letter-spacing: 2px;
}

h1{
	font-family: "DM Serif Text", serif;
	text-align: center;
	color: #EFEFE9;
	font-size:94px;
	font-weight: 400;
	align-content: center;
	margin: 0;
	letter-spacing: 3px;
	line-height: 1em;
}

h2{
	text-align: center;
	color: #223030;
	font-size:65px;
}

h2-1{
	text-align: center;
	font-family: "DM Serif Text", serif;
	color: #EFEFE9;
	font-size:65px;
}

h3{
	text-align: center;
	color: #EFEFE9;
	font-size:50px;
}

h4{
	font-family: "DM Serif Text", serif;
	text-align: center;
	color: #EFEFE9;
	font-size:35px;
	letter-spacing: 2px;
	font-weight: 200;
}

h4-1{
	text-align: center;
	font-family: "DM Serif Text", serif;
	color: #EFEFE9;
	font-size:25px;
	letter-spacing: 2px;
}

h5 {
	text-align: center;
	font-family: "DM Serif Text", serif;
	color: #223030;
	font-size:25px;
	letter-spacing: 1px;
}

h5-1 {
	font-family: "DM Serif Text", serif;
	color: #223030;
	font-size:25px;
	letter-spacing: 1px;
	font-weight: 200;
}

p {
	font-family: "Nunito", sans-serif;
	color: #223030;
	text-align: center;
	font-size:22px;
}

p-1 {
	font-weight: 100;
	font-family: "Nunito", sans-serif;
	color: #EFEFE9;
	text-align: center;
	font-size:22px;
	letter-spacing: 0.5px;
}

p-2 {
	font-family: "Nunito", sans-serif;
	color: #EFEFE9;
	text-align: center;
	font-size:20px;
	letter-spacing: 1px;
}

p-3 {
	font-family: "Nunito", sans-serif;
	color: #EFEFE9;
	text-align: center;
	font-size:15px;
	font-weight: 100;
}

*{
	list-style: none;
	text-decoration: none;
}


/* HOME */
.home{
	background-image: url("images/home.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	z-index: 2;
	animation: fade-up 1s;
}

@keyframes fade-up {
	0% {
		opacity: 0%;
		transform: translateY(40px);
	}
	
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}

.navv {
	background: #523D35;
	width: 100%;
}

.navv:hover {
	opacity: 70%;
	width: 100%;
	transition:0.5s;
}

/* LOGO */
.logo img {
	transition : 0.3s ease;
}

.logo img:hover {
	transform : scale(1.1);
}	

/* NAVIGATION */
.navbar {
	display: flex;
	list-style: none;
	justify-content:center;
	align-content: center;
	align-items: center;
	padding: 0% 2% 2% 2%;
	gap: 4%;
}

.navbar a {
	position: relative;
	color: #EFEFE9;
}

.navbar a:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background: #EFEFE9;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s linear;
}

.navbar a:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

/* HEADER */

.title {
	margin: 5px;
	padding: 6% 6% 4% 6%;
	text-align: center;
}

.Button {
	background-color: #EFEFE9;
	border-radius: 10px;
	width : 15%;
}

.Button:hover {
	background-color:#223030;
    transition: 0.7s;
}

h5:hover {
	color: #EFEFE9;
	font-size:25px;
}


/* PROBLEM */
.problem {
	width: 100%;
	background: #F5E8DE;
	margin: 0 0 2px 0;
}

.probleminfo {
	padding: 0% 8% 2% 8%;
	line-height: 1.8em;
	text-align: justify;
}

.pro-container {
	display: flex;
	width: 100%;
	padding: 0% 2% ;
	box-sizing: border-box;
	height: 300px;
	border-radius: 10px;
}

.box {
	flex: 1;
	overflow: hidden;
	transition: .5s;
	margin : 0% 1%;
	border-radius: 10px;
	box-shadow: 0 20px 30px rgba(0,0,0,.1);
	line-height: 0;
}

.box > img {
	width: 100%;
	height: 300px;
	border-radius: 10px;
	transition: .5s;
}

.box:hover {flex: 1 1 50%}
.box:hover > img {
	width: 100%;
	height : 100%;
}


/* REASON & SIGN */
.reason {
	width: 100%;
	background: #523D35;
}

.reasoninfo {
	padding: 0% 10% 0% 10%;
	line-height: 1.8em;
	text-align: justify;
}

.sign {
	display: flex;
	gap : 5%;
	padding: 2%;
	justify-content: center;
}

.signn img {
	transition : 0.3s ease;
}

.signn img:hover {
	transform : scale(1.1);
}	

.sign1 h4 {
	margin-top: 5px;
	margin-bottom: 5px;
}

.sign1 p2-1 {
	margin-top: 0;
}


/* SOLUTIONS */
.solutions {
	width: 100%;
	background: #EFEFE9;
}

.solutioninfo {
	padding: 0% 8% 0% 8%;
	line-height: 1.8em;
	text-align: justify;
}

/* SLIDER */
#slider {
    margin: 0 auto;
    width: 700px;
    max-width: 100%;
    text-align: center;
}

#slider input[type=radio] {
    display: none;
}

#slider label {
    cursor: pointer;
    text-decoration: none;
}

#slides {
    position: relative;
    z-index: 1;
}

#overflow {
    width: 100%;
    overflow: hidden;
    height: 400px; /* Height of the images */
}

#slides .inner {
    display: flex; /* Use flexbox for horizontal alignment */
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 500%; /* 5 slides */
    height: 100%;
}

#slides .slide {
    width: 20%; /* 100% / 5 slides */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#controls {
    margin: -50px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
}

#controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .5;
}

#controls label:hover {
    opacity: 1;
}

#bullets {
    margin: 5px 0 5px 0;
    text-align: center;
}

#bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Specific slide transitions */
#slide1:checked ~ #slides .inner {
    margin-left: 0%;
}

#slide2:checked ~ #slides .inner {
    margin-left: -100%;
}

#slide3:checked ~ #slides .inner {
    margin-left: -200%;
}

#slide4:checked ~ #slides .inner {
    margin-left: -300%;
}

#slide5:checked ~ #slides .inner {
    margin-left: -400%;
}

#slide1:checked ~ #bullets label[for="slide1"],
#slide2:checked ~ #bullets label[for="slide2"],
#slide3:checked ~ #bullets label[for="slide3"],
#slide4:checked ~ #bullets label[for="slide4"],
#slide5:checked ~ #bullets label[for="slide5"] {
	background: #333;}


/* Arrow navigation */
.arrow {
    position: absolute;
    font-size: 24px;
    color: #223030;
    background-color: #EFEFE9;
    border: none;
	border-radius: 40px;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: #E8D9CD;
}

.arrow.left {
    left: -60px;
	top : -170px;
}

.arrow.right {
    right: -60px;
	top : -160px;
}

/* STORY */
.story {
	width: 100%;
	background: #223030;
}

.storyinfo {
	padding: 0% 10% 0% 10%;
	line-height: 1.8em;
	text-align: justify;
}

.youtube {
	display: flex;
	gap : 5%;
	padding: 3%;
	justify-content: center;
}



/* SERVICES SUPPORT */
.services{
	background-image: url("images/servicesbg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	z-index: 2;
}

.serviceinfo {
	padding: 0% 10% 0% 10%;
	line-height: 1.8em;
	text-align: justify;
}

form {
    display: flex;
    flex-flow: column wrap;
}

.form {
	padding: 0% 10% 0% 10%;
    display: flex;
    flex-flow: column wrap;
    row-gap: 30px;
}

.input {  
    display: flex;
    flex-flow: column wrap;
    row-gap: 15px;
}

label {
    margin: 0;
    padding: 0;
    display: none;
}

input, select, textarea {
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px solid #999;
}

textarea {
    resize: vertical;
}

input[type=name], input[type=phone] {
    width: 100%;
}

.name-phone {
    display: flex;
    flex-flow: row;
    gap: 15px;
}

input[type=submit] {
    background-color: #223030;
    max-width: max-content;
    margin-left: -3px;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    color: #FCF0E7;
    font-family: "DM Serif Text", serif;
    font-size: 20px;
	letter-spacing: 1px;
	font-weight: 200;
    cursor: pointer;
}


/* FOOTER */
.footer {
    padding: 4% 0 2% 0;
    background-color: #0b3e41;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.footerr {
    margin: 0 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}


/* COL 1 SOCIAL LOGO */
.logo-connect {
    display: flex;
    flex-flow: column wrap;
    row-gap: 10px;
}

.connect {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}

.sns-icon img {
    max-width: 25px;
    height: auto;
}


/* COL 2 CONTACT INFO */
.contact {
    display: flex;
    flex-flow: column wrap;
    row-gap: 20px;
}

.info-text {
    display: flex;
    flex-flow: column wrap;
    row-gap: 10px;
}

.contact-info {
    display: flex;
    flex-flow: column wrap;
    row-gap: 8px;
}

.number, .email, .location {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}

.contact-info img {
    max-width: 25px;
    height: auto;
}


/* COL 3 OFFICIAL WEB */
.bigweb {
    display: flex;
    flex-flow: column wrap;
}


.website {
    display: flex;
	flex-direction: row;
    column-gap: 10px;
    align-items: center;

}

.website img {
	max-width: 25px;
    height: auto;
}

/* LINK STYLE */
.footer a {
    color: #F5F5F5;
	text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.sns-icon a:hover {
    filter: brightness(.8)
}

.website a:hover {
    filter: brightness(1.3);
}

/* POLICY */
.policy {
    margin: 0;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    text-align: center;
}



/* MEDIA QUERIES */
@media screen and (max-width:1000px) /*LAPTOPS*/ {
	h1{ font-size:70px; }
	h2, h2-1 {font-size: 60px;}
	h3 {font-size: 45px;}
	h4 {font-size:35px; }
	h4-1 {font-size:30px;}
	h5 {font-size:25px; }
	p, p-1 {font-size: 20px;}
	p-2 {font-size:20px;}
	p-3 {font-size:15px; }
	li {
		font-size: 20px;
		text-align: center;}
	
	.Button {
	width:20%;
	}
	
	.pro-container {
	width: 100%;
	height: 190px;
	}

	.box > img {
	width: 100%;
	height: 190px;
	border-radius: 10px;
	transition: .5s;
	}

	.sign, .youtube {
	flex-direction: column;
	}
	
	#slider {
        width: 100%;
    }
    
    #overflow {
        height: 300px; /* Adjust the height for smaller screens */
    }

    .slide img {
        width: 100%;
        height: 300px; /* Adjust the height for smaller screens */
    }

    #controls label {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


@media screen and (max-width:768px) /*TABLET*/ {
	h1{ font-size:70px; }
	h2, h2-1 {font-size: 50px;}
	h3 {font-size: 40px;}
	h4 {font-size:30px; }
	h4-1 {font-size:25px;}
	h5 {font-size:20px; }
	p, p-1 {font-size: 18px;}
	p-2 {font-size:18px;}
	p-3 {font-size:12px; }
	li {
		font-size: 15px;
		text-align: center;}
	
	.Button {
	width:30%;
	}
	
	.pro-container {
	width: 100%;
	height: 170px;
	}

	.box > img {
	width: 100%;
	height: 170px;
	border-radius: 10px;
	transition: .5s;
	}

	.sign, .youtube, .footerr {
	flex-direction: column;
	}
	
	#slider {
        width: 100%;
    }
    
    #overflow {
        height: 300px; /* Adjust the height for smaller screens */
    }

    .slide img {
        width: 100%;
        height: 300px; /* Adjust the height for smaller screens */
    }

    #controls label {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


@media screen and (max-width:480px) /*PHONE*/ {
	h1{ font-size:50px; }
	h2, h2-1 {font-size: 40px;}
	h3 {font-size: 35px;}
	h4 {font-size:25px; }
	h4-1 {font-size:20px;}
	h5 {font-size:20px; }
	p, p-1 {font-size: 16px;}
	p-2 {font-size:15px;}
	p-3 {font-size:12px; }
	li {
		font-size: 10px;
		text-align: center;}
	
	.Button {
	width:40%;
	}
	
	.pro-container {
	width: 100%;
	height: 150px;
	}

	.box > img {
	width: 100%;
	height: 150px;
	border-radius: 10px;
	transition: .5s;
	}

	.sign, .youtube, .footerr {
	flex-direction: column;
	}
	
	#slider {
        width: 100%;
    }
    
    #overflow {
        height: 200px; /* Adjust the height for smaller screens */
    }

    .slide img {
        width: 100%;
        height: 200px; /* Adjust the height for smaller screens */
    }

    #controls label {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}