*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    font-family: "montserrat";
    background: #f0ebe5;
}

nav{
background: #f0ebe5;
height: 80px;
width: 100%;
margin-top: 20px
}

label.logo:hover{ background:#d8d4ce;
    cursor: pointer;
}

a{
    color: #738ed1;
}
a:hover{
    background: none;
    color: #292b27;
    transition: .3s;
    }

label.logo{
    color: #738ed1;
    font-size: 20px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
    border-radius: 20px;
    border: 2px solid;
    border-color: #738ed1;
    margin-left: 30px;
    padding:7px 13px;
}

nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 90px;
    margin: 0 5px;
}
nav ul li a{
    color: #738ed1;
    font size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
}

li a:hover{
    background: #d8d4ce;
    transition: .3s;
    padding: 7px 13px;
    border-radius: 10px;
}

.checkbtn{
    font-size: 30px;
    color: #738ed1;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}
.wrapper{
    background: #f0ece5;
    height: auto;
    padding: 5px;
    margin: 20px;
    display:  flex;
}

/*container1*/
.container{
    background: #fc6332;
    width:24%;
    height: 70vh;
    text-align: center;
    padding-top: 200px;
    padding-right: 0px;
    margin-right: 50px;
    margin-left: 30px;
    border-radius: 700px;
}
.email{
    color: yellow;
}

p0{
    color: #f0ebe5;
}
/*container1 end*/

/*container2*/
.blue{
    background: #4484f3;
    width:24%;
    height: 70vh;
    text-align: center;
    padding-top: 250px;
    margin-right: 50px;
    border-radius: 700px;
}
.container2{
    text-align: center;
}
.facebook:hover{
    color: #fc6332;
    cursor: pointer;
}
.facebook{
    color: #f6dadb;
}
/*container2 end*/

/*container3*/
.green{
    background: #70bfa1;
    width:24%;
    height: 70vh;
    text-align: center;
    padding-top: 250px;
    margin-right: 50px;
    border-radius: 700px;
}
.container3{
    text-align: center;
}
.instagram:hover{
    color: white;
    cursor: pointer;
}
.instagram{
    color: #202124;
}
/*container3 end*/

/*container4*/
.yellow{
    background: #f3bf56;
    width:24%;
    height: 70vh;
    text-align: center;
    padding-top: 250px;
    margin-right: 50px;
    border-radius: 700px;
}
.linkedin:hover{
    color: blue;
    cursor: pointer;
}
.linkedin{
    color: #fc6332;
}
/*container4 end*/

h3{
    float: left;
    padding-left:
    35px;
    padding-right:
    50px;
    line-height: 80px;
    font-size: 18px;
    color: #738ed1;
}

h3:hover{
    background: none;
    color: #292b27;
    transition: .3s;
    }

.footer{
    color:#738ed1;
    padding-right:25px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.icons{
    padding-right:
    30px;
}
h4{
    float: right;

    line-height: 80px;
}

h5{
    float: right;
    padding-right:
    30px;
    line-height: 80px;
}

h6{
    float: right;
    padding-right:
    30px;
    line-height: 80px;
}

@media(max-width: 1200px){
    nav ul li a{
        font-size: 16px;
    }
}

@media(max-width: 1200px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: whitesmoke;
        top: 120px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        padding: 30px;
    }
    nav ul li a{
        font-size:17px;
    }
    a:hover{
    background: none;
    color: #292b27;
    transition: .3s;
    }
    #check:checked ~ ul{
    left: 0;
    }
    .wrapper{
        display: block;
    }
    .container{
        width: 100%;
        margin-left: 0px;
        margin-bottom: 30px;
    }
    .container2{
        width: 100%;
        margin-bottom: 30px;
    }
    .blue{
        width: 100%;
        margin-bottom: 30px;
    }
    .container3{
        width: 100%;
        margin-bottom: 30px;
    }
    .green{
        width: 100%;
        margin-bottom: 30px;
    }
    .container4{
        width: 100%;
        margin-bottom: 30px;
    }
    .yellow{
        width: 100%;
        margin-bottom: 30px;
    }
}




