/* section-contact-us */
.section-contact-us{
  padding-top: 150px;
}
.section-contact-us .container{
    max-width: 996px;
}
.section-contact-us h2.title-section{
  margin-bottom: 20px;
}
.section-contact-us .subtitle-section{
  max-width: 510px;
  font-size: 16px;
}
.section-contact-us form{
    margin-top: 50px;
}
.section-contact-us:after{
  display: none;
}
.section-contact-us .form-group-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 991px){
  .section-contact-us{
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px){
    .section-contact-us form{
        margin-top: 40px;
    }
}
@media screen and (max-width: 479px){
  .section-contact-us .form-group-buttons{
    flex-wrap: wrap;
  }
  .section-contact-us .form-group-buttons a{
    width: 100%;
  }
}
/* -- section-contact-us */

/* section-offices */
.section-offices{
  padding-bottom: 120px;
}
.section-offices .container{
  max-width: 996px;
}
.section-offices .item{
  padding: 30px 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  background: #111;
  overflow: hidden;
  margin-bottom: 40px;
  min-height: 265px;
}
.section-offices .item .image{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
.section-offices .item .image img {
  display: block;
  height: 100%;
  max-width: none;
}
.section-offices .item .image:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0) 67.36%);
}
.section-offices .item .content{
  position: relative;
  z-index: 9;
  max-width: 325px;
}
.section-offices .item .suptitle{
  font-size: 12px;
  text-transform: uppercase;
  color: #535353;
  font-family: "Geist Mono", monospace;
  font-weight: 500;
}
.section-offices .item .country{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 30px;
}
.section-offices .item .country img{
  border-radius: 1.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.section-offices .item .country p.title{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  color: #F4F5F7;
}
.section-offices .item p.address,
.section-offices .item p.phone,
.section-offices .item p.email{
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 15px;
  padding-left: 27px;
  background-size: 16px;
  background-position: 0 1px;
  background-repeat: no-repeat;
}
.section-offices .item p.email{
  margin-bottom: 0;
}
.section-offices .item p.address{
  background-image: url(../images/contact/icon-location.svg);
}
.section-offices .item p.phone{
  background-image: url(../images/contact/icon-phone.svg);
}
.section-offices .item p.email{
  background-image: url(../images/contact/icon-email.svg);
}
.section-offices .item p.address a,
.section-offices .item p.phone a,
.section-offices .item p.email a{
  color: #fff;
  text-decoration: none;
}
.section-offices .item p.address a:hover,
.section-offices .item p.phone a:hover,
.section-offices .item p.email a:hover{
  opacity: 0.8;
}
.section-offices .item.items-corporate-data{
  min-height: 0;
}
.items-corporate-data .suptitle{
  margin-bottom: 30px;
}
.content-corporate-data{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.content-corporate-data .title{
  width: 40%;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
.content-corporate-data .item-corporate-data{
  width: 20%;
}
.content-corporate-data .item-corporate-data p{
  font-size: 12px;
  font-weight: 500;
  color: #8B8F97;
  text-transform: uppercase;
  line-height: 1.5;
}
.content-corporate-data .item-corporate-data p span{
  color: #fff;
}
@media screen and (max-width: 991px){
  .content-corporate-data .title{
    width: 35%;
  }
  .content-corporate-data .item-corporate-data{
    width: calc((65% - 60px) / 2);
  }
}
@media screen and (max-width: 767px){
  .section-offices{
    padding-bottom: 80px;
  }
  .section-offices .item{
    padding: 30px;
  }
  .section-offices .item .image:after {
    background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.6) 100%);
  }
  .section-offices .item .suptitle{
    color: #8e8e8e;
  }
  .content-corporate-data .title{
    width: 100%;
  }
  .content-corporate-data .item-corporate-data{
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 479px){
  .section-offices .item{
    padding: 20px;
  }
  .content-corporate-data{
    gap: 20px;
  }
  .content-corporate-data .item-corporate-data{
    width: 100%;
  }
}
/* -- section-offices */
