@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  padding: 0;
  margin: 0;  
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;

  line-height: 1.6;

  color: #000503;

  background-color: #fff;

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 20px;
}

/* Decorators */
hr {
  height: 0;
}

.hr {
  margin: 10px 0;
  
  border-top-width: 6px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;

  height: 2px;

  color: #fdd432;
}

/* Text alignation */
.text_align_justify {
  text-align: justify;
}

.text_align_left {
  text-align: left;
}

.text_align_center {
  text-align: center;
}

.text_align_right {
  text-align: right;
}

/* Main layout */
.main_wrapper {
  display: flex;  

  height: 100vh;
}

.body_wrapper {
  position: absolute;
  left: 20vw;

  width: 80vw;
}

/* Side Bar*/
.side_bar_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;

  overflow-y: auto;

  z-index: 1;

  background-color: white;

  display: flex;
  flex-direction: column;
  align-items: center;

  width: 20vw;

  box-shadow: 2px 2px 6px lightgray;
}

.side_bar_bars {
  display: none; 

  padding: 2vw 0 2vw 0;
}

.side_bar_bars i {
  cursor: pointer;

  font-size: 7vw;
}

.side_bar_icon {
  display: 'flex';
  justify-content: 'center';
  text-align: center;
  width: 100%;
  background-color: #fafafa;
  padding: 40px 30px;
}

.side_bar li {
  margin-top: 15px;
  margin-left: 15px;
}

.side_bar a {
  text-decoration: none;  

  color: #666b6e;  
}

.side_bar a:hover {
  color: #000503;
}

.nav_item {
  font-size: 18px;

  padding-top: 15px;
  padding-bottom: 15px;  
}

/*
.nav_item:hover i {
  transform: rotate(0.5turn);
}
*/

.active {
  font-weight: bold;
}

.accordion {
  transition: 0.4s;
}

.panel {
  display: none;
}

.panel_active {
  display: block;
}

.sub_nav_item {
  font-size: 15px;
  
  padding-top: 15px;
  padding-bottom: 15px;
}

#side_bar_menu_items {
  display: flex;
}

@media screen and (max-width: 858px) {
  .side_bar_wrapper {
    position: fixed;

    width: 100vw;
    height: fit-content;

    z-index: 2;
  }

  .side_bar_bars {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .side_bar_icon {
    display: none;
  }

  .side_bar_icon {
    height: 15%;
  }

  .side_bar_icon img {
    width: 20%;
  }

  #side_bar_menu_items {
    display: none;
  }  

  #side_bar_btn {
    display: none;
  }
}

/* Body */
.main_header_wrapper {
  display: flex;

  position: relative;

  align-items: center;
  
  width: 80vw;
  height: 55vh;

  margin: 0;  

  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 40px;
  padding-right: 40px;
  
  background-image: url('/pics/001-1920w.jpg');  
  background-size: cover;
  background-position: center;
}

.header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 80vw;
  height: 30vh;

  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 4%;

  background-color: #ffcc02;
}

.section {
  padding-left: 40px;
  padding-right: 40px;

  margin-bottom: 5%;
}

.section_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  margin: 0 36px;  

  text-align: center;
}

.section_wrapper > div {
  width: 100%;
}

.section_wrapper p {
  text-align: justify;
}

.section_wrapper ul {
  text-align: left;
}

.section_wrapper_rows {
  flex-direction: row;
}

.section_wrapper_cols {
  flex-direction: column;
}

.section_text_left {
  margin-right: 30px;
  padding: 50px;
}

.section_text_right {
  margin-left: 30px;
  padding: 50px;
}

.section_text_ul_left {
  margin-left: 2vw;
}

#main_section_text {
  width: 50%;

  padding: 50px;
}

#main_section_img {
  width: 50%;
}

#main_section_img img {
  width: 100%;
  height: 70vh;
}

@media screen and (max-width: 858px) {
  .body_wrapper {
    left: 0;
    top: 6vh;

    width: 100vw;    
  }

  .header {
    width: 100vw;
    height: 20vh;

    text-align: center;
  }

  .header .font_size_60 {
    font-size: 30px;
  }

  .header .font_size_36 {
    font-size: 18px;
  }

  .section {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .section_wrapper {
    flex-direction: column;
  }

  .section_wrapper > div {
    width: 100%;

    padding: 0;
  }

  .section_text_left {
    margin: 0;
    padding: 0;
  }

  .section_text_right {
    margin: 0;
    padding: 0;
  }

  .section_text_ul_left {
    margin-left: 10vw;
  }

  .main_header_wrapper {
    width: 100vw;
    height: 25vh;
  }

  h2 {
    font-size: 6vw;
  }

  h3 {
    font-size: 6vw;
  }

  h4 {
    font-size: 4vw;
  }

  #main_section .section_wrapper {
    flex-direction: column;
  }

  #main_section_text {
    width: 100%;

    padding: 0;
  }

  #main_section_img {
    width: 100%;
  }

  #main_section_img img {
    height: 40vh;
  }
} 

