/*----------------------------------------------------------------
					Start Statistics 
----------------------------------------------------------------*/

.request-qoute-content {
    /* -webkit-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.12);
    -moz-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.12);
    -ms-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.12);
    -o-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.12);
    box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.12); */
    margin-right: 0;
    margin-left: 0;
    background: var(--main-color);
    z-index: 10;
    position: relative;
    padding: 100px 50px 70px;
    border-radius: 5px;
    position: relative;
}

.request-qoute .section-title-span {
    color: var(--white-color);
}

.request-qoute .section-title-span::before,
.request-qoute .section-title-span::after {
    background: var(--white-color);
}

.request-qoute-content::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    content: "";
    background: var(--white-color);
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.request-qoute-content::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    content: "";
    background: var(--white-color);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.text-support {
    padding-right: 30px;
}

.request-qoute-content .section-title-left h2::after {
    background: #ffffff;
}

.request-qoute-content h3 {
    color: #FFF;
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 45px;
}

.request-qoute-content .p-support {
    font-family: 'Poppins', sans-serif;
    line-height: 28px;
    border-bottom: 2px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 35px;
    color: #f9f9f9;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.50px;
}

.contact-support h6 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: .5px;
    line-height: 30px;
    margin-bottom: 32px;
}

.contact-support .single-contact {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.contact-support .single-contact img::before {
    position: absolute;
    left: 0;
    color: #fff;
    top: 0px;
    font-size: 22px;
    margin: 0;
}

.contact-support .single-contact .info-cont p {
    color: #f9f9f9 !important;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 20px;
    position: relative;
    letter-spacing: 0.30px;
}

.request-qoute-content form select {
    height: auto !important;
    outline: 0;
    resize: none;
    font-weight: 400;
    display: block;
    width: 100%;
    line-height: 24px;
    font-size: 14px;
    border: 1px solid #f1f1f1;
    padding: 15px 20px;
    background: #fff;
    box-shadow: none !important;
    border-radius: 10px;
}

.request-qoute-content .btn-effect:hover i {
    color: var(--main-color);
    opacity: 1;
    z-index: 2;
    position: relative;
}

.request-qoute-content textarea {
    height: 100px;
}

.request-qoute-content input[type="text"],
.request-qoute-content input[type="email"],
.request-qoute-content textarea,
.request-qoute-content select {
    background: #FFF;
}

.request-qoute-content input[type="text"]:focus,
.request-qoute-content input[type="email"]:focus,
.request-qoute-content textarea:focus,
.request-qoute-content select:focus {
    outline: none;
    border: 1px solid #eee;
}

.single-contact img {
    height: 40px;
    width: 40px;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    animation: bounceIn 1s infinite;
    animation-direction: alternate-reverse;
}

@keyframes bounceIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.input-box label {
    position: absolute;
    top: 1rem;
    z-index: 20;
    left: 20px;
    font-size: 13px
}

.input-box label::before {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background: transparent;
    position: absolute;
    z-index: -1
}

.input-box input:focus {
    margin-bottom: 20px;
}

.input-box input[type="date"]:focus+label,
.input-box input[type="date"]:valid+label,
.input-box input[type="number"]:focus+label,
.input-box input:not(:placeholder-shown)+label,
.input-box input[type="email"]:focus+label,
.input-box input[type="text"]:focus+label,
.input-box input[type="text"]:not(:placeholder-shown)+label,
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown)+label {
    left: 15px;
    top: -1.5rem;
    font-size: 14px;
    color: var(--white-color);
    padding: 3px 5px;
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    border-radius: 2px;
}