body{
    font-family: "Noto Sans", sans-serif;
    padding: 0px;
    margin: 0px;
}
.container{
    max-width: 1340px;
    margin: 0 auto;
    padding: 0px 20px;
}
header{
    padding: 45px 0px 35px;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    a{
        img{
            max-width: 148px;
        }
    }
    .lang_wrap{
        display: flex;
        align-items: center;
        button{
            border: 0px;
            color: #005879;
            font-size: 20px;
            background: transparent;
            line-height: 18px;
            display: inline-block;
            padding: 0px 15px;
            cursor: pointer;
            &:hover{
                color: #2b2b2b;
            }
            &.active{
                font-weight: 600;
            }
            &:last-child{
                padding-right: 0px;
                border-left: 1px solid #005879;
            }
        }
    }
    .lang_wrap a:link,
    .lang_wrap a:active,
    .lang_wrap a:hover,
    .lang_wrap a:visited {
        text-decoration: none;
        color: #005879;
    }
}
.content{
    padding: 50px 0px 12px;
    p {
        font-size: 1.1rem;
        line-height: 38px;
        color: #2b2b2b;
        margin: 0px 0px 32px;
    }
    h5{
        margin: 0px 0px 17px;
        font-weight: 700;
        font-size: 16px;
    }
}
footer{
    h3{
        font-size: 44px;
        margin: 0px 0px 42px;
    }
    .row{
        display: flex;
        justify-content: space-between;
        padding-bottom: 115px;
        h5{
            margin: 0px 0px 24px;
            font-size: 26px;
        }
        .col{
            font-size: 18px;   
            a{
                text-decoration: none;
                color: #2b2b2b;
                line-height: 30px;
                display: block;
            }
            div {
                a{
                    display: inline-block;
                }
            }
        }
    }
    .copyright{
        background: #366d73;
        padding: 24px 0px 22px;
        .container{
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            p{
                margin: 0px;
                font-size: 13px;
                font-weight: 400;
            }
            ul{
                padding: 0px;
                margin: 0px;
                list-style: none;
                display: flex;
                align-items: center;
                li{
                    margin-right: 30px;
                    &:last-child{
                        margin-right: 0px;
                    }
                    a{
                        text-decoration: none;
                        text-transform: uppercase;
                        font-size: 15px;
                        color: #fff;
                        font-weight: 500;
                    }
                }
            }
        }
    }
}

.privacy_policy{
    .content{
        padding: 25px 0px 100px;
        h3{
            margin: 0px 0px 0px;
            font-size: 32px;
        }
        .date{
            margin: 24px 0px 24px;
        }
        p{
            margin: 0px 0px 20px;
            font-size: 16px;
            line-height: 25px;
        }
    }
}
@media screen and (max-width: 1120px) {
    footer {
        & .row {
          flex-direction: column;
          justify-content: left;
          padding-bottom: 30px;
        } & .col {
            padding-bottom: 30px;
        }
      }
}
footer {
    & .copyright {
      & .container {
        flex-direction: column;
        justify-content: left;
        padding-bottom: 0;
        & ul {
            flex-direction: column;
            justify-content: left;
            padding-bottom: 30px;
            padding-top:8px;
          }
      }
    }
  }
footer {
& .copyright {
    & .container {
    & ul {
        & li {
        margin-right: 0;
        }
    }
    }
}
}
@media screen and (min-width: 730px) {
  body footer .copyright .container,
  body footer .copyright .container ul {
        flex-direction: row;
        justify-content: space-between !important;
  }
  body footer .copyright .container ul > li {
        margin-right:20px;
  }
  body footer .copyright .container ul {
        padding-bottom: 0;
  }
}