/*--------------------------------------------------------------

# Contact Choice Modal

--------------------------------------------------------------*/

.contact-choice-modal .modal-dialog {
    max-width: 850px;
    padding: 15px;
}

.contact-choice-modal .modal-content {
    position: relative;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------

# Close Button

--------------------------------------------------------------*/

.contact-choice-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 10;


    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: transparent;

    font-size: 28px;
    line-height: 38px;

    color: #777777;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;


}

.contact-choice-modal__close:hover {
    background-color: #f0f4f8;
    color: #1a1a1a;
}

/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

.contact-choice-modal__header {
    max-width: 620px;
    margin: 0 auto 35px;


    padding: 20px 35px 0;

    text-align: center;


}

.contact-choice-modal__tagline {
    display: block;


    margin-bottom: 8px;

    font-family: "Saira Semi Condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: #4a7ab7;


}

.contact-choice-modal__header h2 {
    margin: 0 0 12px;


    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;

    color: #1a1a1a;


}

.contact-choice-modal__header p {
    max-width: 520px;


    margin: 0 auto;

    font-family: "Saira Semi Condensed", sans-serif;
    font-size: 16px;
    line-height: 1.65;

    color: #707070;


}

/*--------------------------------------------------------------

# Options

--------------------------------------------------------------*/

.contact-choice-modal__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);


    gap: 15px;

    padding: 0 30px 35px;


}

/*--------------------------------------------------------------

# Option

--------------------------------------------------------------*/

.contact-choice-option {
    position: relative;


    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 205px;

    padding: 28px 25px 25px;

    border: 1px solid #e2e8ee;
    border-radius: 3px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;


}

.contact-choice-option:hover {
    border-color: #4a7ab7;


    box-shadow: 0 10px 30px rgba(50, 80, 110, 0.10);

    transform: translateY(-3px);


}

/*--------------------------------------------------------------

# Icon

--------------------------------------------------------------*/

.contact-choice-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;


    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border-radius: 50%;

    background-color: #eaf1f8;

    color: #4a7ab7;

    font-size: 18px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;


}

.contact-choice-option:hover .contact-choice-option__icon {
    background-color: #4a7ab7;
    color: #ffffff;
}

/*--------------------------------------------------------------

# Text

--------------------------------------------------------------*/

.contact-choice-option__content h3 {
    margin: 0 0 10px;


    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    color: #1a1a1a;


}

.contact-choice-option__content p {
    margin: 0;


    font-family: "Saira Semi Condensed", sans-serif;
    font-size: 15px;
    line-height: 1.55;

    color: #707070;


}

/*--------------------------------------------------------------

# Arrow

--------------------------------------------------------------*/

.contact-choice-option__arrow {
    position: absolute;


    right: 20px;
    bottom: 18px;

    font-size: 20px;

    color: #b5bec7;

    transition:
        color 0.25s ease,
        transform 0.25s ease;


}

.contact-choice-option:hover .contact-choice-option__arrow {
    color: #4a7ab7;
    transform: translateX(4px);
}

/*--------------------------------------------------------------

# Tablet

--------------------------------------------------------------*/

@media (max-width: 767px) {


    .contact-choice-modal .modal-dialog {
        margin: 15px auto;
        padding: 10px;
    }

    .contact-choice-modal__header {
        padding: 15px 20px 0;
        margin-bottom: 25px;
    }

    .contact-choice-modal__header h2 {
        font-size: 25px;
    }

    .contact-choice-modal__header p {
        font-size: 15px;
    }

    .contact-choice-modal__options {
        grid-template-columns: 1fr;
        gap: 10px;

        padding: 0 15px 20px;
    }

    .contact-choice-option {
        min-height: auto;

        flex-direction: row;
        align-items: center;

        padding: 18px 45px 18px 18px;
    }

    .contact-choice-option__icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        margin: 0 15px 0 0;
    }

    .contact-choice-option__content h3 {
        margin-bottom: 4px;
        font-size: 17px;
    }

    .contact-choice-option__content p {
        font-size: 14px;
    }

    .contact-choice-option__arrow {
        right: 15px;
        top: 50%;
        bottom: auto;

        transform: translateY(-50%);
    }

    .contact-choice-option:hover .contact-choice-option__arrow {
        transform: translate(4px, -50%);
    }


}


/*--------------------------------------------------------------

# email Booking View

--------------------------------------------------------------*/

.email-booking-view {
display: none;
padding: 0 35px 35px;
}

/*--------------------------------------------------------------

# Call Booking View

--------------------------------------------------------------*/

