.contact-section {
  padding: 65px 134px;
  text-align: center;
  max-width: 1512px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .contact-section {
    padding: 65px 45px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-header {
    margin: 65px 13px 0 13px;
    padding: 0;
  }
}

.contact-section .contact-header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-header h1 {
    font-size: 24px;
  }
}

.contact-section .contact-header p {
  font-size: 26px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-header p {
    font-size: 20px;
    margin-bottom: 38px;
    padding: 0 30px;
  }
}

.contact-section .contact-info {
  display: flex;
  justify-content: space-around;
  gap: 96px;
  margin-bottom: 57px;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info {
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 37px;
    overflow-x: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .contact-section .contact-info {
    gap: 48px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info::-webkit-scrollbar {
    display: none;
  }
}

.contact-section .contact-info .contact-card {
  border-radius: 10px;
  padding: 20px 30px;
  text-align: start;
  border: 2px solid #f2f2f3;
  width: 30%;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info .contact-card {
    min-width: 300px;
    flex: 0 0 auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .contact-section .contact-info .contact-card {
    padding: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info .contact-card:first-child {
    margin-left: 13px;
  }
  .contact-section .contact-info .contact-card:nth-child(3) {
    margin-right: 13px;
  }
}

.contact-section .contact-info .contact-card .icon-container {
  display: inline-block;
  padding: 13px;
  border: 2px solid #f2f2f3;
  border-radius: 6px;
  box-sizing: content-box;
  margin-bottom: 15px;
}

.contact-section .contact-info .contact-card .icon-container i {
  width: 42px;
  height: 42px;
}

.contact-section .contact-info .contact-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info .contact-card h2 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.contact-section .contact-info .contact-card p {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-section .contact-info .contact-card a {
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media only screen and (max-width: 768px) {
  .contact-section .contact-info .contact-card a {
    font-size: 16px;
  }
}

.contact-section .locations {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .contact-section .locations {
    overflow-x: auto;
  }
}

.contact-section .locations .locations-text {
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .contact-section .locations .locations-text {
    margin-bottom: 28px;
    margin: 0 40px;
  }
}

.locations .locations-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .locations .locations-text h2 {
    font-size: 24px;
  }
}

.locations .locations-text p {
  font-size: 26px;
}

@media only screen and (max-width: 768px) {
  .locations .locations-text p {
    font-size: 20px;
  }
}

.contact-section .locations .location-cards {
  display: flex;
  justify-content: space-around;
  gap: 96px;
}

@media only screen and (max-width: 768px) {
  .contact-section .locations .location-cards {
    justify-content: flex-start;
    gap: 32px;
    overflow-x: auto;
    padding: 0 13px;
  }
  .contact-section .locations .location-cards::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .contact-section .locations .location-cards {
    gap: 48px;
  }
}

.contact-section .locations .location-cards .location-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .contact-section .locations .location-cards .location-card {
    flex: 0 0 auto;
    max-width: 80%;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  .contact-section .locations .location-cards .location-card {
    max-width: 350px;
    flex: 0 0 auto;
  }
}

.contact-section .locations .location-cards .location-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  align-self: center;
}

@media only screen and (max-width: 768px) {
  .contact-section .locations .location-cards .location-card h3 {
    align-self: start;
    margin-bottom: 8px;
  }
}

.contact-section .locations .location-cards .location-card img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

@media only screen and (max-width: 768px) {
  .contact-section .locations .location-cards .location-card img {
    margin-bottom: 8px;
    border-radius: 4px;
  }
}

.contact-section .locations .location-cards .location-card strong {
  font-size: 16px;
}

.contact-section .locations .location-cards .location-card p {
  font-size: 16px;
}
