/* ------ */

/* ------ */

/* COMMON */

/* ------ */

/* ------ */

section {
    padding: 70px 10vw;
}

section .title {
    text-align: center;
    font-size: 1.1em;
    color: #a1a1a1;
    font-weight: bold;
    margin-bottom: 1em;
    letter-spacing: 3px;
}

section .subtitle {
    text-align: center;
    font-size: 1.3em;
    color: black;
    font-weight: bold;
    margin-bottom: 4em;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1000px) {}

@media (max-width: 767px) {
    section {
        padding: 50px 10vw;
    }
}

/* -------- */

/* -------- */

/* SECTIONS */

/* -------- */

/* -------- */

/* PORTFOLIO */

section.portfolio {
    --portfolio-card-spacing: 20px;
}

section.portfolio .portfolio__cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 -2vw;
}

section.portfolio .portfolio__card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
}
section.portfolio .portfolio__card:nth-child(even) {
    flex-direction: row-reverse;
}

section.portfolio .portfolio__card__top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-end;
    flex: 2;
    overflow: hidden;
    min-height: 25vw;
}

section.portfolio .portfolio__card__top__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 8px;
}

section.portfolio .portfolio__card__top__bg:hover {
    filter: brightness(1.1);
    /* transform: scale(1.1); */
}

section.portfolio .portfolio__card__top__text {
    z-index: 2;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    margin-left: 15px;
    margin-bottom: 15px;
    pointer-events: none;
    user-select: none;
}

section.portfolio .portfolio__card__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 7vh;
    padding: 20px 0;
}

section.portfolio .portfolio__card__line>div {
    flex: 1;
    width: 2px;
    background-color: #00000022;
}

section.portfolio .portfolio__card__bottom {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

section.portfolio .portfolio__card__bottom__title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: var(--portfolio-card-spacing);
}

section.portfolio .portfolio__card__bottom__description {
    font-size: 1em;
    color: #a1a1a1;
    text-align: center;
    margin-bottom: var(--portfolio-card-spacing);
}

section.portfolio .portfolio__card__bottom__action, .black-btn {
    border: 2px solid black;
    border-radius: 4px;
    padding: 7px 14px;
    background: transparent;
    color: black;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 11px;
}

section.portfolio .portfolio__card__bottom__action:hover {
    background: #00000011;
}

@media (max-width: 767px) {
    section.portfolio {
        --portfolio-card-spacing: 20px;
    }
    section.portfolio .portfolio__cards {
        align-items: stretch;
    }
    section.portfolio .portfolio__card {
        margin: 30px 0;
        font-size: 0.9em;
    }
    section.portfolio .portfolio__card__top {
        min-height: 40vw;
    }
    section.portfolio .portfolio__card__top__text {
        font-size: 1.2em;
    }
    section.portfolio .portfolio__card__line {
        display: none;
    }
    section.portfolio .portfolio__card__bottom {
        margin: 0 10px;
    }
    section.portfolio .portfolio__card__bottom__action, .black-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* MISSION */

section.mission .title{
    margin-bottom: 5rem;
}

section.mission .mission__description {
    color: black;
    font-size: 1em;
    max-width: clamp(300px, 50vw, 1000px);
    text-align: center;
    margin: 0 auto;
    margin-top: -40px;
    line-height: 1.5em;
}

/* VIDEO */

section.video-section {}

section.video-section .video__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.video-section .video__player {
    width: 80vw;
    max-width: 130vh;
    margin: 0 auto;
}

section.video-section .video__controls {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #a1a1a1;
}

section.video-section .video__controls i {
    font-size: 1.4em;
}

section.video-section .video__controls__play {
    cursor: pointer;
}

section.video-section .video__controls__volume {
    margin: 0 20px;
    width: 300px;
    max-width: 60vw;
}

section.video-section .video__controls__time {}

section.video-section .video__controls__fullscreen {
    margin-left: 10px;
    cursor: pointer;
}

/* LOGOS */

section.logos {}

section.logos .logos__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    margin-top: -30px;
}

section.logos .logos__logo {
    flex: 1;
}

section.logos .logos__logo:not(:first-child) {
    margin-left: 3vw;
}

section.logos .logos__logo img {
    width: 100%;
    filter: grayscale(1);
    opacity: 0.3;
    transition: all 0.3s ease;
}

section.logos .logos__logo:hover img, section.logos .logos__logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 767px) {
    section.logos .logos__row {
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 0 5vw;
        margin-top: -30px;
    }
    section.logos .logos__logo {
        margin: 2em 0 !important;
    }
}

/* AWARDS */

section.awards {}

section.awards .awards__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 10vw;
}

section.awards .awards__award {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 2vw;
}

section.awards .awards__award svg {
    height: 8vh;
}

section.awards .award__text {
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

section.awards .award__text__top {
    color: black;
    font-weight: bold;
    font-size: 1em;
    white-space: nowrap;
}

section.awards .award__text__bottom {
    color: #888888;
    font-weight: bold;
    font-size: 0.8em;
    white-space: nowrap;
}

/* Gallery */

section.welcome-gallery-section {}
section.welcome-gallery-section .welcome-gallery-section__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.welcome-gallery-section .welcome-gallery-section__gallery {
    width: 80vw;
    max-width: 130vh;
}

/* CONTACT */

section.new-contact {
    padding: 100px 70px;
    margin: 0 5vw;
    background: #f3f3f3;
    border-radius: 8px;
}

section.new-contact .new-contact__row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.new-contact .new-contact__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-right: 40px;
}

