
@font-face {
    font-family: 'contact';
    src:  url('fonts/contact.eot?3kcyt8');
    src:  url('fonts/contact.eot?3kcyt8#iefix') format('embedded-opentype'),
      url('fonts/contact.ttf?3kcyt8') format('truetype'),
      url('fonts/contact.woff?3kcyt8') format('woff'),
      url('fonts/contact.svg?3kcyt8#contact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  i, .icomoon-liga {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'contact' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    
    /* Enable Ligatures ================ */
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-home:before {
    content: "\e900";
  }
  .icon-phone:before {
    content: "\e942";
  }
  .icon-mail2:before {
    content: "\ea84";
  }
  

.contact_container {
    margin-top: 5rem;
    background: var(--color-bg);
    padding: 0; /* 4rem */
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem; /* 4rem */
    height: 35rem;
    margin: 7rem auto; 
    /* border-radius: 1rem; */  

}

.contact_naast {
    background: var(--color-bg);
    width: auto;
    padding: 3rem;
    position: relative;
    bottom: 13rem;
    /* border-radius: 1rem;
    border: 1px solid; */
    box-shadow: 0 1rem 2rem rgba(5, 5, 5, 0.5);
}

.naast_image {
    width: auto;
    margin-bottom: 2rem;
}

.contact_naast h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact_naast p {
    margin-bottom: 1rem;
}

.contact_details li {
    align-items: left; 
}

/* ============ FORM ====================*/

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-right: 4rem;
}

.form__name {
    display: flex;
    gap: 1.5rem;
}

.form__name input[type="text"] {
    width: 50%;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-white);
    color: var(--color-primary);
}

.checkbox {
    display:flex;
    justify-content:flex-start;
    align-self: flex-start;
    cursor: pointer;
}

::placeholder {
    font-size: 1rem;
    font-family:'Jura', sans-serif;
}


.contact_form .btn {
    width: max-content;
    margin-top: 1rem;
    cursor: pointer;
}


footer {
    height: auto;
    width: 100%;
    padding-top: 2rem;
    padding: 2rem;
    bottom: 0;
    left: 0;
    right: 0;
}

.fc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.fc h4 {
    max-width: 36rem;
}

.s {
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 4rem;
}

.s a {
    color: var(--color-success);
}

.fb {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
}

.fb span {
    opacity: .4;
}

@media screen and (min-width:1025px) {
    .fc {
        width: 150%;
        max-height: 50%;
    }
    }

@media screen and (max-width:1200) {
    .footer {
        display: none;
    }
}

@media screen and (min-width: 912px) {
    .bel {
        display: none;
    }

}


@media screen and (max-width: 1024px) {
    .contact {
        /* padding-bottom: 0; */
    }

    .contact_container {
        gap: 1.5rem;
        margin-top: 12rem; /*3rem*/
        /*height: auto; */
        padding: 1.5rem;
    }

    .contact_naast {
        width: auto;
        padding: 1.5rem;
        /*bottom: 0; */
    }

    .contact_form {
        align-self:baseline; /*center */
        margin-right: 1.5rem;
    }

}

@media screen and (max-width: 820px) {


   .contact_container {
       height: fit-content;
       grid-template-columns: 1fr;
       /*margin-top: 0; */
       padding: 0;
   }

   .contact_form {
       margin: 0 1.5rem 3rem;
   }

   .form__name {
       flex-direction: column;
   }
       
   .form__name input[type="text"] {
       width: 100%;
   }

   .s {
       flex-direction: column;
       gap: 0.5rem;
       padding: 1rem;
   }
}
