
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Comfortaa:wght@300..700&display=swap');

*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
img{
width: 100%;
}

h1,h2,h3,h4{
font-family: "Atma", system-ui;
color: #310504;
}

p{
font-family: "Comfortaa", sans-serif;
color: #7A7A7A;
}



/*==================*/


#background{
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../images/background.jpg');
    position: relative;
    z-index: 0;

}


#background::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .3;
    z-index: -1;
    background-color: #382B2B;
}

#background .back-contant{
    padding-top: 30px;
    text-align: center;
}


#background .back-contant a{
    text-decoration: none;
}

#background .back-contant a h3{
    text-align: center;
    color: #ffffff;
    font-size: 35px;
}

#background .back-contant img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 10px;
}

#background .back-contant h5{
    color: #ffffff;
    font-size: 80px;
    font-family: "Atma", system-ui;
    letter-spacing: 2px;
    font-weight: 400;
}
#background .back-contant .back-contant-text {
    margin-top: 20px;
}
#background .back-contant .back-contant-text a p{
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
    font-family: "Atma", system-ui;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#background .back-contant .back-contant-text a p i{
    font-size: 12px;
    color: #ffffff;
    margin-right: 25px;
}

#background .back-contant .back-contant-link{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
#background .back-contant .back-contant-link a{
    background-color: #ffffff;
    display: block;
    width: 60px;
    border-radius: 50%;
    height: 60px;
    margin: 0 10px 15px 10px;
    text-decoration: none;
}
#background .back-contant .back-contant-link a i {
    color: #17908A;
    font-weight: 600;
    font-size: 27px;
    transform: translate(5%, 62%);
}
#background .back-contant .back-contant-link a  h6{
    font-size: 27px;
    color: #17908A;
    font-weight: 700;
    margin-top: 12px;
}

.back-footer{
    background-color: #310504;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.back-footer a{
    text-decoration: none;
}

.back-footer a p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    font-family: "Comfortaa", sans-serif;
}
.back-footer a p i{
    margin-right: 10px;
}


/*=============*/

header nav ul li a{
font-size: 40px;
font-family: "Atma", system-ui;
transition: 0.3s all ease;
font-weight: 600;
cursor: pointer;
color: #310504;
text-decoration: none;
}

header nav ul li a:hover{
color: #17908A;
}
.nav-bar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
position: relative;
background-color: #ffffff;
padding: 25px 40px;
margin-bottom: 0;
}

.menu {
display: flex;
}

.menu li {
padding-left: 25px;
}
.menu li a {
display: inline-block;
text-decoration: none;
color: #310504;
font-weight: 600;
font-size: 16px;
text-transform: uppercase;
transition: 0.15s ease-in-out;
position: relative;
font-family: "Atma", system-ui;
font-style: normal;
}



.open-menu , .close-menu {
position: absolute;
color: #000000;
cursor: pointer;
font-size: 1.5rem;
display: none;
}
span.icon_style {
display: flex;
justify-content: end;
}
span.icon_style li a{
text-decoration: none;
margin-left: 25px;
font-size: 20px;
color: #282828;
}


.open-menu {
top: 50%;
right: 20px;
transform: translateY(-50%);
}
.close-menu {
top: 20px;
right: 20px;
}
#check {display: none;}
@media(max-width: 900px){
.menu {
flex-direction: column;
align-items: center;
justify-content: center;
width: 70%;
height: 100vh;
background: #ffffff;
position: fixed;
top: 0;
right: -100%;
z-index: 100;
transition: all 0.2s ease-in-out;
}

.menu li a {padding: 10px;}
.open-menu , .close-menu {display: block;}
#check:checked ~ .menu {right: 0;}
span.icon_style {
display: none;
}
.logo img {
margin-right: 0px;
}
}

/* =============== */


header .hero_section {
padding: 20px 0 40px 0;
}
header .hero_section h2{
font-size: 40px;
font-weight: 600;
text-align: center;

}


/*=====================*/


#gallery-style{
margin: 0px 180px 100px 180px;
display: flex;
flex-wrap: wrap;
}

