.LOGO {
    height: 80px;
}
.city{
    size: 100%;
}
.header {
    background-color: #195551;
    margin: 0;
    width: 100%;
    padding: 10px 0;
    position: sticky;
    top: 0;
}

.header_under {
    margin: 0 auto;
    max-width: 1170px;
}

.header_under1 {
    margin: 0 auto;
    max-width: 1170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.head {
    display: flex;
    align-items: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    color: black;
}

a {
    text-decoration: none;
    color: white;
}


h1 {
    color: white;
}

h3{
    padding: 10px 0;
}

.wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
}

svg {
    fill: white;
    padding-bottom: 10px;
    transition: 0.1s linear
}

.nav1 {
    display: flex;
}

.btn a{
    background-color: white;
    padding: 5px;
    width: 178px;
    font-size: 14px;
    transition: 0.1s linear;
    border-radius: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s linear;
    margin-right: 20px;
    color: coral;
}

.btn a:hover{
    background-color: transparent;
    outline: solid coral;
    color: white;
}


.wrapper li {
    padding-left: 20px;
}


li a:hover {
    border-bottom: solid 2px rgba(255, 255, 255, 0.685);
    
}



svg:hover {
    fill:rgba(255, 255, 255, 0.685);
    padding-bottom: 6px;
}

.Button a{
    background-color: coral;
    padding: 5px;
    width: 178px;
    font-size: 14px;
    text-align: center;
    display: flex;
    transition: 0.1s linear;
    border-radius: 5px;
    height: 100%;
}

.Button a:hover{
    background-color: transparent;
    outline: solid coral;
}

.content{
    max-width: 1170px;
    margin: 0 auto;
    display: block;
    padding-top: 40px;
}
.content div div{
    background-color: white;
    width: 48%;
    display: block;
    border-radius: 10px;
    border: solid 5px #195551;
}

.content div{
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

li {
    text-align: justify !important;
}

.content h2, .content ul{
    margin: 40px;
    color: coral;
}

.content img{
    width: 200px;
    margin: 40px;
}

.content li{
    padding: 10px;
    font-size: 20px;
    margin-left: 40px;
    
}

body{
    background-color: #E6FCF5;
}

#footer svg{
    fill: black;
    padding-bottom: 10px;
    transition: 0.1s linear
}
.wrapper ul, #footer ul {
    list-style: none;
    display: flex;
    align-items: center;
}
#footer {
    background-color: #E6FCF5;
    padding-bottom: 60px;
}

.burger{
    display: none;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    z-index: 50;
    width: 35px;
    height: 25px;
    top: 5px;
    right: 20px;
}
.burger span {
    height: 4px;
    width: 100%;
    transform: scale(1);
    background-color: white;
}

.burger::before, .burger::after{
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease 0s;    
}

.burger::before {
    top: 0;
}
.burger::after{
    bottom: 0;
}

.burger.active span{
    transform: scale(0);
}
.burger.active {
    position: sticky;
    top: 20px;
}

.burger.active::before{
    top: 50%;
    transform: rotate(-45deg);
}
.burger.burger.active::after{
    top: 50%;
    transform: rotate(45deg);
}

.open {
    display: flex !important;
}

.blog_text{
    display: flex; 
    justify-content: space-between; 
    padding-top: 40px;
}

p{
    text-align: justify;
}

.blog_text p{
    padding: 10px 0 10px 0;
}

.blog_text li{
    margin-left: 20px;
    padding: 10px 0 10px 0;
}
@media screen and (max-width: 960px) {
    .btn a{
        width: 120px;
        font-size: 12px;
        margin-right: 10px;
    }
    .Button a {
        width: 120px;
        font-size: 12px;
    }
    .head div h3 span, .head div h1{
        font-size: 28px !important;
    }
    .head div h1 span{
        font-size: 35px !important;
    }
}

@media screen and (max-width: 768px){


    p{
        font-size: 15px !important;
    }
    
    h2{
        font-size: 18px !important;
        margin: 15px !important;
    }

    h1 {
        font-size: 28px !important;
    }
    li {
        font-size: 15px !important;
        padding-left: 0 !important;
    }

    .Button a {
        width: 110px !important;
        font-size: 12px !important;
    }
    .btn a{
        width: 110px;
        font-size: 12px;
        margin-right: 10px;
    }
    .head div h3 span, .head div h1{
        font-size: 20px !important;
    }
    .head div h1 span{
        font-size: 25px !important;
    }

}

@media screen and (max-width: 576px) {

    .header_under1{
        flex-direction: column !important;
    }
    .header_under1 div:first-child{
        padding-bottom: 10px;
    }

    #footer, #footer span{
        padding-bottom: 0;
        font-size: 8px !important;
    }

    .burger{
        display: flex;
    }
    .nav1{
        display: none;
        flex-direction: column;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0; bottom: 0; left: 0; right: 0;
        z-index: 3 !important;
        overflow-y: auto;
        padding: 50px 40px;
        background-color: #195551de;
        justify-content: center;
        align-items: center;
    }
    .nav1 ul{
        flex-direction: column;
        row-gap: 30px;
    }
    .nav1 svg{
        padding: 0 !important;
        width: 80px;
        height: 80px;
    }
    .Button a {
        width: 200px !important;
        height: 80px;
        align-items: center;
        margin-bottom: 30px;
        font-size: 20px !important;
    }

    .btn a{
        width: 200px !important;
        height: 80px;
        align-items: center;
        margin-bottom: 30px;
        font-size: 20px !important;
        margin-right: 0 !important;
    }
    .header {
        position: sticky;
        top: 0;
        z-index: 3;
    }
    h1 {
        font-size: 26px !important;
    }
    .head div h3 span, .head div h1{
        font-size: 18px !important;
        padding-left: 5px;
    }
    .head div h1 span{
        font-size: 25px !important;
    }
    .LOGO{
        padding-left: 20px;
    }
    .head div h1:last-of-type{
        text-indent: 2ch !important;
    }
    .content img{
        margin: 12px !important;
        width: 150px;
    }
    .content ul, .content li{
        margin: 10px !important;
    }
    .content div{
        padding-bottom: 20px !important;
    }
    li {
        padding-left: 0 !important;
    }

    .blog_text{
        margin: 20px !important;
        padding-top: 10px !important;
    }

    .blog_text div:last-child {
        display: none;
    }

    .blog_text div:first-child {
        width: 100% !important;
    }
}