@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Neue Light"),
    url("/fonts/._334774_0_0.woff") format("woff");
}
* {
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
body {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    height: 100vh;
    overflow-x: hidden;
}
.body {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  height: calc(100vh - 60px);
    background-image: url("images/background.jpg");
}
header {
  min-height: 90px;
  height: 90px;
  max-height: 90px;
    display: flex;
}
header img {
    width: 100px;
}
footer {
  min-height: 60px;
  height: 60px;
  max-height: 60px;
 background: linear-gradient(-87deg, rgba(36, 137, 218, 0.99) 0%, rgba(48, 217, 242, 0.99) 100%);;
}
.content {


  flex: auto;
    display: flex;

}
.content h1 {
  font-size: 43px;
  font-weight: 700;
  color: #4255a6;
  max-width: 830px;
  margin-top: 69px;
}
.divider {
  display: flex;

  flex-direction: row;

  justify-content: space-between;
    height: 100%;
}
.divider .main {
  flex: 0 0 460px;
    position: relative;
}
.divider .main h3 {
  font-size: 30px;

  font-weight: 300;

  color: #022f54;
    margin-top: 59px;
}
.divider .main ul {
    margin-top: 64px;
    font-size: 20px;
    color: #4255a6;
    font-weight: 300;
    list-style-position: inside;

}
.divider .main ul li{
    margin-top: 20px;
}
.divider .main ul li span{
    color: #022f54 ;

}

.divider .main .available {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 53px;
}
.divider .main .available p{
    width: 100%;
    max-width: 100%;
    color: #1172be;
    min-width: 100%;
    font-size: 19px;
}
.divider .main .available a{
    width: 153px;

    height: 60px;

    display: flex;

    border-radius: 30px;

    justify-content: space-around;

    align-content: center;

    align-items: center;

    text-decoration: none;

    color:
            white;

    font-size: 18px;

    margin-top: 15px;
    transition: all .1s;
    padding-left: 10px;
}
.divider .main a.supportedBtn{
    width: 303px;

    height: 72px;

    display: flex;

    background:
            #5fd20b;

    border-radius: 36px;

    justify-content: space-around;

    align-content: center;

    align-items: center;

    text-decoration: none;

    color:
            white;

    font-size: 24px;

    margin-top: 77px;
    transition: background-color .1s;
}
.divider .main a.supportedBtn:hover {
    background:
            #6de315;
}
.divider .main .available a.firefox {
    background: linear-gradient(-87deg, rgba(36, 137, 218, 0.99) 0%, rgba(48, 217, 242, 0.99) 100%);
}
.divider .main .available a.chrome {
    margin-right: 17px;
    background: linear-gradient(-87deg, rgba(14, 193, 22, 0.99) 0%, rgba(31, 181, 56, 0.99) 100%);
}
.divider .main a:hover {
    /*background:*/
    /*        linear-gradient(-87deg, rgba(14, 193, 22, 0.99) 0%, rgba(31, 181, 56, 0.99) 100%);*/
    filter: brightness(103%);
}
.divider .main .available a img{
    margin-left: 7px;
}
.divider .side{
    position: relative;
    width: 100%;
    height: 100%;
}
.divider .side img{
    position: absolute;
    bottom: 0
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #e9f1ff;
    font-size: 12px;
    height: 100%;
    align-items: center;
}
footer .container .links{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
footer .container .links a{
    margin-left: 20px;

    color: #e9f1ff;
    text-decoration: none;

}
footer .container .links a:hover{
    text-decoration: underline;
}
.container {
  width: 1119px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
    display: flex;

    flex-direction: column;
}
@media screen and (min-height: 723px) {
    .body {
        height: calc(100vh - 60px);
    }
}