/*--------------------------------------------------------------
# contactUs Section
--------------------------------------------------------------*/
.contact{
  background-color: #EBF7FF;
  padding: 80px 0;
}

.contact-title {
  font-size: 4rem;
  line-height: 1.2;
  padding-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .contact{
    padding: 30px 0;
  }

  .contact-title {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}
/*--------------------------------------------------------------
# Detail Section
--------------------------------------------------------------*/
.detail-title {
  font-size: 2.5rem;
  line-height: 0.8;
  margin-bottom: 1.5rem;
}

.contact .detail-item-1 {
  display: flex;
  background-color: #FFFFFF;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact .detail-content {
  flex-grow: 1;
}

.contact .detail-content .white-border {
  border-bottom: solid 1px white;
}

.contact .detail-content p {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  height: 60px;
  align-content: center;
}

.contact .detail-content p span {
  font-size: 1.2rem;
  color: grey; 
}
.contact .detail-content .title-icon {
  display: inline-block; 
  width: 35px; 
  height: 35px; 
  background-size: contain; 
  background-repeat: no-repeat;
}


@media (max-width: 1256px) {  
  .contact .detail-content p {
    height: 90px;
  }
}

@media (max-width: 991.98px) {  
  .contact .detail-content p {
    margin-bottom: .9rem;
    font-size: 1rem;
    height: 35px;
    height: auto;
  }
  
  .contact .detail-content p span {
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .detail-title {
    font-size: 2.0rem;
    line-height: 1.2;
  }
  
  .contact .detail-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact .detail-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    height: 35px;
  }
  
  .contact .detail-content p span {
    font-size: 0.9rem;
  }

  .contact .detail-content .title-icon {
    width: 25px; 
    height: 25px; 
  }
  
  .contact .detail-item-1 {
    padding: 15px;
  }
}

@media (max-width: 575.98px) {
  .detail-title {
    font-size: 1.6rem;
  }
  
  .contact .detail-item {
    flex-direction: column;
    text-align: center;
  }

  .contact .detail-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
}

/*--------------------------------------------------------------
# Description Section
--------------------------------------------------------------*/
.location{
  padding: 80px 0;
}

.card-content-title {
  color: #00AAFF;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3rem !important;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.card-content-desc {
  font-size:1.2rem;
  line-height: 2rem;
  color: #949494;
  padding-left: 20px;
}

#card-description-map {
  background-color: #EAF6FF;
  border-radius: 25px;
  height: 430px;
  color: white;
}

.description .description-container {
  max-width: 1000px;
  margin: 0 auto;
}

.description .description-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.description .description-item .content {
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
  .location{
    padding-top: 20px;
  }
  .card-content-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    padding-left: 10px;
  }
  .card-content-desc {
    padding-left: 10px;    
  }
  .description .description-container {
    max-width: 600px;
    padding: 1rem 0;
  }

  .description .description-item {
    padding-bottom: 2rem;
  }

  .description .description-item .content {
    border-width: 1px;
  }
}