.gallery-img {
width: 25%;
padding: 20px;
height: 330px;
flex-wrap: wrap;
cursor: pointer;

}

.gallery-img img{
border-radius: 10px;
width: 100%;
    -webkit-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover{
background-color: #ffffff;
opacity: .8;
transition: 0.3s all ease;

}

/*==================*/

#illustrator{
margin: 60px 0;
}


#illustrator .illustrator-section{
border-radius: 10px;
height: 100%;
-webkit-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);

}

#illustrator .illustrator-section:hover{

opacity: .9;
transition: 0.3s all ease;
-webkit-box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
}

#illustrator .illustrator-section .illustrator-section-img img{
border-radius: 10px 10px 0 0;
height: 350px;

}

#illustrator .illustrator-section .illustrator-section-text{
text-align: center;
padding: 30px 0 40px 0;
}
#illustrator a{
text-decoration: none;
}
#illustrator .illustrator-section .illustrator-section-text h4 {
font-size: 25px;
font-weight: 600;
margin-bottom: 10px;
padding: 0 15px;
}

#illustrator .illustrator-section .illustrator-section-text span{
color: #17908A;
font-size: 14px;
margin: 0;
font-weight: 600;
text-transform: uppercase;
font-family: "Comfortaa", sans-serif;
}


#illustrator .contact-me {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#illustrator .contact-me a i {
color: #ffffff;
font-weight: 600;
font-size: 24px;
transform: translate(5%, 52%);
}

#illustrator .contact-me a {
    background-color: #17908A;
    display: block;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    margin: 0 10px 15px 10px;
    text-decoration: none;
}

#illustrator .contact-me a h6 {
font-size: 23px;
color: #ffffff;
font-weight: 700;
margin-top: 10px;
}









/*====================*/

#post_style {
margin: 100px 0 15px 0;
}

#post_style .post-info{
text-align: center;

}

#post_style .post-info h3{
font-size: 35px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 30px;
}

#post_style .post-info img{
border-radius: 10px;
margin-bottom: 30px;
}

#post_style .post-info p{
font-size: 16px;
line-height: 28px;
font-weight: 600;
}

#post_style .post-info h2{
font-size: 45px;
font-weight: 600;
text-transform: uppercase;

margin-top: 50px;

}

/*=====================*/

#popup-gallery{
margin-bottom: 100px;

}

#popup-gallery .popup-gallery-info {
display: flex
;
flex-direction: row;
flex-wrap: wrap;
width: 80%;
margin: 0 auto;
}


#popup-gallery .popup-gallery-info .popup-gallery-style {
width: 50%;
padding: 20px;
cursor: pointer;
height: 400px;
}

#popup-gallery .popup-gallery-info .popup-gallery-style a img{
border-radius: 15px;
width: 100% !important;

}

/*=========================*/

#slider{
margin: 70px 0;


}
#slider h2{
font-size: 35px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 50px;
text-align: center;
}

.f-carousel__dots {
position: absolute;
bottom: calc(var(--f-carousel-dots-height) * -1);
left: 0;
right: 0;
display: flex;
visibility: hidden;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 0 auto !important;
padding: 0;
list-style: none !important;
user-select: none;
}

/* ====================== */


#proces {
padding: 80px 0 60px 0;
background-color: #F4F4F4;
}

#proces .proces-text{
margin-bottom: 50px;
text-align: center;
}

#proces .proces-text h2{
font-size: 35px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 25px;

}

#proces .proces-text p {
font-size: 20px;

line-height: 28px;
font-weight: 600;
width: 58%;
margin: 0 auto;
}


#proces .proces-text p span{
color: #310504;
font-weight: bold;
}


#proces .proces-info-style{
width: 80%;
margin: 0 auto;

}
#proces .proces-info-style .proces-info {
text-align: center;
background-color: #ffffff;
border-radius: 20px;
margin: 0 10px 40px 10px;
padding: 40px 30px;
-webkit-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1);
cursor: pointer;


}

