


html{
    scroll-behavior: smooth;
}
:root {
    --primary: #f70539;
    --dark: #111;
    --black: #333;
    --white: #fff;
    --orangered: orangered;
    --fadedwhite: #bbbbbb;
    --slateblue: #7141ac;
    --steelblue: steelblue;
    --skyblue: skyblue;
    --backgroundd: #2c3e50;
}
.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

/* All simiar styling goes here*/
.svcs{
    padding: 100px 0;
}

.services .serv-content,
.contact .contact-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* services section stylingg */
.svcs{
    background: var(--white);
    color: var(--white);
}

.svcs .serv-content .card{
    width: calc(33% - 20px);
    background: var(--slateblue);
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.svcs .serv-content .card:hover{
    background: var(--steelblue);
}
.svcs .serv-content .card .box{
    transition: all 0.3s ease;
}
.svcs .serv-content .card:hover .box{
    transform: scale(1.05);
}

.svcs .serv-content .card #icon{
    color: var(--skyblue);
    font-size: 50px;
    transition: color 0.3s ease;
}
.svcs .serv-content .card:hover #icon{
    color: var(--white);
}
.svcs .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}



/* contact section styling */
.contact .title::after{
    content: "get in touch";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}

.contact .contact-content .left .icons{
     margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    align-items: center;
    height: 65px;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row #cont{
    font-size: 25px;
    color: var(--primary);
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
}
/* form */
.contact .right form .fields{
    display: flex;
}
.contact .right form .name{
    /* margin-right: 10px; */
}
.contact .right form .email{
    /* margin-left: 50px; */
}

.contact .right form .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 120px!important;
    width: 100%;
}

.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
}
.contact .right form .textarea textarea{
    padding-top: 30px;
    resize: none;
}
.contact .right form .button{
    height: 47px;
    width: 170px;
}
.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact .right form .button button:hover{
    background: none;
    color: var(--primary);
}



/* responsive media query start */


@media (max-width: 992px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px) {
    .max-width {
        padding: 0 50px;
    }

    .max-width{
        max-width: 800px;
    }

    .svcs .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}
@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }

    .svcs .serv-content .card{
        width: 100%;
    }

}

 /* ---------WHATSUP ICON ANIMATION */
 .whatsup{
    color: rgb(18, 236, 109);
    background: transparent;
    padding: 12px;
    text-align: center;
    border-radius: 50%; 
    position: fixed;
    left: 40px;
    bottom: 5px;
    cursor: pointer;
    transition: opacity 0.5s;
 
    animation: scaleup 4s ease-in-out infinite;
 }
     @keyframes scaleup {
    0%{
        transform: scale(1.3);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
 }

