@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* GENERAL */
:root{
    --dblack: #212028;
    --tblack: #000000cc;
    --lblack: #3c3b40;
    --lred: #d93744;
    --dred: #e30513;
    --red: #d1202a;
   /* --lgray: #eeeae7; */
    --lgray: #f2f0ee;
    --transparent: #f8f4f457;
    --breadcumb: #f6f6f6;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
    font-family: "Montserrat", sans-serif;
    color: var(--dblack);
    scroll-behavior: smooth;
    transition: ease 1s;
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
p {
    line-height: 1.5;
    font-size: 1rem;    
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--lblack);
    margin-bottom: 2%;
    text-align: left;
}
h3 i span, h5 i span,p span, span i {
    color: var(--red);
}
h1, h2, h3, h4, h5 {
    display: inline-block;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3%;
    color: var(--lblack);
    margin-top: 0;
    width: 100%;
}

h1 {font-size: 3.052rem;}

h2 {font-size: 2.441rem;}

h3 {font-size: 1.9rem;}

h4 {font-size: 1.563rem;}

h5 {font-size: 1.25rem;}

small, .text_small {font-size: 0.8rem;}

.text_center{text-align: center;}
.text_left{text-align: left;}
.text_right{text-align: right;}
.text_justify{text-align: justify;}
article{
    max-width: 90%;
    width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}
.sections{
    display: flex;
    align-items: center;
    height: auto;
    padding: 5% 0;
}

.header-articles{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    background: transparent;
    height: auto;
    z-index: 100;
}
.header-articles h4{
    font-weight: bold;
}
.header-articles h5{
    font-weight: 300;
}
.navbar ul {
    display: flex;
    justify-content: flex-end;
    padding: 0 17%;
    width: 100%;
    height: 6vh;
}
/* CONTAINERS */
.container{
    max-width: 90%;
    width: 1000px;
    margin:  0 auto;
    overflow: hidden;
}
.container_full_width{
    width: 100%;
}
.col_100vh_center{
    display: flex;
    align-items: center;
    height: auto;
    padding: 10% 0;
}
.column-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* GRID*/ 

