:root {
  --blue-color: #1b384a;
  --yellow-color: #edb03e;
  --white-color: #fcfcfc;
  --gray-color: #c9c9c9;
  --light-gray-color: #eeeeee;
  --dark-grad-color: #86bcc3;
  --light-grad-color: #c3d9cd;
}

body {
  margin: 0;
  font-family: Arial,Helvetica Neue,Helvetica,sans-serif; 
}

.btn {
  width: 200px;
  margin: 16px 0;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 20px 4px;
  display: inline-block;
  position:relative;
  border-radius: 4px;  
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 3px rgba(148, 148, 148, 0.808);
  font-weight: 900;
}

.btn--orange {
  color: var(--white-color);
  background-color: var(--yellow-color);
  transition: linear background-color 0.1s;
}

.btn--orange:hover{
  background-color: var(--blue-color);
}

.btn--blue {
  color: var(--white-color);
  background-color: var(--blue-color);
}

/* Fonts */
h1 { 
  font-size: 1.7rem; 
  font-style: normal; 
  font-variant: normal; 
  font-weight: 700; 
  line-height: 23px; 
} 

h3 { 
  font-size: 1.4rem; 
  font-style: normal; 
  font-variant: normal; 
  font-weight: 700; 
  line-height: 23px; 
} 

p { 
  font-size: 1rem; 
  font-style: normal; 
  font-variant: normal; 
  font-weight: 400; line-height: 23px; 
} 


.hero {
  display: block;
  position: relative;
}

.hero::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;
  background-image: linear-gradient(#86bcc3 60%, #c3d9cd);
}

.hero::after {
  content: "";
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(../images/hero-background.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto; 
}

.hero__logo-box {
  display: flex;
  justify-content: center;
  padding-top: 110px;
}

.hero__text-box {
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
  text-transform: uppercase;
  color: var(--blue-color);
  font-size: 10px;
  width: 400px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
 
}

.section-about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--white-color);
}

.section-about {
  position: relative;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--white-color);
}

.section-about::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;
  background-color: var(--blue-color);
}

.section-about::after {
  content: "";
  opacity: 0.1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(../images/about-background.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}

.about__photo {
  max-width: 100%;
}

@media only screen and (max-width: 786px) {
  
  .section-about .container {
      width:90%;
      margin:0% 5%;
  }
  .section-about .container > .about-container {
    width: 90%;
    max-width: 650px;
    margin: 5% 0%;
  }

  .about__photo {
      max-width: 70%;
  }
}

@media only screen and (min-width: 786px){
  .section-about .container > .about-container {
    width: 40%;
    margin:10% 0%;
  }

  .section-about .container {
      width:80%;
      margin:0% 10%;
  }
}

@media only screen and (min-width: 1200px){
  .section-about .container {
      width:1000px;
      margin:0% 10%;
  }
}

@media only screen and (max-width: 480px) {
    .hero{
        height: 500px;
    }
    .hero__logo-box{
      padding-top: 60px; 
  }
  .hero__logo {
      height: 60%;
      width: 60%;
  }
  .hero__text-box {
    width: 70%;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 480px) {
  .hero{
    height: 600px;
  }
  .hero__logo-box{
      padding-top: 40px; 
  }
  .hero__logo {
      height: 60%;
      width: 60%;
  }
  .hero__text-box {
    width: 70%;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 786px) { 
  .hero {
      height: 800px;
      padding-top: 90px; 
  }

  .hero__logo-box{
      max-width: 1000px;
      margin: 0 auto;
  }


  .hero__text-box {
      width: 400px;
      margin-bottom: 40px;
    }

  .hero__logo {
    height: 40%;
  }
}

@media only screen and (max-width: 786px) {
  h1 {
      font-size: 1.3rem;
  }
  h3 {
      font-size:1.1rem;
  }
}



.section-graduate {
  padding: 30px;
  background-color: var(--white-color);
}

.graduate__title {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  color: var(--gray-color);
  font-size: 18px;
  font-weight: 600;
}

.graduate__logo-container {
  display: flex;
  justify-content: center;
}

.graduate__logo {
  max-height: 50px;
  max-width: 500px;
  margin: 0 30px;
  opacity: 0.4;
}

.info {
  position: relative;
  margin: 30px 0;
  width: 100%;
}

.info__title {
  font-size: 18px;
  font-weight: 600;
}

.section-information {
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.information__text {
  text-align: center;
  width: 500px;
  color: var(--blue-color);
}

@media only screen and (max-width: 786px){
  .information__text {
    width: 90%;
    margin: 0 auto;
  }
}

#footer {
  background: var(--light-gray-color);
  color: var(--gray-color);
  padding: 3em 1em 3em 1em;
  text-align: center;
}

  #footer .icons a {
    -moz-transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    opacity: 0.35;
  }

    #footer .icons a:hover {
      opacity: 0.75;
    }

  #footer .copyright {
    line-height: 1em;
    margin: 2em 0 0 0;
    padding: 0;
    text-align: center;
  }

    #footer .copyright a {
      color: inherit;
    }

    #footer .copyright li {
      border-left: solid 1px #dddddd;
      display: inline-block;
      list-style: none;
      margin-left: 1em;
      margin-bottom: 10px;
      padding-left: 1em;
    }

      #footer .copyright li:first-child {
        border-left: 0;
        margin-left: 0;
        padding-left: 0;
      }


 /* Add a black background color to the top navigation */
.topnav {
  position: fixed;
  background-color: var(--dark-grad-color);
  top: 0;
  left: 0;
  z-index: 10;
  width:100%;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: var(--white-color);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: var(--light-grad-color);
  color: var(--blue-color);
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

.icon-container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 10px;
  height: 2px;
  background-color: var(--white-color);
  margin: 2px 0;
  transition: 0.4s;
}

.change .bar1 {
  /* -webkit-transform: rotate(-45deg) translate(-9px, 6px); */
  -webkit-transform: rotate(-45deg) translate(0px 4px);;
  /* transform: rotate(-45deg) translate(-9px, 6px); */
  transform: rotate(-45deg) translate(0px, 4px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -1px);
  transform: rotate(45deg) translate(-6px, -1px);
}

  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive a:not(:first-child) {text-align: center;}

/* }  */


.signup-hero {
  position: relative;
  padding: 40px;
  min-height: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--white-color);
}

.signup-hero::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;
  background-image: linear-gradient(#86bcc3 60%, #c3d9cd);
}

.signup-hero::after {
  content: "";
  opacity: 0.1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(../images/about-background.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.signup-hero .container {
  margin-top:40px;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--blue-color);
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(29, 29, 29, 0.349);
}

.signup-hero .container .with-padding {
  padding: 20px;
}

.col-6 {
  width: 40%;
  margin: 10% 0%;
}

@media only screen and (max-width: 768px){
  .col-6 {
    width: 90%;
    margin: 5% 0%;
  }
}

input[type=text], input[type=email], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: var(--blue-color);
  color: var(--white-color);
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: linear background-color 0.2s;
}

input[type=submit]:hover {
  background-color: var(--yellow-color);
}


.privacy-hero {
  position: relative;
  padding: 40px;
  min-height: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--white-color);
}

.privacy-hero::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;
  background-image: linear-gradient(#86bcc3 60%, #c3d9cd);
}

.privacy-hero .container {
  margin-top:40px;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color:var(--blue-color);
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(29, 29, 29, 0.349);
}

.privacy-hero .container .with-padding {
  padding: 20px;
}