
:root {
    --bg: #053C59;
    --text-color: #09090A;
  }


html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;

}

a {
  text-decoration: none;
  color: #1d8999;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    box-shadow: 0px 3px 20px 6px #EEE;
    position: sticky;
    top: 0;
    background-color: white;
}

.slogan {
    margin-left: 30px;
    text-align: right;
}

.header-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    color: #585B5E;
    font-size: 18px;
}

main {
    flex-grow: 1;
}

footer {
    background: #09090A;
}

.footer-cont {
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
    padding:20px 5px;
    row-gap: 18px;
}

.email-link {
    color: #1d8999;
    font-size: 18px;
}

.main-page {
    max-width: 1280px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.main-page > p{
    margin-bottom: 30px;
}

.main-page > img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}

h1 {
    color: #053C59;
    margin-bottom: 30px;
}


@media (max-width: 900px) {
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
      }
}

@media (max-width: 550px) {
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-cont {
        row-gap: 10px;
    }

    .logo {
        width: 132px !important;
    }

    .header-cont {
        font-size: 14px;
        height: 80px ;
    }
}