body{
    background-color: rgba(0, 0, 0, 0.281);
    font-family: 'Poppins', 'Noto Serif Bengali', sans-serif;
    opacity: 0;
    animation: bodyani 2s ease forwards;
}

@keyframes bodyani{
    100%{
       opacity: 1;
    }
}
.contact-header {
    margin-top: 50px;
    padding-left: 5px;
    text-align: center;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 100px;
}

.email-link,
.call-link {
    width: 200px;
    height: 200px;
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(124, 124, 124);
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.call-link i {
    font-size: 100px;
    color: black;
    margin-top: 5px;
    animation: call-ani 1s ease-in-out infinite forwards;
    z-index: 5;
}

@keyframes call-ani {
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }

    100%{
        transform: translateY(0px) rotate(0deg);
    }
}

.email-link img {
    width: 70%;
    height: 70%;
    animation: email-ani 1s ease-in infinite forwards;
    color: black;
    z-index: 5;
}

@keyframes email-ani {
    50% {
        transform: scale(1.1) translateY(-20px);
    }

    70% {
        transform: scale(1) translateY(0px);
    }
}

.email-link p{
    color: black;
    text-decoration: underline rgb(153, 149, 149);
    transform: translateY(38px);
    transition: transform 0.5s ease-in;
    font-weight: 600;
    z-index: 5;
}

.call-link:hover,
.email-link:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.call-link p{
    transform: translateY(30px);
    color: rgb(15, 15, 15);
    text-decoration: underline rgb(153, 149, 149);
    transition: transform 0.5s ease-in;
    font-weight: 600;
    z-index: 2;
}

.call-link:hover p{
    transform: translateY(0px);
}

.email-link:hover p{
    transform: translateY(0px);
}

.fill{
    width: 125%;
    height: 125%;
    position: absolute;
    bottom: -220px;
    left: -220px;
    transition: all 0.4s ease;
    background-color: rgb(153, 149, 149);
    transition: all 0.4s cubic-bezier(.17,.67,.8,.49);
    border-radius: 0px 180px 0px 0px;
}

section:hover .fill{
    bottom: 0;
    left: 0;
}

@media only screen and (max-width:917px) {
    .call-link p{
        transform: translateY(0px);
        text-decoration: underline rgb(124, 124, 124);
    }

    .email-link p{
        transform: translateY(0px);
        text-decoration: underline rgb(124, 124, 124);
    }
}

@media only screen and (max-width:246px){
    .email-link, .call-link{
        width: 180px;
        height: 180px;
    }
}

/* follow us section style start */

.follow-us-section{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -200px;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 60px;
    background-color: rgb(71, 70, 70);
    margin-top: 300px;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.button{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.icon{
    padding: 6px;
    font-size: 25px;
    color: white;
}

.icon:hover{
    background-color: rgb(122, 117, 117);
}

.text{
    transition: all 0.4s ease-in;
}

.share{
    transition: all 0.5s ease-in;
}

.icon:nth-child(1){
    transition: all 0.4s ease-in;
}

.icon:nth-child(2){
    transition: all 0.5s ease-in;
}

.icon:nth-child(3){
    transition: all 0.6s ease-in;
}

.icon:nth-child(4){
    transition: all 0.7s ease-in;
}

.container:hover .text,
.container:hover .share,
.container:hover .icon{
    transform: translateY(-50px);
}

.or-header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

form input, form textarea{
    margin-top: 20px;
}

form input{
    width: 400px;
    padding: 10px 5px;
    border-radius: 20px;
    border: 2px rgb(121, 119, 119) solid;
    background-color: rgb(189, 189, 189);
    outline: none;
    text-align: center;
    font-family: sans-serif;
    font-size: 18px;
    transition: all 0.3s linear;
}

form input:focus, form textarea:focus{
    background-color: rgba(170, 165, 165, 0.315);
    color: white;
    border: 2px solid rgb(73, 71, 71);
    border-radius: 0;
}

form input:focus::placeholder, form textarea:focus::placeholder{
    color: white;
}

form textarea{
    width: 550px;
    resize: vertical;
    border-radius: 30px;
    padding: 20px 25px;
    border: 2px rgb(121, 119, 119) solid;
    background-color: rgb(189, 189, 189);
    outline: none;
    font-size: 20px;
    font-family: sans-serif;
    transition: all 0.3s linear;
}

form input[type=submit]{
    width: 120px;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 0px;
}

form input[type=submit]:hover{
    background-color: rgb(185, 182, 182);
    border-radius: 10px;
}

form input[type=submit]:active{
    background-color: rgb(97, 97, 97);
}

@media only screen and (max-width:619px){
    form textarea{
        width: 80%;
    }

    form input:nth-child(1),
    form input:nth-child(2){
        width: 60%;
    }
}

@media only screen and (max-width:402px){
    form input:nth-child(1),
    form input:nth-child(2){
        font-size: 15px;
    }

    form textarea{
        font-size: 17px;
    }
}

@media only screen and (max-width:320px){
    form input:nth-child(1),
    form input:nth-child(2){
        font-size: 13px;
    }

    form input[type=submit]{
        width: 100px;
        padding: 5px 0;
    }
}

@media only screen and (max-width:280px){
    form input:nth-child(1),
    form input:nth-child(2){
        font-size: 11px;
    }

    form textarea{
        font-size: 14px;
    }

    form input[type=submit]{
        width: 80px;
        padding: 4px 0;
    }
}

/* follow us section style end */