@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

#ctn_contact {
  background-color: #6a9ac4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ctn_contact-box {
  width: clamp(100px, 90%, 1000px);
  margin: 80px 50px;
  display: flex;
  flex-wrap: wrap;
}

.ctn_contact-links, .ctn_contact-form-wrapper {
  width: 50%;
  padding: 8% 5% 10% 5%;
}

.ctn_contact-links {
  background-color: #1f2e43;
  background:
    radial-gradient(circle at 55% 92%, #426691 0 12%, transparent 12.2%),
    radial-gradient(circle at 94% 72%, #426691 0 10%, transparent 10.2%),
    radial-gradient(circle at 20% max(78%, 350px), #263a53 0 7%, transparent 7.2%),
    radial-gradient(circle at 0% 0%, #263a53 0 40%, transparent 40.2%),
    #1f2e43;
  border-radius: 10px 0 0 10px;
}

.ctn_contact-form-wrapper {
  background-color: #ffffff8f;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 800px) {
  .ctn_contact-links, .ctn_contact-form-wrapper {
    width: 100%;
  }
  
  .ctn_contact-links {
    border-radius: 10px 10px 0 0;
  }
  
  .ctn_contact-form-wrapper {
    border-radius: 0 0 10px 10px;
  }
}

@media only screen and (max-width: 400px) {
  .ctn_contact-box {
    width: 95%;
    margin: 8% 5%;
  }
}

#ctn_contact h2 {
  color: #fff;
  font-family: 'Arimo', sans-serif;
  font-size: clamp(30px, 6vw, 60px);
  letter-spacing: 2px;
  text-align: center;
  transform: scale(.95, 1);
}

.ctn_h2 {
  font-family: 'Arimo', sans-serif;
  color: #fff;
  font-size: clamp(30px, 6vw, 60px);
  letter-spacing: 2px;
  text-align: center;
  transform: scale(.95, 1);
}

.ctn_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
    gap: 30px; /* Space between icons and text */

}

.ctn_link {
  margin: 10px;
  cursor: pointer;
}

.ctn_img {
  width: 45px;
  height: 45px;
  filter: hue-rotate(220deg) drop-shadow(2px 4px 4px #0006);
  transition: 0.2s;
  user-select: none;
}

.ctn_img:hover {
  transform: scale(1.1, 1.1);
}

.ctn_img:active {
  transform: scale(1.1, 1.1);
  filter: hue-rotate(220deg) drop-shadow(2px 4px 4px #222) sepia(0.3);
}

.ctn_form-item {
  position: relative;
}

.ctn_label, .ctn_input, .ctn_textarea {
  font-family: 'Poppins', sans-serif;
}

.ctn_label {
  position: absolute;
  top: 10px;
  left: 2%;
  color: #999;
  font-size: clamp(14px, 1.5vw, 18px);
  pointer-events: none;
  user-select: none;
}

.ctn_input, .ctn_textarea {
  width: 100%;
  outline: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 12px;
  font-size: clamp(15px, 1.5vw, 18px);
}

.ctn_input:focus+.ctn_label, 
.ctn_input:valid+.ctn_label, 
.ctn_textarea:focus+.ctn_label, 
.ctn_textarea:valid+.ctn_label {
  font-size: clamp(13px, 1.3vw, 16px);
  color: #777;
  top: -20px;
  transition: all .225s ease;
}

.ctn_submit-btn {
  background-color: #182233;
  filter: drop-shadow(2px 2px 3px #0003);
  color: #CB8938;
  font-family: "Poppins",sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  display: block;
  padding: 2px 2px;
  margin: 2px auto;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
}

.ctn_submit-btn:hover {
  transform: scale(1.1, 1.1);
}

.ctn_submit-btn:active {
  transform: scale(1.1, 1.1);
  filter: sepia(0.5);
}

@media only screen and (max-width: 800px) {
  .ctn_h2 {
    font-size: clamp(40px, 10vw, 60px);
  }
}

@media only screen and (max-width: 400px) {
  .ctn_h2 {
    font-size: clamp(30px, 12vw, 60px);
  }
  
  .ctn_links {
    padding-top: 30px;
  }
  
  .ctn_img {
    width: 38px;
    height: 38px;
  }
}


.add_text {
border-top:40px;
  color: white;
  text-align: center;
  margin-top: 10px; /* Adjust the value as needed */

}
.center-image {
  display: block;
  text-align: center;
  width: 100%;
}
