/* contact-page-css */

@media (max-width: 1400px) {
    .big-box{
        display: block !important;
    }
}

.contact-text{
    padding: 64px 0 48px 0;
    text-align: center;
}
.contact-text h1{
    font-family: var(--font-raleway);
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
}
.contact-text p{
    font-family: var(--font-raleway);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(113, 113, 113, 1);
    margin-top: 16px;
}
.contact-information{
    overflow: hidden;
    position: relative;
    padding: 52px 0 52px 52px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 98, 255, 1);
}
.col-include-contact h1{
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: rgba(255, 255, 255, 1);
}
.col-include-contact .p-text{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    color: rgba(201, 201, 201, 1);
}
.col-include-contact .phone{
    margin: 150px 0 65px 0;
    display: flex;
    gap: 32px;
}
.col-include-contact .phone p{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: rgba(255, 255, 255, 1);
}
.col-include-contact .letter{
    display: flex;
    gap: 32px;
    margin-bottom: 62px;
}
.col-include-contact p{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: rgba(255, 255, 255, 1);
}
.col-include-contact .location{
    display: flex;
    gap: 32px;
}
.col-include-contact .location p {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: rgba(255, 255, 255, 1);
}

.ball-img img{
    width: 270px;
    height: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.twitter-icon i{
    color: white;
    font-size: 20px;
}
.twitter-icon:hover i{
    color: rgba(71, 67, 255, 1);
}
.twitter-icon:hover {
    background-color: white;
}
.twitter-icon{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px 0;
    cursor: pointer;
    background-color: rgba(71, 67, 255, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.instagram-icon:hover i{
    color: rgba(71, 67, 255, 1);
}
.instagram-icon:hover {
    background-color: white;
}

.instagram-icon i{
    color: white;
    font-size: 20px;
}
.instagram-icon{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px 0;
    cursor: pointer;
    background-color: rgba(71, 67, 255, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.discord-icon:hover i{
    color: rgba(71, 67, 255, 1);
}
.discord-icon:hover {
    background-color: white;
}

.discord-icon i{
    color: white;
    font-size: 20px;
}

.discord-icon{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px 0;
    cursor: pointer;
    background-color: rgba(71, 67, 255, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.first-name-input-class .first-name-p{
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: rgba(141, 141, 141, 1);
}
.first-name-input-class input{
    width: 100%;
   border: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(141, 141, 141, 1);
}
.first-name-input-class input:focus{
    outline: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 1);
}
.name-input-text{
    margin-bottom: 70px;
}

.select-subject-h1 h1{
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-top: 60px;
}




label{
    display:block;
    line-height:40px;
}
.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 40px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}
.option-input:hover {
    background: #9faab7;
}
.option-input:checked {
    background: black;
}
.option-input:checked::before {
    width: 21px;
    height: 21px;
    display:flex;
    content: '\f00c';
    font-size: 15px;
    font-weight:bold;
    position: absolute;
    align-items:center;
    justify-content:center;
    font-family:'Font Awesome 5 Free';
}
.option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #40e0d0;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}
.option-input.radio {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.option-input.radio::after {
    border-radius: 50%;
}
.input-checkbox{
    display: flex;
    gap: 16px;
    padding: 12px 0 60px 0;
}
.message-input-class .message-p{
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    color: rgba(141, 141, 141, 1);
}
.write-message input{
    cursor: pointer;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(141, 141, 141, 1);

}
.write-message input:focus{
    outline: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 1);
}
.write-message input[placeholder]{
    padding-bottom: 15px;
    font-weight: 500;
    font-family: var(--font-poppins);
    font-size: 17px;
    line-height: 26px;
    color: rgba(141, 141, 141, 1);
}

.arrow-img-button{
    padding-top: 60px;
    display: flex;
    justify-content: space-around;
}
.arrow-img-button button{
    background-color: rgba(51, 138, 243, 1);
    color: white;
    border: 0;
    width: 279px;
    height: 70px;
    border-radius: 7px;
}
.letter-image{
    padding-top: 50px;
}


