
body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Segma";
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Regular.eot#iefix);
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Regular.eot#iefix) format("eot"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Regular.woff2) format("woff2"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Regular.woff) format("woff"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Regular.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: "Segma";
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Medium.eot#iefix);
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Medium.eot#iefix) format("eot"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Medium.woff2) format("woff2"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Medium.woff) format("woff"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-Medium.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: "Segma";
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-SemiBold.eot#iefix);
    src: url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-SemiBold.eot#iefix) format("eot"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-SemiBold.woff2) format("woff2"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-SemiBold.woff) format("woff"), url(https://www.galderma.com/themes/custom/corporate_theme/fonts/Segma-SemiBold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
  }

* {
    box-sizing: border-box;
    font-family: 'Segma', sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

header {
    background-color: #fff;
    width: 100%;
    text-align: center;

}

.header__logo img {
    max-height: 50px;
    cursor: pointer;
}

.page-header {
    width: 100%;
    position: relative;
    padding-top: 50px;
}

.page-contact {
    width: 100%;
    position: relative;
    left: 0;
    transition: ease all 0.3s;
}

.page-contact__container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 30px 0;
}

.page-contact__container--title {
    text-align: center;
} 

.contact-field {
    margin-bottom: 15px;
}

.contact-field__input, .contact-field__textarea, .contact-field__select  {
    font-weight: bold;
    font-size: 12px;
}

.contact-field__input input, .contact-field__textarea textarea, .contact-field__select select {
    display: block;
    margin-top: 5px;
    background-color: #fff;
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    appearance: none;
    outline: none;
    line-height: 1.5;
    color: #212529;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}

.contact-field__textarea textarea {
    height: 140px;
}

.contact-field__input.field-error input, .contact-field__textarea.field-error textarea, .contact-field__select.field-error select {
    border: 1px solid #a94442;
    border-radius: 3px 3px 0 0;
}

.contact-field__error {
    font-size: 14px;
    color: #a94442;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    height: 50px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-field__submit button {
    background-color: #fff;
    color: #000;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #646464;
    border-radius: 0px;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: none;
    padding: 18px 40px;
    transition: all .2s ease-in-out;
}

@media screen and (max-width: 1220px){  
    .page-contact__container {
        padding: 60px 30px; 
    }    
}

@media screen and (max-width: 768px){
    .page-contact__container {
        padding: 60px 20px; 
    } 
}

@media screen and (max-width: 315px){
    .header__logo img {
        max-height: 40px;
        cursor: pointer;
    }
}