@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500&family=Lato:wght@400;700&family=Noto+Serif:wght@200;300;400;500&family=Open+Sans:wght@300;400;500&family=PT+Sans:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,400;1,500;1,600&family=Roboto:ital,wght@0,300;0,500;0,900;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500&family=Lato:wght@400;700&family=Montserrat:wght@100;200;300;400;500&family=Noto+Serif:wght@200;300;400;500&family=Open+Sans:wght@300;400;500&family=PT+Sans:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,400;1,500;1,600&family=Roboto:ital,wght@0,300;0,500;0,900;1,400;1,500;1,700&family=Ubuntu:wght@300;400;500;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant', serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Noto Serif', serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'PT Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Ubuntu', sans-serif;

}

html{
    scroll-behavior: smooth;
}



.header {
    width: 100%;
    height: 400px;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);

}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
}


.logo {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
}

.nav-links {
    flex: 1;
    text-align: center;


}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #424040;
    text-decoration: none;
    font-size: 19px;

}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(98, 95, 95);
    display: block;
    margin: auto;
    transition: 0.5s;

}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

.nav-btn button {
    width: 90px;
    height: 32px;
    font-size: 14px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

@media(max-width:700px) {

    .nav-links ul li {
        display: block;
    }

    .logo {
        font-size: 25px;
        font-family: 'Open Sans', sans-serif;
        letter-spacing: 1px;
        font-weight: 600;
        position: relative;
        right: 20px;

    }

    .nav-links {
        position: fixed;
        background-color: rgb(133, 205, 224);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        z-index: 2;
        text-align: left;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #000000;
        position: relative;
        left: 30px;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }

    .nav-links ul {
        padding: 30px;

    }

    .nav-btn button {
        width: 90px;
        height: 32px;
        font-size: 14px;
        background-color: black;
        color: white;
        position: relative;
        left: 60px;
        border: none;
    }
}

.my-info {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
}

.h-left {
    width: 60%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-l-info {
    font-size: 25px;
}

.h-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.my-photo {
    width: 95%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-photo img {
    background-position: center;
    background-size: cover;
    object-fit: fill;
    width: 85%;
}

@media(max-width:700px) {
    .my-info {
        width: 100%;
        height: 340px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        flex-flow: column-reverse;
    }

    .h-left {
        width: 90%;
        height: 340px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .h-l-info {
        font-size: 17px;
    }

    .h-right {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 340px;
    }

    .my-photo {
        width: 95%;
        height: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .my-photo img {
        background-position: center;
        background-size: cover;
        object-fit: fill;
        width: 250px;
    }
}

.about-section {
    width: 100%;
    min-height: 100vh;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
}

.about-me{
    font-size: 25px;
    text-align: right;
    padding-right: 20px;
    font-weight: 500;
    border-bottom: 3px solid rgb(88, 86, 86);
   padding-bottom: 10px;
}

.about-sec-content{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-info{
    font-size: 26px;
    text-align: center;
    background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
font-family: 'Poppins', sans-serif;
    width: 92%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    height: 190px;
    margin: 20px 0 0 40px;
    box-shadow: 2px 2px 10px 0;
}

.skills{
    font-size: 30px;
    padding-top: 30px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 40px;
}

.lang-boxes{
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.box{
    width: 150px;
    height: 150px;
    background-color: #f0e0e0;
    display: flex;
    align-items: center;
    justify-self: center;
    flex-flow: wrap;
    box-shadow: 2px 3px 10px 0px;
    transition: 0.3s;
}

.box:hover{
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
        
}

.box img{
    background-position: center;
    background-size: cover;
    width: 150px;
    object-fit: fill;
    display: flex;
    align-items: center;
    justify-self: center;
}

@media(max-width:700px){
    .about-section {
        width: 100%;
        min-height: 400px;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    }
    
    .about-me{
        font-size: 20px;
        text-align: right;
        padding-right: 10px;
        font-weight: 500;
        border-bottom: 3px solid rgb(88, 86, 86);
       padding-bottom: 6px;
    }
    
    .about-sec-content{
        width: 100%;
        height: 520px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-info{
        font-size: 20px;
        background-color: #8BC6EC;
        background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
        

        width: 90%;
        border-radius: 20px;
        color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        height: 250px;
        margin-left: 20px;
        box-shadow: 2px 2px 10px 0;
    }
    
    .skills{
        font-size: 25px;
        padding-top: 30px;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Ubuntu', sans-serif;
        margin-bottom: 20px;
    }
    
    .lang-boxes{
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .box{
        width: 110px;
        border-radius: 10px;
        height: 110px;
        background-color: #f0e0e0;
        display: flex;
        align-items: center;
        justify-self: center;
        flex-flow: wrap;
        box-shadow: 2px 3px 10px 0px;
        transition: 0.3s;
    }
    
    .box:hover{
        background-color: #4158D0;
        background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
            
    }
    
    .box img{
        background-position: center;
        background-size: cover;
        width: 110px;
        object-fit: fill;
        display: flex;
        align-items: center;
        justify-self: center;
    }
}

@media(max-width:380px){
    .about-section {
        width: 100%;
        min-height: 400px;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    }
    
    .about-me{
        font-size: 18px;
        text-align: right;
        padding-right: 10px;
        font-weight: 500;
        padding-top: 10px;
        border-bottom: 3px solid rgb(88, 86, 86);
       padding-bottom: 6px;
    }
    
    .about-sec-content{
        width: 100%;
        height: 480px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-info{
        font-size: 18px;
        background-color: #8BC6EC;
        background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
        width: 90%;
        border-radius: 20px;
        color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        height: 250px;
        margin-left: 20px;
        box-shadow: 2px 2px 10px 0;
    }
    
    .skills{
        font-size: 25px;
        padding-top: 30px;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Ubuntu', sans-serif;
        margin-bottom: 20px;
    }
    
    .lang-boxes{
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .box{
        width: 100px;
        border-radius: 10px;
        height: 100px;
        background-color: #f0e0e0;
        display: flex;
        align-items: center;
        justify-self: center;
        flex-flow: wrap;
        box-shadow: 2px 3px 10px 0px;
        transition: 0.3s;
    }
    
    .box:hover{
        background-color: #4158D0;
        background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
            
    }
    
    .box img{
        background-position: center;
        background-size: cover;
        width: 100px;
        object-fit: fill;
        display: flex;
        align-items: center;
        justify-self: center;
    }
}

.work-section{
    height: 270vh;
    width: 100%;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
}

.my-work{
    font-size: 25px;
    text-align: right;
    font-weight: 500;
    border-bottom: 3px solid rgb(88, 86, 86);
   padding-bottom: 10px;
   padding-top: 20px;
   padding-right: 20px;
}

.web-clones{
    font-size: 30px;
    padding-top: 30px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 40px;
}

.work-main{
    width: 100%;
    min-height: 100px;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.box-w{
    width: 450px;
    height: 250px;
    background-color: #f0e0e0;
    display: flex;
    align-items: center;
    justify-self: center;
    flex-flow: wrap;
    flex-wrap: wrap;
    box-shadow: 2px 3px 10px 0px;
    transition: 0.3s;
}

.box-w img{
    background-position: center;
    background-size: cover;
    width: 450px;
    object-fit: fill;
    display: flex;
    align-items: center;
    justify-self: center;
    cursor: pointer;
}

@media(max-width:700px){
    .work-section{
        height:2000px;
        width: 100%;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    }
    
    .my-work{
        font-size: 25px;
        text-align: right;
        font-weight: 500;
        border-bottom: 3px solid rgb(88, 86, 86);
       padding-bottom: 10px;
       padding-top: 20px;
       padding-right: 20px;
    }
    
    .web-clones{
        font-size: 20px;
        padding-top: 30px;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Ubuntu', sans-serif;
        margin-bottom: 40px;
    }
    
    .work-main{
        width: 100%;
        min-height: 100px;
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .box-w{
        width: 320px;
        height: 200px;
        background-color: #f0e0e0;
        display: flex;
        align-items: center;
        justify-self: center;
        flex-flow: wrap;
        flex-wrap: wrap;
        box-shadow: 2px 3px 10px 0px;
        transition: 0.3s;
    }
    
    .box-w img{
        background-position: center;
        background-size: cover;
        width: 320px;
        height:200px ;
        object-fit: fill;
        display: flex;
        align-items: center;
        justify-self: center;
        cursor: pointer;
    }
}

@media(max-width:380px){
    .work-section{
        min-height:100vh;
        width: 100%;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    }
    
    .my-work{
        font-size: 25px;
        text-align: right;
        font-weight: 500;
        border-bottom: 3px solid rgb(88, 86, 86);
       padding-bottom: 10px;
       padding-top: 20px;
       padding-right: 20px;
    }
    
    .web-clones{
        font-size: 20px;
        padding-top: 30px;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Ubuntu', sans-serif;
        margin-bottom: 40px;
    }
    
    .work-main{
        width: 100%;
        min-height: 100px;
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .box-w{
        width: 320px;
        height: 200px;
        background-color: #f0e0e0;
        display: flex;
        align-items: center;
        justify-self: center;
        flex-flow: wrap;
        flex-wrap: wrap;
        box-shadow: 2px 3px 10px 0px;
        transition: 0.3s;
    }
    
    .box-w img{
        background-position: center;
        background-size: cover;
        width: 320px;
        height:200px ;
        object-fit: fill;
        display: flex;
        align-items: center;
        justify-self: center;
        cursor: pointer;
    }
}



.contact-section {
    width: 100%;
    min-height:100vh;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);

}

.contact-me{
    font-size: 25px;
    text-align: right;
    font-weight: 500;
    border-bottom: 3px solid rgb(88, 86, 86);
    padding-bottom: 10px;
    padding-top: 20px;
    padding-right: 20px;
}
.con-sec{
    display: flex;
    width: 100%;
}

.c-left{
    width: 50%;
    min-height: 100vh;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.talk{
    font-size: 19px;
}

.c-left-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    flex-direction: column;
}

.let{
    font-size: 21px;
    padding-left: 60px;
    padding-top: 10px;
}

.g{
    font-size: 21px;
    padding: 10px 0 0 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.con-id i {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    height: 40px;
    text-decoration: none;
    width: 40px;
    color: black;
}

.con-id{
    display: flex;
    gap: 20px;
}

.con-id li {
    list-style: none;
    letter-spacing: 10px;
    margin-top: 20px;
    font-size: 25px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
}

li a {
    text-decoration: none;
    color: white;
}


.c-right{
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 400px;
    height: 470px;
    background-image: radial-gradient( circle 897px at 9% 80.3%,  rgba(55,60,245,1) 0%, rgba(234,161,15,0.90) 100.2% );
    border-radius: 20px;
}

form,
input {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input {
    height: 50px;
    width: 300px;
    margin-left: 50px;
    border-radius: 10px;
    outline: none;
    border: none;
    padding-left: 15px;
    background-color: rgb(250, 255, 245);
}

.feedback {
    height: 100px;
}

.form-header {
    font-size: 25px;
    padding: 10px 0 10px 53px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-family: 100;
    letter-spacing: 1px;
    word-spacing: 3px;
}

.form-part{
    font-size: 18px;
    text-align: center;
}

.form-btn {
    width: 120px;
    height: 40px;
    border-radius: 8px;
    outline: none;
    border: none;
    background-color: #092eaa;
    color: white;
    font-size: 12px;
    margin: 10px 0 0 50px;
    box-shadow: 3px 5px 20px 0px rgba(77, 83, 130, 0.5);
}

@media(max-width:700px){
    .contact-section {
        width: 100%;
        height:10px;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    
    }
    
    .contact-me{
        font-size: 25px;
        text-align: right;
        font-weight: 500;
        border-bottom: 3px solid rgb(88, 86, 86);
        padding-bottom: 10px;
        padding-top: 20px;
        padding-right: 20px;
    }
    .con-sec{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .c-left{
        width: 50%;
        height: 10px;
        font-size: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .talk{
        font-size: 18px;
    }
    
    .c-left-info{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .let{
        font-size: 19px;
        padding-left: 5px;
        padding-top: 10px;
    }
    
    .g{
        font-size: 19px;
        padding: 10px 0 0 5px;
        font-weight: 700;
    }
    
    .con-id i {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        text-decoration: none;
        width:40px;
        color: black;
    }
    
    .con-id{
        display: flex;
        gap: 5px;
    }
    
    .con-id li {
        list-style: none;
        letter-spacing: 10px;
        margin-top: 20px;
        font-size: 25px;
        margin-left: 10px;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
    }
    
    li a {
        text-decoration: none;
        color: white;
    }
    
    
    .c-right{
        width: 50%;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        bottom: 250px;
    }
    
    form {
        width: 330px;
        height: 400px;
        background-image: radial-gradient( circle 897px at 9% 80.3%,  rgba(55,60,245,1) 0%, rgba(234,161,15,0.90) 100.2% );
        border-radius: 20px;
    }
    
    form,
    input {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    input {
        height: 40px;
        width: 280px;
        border-radius: 10px;
        outline: none;
        border: none;
        margin-right: 50px;
        padding-left: 15px;
        background-color: rgb(250, 255, 245);
    }
    
    .feedback {
        height: 70px;
    }
    
    .form-header {
        font-size: 20px;
        padding-right: 40px;
        text-align: center;
        color: #000000;
        font-family: 'Poppins', sans-serif;
        font-family: 100;
        letter-spacing: 1px;
        word-spacing: 3px;
    }
    
    .form-part{
        font-size: 15px;
        text-align: center;
    }
    
    .form-btn {
        width: 120px;
        height: 40px;
        border-radius: 8px;
        outline: none;
        border: none;
        background-color: #092eaa;
        color: white;
        font-size: 12px;
        margin: 10px 0 0 0px;
        box-shadow: 3px 5px 20px 0px rgba(77, 83, 130, 0.5);
    }
    
}

@media(max-width:380px){
    .contact-section {
        width: 100%;
        height:120vh;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    
    }
    
    .contact-me{
        font-size: 25px;
        text-align: right;
        font-weight: 500;
        border-bottom: 3px solid rgb(88, 86, 86);
        padding-bottom: 10px;
        padding-top: 20px;
        padding-right: 20px;
    }
    .con-sec{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .c-left{
        width: 50%;
        font-size: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .talk{
        font-size: 18px;
    }
    
    .c-left-info{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .let{
        font-size: 19px;
        padding-left: 5px;
        padding-top: 10px;
    }
    
    .g{
        font-size: 19px;
        padding: 10px 0 0 5px;
        font-weight: 700;
    }
    
    .con-id i {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        text-decoration: none;
        width:40px;
        color: black;
    }
    
    .con-id{
        display: flex;
        gap: 5px;
    }
    
    .con-id li {
        list-style: none;
        letter-spacing: 10px;
        margin-top: 20px;
        font-size: 25px;
        margin-left: 10px;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
    }
    
    li a {
        text-decoration: none;
        color: white;
    }
    
    
    .c-right{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        bottom: 160px;
    }
    
    form {
        width: 330px;
        height: 400px;
        background-image: radial-gradient( circle 897px at 9% 80.3%,  rgba(55,60,245,1) 0%, rgba(234,161,15,0.90) 100.2% );
        border-radius: 20px;
    }
    
    form,
    input {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    input {
        height: 40px;
        width: 280px;
        border-radius: 10px;
        outline: none;
        border: none;
        margin-right: 50px;
        padding-left: 15px;
        background-color: rgb(250, 255, 245);
    }
    
    .feedback {
        height: 70px;
    }
    
    .form-header {
        font-size: 20px;
        padding-right: 40px;
        text-align: center;
        color: #000000;
        font-family: 'Poppins', sans-serif;
        font-family: 100;
        letter-spacing: 1px;
        word-spacing: 3px;
    }
    
    .form-part{
        font-size: 15px;
        text-align: center;
    }
    
    .form-btn {
        width: 120px;
        height: 40px;
        border-radius: 8px;
        outline: none;
        border: none;
        background-color: #092eaa;
        color: white;
        font-size: 12px;
        margin: 10px 0 0 0px;
        box-shadow: 3px 5px 20px 0px rgba(77, 83, 130, 0.5);
    }
    
}

.footer{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(72, 156, 171);
    background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
}

@media(max-width:700px){
    .footer{
        width: 100%;
        height: 90px;
        display: flex;
        align-items: center;
        padding-top: 30px;
        justify-content: center;
        background: rgb(72, 156, 171);
        background: linear-gradient(90deg, rgba(72, 156, 171, 1) 26%, rgba(127, 194, 116, 1) 100%);
    }
    
}

.whatsapp img{
    width: 60px;
    height: 60px;
    position: fixed;
    border-radius: 50%;
    top: 440px;
   left: 10px;
}

@media (max-width:700px){
    .whatsapp img{
        width: 50px;
        height: 50px;
        position: fixed;
        border-radius: 50%;
        top: 390px;
        z-index: 1;
       left: 10px;
    }
    
}

