/* Mobile responsive */
@media (max-width: 768px) {
  #contactSection {
    height: max-content;
    width: 100dvw;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 90%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin: auto;
  }

  label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 5px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 12px;
    text-align: center;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 1 / 1;
    width: 100%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 12px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
    width: 80%;
    margin: auto;
  }

  .icons-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 5px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 2 / 1;
    padding: 5px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 3 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 4 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 30px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 14px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #contactSection {
    height: 100dvh;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 1fr 100px;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    margin-left: 100px;
    width: 100%;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 60%;
    text-align: center;
    padding: 50px;
    border-radius: 25px;
  }

  label {
    color: white;
    font-size: 18px;
    font-weight: 00;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 14px;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 2 / 2;
    margin-right: 100px;
    width: 90%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 16px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
  }

  .icons-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 50px;
    border-top: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    padding: 50px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 1 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 2 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 2 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 50px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 16px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #contactSection {
    height: max-content;
    width: 100dvw;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 1fr 100px;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    margin-left: 30px;
    width: 100%;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 80%;
    text-align: center;
    padding: 40px;
    border-radius: 25px;
  }

  label {
    color: white;
    font-size: 14px;
    font-weight: 00;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    height: 200px;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 12px;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 2 / 2;
    margin-right: 100px;
    width: 90%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 12px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
  }

  .icons-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 20px;
    border-top: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    padding: 50px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 1 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 2 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 2 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 40px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 16px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #contactSection {
    height: max-content;
    width: 100dvw;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 1fr 100px;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    margin-left: 50px;
    width: 100%;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 80%;
    text-align: center;
    padding: 40px;
    border-radius: 25px;
  }

  label {
    color: white;
    font-size: 16px;
    font-weight: 00;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    height: 200px;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 12px;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 2 / 2;
    margin-right: 100px;
    width: 90%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 12px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
  }

  .icons-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 20px;
    border-top: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    padding: 50px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 1 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 2 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 2 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 40px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 16px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #contactSection {
    height: max-content;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 1fr 100px;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    margin-left: 100px;
    width: 100%;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 60%;
    text-align: center;
    padding: 50px;
    border-radius: 25px;
  }

  label {
    color: white;
    font-size: 16px;
    font-weight: 00;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 12px;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 2 / 2;
    margin-right: 100px;
    width: 90%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 16px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
  }

  .icons-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 50px;
    border-top: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    padding: 50px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 1 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 2 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 2 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 50px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 16px;
  }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
  #contactSection {
    height: 100dvh;
    background-color: #f4f6fc;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 1fr 100px;
  }

  .contact-container > .left-content {
    grid-area: 2 / 1;
    margin-left: 100px;
    width: 100%;
  }

  .contact-container > .left-content > #contactForm {
    background-color: #8e99a2;
    width: 60%;
    text-align: center;
    padding: 50px;
    border-radius: 25px;
  }

  label {
    color: white;
    font-size: 18px;
    font-weight: 00;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name,
  #email {
    width: 100%;
    color: #f4f6fc;
    background-color: #8e99a2;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  #name:focus,
  #email:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  textarea {
    width: 100%;
    background-color: #8e99a2;
    color: #f4f6fc;
    border: solid 1px white;
    border-radius: 2px;
    padding: 10px;
    font-family: "DM Sans", sans-serif;
  }

  textarea:focus {
    outline: none;
    border: solid 1px #ffbde4;
  }

  ::placeholder {
    color: white;
    font-size: 14px;
  }

  #sendBtn {
    background-color: white;
    color: #8e99a2;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    color: white;
    background-color: #8e99a2;
    border: solid 1px white;
  }

  .contact-container > .right-content {
    grid-area: 2 / 2;
    margin-right: 100px;
    width: 90%;
  }

  .contact-container > .right-content > h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #8e99a2;
  }

  .contact-container > .right-content > p {
    font-size: 16px;
    text-align: center;
    color: #8e99a2;
    font-family: "DM Sans", sans-serif;
  }

  .icons-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 50px;
    border-top: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    padding: 50px;
  }

  .icons-container > a > .phone {
    grid-area: 1 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .phone:hover {
    border-right: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .phone > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .phone > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .email {
    grid-area: 1 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-bottom: solid 1px #f4f6fc;
  }

  .icons-container > a > .email:hover {
    border-left: solid 1px #8e99a2;
    border-bottom: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .email > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .email > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > a > .whatsapp {
    grid-area: 2 / 1;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-right: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > a > .whatsapp:hover {
    border-right: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > a > .whatsapp > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > a > .whatsapp > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .icons-container > .location {
    grid-area: 2 / 2;
    padding: 20px;
    transition: all ease-in-out 0.2s;
    border-left: solid 1px #f4f6fc;
    border-top: solid 1px #f4f6fc;
  }

  .icons-container > .location:hover {
    border-left: solid 1px #8e99a2;
    border-top: solid 1px #8e99a2;
    cursor: pointer;
  }

  .icons-container > .location > h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #8e99a2;
  }
  .icons-container > .location > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  #contact-icon {
    width: 50px;
    border-radius: 50px;
    margin-bottom: 15px;
  }

  .footer-content {
    grid-area: 4 / span 2;
    margin: auto;
  }

  .footer-content > h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #8e99a2;
  }

  .footer-content > h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #8e99a2;
    text-align: center;
  }

  #fradis {
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.2s;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  #fradis:hover {
    font-size: 16px;
  }
}

/* SweetAlert2 custom styles */
.swal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000; /* CAM primary color */
}

.swal-text {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  color: black !important;
}

.swal-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: black;
  color: white !important;
  border-radius: 50px;
  width: 200%;
}
