*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    display: grid;
    grid-template: 600px 500px 600px 500px 600px 500px 200px/1fr;
    position: relative;
}
.size{
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.header{
    background-image: url(first-section-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
   
}
.check{
    width: 50px;
    height: 50px;
    position: relative;
    margin-top: 20px;
}

#ch{
    width: 50px;
    height: 50px;
    appearance: none;
    overflow: hidden;
    transition-duration: 1s;
}
#ch:checked ~ .menu{
    display: block;
}
#ch:checked:after{
    transform: rotate(225deg);
    top: 17px;
}
#ch:checked:before{
    transform: rotate(-225deg);
    top: 17px;
}
#ch:checked ~ .line2{
    display: none;
}
#ch::after{
    content:'' ;
    width: 40px;
    border:5px solid white;
    position: absolute;
    top: 0;
    border-radius: 20px;
    transition-duration: 1s;
    cursor: pointer;
}
.line2{
    width: 50px;
    border:5px solid white;
    position: absolute;
    top: 20px;
    border-radius: 20px;
    cursor: pointer;
}
#ch::before{
    content:'' ;
    width: 40px;
    border:5px solid white;
    position: absolute;
    top: 40px;
    border-radius: 20px;
    transition-duration: 1s;
    cursor: pointer;
}
.menu{
    width: 150px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50px;
    left:50px;
    display: none;
}
.menu>li{
    list-style-type: none;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-family: cursive;
    width: 150px;
    height: 40px;
    padding-top: 5px;
    background-color: #1e2736;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    transition-duration:1s;
}
.menu>li:hover{
    transform: scale(1.2);
    cursor: pointer; 
    background-color: white;
    color: #2C3440 ;
    border: 2px solid #2C3440 ;
    border-radius: 20px;
    transform: rotate(360deg) scale(1.3);
}
.head_text{
    width: 40%;
    height: 200px;
    text-align: right;
    color: white;
    position: absolute;
    right: 0;
    top: 200px;
}
.head_h{
    font-size: 45px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
}
.head_h:hover{
    transition-duration: 1s;
    transform: translateX(-300px) scale(1.5);
    color: rgb(225, 225, 225);
}
.head_line{
    width: 70px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    right: 0;
    border-radius: 20px;
    margin: 10px 0;
    position: absolute;
}
.head_p{
    font-size: 16px;
    text-transform: uppercase;
    font-family: sans-serif;
    padding-top: 40px;
}
.head_p:hover{
    transition-duration: 1s;
    transform: translateX(-300px) scale(1.5);
    color: rgb(225, 225, 225);
}
.main{
    width: 90%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.main_items{
    width: 24%;
    height: 300px;
    /* outline: 1px solid black; */
    text-align: center;
}
.main_icon1{
    width: 100px;
    height: 100px;
    background-image: url(first-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    opacity: 50%;
}
.main_icon1:hover{
    transition-duration: 1s;
    cursor: pointer;
    transform: scale(1.4) rotate(360deg);
    opacity: 100%;
}
.main_icon2{
    width: 100px;
    height: 100px;
    background-image: url(second-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    opacity: 50%;
}
.main_icon2:hover{
    transition-duration: 1s;
    cursor: pointer;
    transform: scale(1.4) rotate(-360deg);
    opacity: 100%;
}
.main_icon3{
    width: 100px;
    height: 100px;
    background-image: url(third-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    opacity: 50%;
}
.main_icon3:hover{
    transition-duration: 1s;
    cursor: pointer;
    transform: scale(1.4) rotate(360deg);
    opacity: 100%;
}
.main_icon4{
    width: 100px;
    height: 100px;
    background-image: url(fourth-icon.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    opacity: 50%;
}
.main_icon4:hover{
    transition-duration: 1s;
    cursor: pointer;
    transform: scale(1.4) rotate(-360deg);
    opacity: 100%;
}
.main_h{
    text-transform: capitalize;
    color: rgb(15, 15, 159);
    font-weight: normal;
    padding: 20px 0;
}
.main_h:hover{
    transition-duration: 0.5s;
    color: rgb(0, 238, 255);
    transform: scale(1.2);
}
.main_p{
    color: #1e2736a3;
    line-height: 20px;
}
.article1{
    background-image: url(third-section-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.art1_cont{
    width: 100%;
    height: 250px;
    margin: 150px auto;
    display: flex;
    justify-content: flex-start;
}
.art1_img{
    width: 20%;
    height: 250px;
    background-image: url(left-image.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 70%;
}
.art1_img:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: rotate(360deg) scale(1.2);
    opacity: 100%;
}
.art1_text{
    width: 60%;
    height: 150px;
    margin: 50px 40px;
    color: white;
    text-align: left;
}
.art1_p1{
    text-transform: uppercase;
    font-size: 18px;
    font-family: sans-serif;
}
.art1_p1:hover{
    transition-duration:1s ;
    color: black;
    transform: translate(300px) scale(1.5);
}
.art1_h{
    text-transform: uppercase;
    font-family: sans-serif;
}
.art1_h:hover{
    transition-duration:1s ;
    color: black;
    transform: translate(300px) scale(1.5);
}
.art1_p2{
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.section{
    background-image: url(fourth-section-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.sect_cont{
    width: 80%;
    height: 300px;
    display: flex;
    flex-flow: row wrap;
    margin-top: 100px;
}
.sect_items{
    width: 25%;
    height: 300px;
}
.sect_item4{
    width: 25%;
    height: 300px;
    background-color: #182a49;
    text-align: center;
}
.sect_img1{
    width: 100%;
    height: 220px;
    background-image: url(first-item.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.sect_img1:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: skew(20deg) scale(1.2);
}
.sect_img2{
    width: 100%;
    height: 220px;
    background-image: url(second-item.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.sect_img2:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: skew(20deg) scale(1.2);
}
.sect_img3{
    width: 100%;
    height: 220px;
    background-image: url(third-item.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.sect_img3:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: skew(20deg) scale(1.2);
}
.sect_text1{
    width: 100%;
    height: 80px;
    background-color: #F4F4F4;
    padding: 20px;
}
.sect_text2{
    width: 100%;
    height: 80px;
    background-color:#EAEAEA;
    padding: 20px;
}
.sect_text3{
    width: 100%;
    height: 80px;
    background-color: #DEDEDE;
    padding: 20px;
}
.sect_p1{
    text-transform: capitalize;
    color: gray;
}
.sect_h{
    text-transform: capitalize;
}
.sect_p2{
    color: white;
    padding-top: 100px;
    font-family: cursive;
}
.sect_inp{
    width: 120px;
    height: 30px;
    color: #182a49;
    border-radius: 20px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}
.sect_inp:hover{
    transition-duration: 1s;
    cursor: pointer;
    background-color: #182a49;
    color: white;
    border: 1px solid white;
    transform: scale(1.5);
}
.article2{
    background-image: url(fivth-section-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.art2_cont{
    width: 100%;
    height: 250px;
    margin: 150px auto;
    display: flex;
    justify-content: center;
}
.art2_img{
    width: 20%;
    height: 250px;
    background-image: url(right-image.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 70%;
}
.art2_img:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: rotate(-360deg) scale(1.2);
    opacity: 100%;
}
.art2_text{
    width: 60%;
    height: 150px;
    margin: 50px 40px;
    color: white;
    text-align: right;
}
.art2_p1{
    text-transform: uppercase;
    font-size: 18px;
    font-family: sans-serif;
}
.art2_p1:hover{
    transition-duration:1s ;
    color: black;
    transform: translate(-300px) scale(1.5);
}
.art2_h{
    text-transform: uppercase;
    font-family: sans-serif;
}
.art2_h:hover{
    transition-duration:1s ;
    color: black;
    transform: translate(-300px) scale(1.5);
}
.art2_p2{
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.article3{
    background-image: url(sixth-section-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.art3_cont{
    width: 80%;
    height: 400px;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.art3_inputs{
    width: 60%;
    height: 400px;
}
.art3_inp1{
    width: 45%;
    height: 40px;
    border: 1px solid rgba(206, 205, 205, 0.5);
    border-radius: 20px;
    box-shadow: inset 2px 2px 2px 2px rgb(206, 205, 205);
    padding: 15px;
}
.art3_inp2{
    width: 45%;
    height: 40px;
    border: 1px solid rgba(206, 205, 205, 0.5);
    border-radius: 20px;
    box-shadow: inset 2px 2px 2px 2px rgb(206, 205, 205);  
    padding: 15px;
    margin-left: 40px;
}
.art3_inp3{
    width: 97%;
    height: 200px;
    border: 1px solid rgb(198, 195, 195);
    border-radius: 20px;
    box-shadow: inset 1px 1px 1px 1px rgb(189, 186, 186);  
    padding: 15px;
    margin-top: 40px;
}
.art3_inp4{
    width: 150px;
    height: 40px;
    background-color:#3b5d98 ;
    color: white;
    border-radius: 20px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}
.art3_inp4:hover{
    transition-duration: 1s;
    cursor: pointer;
    background-color: white;
    color: #3b5d98;
    border: 1px solid #3b5d98;
    transform: scale(1.2) translateX(15px);
}
.art3_icons{
    width: 40%;
    height: 400px;
}
.art3_icon{
    width: 50px;
    height: 50px;
    border: 1px solid #3b5d98;
    display: inline-block;
    color: #3b5d98;
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 20px;
    margin-left: 50px;
}
.art3_icon:hover{
    cursor: pointer;
    transition-duration: 0.5s;
    transform: scale(1.2);
}
.art3_p{
    color: #3b5d98;
    display: inline-block;
    font-weight: bold;
    padding-left:10px ;
}
.footer{
    background-image: url(footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;
    color: white;
}
.foot_icons{
    width: 350px;
    height: 50px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
.foot_icon{
    width: 50px;
    height: 50px;
    background-color: white;
    color: #3b5d98;
    padding: 16px;
    border-radius: 50%;
}
.foot_icon:hover{
    cursor: pointer;
    transition-duration: 1s;
    transform: scale(1.3) rotate(360deg);
    background-color: #3b5d98 ;
    color: white;
    border: 1px solid white;
}
.foot_p{
    text-transform: capitalize;
    font-weight: bold;
    padding-top: 20px;
}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    color:#2C3440 ;
}