@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins&family=Roboto&display=swap");
:root {
  --base-fontcl-1:#69B9FF;
  --base-fontcl-2: #676770;
  --base-fontfam: "Open Sans", sans-serif;
}

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

body {
  background-color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  padding: 1em 0em;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  z-index: 100;
}
.header nav {
  display: flex;
  justify-content: space-between;
  padding: 0% 20%;
  position: relative;
}
.header nav .logo {
  animation-name: logo;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-direction: reverse;
}
.header nav .logo a {
  font-family: var(--base-fontfam);
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 4px;
  text-align: left;
  color: var(--base-fontcl-1);
  text-transform: uppercase;
  text-decoration: none;
}
.header nav .menu {
  animation-name: menu;
  animation-duration: 2s;
}
.header nav .menu .list {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.header nav .menu .list li + li {
  padding-left: 40px;
}
.header nav .menu .list li a {
  text-decoration: none;
  font-family: var(--base-fontfam);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--base-fontcl-2);
}
.header nav .menu .list li a:hover {
  color: var(--base-fontcl-1);
}
.header nav .dropdown {
  display: none;
  position: relative;
}
.header nav .dropdown .drop-menu {
  width: 25px;
  height: 25px;
  background: url("../img/menu-icon.png") no-repeat;
  background-size: cover;
  position: relative;
}
.header nav .dropdown .drop-menu .menu {
  list-style-type: none;
  position: absolute;
  display: none;
  padding: 3em;
}
.header nav .dropdown .drop-menu .menu li {
  padding: 0.5em 0.3em;
  text-align: center;
  line-height: 3em;
}
.header nav .dropdown .drop-menu .menu a {
  color: #fff;
  text-decoration: none;
  font-family: var(--base-fontfam);
}
.header nav .dropdown .drop-menu:hover {
  width: 200px;
  height: 100vh;
  background: none;
}
.header nav .dropdown .drop-menu:hover .menu {
  display: block;
  background-color: #4c4c4c;
  width: 100%;
  height: 100%;
  margin-top: -1em;
  margin-left: 2em;
}

.main-1 {
  max-width: 100%;
  padding: 10.5em 0em;
  background-image: url("../img/main-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-1 .main-1-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 60%;
  animation-name: first;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
}
.main-1 .main-1-text h2 {
  font-family: var(--base-fontfam);
  font-size: 59px;
  font-weight: 400;
  letter-spacing: 4px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2em;
}
.main-1 .main-1-text .main-1-buttons {
  display: flex;
  align-items: center;
}
.main-1 .main-1-text .main-1-buttons .b1 {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--base-fontfam);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 2px;
  text-align: center;
  width: 138px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 1.5em;
  transition: 0.5s;
}
.main-1 .main-1-text .main-1-buttons .b2 {
  width: 183px;
  height: 43px;
  background-color: transparent;
  border: 1px solid #fff;
  font-family: var(--base-fontfam);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 2px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: 0.5s;
}
.main-1 .main-1-text .main-1-buttons .b1:hover, .main-1 .main-1-text .main-1-buttons .b2:hover {
  background-color: var(--base-fontcl-1);
  color: #fff;
  border: none;
}

.main-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5em 0em;
}
.main-2 .main-2-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3em;
  animation: second-text 1.5s ease-in-out;
}
.main-2 .main-2-text h2 {
  font-family: var(--base-fontfam);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 5px;
  text-align: center;
  color: var(--base-fontcl-2);
  padding-bottom: 0.5em;
  text-transform: uppercase;
}
.main-2 .main-2-text h3 {
  font-family: var(--base-fontfam);
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 3px;
  text-align: center;
  color: var(--base-fontcl-2);
  text-transform: uppercase;
}
.main-2 .main-2-minblocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.main-2 .main-2-minblocks .minblock {
  width: 300px;
  height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #DCEBF7;
  border-radius: 4px;
  transition: 0.5s;
}
.main-2 .main-2-minblocks .minblock h4 {
  font-family: var(--base-fontfam);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 7px;
  text-align: center;
  color: var(--base-fontcl-2);
  padding-top: 1.5em;
  padding-bottom: 0.8em;
  text-transform: uppercase;
}
.main-2 .main-2-minblocks .minblock p {
  font-family: var(--base-fontfam);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #6A859C;
}
.main-2 .main-2-minblocks.animate {
  animation: second-blocks 1s ease-in-out forwards;
}

