* {
  padding: 0;
  margin: 0;
  border: none;
  text-decoration: none;
}

body {
  font-family: 'Nunito', sans-serif;
} 

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
  justify-content: center;
  align-items: center;
}

.banner-page {
  box-sizing: border-box;
  width: 100%;
}

.logo-image {
  max-width: 300px;
}

.logo-octaviano {
  max-width: 200px;
}

.ans-logo {
  max-width: 200px;
}

.home-banner {
  flex-grow: 1;
  height: 100%;
  gap: 25px;
  padding: 30px;
  background-color: #F8EDD1;
  border-bottom: 10px solid #F5811F;
}

.banner-main {
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.banner-image {
  width: 50%;
  height: 100%;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.banner-title-h1 {
  font-size: 40px;
  font-weight: 400;
  color: #2156A2;
}

.banner-link {
  color: #fff;  
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  background-color: #F5811F;
  border-radius: 50px;
  max-width: max-content;
  transition: 0.3s;
}

.banner-link:hover,
.banner-link:focus {
  background-color: #ffaa65;
  color: #fff;
}

.banner-span {
  font-size: 30px; 
  font-weight: 400;
  color: #F5811F;
}

.banner-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}

.page-title {
  margin-left: 20px;
}

.footer-info {
  display: flex;
  gap: 25px;
  align-items: center;
}

.address {
  font-size: 12px;
  width: 300px;
}

.banner-page{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  gap:25px;
  background-color: #F8F8F8;
}

.proclin-footer {
  padding: 0 70px;
}

.footer-info {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: end;
}

.aside-title {
  color: #2156A2;
  text-align: center;
  max-width: 300px;
}

.img {
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.logos {
  width: 100%;
  max-width: 400px;
}


@media (max-width: 1300px) {
  .banner-title-h1 {
    font-size: 24px;
  }
  
  .banner-span {
   font-size: 20px; 
  }
}


@media (max-width: 1000px) {
  .banner-main {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {

  .banner-page {
    padding: 20px 10px;
  }

  .banner-footer {
    align-self: center;
  }

  .footer-info {
    flex-direction: column;
  }

  .img {
    width: 300px;
  }

  .footer-info {
    justify-content: center;
  }

  .proclin-footer {
    padding: 10px 20px;
  }
}