.grid{
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Grid lg */
.col_1{grid-template-columns: repeat(1, 1fr);}
.col_2{grid-template-columns: repeat(2, 1fr);}
.col_3{grid-template-columns: repeat(3, 1fr);}
.col_4{grid-template-columns: repeat(4, 1fr);}
.col_5{grid-template-columns: repeat(5, 1fr);}
.col_6{grid-template-columns: repeat(6, 1fr);}
.col_7{grid-template-columns: repeat(7, 1fr);}
.col_8{grid-template-columns: repeat(8, 1fr);}
.col_9{grid-template-columns: repeat(9, 1fr);}
.col_10{grid-template-columns: repeat(10, 1fr);}
.col_11{grid-template-columns: repeat(11, 1fr);}
.col_12{grid-template-columns: repeat(12, 1fr);}
.span_1{grid-column: span 1;}
.span_2{grid-column: span 2;}
.span_3{grid-column: span 3;}
.span_4{grid-column: span 4;}
.span_5{grid-column: span 5;}
.span_6{grid-column: span 6;}
.span_7{grid-column: span 7;}
.span_8{grid-column: span 8;}
.span_9{grid-column: span 9;}
.span_10{grid-column: span 10;}
.span_11{grid-column: span 11;}
.span_12{grid-column: span 12;}

/* Grid md */
@media screen and (max-width: 48rem){
    .col_md_1{grid-template-columns: repeat(1, 1fr);}
    .col_md_2{grid-template-columns: repeat(2, 1fr);}
    .col_md_3{grid-template-columns: repeat(3, 1fr);}
    .col_md_4{grid-template-columns: repeat(4, 1fr);}
    .col_md_5{grid-template-columns: repeat(5, 1fr);}
    .col_md_6{grid-template-columns: repeat(6, 1fr);}
    .col_md_7{grid-template-columns: repeat(7, 1fr);}
    .col_md_8{grid-template-columns: repeat(8, 1fr);}
    .col_md_9{grid-template-columns: repeat(9, 1fr);}
    .col_md_10{grid-template-columns: repeat(10, 1fr);}
    .col_md_11{grid-template-columns: repeat(11, 1fr);}
    .col_md_12{grid-template-columns: repeat(12, 1fr);}
    .span_md_1{grid-column: span 1;}
    .span_md_2{grid-column: span 2;}
    .span_md_3{grid-column: span 3;}
    .span_md_4{grid-column: span 4;}
    .span_md_5{grid-column: span 5;}
    .span_md_6{grid-column: span 6;}
    .span_md_7{grid-column: span 7;}
    .span_md_8{grid-column: span 8;}
    .span_md_9{grid-column: span 9;}
    .span_md_10{grid-column: span 10;}
    .span_md_11{grid-column: span 11;}
    .span_md_12{grid-column: span 12;}
}

/* Grid sm */
@media screen and (max-width: 26.56rem){
    .col_sm_1{grid-template-columns: repeat(1, 1fr);}
    .col_sm_2{grid-template-columns: repeat(2, 1fr);}
    .col_sm_3{grid-template-columns: repeat(3, 1fr);}
    .col_sm_4{grid-template-columns: repeat(4, 1fr);}
    .col_sm_5{grid-template-columns: repeat(5, 1fr);}
    .col_sm_6{grid-template-columns: repeat(6, 1fr);}
    .col_sm_7{grid-template-columns: repeat(7, 1fr);}
    .col_sm_8{grid-template-columns: repeat(8, 1fr);}
    .col_sm_9{grid-template-columns: repeat(9, 1fr);}
    .col_sm_10{grid-template-columns: repeat(10, 1fr);}
    .col_sm_11{grid-template-columns: repeat(11, 1fr);}
    .col_sm_12{grid-template-columns: repeat(12, 1fr);}
    .span_sm_1{grid-column: span 1;}
    .span_sm_2{grid-column: span 2;}
    .span_sm_3{grid-column: span 3;}
    .span_sm_4{grid-column: span 4;}
    .span_sm_5{grid-column: span 5;}
    .span_sm_6{grid-column: span 6;}
    .span_sm_7{grid-column: span 7;}
    .span_sm_8{grid-column: span 8;}
    .span_sm_9{grid-column: span 9;}
    .span_sm_10{grid-column: span 10;}
    .span_sm_11{grid-column: span 11;}
    .span_sm_12{grid-column: span 12;}
}
/* COMPONENTS */
.card_sm{
    width: 120px;
    height: 180px;

}
.card_md{
    background-color: white;
    min-height: 300px;
    text-align: justify;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    border-radius: 19px;
    position: relative;
    background-position: top;
    background-repeat: no-repeat;
}
.card{
    background: white;
    padding: 2%;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    border-radius: 10px;
}
.card_gray{
    background: var(--breadcumb);
    box-shadow: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn{
    display: inline-block;
    background: var(--red);
    font-weight: 500;
    border-radius: 12rem;
    z-index: 50;
    margin-top: 3%;
    margin-left: 3%;
}
.btn_container{
    width: 100%;
}
.btn_sm{
    padding: 1rem 2rem;
}
.btn_md{
    padding: 1rem 3rem;
}
.btn a{
    color: white;
}
.btn:hover{
    background: var(--lblack);
    color:var(--red);
}
.btn_center{
    width: 100%;
    display: flex;
    justify-content: center;
}
.list_icon{
    display: flex;
    line-height: 1.5;
    align-items: baseline;
    margin-bottom: 2%;
    text-align: justify;
}
.list_icon i{
    padding: 2%;
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    padding: 1rem 15%;
    z-index: 1000;
    gap: 5%;
    height: 7vh;
    background: var(--dblack);
    align-items: center;
}
header .icons i{
  font-size: 1.8rem;
  color: var(--red);
  cursor: pointer;
  margin-right: 10%;
}
.brand img{
    width: 6%;
    position: relative;
    z-index: 1000;
}
.closeMenu a{
  color: white;
  font-size: 1.2rem;
  margin: 3% 0;
}
.menu_icon ul {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  padding: 0 15%;
}
.menu_icon ul li{
  margin: 3% 0;
  width:100%;
}
/* Home */
.home{
  position: relative;
  /*height: 100vh;*/
}
.home .container{
  position: relative;
  height: 100vh;
}
.content {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
.home .content h3 {
  color: white;
  padding-top: 0.5rem;
  letter-spacing: 8px;
  font-family: 'Oswald';
  text-shadow: 0 0.5rem 0.5rem rgba(0,0,0,.3);
  margin: 1% 0;
}
.home .content h5 {
  color: var(--lgray);
  padding: 0;
  margin: 0;
}
.home .content p {
  width: 53%;
  color: var(--lgray);
  font-family: 'Poppins';
  font-weight: lighter;
  padding: 1% 0;
}
.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homebackgroud {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: #27262b78;
  top: 0;
  left: 0;
}
.home .btn{
margin-left: 0;
}
.shape-home{
  position: absolute;
  bottom: 0;
  opacity: 0.7;
}
.logohome {
  position: relative;
  width: 12%;
}
.home h2{
  color: var(--lred);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1%;
  font-weight: bold;
}
/* Footer */
.foot {
  background: var(--lblack);
  display: flex;
  padding:  0;
  height: auto;
  flex-direction: column;
  position: relative;
}
.foot .container{
  height: 40vh;
  align-content: center;
}
.foot h5, .foot p{
  color: white;
  font-weight: 300;
  text-align: right;
}
.footer_logo{
  width: 100%;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer_logo p{
    text-align: left;
}
.footer_logo h4, .footer_info h3{
  color:white;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
  white-space: nowrap;
}
.footer_logo b{
    display: block;
    color: white;
    margin: 2% 0;
}
.footer_logo img{
  width: 30%;
}
.footer_info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
    justify-content: center;
    align-items: flex-end;
    margin-top: 5%;
}
.footer_info h5{
  padding-left: 17%;
}
.blog-post {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
}
.blog-post address, .blog-post p b{
    color: white;
}
.blog-post p, .blog-post address{
    width: 100%;
    text-align: right;
}
.blog-post i{
    color: var(--lred);
    margin-left: 2%;
}
.post{
    width: 100%;
}
.post-card {
    display: flex;
    gap: 3%;
    margin: 5% 0;
    justify-content: flex-end;
}
.post_card :hover{
  background-color: var(--lred);
}
.post_card i{
  color: white;
  font-size: 2rem;
  padding-left: 1.4%;
  padding-right: 1.2%;
  color: var(--lred);
}
.post_card_text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post_card_text small{
  color: var(--lgray);
  text-align: right;
}
.post_card_text p{
  color: white;
  font-size: .9rem;
  font-weight: 300;
}
.post_card img {
  max-width: 15%;
  height: auto;
  border-radius: 50%;
}
.foot small{
  color: white;
}
.foot ul{
  font-size: 1rem;
  text-align: right;
  position: relative;
  z-index: 100;
}
.foot ul li{
  color:white;
  padding: 1% 0;
}
.foot ul li a{
  color:white;
  line-height: 1.7;
}
.foot ul li:hover{
  background-color: var(--red);
}
 .shape_bottom{
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.footer_info p span a {
    color: var(--lred);
}
.footer_info p span a:hover{
    color: white;
}
.footer_info span{
    font-weight: bold;
}
.footer_info span:hover{
    color: white;
    text-decoration: underline;
    cursor: pointer;
}
/* chatbot */
.sc-bkEOxz iframe{
    position: absolute;
    bottom: 70%;
}
  #whatsapp {
    position: fixed;
    bottom: 20px;
    right:20px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #25d366;
    z-index: 200;
  }
  #whatsapp i{
    color: white;
    font-size: 1.8rem;
  }
  /* bot*/
  .sc-jsJBEP{
      display: none!important;
  }
     .gmUspe.is-open {
        top: 70%!important;
    }
/* Responsive */
@media (min-width: 768px){
    .cjsudi {
        max-height: 800px;
        right: 0%!important;
        bottom: 9%!important;
    }
    .iSFscl {
        background-color: #0000005e!important;
        border-radius: 50%!important;
    }

}
@media screen and (max-width: 48rem) {

  h3 {
    font-size: 1.4rem;
    
  }
  h4{
    font-size: 1.3rem;
    margin: 5% 0;
  }
  header{
    padding: 1rem 8%;
  }
  .sections{
      padding: 10% 0;
  }
  .logohome {
    position: relative;
    width: 14%;
  }
  .home .content h3 {
    letter-spacing: 4px;
    text-align: left;
  }
  .content h2{
    font-size: 2.1rem;
  }
  .content h5{
      text-align: left;
  }
  .home .content p {
      width: 90%;
  }
  .foot, .foot .container{
    height: 70vh;
  }
  .footer_logo {
    width: 100%;
    position: relative;
    z-index: 100;
    margin-top: 10%;
  }
  .footer_logo img {
    width: 25%;
  }
  .blog_post, .post {
    margin-left: 0!important;
  }
  .foot h4{
    font-size: 1.3rem;
  }
  .footer_info h5 {
    padding-left: 0;
  }
  .foot ul li {
    display: flex;
    text-align: left;
  }
  .post_card img {
    max-width: 15%;
    height: 15%;
  }
  .post_card i {
    font-size: 2.2rem;
  }
}
@media screen and  (max-width: 770px){
  .navbar{
    display: none!important;
  }
  .nav{
    display: block;
  }
  header .icons {
        display: block;
        top: 20%;
        z-index: 1000;
    }
}
@media screen and (min-width: 375px) and (max-width: 533px){

  header .icons {
    display: block;
    top: 20%;
    z-index: 1000;
  }
  .logohome {
    position: relative;
    width: 35%;
  }
  header{ 
    background: #27262b78;
  }
  .foot, .foot .container {
    height: 150vh;
  }
  .footer_info h5 {
    padding-left: 0;
  }
  .foot ul li {
    display: flex;
  }
  .post_card i {
    font-size: 3rem;
    padding-right: 3%;
  }
  .order_2{
    order: 2;
  }
  .gmUspe.is-open {
      height: 100vh!important;
    }
}
@media screen and (max-width: 320px){
  .logohome {
    position: relative;
    width: 35%;
  }
  header{ 
    background: #27262b78;
  }
  .navbar{
    display: none!important;
  }

  .icons{
    display: flex!important;
  }
  .foot, .foot .container {
    height: 140vh;
}
  .foot ul li {
    display: flex;
  }
  .footer_logo {
    width: 100%;
  }
  .blog_post .post {
    margin-left: 0;
  }
  .post_card i {
    font-size: 3rem;
    padding-right: 3%;
  }
  .order_2{
    order: 2;
  }
}
@media (max-width: 1440px){
    header{
        height: 10vh;
    }
    .foot .container {
        height: auto;
    }

}