*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   font: sans-serif; 
}
.navbar{
   width: 100%;
   display: flex;
   height: 100px;
   background-color: #000;
   padding: 30px;
   align-items: center;
   justify-content: center;
}
.nav-left{
   width: 800px;
   height: 120px;
   display: flex;
   margin-left: 200px;
   gap: 30px;
}
.nav-left header{
   width: 100px;
}
header img{
   width: 70px;
   height: 100px;
   object-fit: contain;
}
.navlinks{
   display: flex;
   gap: 10px;
}
.navlinks ul{
   list-style-type: none;
   display: flex;
   gap: 10px;
   align-items: center;
}
.navlinks li a{
   text-decoration: none;
   color: #ffffff;
   font-weight: 600;
   font-size: 1rem;
}
 .navlinks li a:hover{
   text-decoration: underline;
   color: #ff0000;
}
.nav-right{
   width: 300px;
   height: 60px;
   align-items: center;
   justify-content: flex-end;
   display: flex;
}
.nav-right p{  
   color: #fff;
   font-size: 1rem;
   font-weight: 600;
}
/* contact section */
.contact-header{
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 20px;
   padding: 50px;
}
.contact-item{
   width: 50%;
   display: flex;
   height: 200px;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}
.contact-item h1{
   text-transform: uppercase;
   font-size: 3rem;
   font-weight: 900;
}
.contactheader-link{
   display: flex;
   gap: 7px;
}
.contactheader-link a{
   text-decoration: none;
   color: #000;
}
.contact-content{
   width: 100%;
   display: flex;
   gap: 10px;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.contactcontent-item{
   width: 50%;
   display: flex;
   flex-direction: column;
   gap: 20px;
   /* justify-content: center; */
   align-items: center;
   height: 600px;
}
.contactcontent-item h1{
   color: #ff0000;
   font-size: 3rem;
   font-weight: 600;
}
.contactcontent-item h2{
   color: #000;
   font-size: 3rem;
   font-weight: 600;
}
.address{
   display: flex;
   margin-top: 20px;
   flex-direction: column;
   gap: 10px;
   align-items: center;
   height: 70px;
}
.address h3{
   color: #796F81;
   font-size: 1.2rem;
}
.address p{
   font-size: 1.2rem;
}
.frame{
   margin: 0 auto;
   max-width: 1380px;
   width: 100%;
}
.frame iframe{
   width: 100%;
   height: 500px;
   border: none;
   border-radius: 10px;
}
.contact-form{
   width: 100%;
   /* padding: 20px; */
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.contact-form h1{
   color: #000;
   font-size: 3rem;;
   text-transform: uppercase;
}
.contact-form h2{
   color: #ff0000;
   font-size: 3rem;
   text-transform: uppercase;
}
.contact-form-item{
   display: flex;
   background-color: #F7F0EC;
   width: 100%;
   padding-top: 20px;
   padding-bottom: 60px;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   gap: 10px;
}
.form{
   width: 50%;
   display: flex;
   flex-direction: column;
   gap: 10px;
   height: 500px;
}
.form input{
   width: 100%;
   height: 40px;
   padding: 10px;
   border: none;
   background: none;
   border-bottom: 1px solid black;
}
.form textarea{
   background: none;
   border: none;
   border-bottom: 1px solid black;
}
.form label{
   font-size: 1rem;
   font-weight: 600;
   color: rgb(100,97,95);
}
.form button{
   width: 100%;
   margin: 0 auto;
   background-color: #ff0000;
   border: none;
   color: #fff;
   font-size: 1.2rem;
   text-transform: uppercase;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 50px;
}
@media screen and (max-width:768px) {
   .contact-header{
      width: 100%;
   }
   .contact-item{
      width: 100%;
   }
   .contact-item h1{
      font-size: 1.4rem;
   }
   .contactcontent-item{
      width: 100%;
   }
}
/* footer */
.footer-container{
   width: 100%;
   padding: 10px;
   gap: 20px;
   display: flex;
   flex-direction: column;
   border-radius: 10px;
   background-color: #191D23;
}
.nav-footer{
   width: 100%;
   max-width: 1280px;
   height: 70px;
   border-bottom: 1px solid #2F3337;
   margin: 0 auto;
   align-items: center;
   justify-content: center;
   display: flex;
}
.nav-footer .navfooter-links{
   display: flex;
   list-style: none;
   gap: 20px;
}
.nav-footer .navfooter-links a{
   text-decoration: none;
   color: #fff;
   font-size: 1rem;
   font-weight: 600;
}
.nav-footer .navfooter-links a:hover{
   color: #ff0000;
}
.footer-item{
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 10px;
   align-items: center;
   padding-bottom: 50px;
}
.footer-item img{
   width: 150px;
}
.footer-item h4{
   text-transform: uppercase;
   color: #71677b;
}
.footer-item p{
   color: #fff;
   font-size: 0.875rem;
}
.footer-end{
   padding: 30px;
   color: #71677b;
   align-items: center;
   justify-content: center;
   display: flex;
}
@media screen and (max-width:768px) {
   .nav-footer{
       display: none;
   }   
}
/* footer end */