@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.hidden {
  display: none;
}

body {
  color: #333;
  margin: 0;
}

header {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;      
  background: #454040;  
  display: flex;
  padding: 0 20vw;
  z-index: 1000;    
}
header .logo_big {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .logo_sm {
  display: none;
}
header .lang-switch {
  position: relative;
  display: inline-block;
}
header .lang-selected {
  background-color: #454040;
  border: 2px solid #B0B0B0;
  color: #fff;
  padding: 8px 14px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .lang-options {
  display: none;
  position: absolute;
  background-color: #454040;
  border: 2px solid #B0B0B0;
  min-width: 108px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
}
header .lang-option {
  padding: 8px 14px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #fff;
}
header .lang-option img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
header .lang-option:hover {
  background-color: #f0f0f0;
}
header nav {
  margin-left: auto;
  height: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
header nav a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
  height: 100%;
}
header nav a:hover {
  color: #F6B231;
  box-shadow: inset 0px -4px 0px 0px #F6B231;
}

#main_part {
  position: relative;
  overflow: hidden;
  height: 100vh; 
  padding-top: 70px;
}

main {
  height: calc(100vh - 70px); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  transition: background-image 0.7s;
}

.bg-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;  
  z-index: 0;                             
}

.bg-layer.visible {
  opacity: 1;
  z-index: 1;                          
}

.main-text, .main_logo {
  position: relative;
  z-index: 2;
}

main {
  height: 680px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  -moz-column-gap: 40px;
       column-gap: 40px;
  transition: background-image 0.7s;
}
main .main-text {
  display: flex;
  flex-direction: column;
}
main .main-text div:nth-child(1) {
  font-size: 88px;
  font-weight: 700;
  color: #F6B231;
  line-height: 67px;
}
main .main-text div:nth-child(2) {
  font-size: 43px;
  color: white;
  font-weight: 600;
}
main .main-text div:nth-child(3) {
  font-size: 21px;
  color: white;
  font-weight: 600;
}
main .main-text a {
  font-size: 22px;
  font-weight: 400;
  fill: #fff;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1882352941);
  border-style: solid;
  border-width: 2px;
  border-color: #F6B231;
  border-radius: 25px 25px 25px 25px;
  padding: 6px 16px;
}
main .main-text div:has(a) {
  display: flex;
  margin-top: 24px;
}

.aboutus_section {
  padding: 60px 0;
  background: url("./media/desc.webp");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.aboutus_section p {
  margin: 0;
}
.aboutus_section > div {
  background-color: #454040;
  max-width: 700px;
  word-wrap: break-word;
  white-space: pre-line;
  color: white;
  margin-left: auto;
  margin-right: 10%;
  box-shadow: 0px 0px 11px 0px #000000;
  padding: 50px;
}
.aboutus_section > div h2 {
  padding-bottom: 12px;
  margin: 0;
  border-bottom: 1px dotted #fff;
}

#whyus h2 {
  margin: 0 auto;
  color: #4A5568;
  margin-top: 70px;
  text-align: center;
}
#whyus > div {
  display: flex;
  justify-content: center;
}
#whyus > div > img {
  width: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}
#whyus .whyus_itemwrapper {
  width: 570px;
  padding: 50px;
}
#whyus .whyus_item {
  display: flex;
  margin-top: 24px;
}
#whyus .whyus_item div:nth-child(1) {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #F6B231;
}
#whyus .whyus_item div:nth-child(2) {
  color: #4A5568;
  font-weight: 300;
  margin-top: 4px;
}
#whyus .whyus_item > div {
  margin-left: 16px;
}
#whyus .whyus_item img {
  width: 50px;
  height: 50px;
}

#contactus {
  padding: 50px 0;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./media/slider/6.JPG");
}
#contactus .contact-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#contactus .contact-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #444;
}
#contactus .contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#contactus .contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contactus .contact-form input,
#contactus .contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}
#contactus .contact-form textarea {
  resize: vertical;
  height: 100px;
}
#contactus .checkbox {
  font-size: 14px;
  color: #444;
}
#contactus .checkbox input {
  margin-right: 8px;
}
#contactus .contact-form button {
  background-color: #f5a623;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
#contactus .contact-form button:hover {
  background-color: #e19010;
}
#contactus .contact-info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 15px;
  color: #444;
}
#contactus .info-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contactus .info-block i {
  font-size: 22px;
  color: #f5a623;
  min-width: 22px;
}

.contact-btn {
  background-color: #f5a623;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  background-color: #e19010;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:focus {
  background-color: #d87e00;
  box-shadow: 0 0 0 3px rgba(246, 178, 49, 0.5);
  transform: scale(1.02);
}

.site-footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 30px 20px 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}

.footer-logo {
  max-height: 80px;
  max-width: 80%;
}

.footer-contact p {
  margin: 4px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  padding-top: 15px;
  gap: 15px;
}

.footer-copy {
  flex: 1;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #666;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credit {
  flex: 1;
  text-align: right;
  color: #666;
}

.footer-up {
  position: absolute;
  right: 20px;
  bottom: 15px;
}

.scroll-up-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #333;
  padding: 6px 10px;
  font-size: 16px;
  color: #333;
  border-radius: 4px;
}

.scroll-up-btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 1024px) {
  .main_logo {
    width: 220px;
  }
  #whyus > div > img {
    width: 50%;
  }
  .aboutus_section > div {
    margin: 0 auto;
  }
  header .logo_big {
    display: none;
  }
  header .logo_sm {
    display: flex;
    width: 44px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer-left {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0;
    padding-right: 12px;
    padding-left: 12px;
  }
  main {
    flex-direction: column-reverse;
    align-items: flex-start;
    background-size: cover;
    padding: 0 24px;
  }
  main .main_logo {
    margin-top: 20px;
  }
  #whyus > div {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  #whyus > div > img {
    width: 80%;
    margin-top: 30px;
  }
  #whyus .whyus_itemwrapper {
    padding: 0;
    width: 100%;
  }
  main .main-text div:nth-child(1) {
    font-size: 68px;
  }
  main .main-text div:nth-child(2) {
    font-size: 32px;
  }
  main .main-text div:nth-child(3) {
    font-size: 20px;
  }
}/*# sourceMappingURL=styles.css.map */