/* header laging CSS */
#header-logo  {
  display: block;
  padding-top: 3px;
}

.svg-logo-header {
  z-index: 2000;
  width: clamp(8.5rem, 4.175rem + 11.63vw, 18.125rem) !important;
}

.dropdown-toggle  {
  background: inherit !important;
  border: none !important;
}

.dropdown-menu {
  padding: 10px 0;
}

.dropdown-menu.show {
  display: block; 
}


/* Contacts CSS */
.contacts-section {
  padding-top: clamp(1.25rem, 0.438rem + 4.06vw, 5.313rem);
}

.contacts-container {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 30px;
}

.contacts-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(3.125rem, 2.875rem + 1.25vw, 4.375rem);
}

.contacts-wrap img {
  border-radius: 3%;
  width: 100%;
  max-width: 50%;
}

.contacts-form-wrap {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #304B85;
  width: 100%;  
}

.contacts-form-box {
  padding-bottom: 50px;
}

.contacts-form-box-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-item-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacts-title {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 18px */
  text-transform: uppercase;

  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contacts-title-item {
  color: #304B85;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.875rem, 1.161rem + 1.12vw, 2.5rem) ;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; 
  transition: all .5s;
}

.contacts-item-hover:hover {
  opacity: .9;
}

/* Contact Mobile */
@media (max-width: 990px) {
  .contacts-wrap img {
    max-width: 35%;
  }
}

@media (max-width: 880px) {
  .contacts-wrap {
    flex-direction: column;
  }

  .contacts-wrap img {
    max-width: 100%;
  }

  .contacts-form-wrap {
    width: fit-content;
  }
}


@media (max-width: 670px) {
  .contacts-container {
    padding: 0 10px;
  }
}

@media (max-width: 470px) {
  .contacts-form-wrap {
    padding: 10px;
  }

  .contacts-form-box {
    padding-bottom: 35px;
 }

  .contacts-title-item {
    font-size: clamp(1.125rem, 0.192rem + 4.67vw, 1.563rem);
  }
}