body{
    margin: 0;
}

@font-face {
    font-family: "Montserrat";
    src: local("Montserrat-light"),
      url("./Fonts/MONTSERRAT-LIGHT.TTF") format("truetype");
    font-weight: 100;
  }
  
  @font-face {
    font-family: "Montserrat";
    src: local("Montserrat-SemiBold"),
      url("./Fonts/MONTSERRAT-SEMIBOLD.TTF") format("truetype");
    font-weight: 300;
  }
  
  @font-face {
    font-family: "Arial";
    src: local("Arial-Regular"), url("./Fonts/ARIAL.TTF") format("truetype");
    font-weight: 300;
  }

.header {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
    background-image: url("./Images/bg.jpg");
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header h1 {
    color: #fff;
  font-family: "Montserrat";
  font-weight: 300;
  font-size: 50px;
  margin-top: auto;
  padding: 10%;
  text-align: center;
  text-shadow: 0px 0px 30px #000;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    padding-top: 1% !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,212,255,0) 100%);
  }
  
  nav div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 70%;
  }
  
  nav a {
    color: #fff !important;
    font-family: "Montserrat";
    font-weight: 100;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    nav a {
      font-size: 2vw;
    }
  }
  
  nav a:hover {
    opacity: 0.5;
  }
  
  nav img {
    width: 20%;
  }

  .about,
  .partners,
  .services,
  .contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    margin: auto;
    padding-top: 3%;
  }
  
  .aboutContent {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  
  @media (max-width: 426px) {
    .aboutContent {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .aboutText {
      width: 100% !important;
    }
  }
  
  .aboutText {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
  }
  
  .aboutGallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .aboutGallery img {
    width: 23%;
  }
  
  @media (max-width: 426px) {
    .aboutGallery {
      display: none;
    }
  
    .mainPhoto {
      margin-left: 0% !important;
      width: 60% !important;
    }
  }
  
  .mainPhoto {
    width: 40%;
    margin-left: 7%;
  }
  
  .about h1,
  .partners h1,
  .services h1,
  .contacts h1 {
    color: #150578;
    font-family: "Montserrat";
    font-weight: 300;
    font-size: 40px;
    border-bottom: 2px solid #150578;
    width: 100%;
  }
  
  @media (max-width: 426px) {
    .about h1,
    .partners h1,
    .services h1,
    .contacts h1 {
      font-size: 30px;
      text-align: center;
    }
  }
  
  .about p,
  .partners p,
  .services p,
  .contacts p {
    color: #000;
    text-align: left;
    font-family: "Arial";
    font-size: 20px;
    line-height: 183%;
  }
  
  @media (max-width: 426px) {
    .about p,
    .partners p,
    .services p,
    .contacts p {
      font-size: 16px;
      text-align: center;
    }
  }
  
  .partners div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .partners img {
    width: 15%;
  }
  
  @media(max-width: 426px) {
    .partners div{
      flex-direction: column;
      align-items: center;
    }
  
    .partners img {
      width: 100%;
      margin-top: 5%;
    }
  }
  
  .cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2%;
  }
  
  .card p {
    font-size: 25px;
    margin-left: 5%;
  }
  
  .card img {
    width: 10%;
  }
  
  @media (max-width: 426px) {
    .card {
      flex-direction: column;
    }
  
    .card p {
      font-size: 15px;
      margin-left: 0%;
    }
  
    .card img {
      width: 30%;
    }
  
    .contacts {
      align-items: center;
    }
  }
  
  
  .footer {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
    margin: auto;
    padding-top: 3%;
  }
  
  .footer p {
    font-family: "Montserrat";
    font-weight: 100;
    margin-left: 3%;
  }
  
  .footer img {
      width:3.5%;
  }
  
  @media (max-width: 426px) {
    .footer img {
      width: 25%;
    }
  }
  
  .footerNav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: 100%;
    margin: auto;
    padding-left: 20%;
  }
  
  .footerNav a {
    color: #000 !important;
    font-family: "Montserrat";
    font-weight: 100;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .footerNav a {
      font-size: 2vw;
    }
  }
  
  .footerNav a:hover {
    opacity: 0.5;
  }
  
  @media(max-width:426px) {
    .footer {
      width: 90%;
    }
  
    .footerNav {
      padding-left: 3%;
    }
  
    .footerNav a {
      font-size: 3vw;
    }
  }
    