.main-3 {
  width: 100%;
  background: #192024;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 5em;
  padding-bottom: 4em;
}
.main-3 .main-3-text {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 3em;
}
.main-3 .main-3-text h2 {
  font-family: var(--base-fontfam);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8em;
}
.main-3 .main-3-text h3 {
  font-family: var(--base-fontfam);
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 3px;
  text-align: center;
  color: #E8E8E8;
  text-transform: uppercase;
}
.main-3 .main-3-text.animate {
  animation: third-text 1s ease-in-out forwards;
}
.main-3 .main-3-blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 1.5em;
}
.main-3 .main-3-blocks .main-3-fblock, .main-3 .main-3-blocks .main-3-sblock {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-3 .main-3-blocks .main-3-fblock h4, .main-3 .main-3-blocks .main-3-sblock h4 {
  font-family: var(--base-fontfam);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 7px;
  text-align: center;
  color: #fff;
  margin: 1em 0em;
  text-transform: uppercase;
}
.main-3 .main-3-blocks .main-3-fblock p, .main-3 .main-3-blocks .main-3-sblock p {
  font-family: var(--base-fontfam);
  width: 400px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5em;
}
.main-3 .main-3-blocks .main-3-fblock button, .main-3 .main-3-blocks .main-3-sblock button {
  width: 183px;
  height: 43px;
  background-color: transparent;
  border: 1px solid #fff;
  font-family: var(--base-fontfam);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 2px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: 0.5s;
}
.main-3 .main-3-blocks .main-3-fblock button:hover, .main-3 .main-3-blocks .main-3-sblock button:hover {
  background-color: var(--base-fontcl-1);
  color: #fff;
  border: none;
}
.main-3 .main-3-fblock.animate {
  animation: third-fblock 1.5s ease-in-out forwards;
}
.main-3 .main-3-sblock.animate {
  animation: third-sblock 1.5s ease-in-out forwards;
}

.main-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5em 0em;
}
.main-4 .main-4-header {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2em;
}
.main-4 .main-4-header h2 {
  font-family: var(--base-fontfam);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 5px;
  text-align: center;
  color: #676770;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.main-4 .main-4-header h3 {
  font-family: var(--base-fontfam);
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  color: #8E8E9C;
}
.main-4 .main-4-header.animate {
  animation: four-header 1s ease-in-out forwards;
}
.main-4 .main-4-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 3em;
}
.main-4 .main-4-buttons button + button {
  margin-left: 1em;
}
.main-4 .main-4-buttons button {
  width: 196px;
  height: 21px;
  font-family: var(--base-fontfam);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  background: #92A0AD;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.main-4 .main-4-buttons button:hover {
  background-color: var(--base-fontcl-1);
}
.main-4 .main-4-buttons.animate {
  animation: four-buttons 1s ease-in-out forwards;
}
.main-4 .main-4-images {
  margin-bottom: 1.5em;
}
.main-4 .main-4-images.animate {
  animation: four-block 1s ease-in-out forwards;
}
.main-4 .main-4-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-4 .main-4-text h3 {
  font-family: var(--base-fontfam);
  font-size: 31px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  color: #676770;
  margin-bottom: 0.5em;
}
.main-4 .main-4-text p {
  font-family: var(--base-fontfam);
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #6A859C;
}
.main-4 .main-4-text.animate {
  animation: four-text 1s ease-in-out forwards;
}
.main-4 .button {
  display: none;
  background-color: #676770;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--base-fontfam);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 2px;
  text-align: center;
  width: 138px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 1.5em;
  transition: 0.5s;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5em;
}
.footer .footer-blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 1em;
}
.footer .footer-blocks .footer-block1 {
  display: inline-flex;
  flex-direction: column;
}
.footer .footer-blocks .footer-block1 h2 {
  font-family: var(--base-fontfam);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: left;
  color: #676770;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}
.footer .footer-blocks .footer-block1 p {
  font-family: var(--base-fontfam);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #6A859C;
  width: 300px;
  margin-top: 10px;
}
.footer .footer-blocks .footer-block2 {
  display: inline-flex;
  flex-direction: column;
}
.footer .footer-blocks .footer-block2 a:hover {
  color: var(--base-fontcl-1);
}
.footer .footer-blocks .footer-block2 h3 {
  font-family: var(--base-fontfam);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: left;
  color: #676770;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}
.footer .footer-blocks .footer-block2 a {
  font-family: var(--base-fontfam);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #668CAD;
  padding: 5px 0px 0.5em 0px;
  border-bottom: 1px solid #DCEBF7;
  text-decoration: none;
  width: 270px;
}
.footer .footer-blocks .footer-block3 {
  display: inline-flex;
  flex-direction: column;
}
.footer .footer-blocks .footer-block3 h3 {
  font-family: var(--base-fontfam);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: left;
  color: #676770;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}
.footer .footer-blocks .footer-block3 .social {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
}
.footer .footer-blocks .footer-block3 .social a {
  font-family: var(--base-fontfam);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #668CAD;
  padding: 5px 0px 0.5em 0px;
  border-bottom: 1px solid #DCEBF7;
  text-decoration: none;
  margin-left: 1em;
  width: 270px;
}
.footer .footer-blocks .footer-block3 .social a:hover {
  color: var(--base-fontcl-1);
}
.footer .footer-blocks .footer-block3 .social img {
  opacity: 0.7;
}
.footer .footer-blocks .footer-block3 .social img:hover {
  cursor: pointer;
  opacity: 1;
}
.footer .footer-blocks.animate {
  animation: footer-anim 1s ease-in-out forwards;
}

.footer-end {
  width: 100%;
  background-color: #383838;
  padding: 2em 0em;
}
.footer-end h3 {
  font-family: var(--base-fontfam);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #9E9E9E;
}
.footer-end .end.animate {
  animation: end-text 0.5s ease-in-out forwards;
}

@media screen and (max-width: 1250px) {
  .main-1 {
    padding: 8em 0em;
  }
}
@media screen and (max-width: 1100px) {
  .main-1 {
    padding: 6em 0em;
  }
}
@media screen and (min-width: 1000px) {
  .main-2 .main-2-minblocks .minblock:hover {
    background-color: var(--base-fontcl-1);
    transform: scale(1.05);
    cursor: pointer;
  }
  .main-2 .main-2-minblocks .minblock:hover p, .main-2 .main-2-minblocks .minblock:hover h4 {
    color: #fff;
  }
}
@media screen and (max-width: 980px) {
  .main-1 .main-1-text h2 {
    margin-bottom: 1em;
  }
  .main-2 .main-2-minblocks .minblock {
    width: 250px;
    height: 240px;
  }
  .main-2 .main-2-minblocks .minblock h4 {
    font-size: 15px;
  }
  .main-2 .main-2-minblocks .minblock p {
    font-size: 12px;
  }
  .main-3 .main-3-blocks img {
    width: 380px;
    height: 237px;
  }
  .main-4 .main-4-images img {
    width: 800px;
    height: 487px;
  }
}
@media screen and (max-width: 940px) {
  .footer .footer-blocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
}
@media screen and (max-width: 890px) {
  .main-1 .main-1-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 850px) {
  .main-1 {
    background-size: unset;
    height: 500px;
  }
  .main-2 .main-2-minblocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin: 0;
  }
  .main-3 .main-3-blocks img {
    width: 330px;
    height: 187px;
  }
  .main-3 .main-3-blocks .main-3-block h4 {
    font-size: 15px;
  }
  .main-3 .main-3-blocks .main-3-block p {
    font-size: 10px;
    line-height: 20px;
    width: 300px;
  }
  .main-4 .main-4-images img {
    width: 723px;
    height: 400px;
  }
  .footer {
    border-top: 1px solid black;
    padding-top: 2em;
  }
}
@media screen and (max-width: 745px) {
  .main-1 .main-1-text h2 {
    margin-bottom: 1em;
  }
  .main-4 .main-4-images img {
    width: 583px;
    height: 400px;
  }
}
@media screen and (max-width: 710px) {
  .main-3 .main-3-blocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
  .main-3 .main-3-blocks div + div {
    border-top: 1px solid #fff;
    width: 100%;
    padding-top: 2em;
  }
  .main-3 .main-3-blocks img {
    width: 330px;
    height: 187px;
  }
  .main-3 .main-3-blocks .main-3-block h4 {
    font-size: 20px;
  }
  .main-3 .main-3-blocks .main-3-block p {
    font-size: 14px;
    line-height: 25px;
    width: 400px;
  }
  .main-4 .main-4-text {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .header nav .menu {
    display: none;
  }
  .header nav .dropdown {
    display: block;
    position: absolute;
    right: 0;
    margin-right: 2em;
  }
  .main-4 .main-4-buttons button {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .main-4 .main-4-text {
    width: 60%;
  }
  .main-4 .main-4-images img {
    width: 500px;
    height: 400px;
  }
}
@media screen and (max-width: 520px) {
  .main-4 .main-4-buttons button {
    width: 130px;
    font-size: 13px;
  }
  .main-4 .main-4-images img {
    width: 400px;
    height: 300px;
  }
  .main-4 .main-4-text {
    display: none;
  }
  .main-4 .button {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .main-2 .main-2-minblocks div + div {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 440px) {
  .main-3 .main-3-blocks .main-3-block h4 {
    font-size: 15px;
  }
  .main-3 .main-3-blocks .main-3-block p {
    font-size: 11px;
    line-height: 25px;
    width: 400px;
    width: 80%;
  }
  .main-4 .main-4-buttons button {
    width: 100px;
    font-size: 10px;
  }
  .main-4 .main-4-images img {
    width: 350px;
    height: 270px;
  }
}
@media screen and (max-width: 360px) {
  .main-1 .main-1-text .main-1-buttons .b1 {
    width: 120px;
    height: 43px;
  }
  .main-1 .main-1-text .main-1-buttons .b2 {
    width: 130px;
  }
  .main-3 .main-3-text h2 {
    font-size: 25px;
  }
  .main-3 .main-3-text h3 {
    font-size: 14px;
  }
  .main-3 .main-3-blocks .main-3-block img {
    width: 270px;
    height: 157px;
  }
  .main-3 .main-3-blocks .main-3-block h4 {
    font-size: 15px;
  }
  .main-3 .main-3-blocks .main-3-block p {
    font-size: 10px;
    line-height: 25px;
    width: 400px;
    width: 80%;
  }
  .main-4 .main-4-header h2 {
    font-size: 20px;
  }
  .main-4 .main-4-header h3 {
    font-size: 10px;
  }
  .main-4 .main-4-images img {
    width: 300px;
    height: 250px;
  }
}
@keyframes logo {
  0% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(-200px);
  }
}
@media screen and (min-width: 645px) {
  @keyframes menu {
    0% {
      opacity: 0;
      transform: translateX(200px);
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
  }
}
@keyframes first {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes second-text {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  @keyframes second-blocks {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
@media screen and (max-width: 1100px) {
  .main-2 .main-2-minblocks {
    animation: anim-mob 1.5s ease-in-out forwards;
  }
  @keyframes anim-mob {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
@keyframes third-text {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes third-fblock {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes third-sblock {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes four-header {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes four-buttons {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes four-block {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes four-text {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes footer-anim {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes end-text {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=basic.css.map */