@font-face {
  font-family: "Lato";
  font-style: "normal";
  font-weight: 300;
  src: url(../fonts/Lato-Thin.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  font-style: "normal";
  font-weight: 400;
  src: url(../fonts/Lato-Regular.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  font-style: "normal";
  font-weight: 600;
  src: url(../fonts/Lato-Black.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  font-style: "normal";
  font-weight: 700;
  src: url(../fonts/Lato-Bold.woff2) format('woff2');
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #0359A2;
  color: #fff;
}


@media (min-width: 320px) {
  html {
    background: url(img/BgS.png);
  }
}


@media (min-width: 768px) {
  html {
    background: url(img/BgM.png);
  }
}


@media (min-width: 992px) {
  html {
    background: url(img/BgL.png);
  }
}


@media (min-width: 1200px) {
  html {
    background: url(img/Bg.png);
  }
}


html {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

body {
  font-family: 'Lato';
}


.home {
  display: flex;
  background-size: cover;
  max-width: 100%;
  height: 840px;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
}

@media (min-width: 320px) {
  img {
    width: 235.38px;
    height: 80px;
  }
}

@media (min-width: 992px) {
  img {
    width: 306px;
    height: 104px;

  }
}

@media (min-width: 320px) {
  .logo {
    width: 235.38px;
    height: 80px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .logo {
    width: 306px;
    height: 104px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (min-width: 320px) {
  .title {
    width: 328px;
    font-size: 31px;
    line-height: 44px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .title {
    width: 554px;
    font-size: 50px;
    line-height: 75px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .title {
    width: 720px;
    font-size: 65px;
    line-height: 75px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.title {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  align-items: center;
  letter-spacing: 0%;
  text-align: center;
}

.content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 1110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 360px) {
  .blog__text {
    width: 328px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .blog__text {
    width: 594px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .blog__text {
    width: 720px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}


.blog__text {
  display: flex;
  height: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  letter-spacing: 0%;
  text-align: center;
}

@media (min-width: 320px) {
  .blog__text1 {
    font-size: 24px;
    font-style: bold;
    font-weight: 700;
    line-height: 32px;
  }
}

@media (min-width: 768px) {
  .blog__text1 {
    font-size: 30px;
    font-style: bold;
    font-weight: 700;
    line-height: 40px;
  }
}

@media (min-width: 992px) {
  .blog__text1 {
    font-size: 32px;
    font-style: bold;
    font-weight: 700;
    line-height: 40px;
  }
}

.blog__text1 {
  color: #ffffff;
  font-family: "Lato";
  align-items: center;
  text-decoration-line: none;
  letter-spacing: 0%;
  text-align: center;
}

@media (min-width: 320px) {
  .btn {
    width: 328px;
    height: 46px;
  }
}

@media (min-width: 768px) {
  .btn {
    width: 238px;
    height: 46px;
  }
}

.btn {
  border-radius: 50px;
  cursor: pointer;
  background: #FFAE4A;
  font-family: "Lato";
  font-size: 16px;
  font-style: bold;
  font-weight: 700;
  color: #ffffff;
  outline: none;
  transition: 1s ease-in-out;
}

svg {
  position: absolute;
  border-radius: 50px;
  left: 0;
  top: 0;
  fill: none;
  color: #121212;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

.btn:hover {
  transition: 1s ease-in-out;
  border-radius: 50px;
  background: #F78800;
  color: #ffffff;
  font-family: "Lato";
}

.btn:hover svg {
  stroke-dashoffset: -480;
  border-radius: 50px;
}