
  
    
body {
  overflow-x: hidden;
  margin-top: -100px;
  background: #586368;

}



@media screen and (max-width: 308px) {
  section {
      width: 50%;
    }
  section .main {
    flex-direction: column;
    top: 100px;
    body {
      overflow-x: hidden;
    }
  }

  section .main .men_text h1 {
    font-size: 40px;
    top: 0;
    left: 0;
    text-align: center;
    margin-top: 50px;
  }

  section .main .main_image img {
    width: 80%;
    margin-top: 50px;
  }

  section p {
    width: 80%;
    left: 0;
    bottom: 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  section .main_btn {
    left: 0;
    bottom: 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  section nav ul li {
    margin: 0 10px;
    
  }
  section {
      width: 60%;
    }

}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html{
  scroll-behavior: smooth;
}

section {
  width: 140%; /* Adjust the width to your desired value */
  margin: 0 auto; /* Center-align the section */
}




section nav.sticky {
top: -90px; /* Move the navigation bar off-screen when scrolling down */
}


section nav .lacu img {
  width: 20px;
  cursor: pointer;
  margin: 7px 0;
}



section .main {
  left: 40px; 
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  top: 10px;
}

section .main .men_text h1 {
  font-size: 30px;
  margin-top: 30px; /* Adjust the margin as needed */
  text-align: left;
  color: #060606; /* Text color */
}

section .main .men_text h1 span {
  margin-left: 15px;
  color: #fac031;
  font-family: mv boli;
  line-height: 57px;
  font-size: 50px;
}

section .main .main_image img {
  width: 80%;
  margin-top: 30px; /* Adjust the margin as needed */
}

section p {
  width: 80%;
  margin-top: 30px; /* Adjust the margin as needed */
  margin-bottom: 30px; /* Adjust the margin as needed */
  text-align: left;
  color: #0e0d0d; /* Text color */
}

section .main_btn {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Position the button at the left */
  margin-top: 30px; /* Adjust the margin as needed */
  margin-bottom: 30px; /* Adjust the margin as needed */
}

section .main_btn a {
  color: #fff;
  margin-right: 5px;
  text-decoration: none;
}

section .main_btn i {
  color: #fff;
  transition: 0.3s;
}

/* Additional styles for smaller screens */
@media screen and (max-width: 308px) {
  section {
    width: 90%;
  }

  section .main {
    top: 100px;
  }

  section .main .men_text h1 {
    font-size: 40px;
    margin-top: 50px;
  }

  section .main .main_image img {
    margin-top: 50px;
  }

  section p {
    width: 90%;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  section .main_btn {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  section {
    width: 90%;
  }

  

  section .main_btn i {
    font-size: 16px;
  }
}


section .main_btn:hover i{
  transform: translateX(7px);
}




/*Menu*/
section {
  width: 100%;
  padding: 10px 0;
margin-bottom: -100px; /* Adjust the negative margin-bottom value as needed */
}
  

.menu{
  width: 100%;
  padding: 10px 0;
  overflow-x: hidden;
  margin-top: -60px;

}

.menu h1{
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: white;
}

.menu h1 span{
  color: #fac031;
  margin-left: 15px;
  font-family: mv boli;
}


.menu .menu_box .menu_card {
width: calc(50% - px); /* Adjust the width to fit 2 cards side by side with grid-gap of 15px */
height: auto; /* Allow the height to adjust based on content */
box-shadow: 0 0 10px rgba(231, 222, 222, 0.2);
}

.menu .menu_box .menu_card .menu_image {
width: 100%; /* Adjust the width of the image to fill the card */
height: 200px; /* Adjust the height of the image */
overflow: hidden;
}

.menu .menu_box {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(45%, 1fr)); /* Adjust the column width */
grid-gap: 15px;
margin-left: 30px;
}


.menu .menu_box .menu_card .menu_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

.menu .menu_box .menu_card .menu_image:hover img{
  transform: scale(1.1);
}

.menu .menu_box .menu_card .small_card{
  width: 45px;
  height: 45px;
  float: right;
  position: relative;
  top: -240px;
  right: -8px;
  opacity: 0;
  border-radius: 7px;
  transition: 0.3s;
}

.menu .menu_box .menu_card:hover .small_card{
  position: relative;
  top: -240px;
  right: 20px;
  opacity: 1;
}

.menu .menu_box .menu_card .small_card i{
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 50px;
  color: #cd284f;
  cursor: pointer;
  text-shadow: 0 0 6px #b1f20e;
  transition: 0.2s;
}

.menu .menu_box .menu_card .small_card i:hover{
  color: #fac031;
}

.menu .menu_box .menu_card .menu_info h2{
  width: 60%;
  text-align: center;
  margin: 10px auto 10px auto;
  font-size: 19px;
  color: #fac031;
}

.menu .menu_box .menu_card .menu_info p{
  text-align: center;
  margin-top: 8px;
  font-size: 14px; /* Adjust the paragraph font size */
  line-height: 21px;
  color: wheat;
}

.menu .menu_box .menu_card .menu_info h3 {
text-align: center;
margin-top: 10px;
color: #f7f6f5;
font-size: 17px;
}

.menu .menu_box .menu_card .menu_info .menu_icon{
  color: #fac031;
  text-align: center;
  margin: 10px 0 10px 0;
}

.menu .menu_box .menu_card .menu_info .menu_btn {
display: flex;
align-items: center;
font-size: larger;
justify-content: center;
text-decoration: none;
color: #25f106;
background: #000;
padding: 1px 10px;
margin: 0 8px;
transition: 0.3s;
border: none;
outline: none;
}





/*About*/

.about {


@import url('https://fonts.googleapis.com/css?family=Raleway:200');

#box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  font-family: 'Raleway';
  font-size: 1.1rem;
  background-color: rgb(4, 4, 4);
}

.gradient-border {
  --borderWidth: 3px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
  color: black; /* Set the text color of "About" to black */
}

.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 50% 50%;
  color: yellow; /* Set the text color of "Us" to yellow */
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}







  width: 30%; /* Adjust the width as needed */
  height: 60vh;
  padding: 100px 0;
  margin: 0 auto; /* Center the section horizontally */
}

.about .about_main {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 90%; /* Ensure the content doesn't exceed the section width */
  margin: 0 auto; /* Center the content horizontally */
}

.about .about_main .image img {
  max-width: 80%; /* Ensure the image fits within its container */
  height: auto; /* Maintain the image's aspect ratio */
  position: relative;
  top: 60px;
}

.about .about_main .about_text h1 span {
  color: #fac031;
  margin-right: 15px;
  font-family: mv boli;
}

.about .about_main .about_text h1 {
  font-size: 35px;
  position: relative;
  bottom: 50px;
}

.about .about_main .about_text h3 {
  font-size: 30px;
  margin: 0 0 50px 0;
}

.about .about_main .about_text p {
  width: 100%; /* Adjust the width as needed */
  max-width: 650px; /* Limit the text width */
  text-align: justify;
  margin-right: 30px;
  line-height: 22px;
}

.about .about_btn {
  background: #fac031;
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  position: relative;
  left: 55%;
  bottom: 30px;
}





/* Gallery */
.gallary {
width: 60%;
padding: 70px 0;
margin: 0 auto;
position: relative;
top: 50px; /* Adjust the top value to bring the section downward */
margin-left: -9px; /* Add left margin to adjust the section to the left */

}

.gallary h1 {
font-size: 25px;
display: flex;
align-items: center;
justify-content: center;
}

.gallary h1 span {
margin-left: 15px;
color: #fac031;
font-family: mv boli;
}

.gallary h1 span::after {
content: '';
width: 100%;
height: 2px;
background: #fac031;
display: block;
position: relative;
bottom: 15px;
}

.gallary .gallary_image_box {
width: 55%;
margin: 10px auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
grid-gap: 15px;
}

.gallary .gallary_image_box .gallary_image {
display: flex;
align-items: center;
justify-content: center;
background: black;
}

.gallary .gallary_image_box .gallary_image img {
width: 100%;
transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover img {
opacity: 0.4;
}

.gallary .gallary_image_box .gallary_image h3 {
position: absolute;
font-size: 35px;
margin-bottom: 130px;
color: #fac031;
font-family: polo;
z-index: 5;
opacity: 0;
transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover h3 {
opacity: 1;
}

.gallary .gallary_image_box .gallary_image p {
position: absolute;
width: 400px;
margin-top: 30px;
text-align: center;
color: white;
line-height: 22px;
opacity: 0;
z-index: 5;
transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover p {
opacity: 1;
}

.gallary .gallary_image_box .gallary_image .gallary_btn {
position: absolute;
margin-top: 180px;
color: #000;
background: #fac031;
padding: 7px 25px;
text-decoration: none;
opacity: 0;
transform: translateY(45px);
z-index: 5;
transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover .gallary_btn {
opacity: 1;
transform: translateY(0);
}



/* Review */

.review {
  width: 80%;
  height: 100vh;
  padding: 70px 0;
  margin: 0 auto; /* Center the element horizontally */
  margin-bottom: 50px; /* Add margin at the bottom */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 560px; /* Adjust the margin-top value to bring the section downward */

}

.review h1 {
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review h1 span {
  margin-left: 15px;
  color: #fac031;
  font-family: mv boli;
}

.review h1 span::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fac031;
  position: relative;
  bottom: 15px;
  display: block;
}

.review .review_box {
  width: 95%;
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 16px;
  justify-items: center;
}


.review .review_box .review_card {
  height: 535px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  border-radius: 8px;
  padding: 8px 20px;
}

.review .review_box .review_card .review_profile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}

.review .review_box .review_card:hover .review_profile {
  transform: translateY(-60px);
}

.review .review_box .review_card .review_profile img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #cccccc;
}

.review .review_box .review_card .review_text {
  text-align: center;
}

.review .review_box .review_card .review_text .name {
  color: #000;
  transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .name {
  transform: translateY(-50px);
}

.review .review_box .review_card .review_text .review_icon {
  color: #fac031;
  transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .review_icon {
  transform: translateY(-30px);
}

.review .review_box .review_card .review_text .review_social i {
  margin: 5px 1px;
  font-size: 15px;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .review_social i {
  opacity: 1;
  transform: translateY(-8px);
}





l {
--b: .7em; /* border width */
--c: 2.5em; /* corner size */
--r: 1.2em; /* corner rounding */
position: relative;
margin: 1em auto;
border: solid var(--b) transparent;
padding: 1em;
max-width: 22em;
font: 1.1em ubuntu, sans-serif;

&::before {
  position: absolute;
  z-index: -1;
  inset: calc(-1*var(--b));
  border: inherit;
  border-radius: var(--r);
  background: linear-gradient(orange, deeppink, purple) border-box;
  --corner: 
    conic-gradient(from -90deg at var(--c) var(--c), red 25%, #0000 0) 
      0 0/ calc(100% - var(--c))  calc(100% - var(--c)) border-box;
  --inner: conic-gradient(red 0 0) padding-box;
  -webkit-mask: var(--corner), var(--inner);
  -webkit-maskcomposite: source-out;
          mask: var(--corner) subtract, var(--inner);
  content: ''
}
}












.team {
  width: 80%;
  height: 30vh;
  background-image: url(image/bg1.jpg);
  background-size: cover;
  background-position: center;
  margin: 0 auto; /* Center the element horizontally */
  margin-bottom: 100px; /* Add margin at the bottom */
  margin-top: 200px; /* Adjust the top margin as needed */
}


.team h1 {
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 35px;
  margin-bottom: 100px;
}

.team h1 span {
  color: #fac031;
  margin-left: 15px;
  font-family: mv boli;
}

.team h1 span::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fac031;
  display: block;
  position: relative;
  bottom: 15px;
}

.team .team_box {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 16px;
  position: relative;
  top: 100%; /* Adjust the top value as needed */
}

.team .team_box .profile {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transition: 0.4s;
}

.team .team_box .profile:hover {
  border-radius: 20px;
  height: 320px;
}

.team .team_box .profile img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: left;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: 0.4s;
}

.team .team_box .profile:hover img {
  border-radius: 20px;
  margin-top: -230px;
}

.team .team_box .profile .info {
  position: absolute;
  text-align: center;
  top: 25%;
  transition: 0.4s;
}

.team .team_box .profile:hover .info {
  top: 60%;
}

.team .team_box .profile .info .name {
  color: #fac031;
  margin-bottom: 15px;
}

.team .team_box .profile .info .bio .h5{
  width: 10%;
  text-align: center;
  margin: 0 auto 10px auto;
  font-size: 14;
  width: 18px;
}

.team .team_box .profile .info .team_icon i {
  margin: 10px 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}

.team .team_box .profile .info .team_icon i:hover {
  color: #fac031;
}







footer {
  width: 100%;
  padding: 100px 0 0 1px; /* Adjust the padding-top value as needed */
  background: #eeeeee;
  margin-top: 1800px; /* Push the footer down */
  margin-bottom: 50px; /* Add margin at the bottom */
}

.footer_main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80%, 1fr));
  grid-gap: 20px;
}

.footer_main .footer_tag {
  text-align: center;
}

.footer_main .footer_tag h2 {
  color: #000;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer_main .footer_tag p {
  margin: 10px 0;
}

.footer_main .footer_tag i {
  margin: 0 5px;
  cursor: pointer;
}

.footer_main .footer_tag i:hover {
  color: #fac031;
}

.end {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-top: 20px; /* Push the footer content down */
}

.end span {
  color: #fac031;
  margin-left: 10px;
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: #fac031;
  border-radius: 15px;
}

i.fa-facebook-f {
  color: #1877f2; /* Facebook blue color */
}

i.fa-instagram {
  color: #C13584; /* Instagram purple color */
}
