.first-section {
  height: 100vh;
  width: 100%;
}
.second-section {
  align-items: end;
  height: auto;
  width: 100%;
  background: url("assets/bg02.jpg");
  display: flex;
  justify-content: space-evenly;
}
.third-section-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.third-section {
  align-items: start;
  height: auto;
  width: 100%;
  background: url("assets/bg02.jpg");
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.first-part {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}
.slider-1 {
  text-align: center;
  width: 100vw;
  display: flex;
  justify-content: center;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #525252;
}

.loading-container {
  position: absolute;
  top: 20vh;
  width: 100%;
}

.info-descrip {
  background: -webkit-linear-gradient(rgb(11, 174, 68), rgb(41, 87, 136));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.contact-icon {
  margin-left: 3px;
  background-color: rgb(179, 179, 179);
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  padding: 5px 5px 5px 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.profile-icon {
  width: 250px; 
  height: 250px; 
  border-radius: 50%;
  padding: 5px 5px 5px 5px;
  justify-content: center;
  align-items: center;
  align-self: center;
  cursor: pointer;
}

.profile-image {
  width: 40vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding-left: 35px;
}
.section-title {
  color: wheat;
  margin-top: 10px;
  font-size: 1.5vw;
  padding: 10px;
  text-align: center;
}
.name-container {
  color: white;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.logo-gif {
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.name-label {
  font-size: 5vw;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  text-shadow: 1px 3px 11px rgb(0 0 0 / 30%);
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.title-label {
  font-size: 2vw;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 3px 11px rgb(0 0 0 / 30%);
  text-align: center;
}
.section-container {
  width: 40vw;
  padding: 5px; 
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon {
  width: 100px;
  height: 100px;
}
.image-container {
  margin-top: 20px; 
  width: 40vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background: url("assets/bg02.jpg");
}
@media only screen and (max-width: 1200px) {
  .first-part {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .profile-image {
    width: 100vw;
    padding-left: 0px;

  }
  .section-container {
    width: 90vw;
    align-items: center;
    text-align: center;
    display: flex;
    justify-self: center;
    margin: auto;
  }
  .icon {
    width: 15vw;
    height: 10vh;
    padding: 10px;
  }
  .second-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .third-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .section-title {
    width: 90vw;
    font-size: 3vw;
  }
  .image-container {
    justify-content: space-evenly;
    align-items: center;
    width: 100vw;
  }
  .third-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 1200px) {
  .fade-in-info {   
    animation: fadeEnter 1s ease-in;
    -webkit-animation: fadeEnter 1s ease-in;
    -moz-animation: fadeEnter 1s ease-in;
    -o-animation: fadeEnter 1s ease-in;
    -ms-animation: fadeEnter 1s ease-in;
  }
}

@media only screen and (min-width: 1200px) {
  .fade-in-info {   
    animation: fadeIn 2s ease-in-out;
    -webkit-animation: fadeIn 2s ease-in-out;
    -moz-animation: fadeIn 2s ease-in-out;
    -o-animation: fadeIn 2s ease-in-out;
    -ms-animation: fadeIn 2s ease-in-out;
  }
}

@keyframes fadeIn {
  0%   { margin-left: 100%; }
  100% { margin-left: 0%;   }
}

@keyframes fadeEnter {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
   
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0%   { margin-left: 100%; }
  100% { margin-left: 0%;   }
}

@-moz-keyframes fadeEnter {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }    
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0%   { margin-left: 100%; }
  100% { margin-left: 0%;   }
}

@-webkit-keyframes fadeEnter {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }  
  100% {
      transform: translateY(0);
      opacity: 1;
    
  }
}

@-o-keyframes fadeIn {
  0%   { margin-left: 100%; }
  100% { margin-left: 0%;   }
}

@-o-keyframes fadeEnter {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1; 
  }
}

@-ms-keyframes fadeIn {
  0%   { margin-left: 100%; }
  100% { margin-left: 0%;   }
}

@-ms-keyframes fadeEnter {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf'),
      url('/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf');
}