header {
    background-color: #DDE4FB;
}

.right_nav ul li {
    text-decoration-color: #2B60FF !important;
}

.right_nav ul li a {
    color: #000;
}


/* ---------------------- Section 1 ------------------------------ */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
}

.contact_section1 {
    padding: 40px 4%;
    display: flex;
    gap: 30px;
}

.contact_section1 .left {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.contact_section1 .left .arrow {
    position: absolute;
    width: 250px;
    top: -50px;
    right: 0;
    animation: shake 1.5s linear infinite !important;
    rotate: 35deg;
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}


.contact_section1 .left h2 {
    font-size: 40px;
}

.contact_section1 .left h2 span {
    background: linear-gradient(to right, #1c15b1, #47bfee);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_section1 .left .slab {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.contact_section1 .left .slab .box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_section1 .left .slab .box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact_section1 .left .boxes {
    display: flex;
    gap: 30px;
    width: 100%;
}

.contact_section1 .left .boxes .box {
    width: calc(33.3% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #F5F7FE;
    border: 2px solid #F5F7FE;
    padding: 15px;
    border-radius: 7px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 20px 1px;

}

.contact_section1 .left .boxes .box img {
    width: 80px;
}

.contact_section1 .left .boxes .box:hover {
    background-color: #9cb5ff;
    color: #fff;
    cursor: pointer;
    transform: scale(1.04);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.contact_section1 .right {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact_section1 .right .form {
    background-color: #03487A;
    width: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.contact_section1 .right .form .box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}


.contact_section1 .right .form .input_div {
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact_section1 .right .form .input_div input {
    font-family: 'Poppins';
    border: none;
    outline: none;
    height: 45px;
    width: 100%;
    padding: 0 10px;
    border-radius: 4px;
}

.contact_section1 .right .form textarea {
    width: 100%;
    font-family: 'Poppins';
    border: none;
    outline: none;
    height: 100px;
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
}

.submit {
    text-decoration: none;
    line-height: 1;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
    background-color: #fff;
    color: #121212;
    border: none;
    cursor: pointer;
}

.button-decor {
    position: absolute;
    inset: 0;
    background-color: #47bfee;
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 0;
}

.button-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.button__icon {
    width: 48px;
    height: 40px;
    background-color: #47bfee;
    display: grid;
    place-items: center;
}

.button__text {
    display: inline-block;
    transition: color .2s;
    padding: 2px 1.5rem 2px;
    padding-left: .75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
    font-family: 'Poppins';
    font-weight: 400;
}

.submit:hover .button__text {
    color: #fff;
}

.submit:hover .button-decor {
    transform: translate(0);
}

.submit:hover {
    transform: translateY(-1px);
}

.submit:active {
    transform: translateY(0);
}



/* ----------------------- Section 2 --------------------- */
.contact_section2 {
    padding: 40px 4%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact_section2 h3 {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact_section2 p {
    line-height: 1.8;
    font-weight: 300;
}








@media screen and (max-width: 768px) {

    /* -------------------- Section 1 ----------------------- */
    .contact_section1 {
        flex-direction: column;
        padding: 30px 4%;
        gap: 30px;
    }

    .contact_section1 .left {
        width: 100%;
        gap: 20px;
    }

    .contact_section1 .left h2 {
        font-size: 28px;
    }

    .contact_section1 .left .slab {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_section1 .left .boxes {
        flex-wrap: wrap;
    }

    .contact_section1 .left .boxes .box {
        width: 100%;
    }

    .contact_section1 .right {
        width: 100%;
    }

    .contact_section1 .right .form {
        width: 100%;
    }

    /* ----------------------- Section 2 --------------------- */
    .contact_section2 {
        padding: 30px 4%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact_section2 h3 {
        font-size: 24px;
    }
}