section.new-contact .new-contact__info__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 100px;
}

section.new-contact .new-contact__info__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

section.new-contact .new-contact__info__list span {
    line-height: 1.15;
    margin-bottom: 1em;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: normal;
    text-transform: none;
}

section.new-contact .new-contact__info__centers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.new-contact .new-contact__info__center {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    margin-top: 20px;
}

section.new-contact .new-contact__info__center span {
    color: #555555;
}

section.new-contact .new-contact__info__center span:first-child {
    color: black;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

section.new-contact .new-contact__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

section.new-contact .new-contact__form__flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

section.new-contact .new-contact__form__flex input {
    flex: 1;
}

section.new-contact .new-contact__form__flex input:not(:first-child) {
    margin-left: 20px;
}

section.new-contact .new-contact__form__input {
    --input-color: #aaaaaa;
    color: var(--input-color);
    border: 0;
    border-bottom: 1px solid var(--input-color);
    outline: none;
    background: transparent;
    min-height: 40px;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}
section.new-contact .new-contact__form__input:focus {
    background: #00000022;
}

section.new-contact .new-contact__form__input::placeholder {
    color: var(--input-color);
}
section.new-contact .new-contact__form__input:focus::placeholder {
    color: #333333;
}

section.new-contact textarea.new-contact__form__input {
    flex: 1;
    resize: none;
}

@media (max-width: 767px) {
    section.new-contact {
        padding: 60px 20px;
    }
    section.new-contact .new-contact__row {
        flex-direction: column;
        align-items: stretch;
    }
    section.new-contact .new-contact__info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-right: 0;
    }
    section.new-contact .new-contact__info__title {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
    }
    section.new-contact .new-contact__info__list {
        margin-bottom: 20px;
    }
    section.new-contact .new-contact__info__list span {
        line-height: 1;
        margin-bottom: 1em;
        font-size: 16px;
    }
    section.new-contact .new-contact__info__center {
        display: none;
    }
    section.new-contact .new-contact__form__flex {
        flex-direction: column;
        align-items: stretch;
    }
    section.new-contact .new-contact__form__flex input:not(:first-child) {
        margin-left: 0;
    }
    .question-section > div{
        min-width: 90% !important;
    }
}

.question-section {
    font-size: 20px;
    display: flex;
    justify-content: center;
}

.question-section > div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 400px;
}

.question-button button {
    font-size: 16px;
}

.question-button button.disabled{
   opacity: 0.4;
   cursor: default;
   pointer-events: none;
}

.question-button {
    margin-top: 30px;
}

.radio-button {
    float: none;
    margin: 0;
    width: 100px;
    height: 40px;
    position: relative;
    text-align: center;
  }
  
  .radio-button label,
  .radio-button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .radio-button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
    margin:0;
    cursor: pointer;
  }
  
  .radio-button input[type="radio"]:checked + label {
    background: grey;
    color: white;
    border-color: white;
    cursor: pointer;
    padding: 6px 30px;
    border-radius: 10px;
  }
  
  .radio-button label {
    cursor: pointer;
    z-index: 90;
    border: 1px solid black;
    padding: 6px 20px;
    border-radius: 10px;
    margin: 0;
  }

  .qu-answer {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .qu-header p{
    opacity: 1;
    font-size: 26px;
    line-height: 35px;
  }

  .question-form .form-group,.question-form .form-control {
    width: 100%;
    margin: 0;
    font-size: 16px;
  }

  .error-info,.success-info {
    display: none;
  }

  @media (max-width: 767px) {
    .qu-header p{
        text-align: center;
    }
  }

  section.mission .mission__description {
    max-width: clamp(300px, 80vw, 1200px);
    text-align: left;
  }

  section.new-contact .new-contact__info {
    flex: none;
    width: 30%;
  }

  section.new-contact .new-contact__form {
    font-size: 18px;
  }

  section.new-contact .new-contact__form__flex {
    margin-bottom: 20px;
  }

  section.new-contact .new-contact__form__flex input {
    font-size: 18px;
  }

  section.new-contact .new-contact__form__flex input[type="radio"],  section.new-contact .new-contact__form__flex input[type="checkbox"] {
    margin-top: 8px;
  }
  
  #contact-submit {
    font-size: 16px;
    padding: 5px 14px;
  }

  section.new-contact .new-contact__form__flex .radio,section.new-contact .new-contact__form__flex .checkbox {
    margin-left: 5px;
  }

  section.new-contact textarea.new-contact__form__input {
    width: 100%;
  }

  section.new-contact .new-contact__form__input,section.new-contact textarea.new-contact__form__input {
    color: black;
  }

  .response {
    margin: 15px 0px;
    display: none;
  }

 #contact_form button[disabled] {
    opacity: 0.5;
 }