/* Advantages */
.advantage_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2vw;
  width: 100px;
  height: 100px;
  background-color: #fdd432;
  margin: 10px auto;
  border-radius: 50%;
}

#advantages p {
  text-align: center;
}

@media screen and (max-width: 858px) {
  .advantage_icon {
    font-size: 8vw;
  }
  
  #advantages .section_wrapper {
    flex-direction: column;
  }
}

/* Footer */
.footer_container {
  padding-top: 130px;  
  padding-left: 0;
  padding-right: 0;
}

.footer_wrapper {
  background-color: #f0f0f0;
  padding-top: 5vw;
}

.footer_wrapper a {
  text-decoration: none;

  color: #000503;
}

.footer_wrapper span {
  margin: 0 5px;
}

.footer_banner {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  
  display: flex;
  align-items: center;
  justify-content: space-around;
  
  margin: 0 40px;
  padding: 15px 40px;
  
  box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.25);
  background-color: #ffcc02;
  background-image: url('/pics/background_pattern.svg');
}

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

  font-size: 28px;
}

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

  width: 40%;
}

.footer_section div {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 8px 0;

  text-align: center;
}

.footer_section a {
  margin-left: 5px;
}

.footer_social_networks div {
  margin: 10px;
}

.footer_social_networks i {
  font-size: 25px;
}

@media screen and (max-width: 858px) {
  .footer_banner {
    flex-direction: column;
  }
  
  .footer_banner_text {
    font-size: 14px;
  }

  .footer_banner_text div {
    margin-bottom: 2vw;
  }

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

  .footer_section {
    width: 90%;
  }

  .footer_es > div {
    flex-direction: column;
    align-items: center;
  }

  .footer_es span {
    display: none;
  }

  .footer_bottom p {
    display: flex;
    flex-direction: column;
  }

  .footer_bottom span {
    display: none;
  }
}

/* Links */
.link {
  text-decoration: none;
  color: #ffcc02;
}

.link:hover {
  text-decoration: none;
  color: #fdd432;
}

/* Buttons */
.btn_container {
  padding: 10px 40px;
  
  height: auto;
  
  background-color: #ffcc02;

  text-decoration: none;

  color: #000503;

  cursor: pointer;
}

.btn_container:hover {
  background-color: #fdd432;

  text-decoration: none;

  color: #000503;
}

.btn_container_white {
  background-color: white;

  color: #000503;

  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 3vw;
  padding-right: 3vw;
}

.btn_container_white:hover {
  color: #666b6e;
}

/* Form */
.form_wrapper {
  padding-left: 15%;
  padding-right: 15%;
}

.form {
  display: flex;
  flex-direction: column;
}

.form label {
  text-align: left;

  font-size: 14px;
  font-weight: 400;
}

.form input {
  margin: 3px 0;

  padding: 0 10px;

  border-style: solid;
  border-radius: 0;
  border-width: 1px;
  border-color: rgb(216, 216, 216);

  height: 40px;
}

.form input[type="text"] {
  width: 50%;
}

.form input[type="tel"] {
  width: 50%;
}

.form input[type="file"] {
  display: none;  
}

.form textarea {
  margin: 3px 0;
  padding: 0 10px;

  border-style: solid;
  border-radius: 0;
  border-width: 1px;
  border-color: rgb(216, 216, 216);  
}

.form select {
  margin: 3px 0;
  padding: 0 10px;

  border-style: solid;
  border-radius: 0;
  border-width: 1px;
  border-color: rgb(216, 216, 216);

  height: 40px;

  width: fit-content;
}

.form p {
  text-align: justify;

  font-size: 0.85vw;
}

.form button {
  display: flex;
  justify-content: center;

  width: 30%;

  border: 0 solid #ffcc02;

  background-color: #ffcc02;

  cursor: pointer;

  padding: 10px;

  font-size: 15px;
}

.form button:hover {
  background-color: #fdd432;
}

.form input[type="submit"] {
  display: flex;
  justify-content: center;

  width: 30%;

  border: 0 solid #ffcc02;

  background-color: #ffcc02;

  cursor: pointer;

  padding: 10px;

  font-size: 15px;
}

.form input[type="submit"]:hover {
  background-color: #fdd432;
}

.form p {
  font-size: 14px;
}

.form a {
  text-decoration: none;

  color: #fdd432;

  font-size: 14px;
}

@media screen and (max-width: 858px) {
  .form_wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .form select {
    width: auto;
  }
}

/* Photo gallery holder */
.photo_gallery {
  display: flex;
  flex-wrap: wrap;
}

