
/*! CSS Used from: http://localhost:8888/frontend/css/bootstrap.min.css */

/* Style for form elements */
form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

label {
    margin-bottom: 5px;
    position: absolute;
    top: -10px;
    left: 10px;
    background: white;
    padding-inline: 5px;
    font-size: 13px;
    color: var(--para-color);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    /*! margin-bottom: 10px; */
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: var(--headings-color);
}

textarea {
    resize: vertical;
}


.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width:576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width:768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width:992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width:1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}


/*! CSS Used from: http://localhost:8888/frontend/css/spacing.css */
.mt_20 {
    margin-top: 20px !important;
}

.mt_25 {
    margin-top: 25px !important;
}

.mt_90 {
    margin-top: 90px !important;
}

.mt_100 {
    margin-top: 100px !important;
}

@media only screen and (max-width: 767px) {
    .xs_mt_60 {
        margin-top: 60px !important;
    }

    .xs_mt_70 {
        margin-top: 70px !important;
    }
}

/*! CSS Used from: http://localhost:8888/frontend/css/style.css */

.wsus__review_input {
    border: 1px solid #E9F2FF;
    padding: 30px;
    border-radius: 5px;
}

.wsus__review_input fieldset {
    border: 1px solid #c2ddff;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.wsus__review_input legend {
    width: auto;
    float: none;
    font-size: 13px;
    font-weight: 400;
    color: black;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-left: 15px;
    text-align: left;
    background: white;
    padding: 0px 3px;
}

.wsus__review_input input,
.wsus__review_input textarea {
    border: none;
    padding: 5px 15px 12px 15px;
    background: white !important;
}

.wsus__contact_top {
    background: white;
    border: 1px solid #E9F2FF;
    box-shadow: 0px 4px 30px 5px rgba(55, 143, 255, 0.08);
    border-radius: 5px;
    padding: 60px;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__contact_top span {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--main-theme-color);
    text-align: center;
    line-height: 60px;
    color: white;
    margin: 0 auto;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 30px;
    transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__contact_top p {
    font-size: 18px;
    font-weight: 600;
    display: block;
    text-align: center;
    color: black;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__contact_top:hover {
    background: var(--main-theme-color);
}

.wsus__contact_top:hover span {
    background: white;
    color: var(--main-theme-color);
}

.wsus__contact_top:hover p {
    color: white;
}

.contact_input {
    background: white;
    box-shadow: rgba(55, 143, 255, 0.08) 0px 0px 30px 5px;
    border-radius: 5px;
    padding: 40px;
}

.contact_input h4 {
    font-size: 24px;
    font-weight: 700;
    color: black;
}

.wsus__support_time {
    background: var(--main-theme-color);
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.wsus__support_time i, .only-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    background: white;
    line-height: 60px;
    text-align: center;
    margin: 40px auto 25px auto;
    border-radius: 50%;
    color: var(--main-theme-color);
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.only-icon svg {
    fill: var(--main-theme-color);
    color: var(--main-theme-color)
}

.wsus__support_time p {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.wsus__support_time p span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.wsus__support_time img {
    height: 397px !important;
}

.contact_map {
    height: 400px;
}

.contact_map iframe {
    width: 100% !important;
    height: 100% !important;
}

/*! CSS Used from: http://localhost:8888/frontend/css/responsive.css */
@media (min-width: 1200px) and (max-width: 1399.99px) {
    .wsus__contact_top {
        padding: 30px;
    }

    .contact_map {
        height: 550px;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .wsus__contact_top {
        padding: 25px;
    }

    .wsus__contact_top p {
        font-size: 16px;
    }

    .contact_map {
        height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .wsus__contact_top {
        padding: 30px;
        margin-bottom: 25px;
    }

    .wsus__contact_top p {
        font-size: 15px;
    }

    .contact_input {
        padding: 15px;
    }

    .contact_map {
        height: 300px;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .wsus__contact_top {
        padding: 20px;
        margin-bottom: 25px;
    }

    .wsus__contact_top p {
        font-size: 15px;
    }

    .contact_input {
        padding: 15px;
    }

    .contact_map {
        height: 300px;
    }

    .wsus__support_time img {
        height: 330px !important;
    }
}

@media (max-width: 575.99px) {
    .wsus__contact_top {
        padding: 35px;
        margin-bottom: 25px;
    }

    .contact_input {
        padding: 15px;
    }

    .contact_map {
        height: 300px;
    }

    .wsus__support_time img {
        height: 200px !important;
    }

    .wsus__contact_top p {
        font-size: 16px;
    }
}