#proces .proces-info-style .proces-info:hover{
-webkit-box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.15);
}



#proces .proces-info-style .proces-info h2{
color: #00B1A8;
font-size: 66px;
font-weight: 700;
margin-bottom: 35px;
}


#proces .proces-info-style .proces-info h4{
font-size: 17px;
font-weight: 600;
margin-bottom: 15px;

}



#proces .proces-info-style .proces-info p{
font-size: 16px;
font-weight: 600;
margin-bottom: 0;

}


/*===================================*/




/* ========={ CONTACT STYLE }=========== */

#contact {
    padding: 70px 0 0 0;
}

#contact .contact-youtube{
    height: 400px;
    background-color: #000000;
}
#contact .contact-info {
text-align: center;
height: 680px;
display: flex;
flex-direction: column;
justify-content: center;
margin-right: 10px;


}

#contact .contact-info h4 {
font-size: 20px;
font-weight: 600;
margin: 15px 0 20px 0;
}


#contact .contact-from-info {
padding: 40px 30px 30px 30px;
border-radius: 20px;
background-color: #F3F3F3;
margin-left: 10px;

}

#contact .contact-from-info h3 {
font-size: 32px;
text-align: center;
font-weight: 600;
line-height: 45px;
}

.contact-font {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-font a i {
color: #ffffff;
font-weight: 600;
font-size: 24px;
transform: translate(5%, 50%);
}

.contact-font a {
    background-color: #17908A;
    display: block;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    margin: 0 10px 20px 10px;
    text-decoration: none;
}

.contact-font a h6{
font-size: 23px;
color: #ffffff;
font-weight: 700;
margin-top: 10px;
}


#contact form {
display: flex;
flex-direction: column;

}
#contact form input.from_style {
outline: none;
border: 1px solid #888080;
padding: 15px 16px;
border-radius: 5px;
margin-bottom: 25px;
font-size: 18px;
color: #310504;
}

textarea.from_message_style {
min-height: 120px;
outline: none;
margin-bottom: 25px;
font-size: 18px;
border: 1px solid #888080;
padding: 7px 19px;
border-radius: 5px;
color: #310504;
}
button.contact_button {

height: 45px;
outline: none;
border: 1px solid #888080;
border-radius: 5px;
font-size: 20px;
color: #ffffff;
background-color: #17908A;
font-weight: 600;
}


/*=================*/

#client-sey {
    margin: 80px 0;
}

.client-sey-style {
    background-color: #000000;
    position: relative;
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height: 350px;
}
.client-sey-style iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    transform: translate(-1px,-1px);
}
/*===============*/



#faq-style {
    margin: 80px 0 80px 0;
}

#faq-style .title {
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px; 
    font-weight: 600;
}

#faq-style .questions-container {
    max-width: 1000px;
    margin: 0 auto;
   padding: 0 50px;
}

#faq-style .questions-container .question{
    border: 1px solid #d5d8dc;
}

#faq-style .questions-container .question button {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px 15px;
    border: none;
    outline: none;
    font-size: 22px;
    color: #17908A;
    font-weight: 600;
    cursor: pointer;
}

#faq-style .questions-container .question button i{
    color: #17908A;
}

#faq-style .questions-container .question p{
    font-size: 18px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    font-weight: 500;
    margin: 0;
}
#faq-style .questions-container .question p i {
    font-size: 17px;
    color: #17908A;
    margin-right: 10px;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}

/*add this class when click*/
#faq-style .questions-container .question p.show{
    max-height: 500px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
    color: #382B2B;
}
#faq-style .questions-container .question button .d-arrow.rotate{
    transform: rotate(180deg);
}




















/*===================*/

footer{
background-color: #310504;
padding: 20px 0;

}

footer p{
color: #ffffff;
font-size: 14px;
font-weight: 600;
margin: 0px;
font-family: "Comfortaa", sans-serif;

}

footer .footer-text a{
    text-decoration: none;
}

footer .footer-text p {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-text p i {
margin-right: 15px;
font-size: 20px;
}


/*===================*/