.call-booking-view {
display: none;
padding: 0 35px 35px;
}



/*--------------------------------------------------------------

# Back

--------------------------------------------------------------*/

.call-booking__back {
display: inline-flex;
align-items: center;
gap: 8px;


margin: 0 0 20px;

padding: 0;

border: 0;
background: transparent;

font-family: "Saira Semi Condensed", sans-serif;
font-size: 14px;
font-weight: 600;

color: #6b6b6b;

cursor: pointer;

transition: color 0.25s ease;


}

.call-booking__back:hover {
color: #4a7ab7;
}

.call-booking__back span {
font-size: 18px;
}

/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

.call-booking__header {
max-width: 650px;
margin: 0 auto 30px;


text-align: center;


}

.call-booking__header h2 {
margin: 0 0 12px;


font-size: 30px;
line-height: 1.3;
font-weight: 700;

color: #1a1a1a;


}

.call-booking__header p {
max-width: 580px;


margin: 0 auto;

font-family: "Saira Semi Condensed", sans-serif;
font-size: 16px;
line-height: 1.65;

color: #707070;


}

/*--------------------------------------------------------------

# Form

--------------------------------------------------------------*/

.call-booking__form {
max-width: 720px;
margin: 0 auto;
}

.call-booking__field {
margin-bottom: 20px;
}

.call-booking__field label {
display: block;


margin-bottom: 7px;

font-family: "Saira Semi Condensed", sans-serif;
font-size: 14px;
font-weight: 600;

color: #333333;


}

.call-booking__field label span {
color: #4a7ab7;
}

.call-booking__field .form-control,
.call-booking__field .form-select {
min-height: 48px;


border: 1px solid #dfe5ea;
border-radius: 2px;

font-family: "Saira Semi Condensed", sans-serif;
font-size: 15px;

color: #333333;

box-shadow: none;

transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;


}

.call-booking__field textarea.form-control {
min-height: 90px;
resize: vertical;
}

.call-booking__field .form-control:focus,
.call-booking__field .form-select:focus {
border-color: #4a7ab7;


box-shadow: 0 0 0 3px rgba(74, 122, 183, 0.10);


}

/*--------------------------------------------------------------

# Submit

--------------------------------------------------------------*/

.call-booking__submit {
margin-top: 10px;


text-align: center;


}

.call-booking__btn {
min-width: 220px;


padding: 15px 30px;

border: 0;

font-family: "Bebas Neue", sans-serif;
font-size: 20px;
letter-spacing: 0.3px;


}

.call-booking__submit p {
margin: 12px 0 0;


font-family: "Saira Semi Condensed", sans-serif;
font-size: 13px;

color: #8a8a8a;


}

/*--------------------------------------------------------------

# Mobile

--------------------------------------------------------------*/

@media (max-width: 767px) {


.call-booking-view {
    padding: 0 18px 25px;
}

.call-booking__header {
    margin-bottom: 25px;
}

.call-booking__header h2 {
    font-size: 25px;
}

.call-booking__header p {
    font-size: 15px;
}

.call-booking__field {
    margin-bottom: 16px;
}

.call-booking__field .form-control,
.call-booking__field .form-select {
    min-height: 46px;
}

.call-booking__btn {
    width: 100%;
}


}




/*--------------------------------------------------------------

# Call Booking Success

--------------------------------------------------------------*/

.call-booking-success {
max-width: 520px;


margin: 20px auto 10px;

padding: 30px 20px;

text-align: center;


}

.call-booking-success__icon {
display: flex;
align-items: center;
justify-content: center;


width: 65px;
height: 65px;

margin: 0 auto 25px;

border-radius: 50%;

background-color: #eaf1f8;

color: #4a7ab7;

font-size: 30px;
font-weight: 700;


}

.call-booking-success h2 {
margin: 0 0 15px;


font-size: 30px;
line-height: 1.3;

color: #1a1a1a;


}

.call-booking-success p {
max-width: 450px;


margin: 0 auto 30px;

font-family: "Saira Semi Condensed", sans-serif;
font-size: 16px;
line-height: 1.7;

color: #707070;


}

.call-booking-success__btn {
min-width: 150px;


border: 0;

font-family: "Bebas Neue", sans-serif;
font-size: 19px;


}

/* Mobile */

@media (max-width: 767px) {


.call-booking-success {
    padding: 20px 10px;
}

.call-booking-success h2 {
    font-size: 25px;
}

.call-booking-success p {
    font-size: 15px;
}


}