.photo_gallery li {
  flex: 0 0 25%;
}

.photo_gallery_thumbs {
  padding: 2.5px;
}

.thumbnail_inner_wrapper {
  width: 100%;
}

.image_container {
  background-size: cover;
  background-position: center;
}

.image_container img {
  width: 100%;
  height: 10vw;

  object-fit: fill;
}

.caption_container {
  text-align: center;
}

.caption_inner {
  padding: 15px;
}

.caption_button {
  margin: 10px 0;
}

.text {
  padding: 10px 20px;
}

@media screen and (max-width: 858px) {
  .photo_gallery li {
    flex: 0 0 100%;
  }

  .image_container img {
    height: 20vh;
  }
}

/* Full screen image gallery */
.full_screen_img_gallery {
  position: fixed;

  display: none;

  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  height: 100vh;

  z-index: 2;

  background-color: #000503;

  padding: 2vw;
}

.full_screen_img_close_btn {
  display: flex;

  justify-content: flex-end;
}

.full_screen_img_close_btn i {
  color: white;

  font-size: 2vw;

  cursor: pointer;
}

.full_screen_img_index {
  display: flex;

  justify-content: center;
  align-items: center;

  color: white;

  font-size: 1vw;
}

.full_screen_img_container {
  display: flex;

  justify-content: space-around;
  align-items: center;
}

.full_screen_img_container i {
  color: white;

  font-size: 2vw;

  cursor: pointer;
}

.full_screen_img {
  background-size: cover;
  background-position: center;

  width: 90vw;
  height: 90vh;

  padding: 2vw;
}

@media screen and (max-width: 858px) {
  .full_screen_img_close_btn i {
    font-size: 5vw;
  }

  .full_screen_img_container i {
    font-size: 5vw;
  }

  .full_screen_img_index {
    font-size: 5vw;
  }

  .full_screen_img {
    height: 50vh;
  }
}

/* Video gallery holder */
.video_gallery {
  display: flex;
  flex-wrap: wrap;
}

.video_gallery li {
  flex: 0 0 50%;
}

.video_container video {
  width: 100%;
  height: 20vh;
}

@media screen and (max-width: 858px) {
  .video_gallery {
    justify-content: center;
  }

  .video_gallery li {
    flex: 0 0 80%;
  }
}

/* Posts gallery holder */
.posts_gallery {
  display: flex;
  flex-wrap: wrap;
}

.posts_gallery li {
  flex: 0 0 50%;
}

.post_container {
  background-size: cover;
  background-position: center;
}

.post_container img {
  width: 100%;
  height: 20vw;
  object-fit: none;
}

/*
.post_container img:hover {
  animation: zoom_in 0.5s ease 1 forwards;
}
*/

.post_title {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
}

.post_date {
  padding: 10px 20px;
  font-size: 14px;
}

/*
@keyframes zoom_in {
  100% {
    object-fit: revert;
  }
}
*/

@media screen and (max-width: 858px) {
  .posts_gallery {
    justify-content: center;
  }

  .posts_gallery li {
    flex: 0 0 100%;
  }

  .post_container img {
    height: 20vh;
  }
}

/* Tab selector */
.tab_selector {

}

.tabs_container {
  display: flex;
  justify-content: space-evenly;

  width: 100%;  
}

.tabs_container div {
  display: flex;
  justify-content: center;

  cursor: pointer;

  width: 33.3%;

  border-bottom: 2px solid lightgray;

  padding-top: 15px;
  padding-bottom: 15px;
}

.tabs_container div:hover {
  border-bottom: 2px solid #ffcc02;
}

.tab_container {
  /*display: flex;*/
  display: none;

  padding: 2vw;
}

.img_tab_container {
  width: 50%;

  margin-left: 2vw;
  margin-right: 2vw;
}

.img_tab_container img {
  height: 25vw;
}

.text_tab_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  width: 50%;
}

.text_tab_container div {
  margin-bottom: 15px;
}

.text_tab_container p {
  margin-bottom: 15px;
}

.tab_active {
  border-bottom: 2px solid #ffcc02;
}

.tab_container_active {
  display: flex;
}

@media screen and (max-width: 858px) {
  .tabs_container .font_size_20 {
    font-size: 15px;
  }

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

  .img_tab_container {
    width: 90%;
  }

  .img_tab_container img {
    height: 20vh;
  }

  .text_tab_container {
    align-items: center;

    width: 90%;
  }
}

/* Icon wrapper */
.icon_wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
}

.icon_container {
  margin: 15px;
}

.whatsapp_icon {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #25d366;  

  border-radius: 50%;

  width: 60px;
  height: 60px; 
}

.whatsapp_icon a {
  color: white;

  font-size: 25px;
}
