*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    width: 100%;
    min-height: 100px;
    background-color: #0074D9;
    position: fixed;
}
.container {
    max-width: 1170px;
    width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.box{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a img{
    height: 109px;;
}
.info ul li{
    list-style: none;
    color: white;
}
.info ul li i{
    line-height: 2.5;
    margin-right: 20px;
    cursor: pointer;
}
menu{
    width: 100%;
    min-height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
menu ul{
    width: 100%;
    min-height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
menu ul li{
    min-height: 45px;
    list-style: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}
menu ul li:hover{
    transition: 0.9s;
    color: rgb(253, 0, 198);
}
.home a:hover{
    transition: 0.9s;
    color: rgb(253, 0, 198);
}
.home a{
    text-decoration: none;
    color: white;
}
.menu1{
    width: 170px;
    height: auto;
    transition: .3s;
    position: absolute;
    bottom: -135px;
    display: none;
}
.menu1>li {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    list-style: none;
    background-color: #035399;
    border: 2px solid black;
    border-radius: 5px;
    position: relative;
}
menu ul>li:hover .menu1{
    display: block;
}
.menu1>li:hover{
    background-color: #2582d4;
}
.menu2{
    width: 110px;
    height: auto;
    transition: .3s;
    position: absolute;
    bottom: -90px;
    display: none;
}
.menu2>li {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    list-style: none;
    background-color: #035399;
    border: 2px solid black;
    border-radius: 5px;
    position: relative;
}
menu ul>li:hover .menu2{
    display: block;
}
.menu2>li:hover{
    background-color: #2582d4;
}
.section1{
    width: 100%;
    min-height: 800px;
    background-image: url(img/2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
footer{
    width: 100%;
    min-height: 120px;
    background-color: #02315a;
}
.footer1{
    width: 100%;
    min-height: 140px;
    display: flex;
    justify-content: space-between;
}
.footer_logo{
    width: 50%;
    height: 140px;
    display: flex;
}
.logoo img:hover{
    cursor: pointer;
}
.footer_info{
    display: flex;
    align-items: center;
    color: white;
}
.footer_social{
    width: 10%;
    height: 140px;
    display: flex;
    align-items: center;
}
.instagram img{
    margin: 0 10px;
}