/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/


.newh2{
  font-size: 1.5em;
}


:root{
  --header-height: 3rem;
  --font-semi: 600;
}

html,body
{
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    /* background-color: #3b3941; */
    background: #221b36;
    /* background: white; */
    /* background-color: #221b36; */

}
*{
  transition: background-color 1s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}



/*===== Colores =====*/
:root{
  --first-color: #4070F4;
  --second-color: #0E2431;
  --bg-black-900:#000000;
  --bg-black-100:#dddddd;
  --bg-black-50: #eff0f4;
  --text-black-600:#666666;
  --text-black-700:#555555;
  --text-black-900:#000000;
  --text-black-300:#bbbbbb;
  --outer-shadow: 3px 3px 3px #222327, -3px -3px 3px #363636;
  --outer-shadow-0: 0 0 0 #2222327, 0 0 0 #363636;
  --inner-shadow: insert 3px 3px 3px #222327, insert -3px -3px 3px #363636;
  --skin-color:#2eb1ed;
}

/*===== Fuente y tipografia =====*/
:root{
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --home-font-size: 1.5rem;
  --big-font-size1: 15px;
  --big-font-size2: 30px;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --circle-top:-140px;
  --circle-left:30%;
}
@media screen and (min-width: 1030px){
  :root{
    --big-font-size1: 30px;
    --big-font-size2: 40px;
    --home-font-size: 3.5rem;
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --circle-top:-70px;
    --circle-left:45%;
  }
}


/* mode change */
#mode-switcher {
  position: fixed;
  z-index: 9999;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background-color: blue;
  color: white;
}

#mode-switcher i {
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
  background-color: blue;
}

/* effect wrap */

.effect-wrap .effect{
  position:absolute;
  z-index:99;
}
/* effect on bottom right */
.effect-1{
  width:30px;
  height:30px;
  border: 4px solid #8a49ff;
  right:10%;
  bottom:10%;
  animation: spin 10s linear infinite;
}
/* effect on right bottom*/
.effect-2{
  left:3%;
  bottom:20%;
  width: 40px;
  display:flex;;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: topBounce 3s ease-in-out infinite;
  opacity:0%;

}
.effect-2 div{
  height: 3px;
  width: 3px;
  background-color:#ff9c07;
  margin:0 3px 8px;
}
/* top effect circle */
.effect-3{
  height: 180px;
  width: 180px;
  border:25px solid red;
  border-radius: 50%;
  left: var(--circle-left);
  top: var(--circle-top);
  animation: leftBounce 3s ease-in-out infinite;
}
/* trangle effect */
.effect-4{
  border-top: 30px solid transparent;
  border-left: 30px solid #06d79c;
  left: 8%;
  top: 26%;
  animation: spin 15s linear infinite;
  display:none;
}
.effect-4:before{
  content: "";
  border-top: 30px solid transparent;
  border-left: 30px solid #06d79c;
  position: absolute;
  opacity: 0.5;
  left: -35px;
  top: -25px;
}
/* near pic */
.effect-5{
  height:50px;
  width: 50px;
  right:10%;
  top: 30%;
  display: flex;
  justify-content: space-between;
  border-radius: 50%;
  overflow: hidden;
  animation: spin 30s linear infinite;

}

.effect-5 div{
  width: 1px;
  background-color:#4dd0e1;
}
@keyframes spin {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
      }
  }
@keyframes topBounce{
  0%,100%{
    transform:translateY(0);
    }
  50%{
    transform:translateY(25px);
      }

}

@keyframes leftBounce{
  0%,100%{
    transform:translateX(0);
    }
  50%{
    transform:translateX(25px);
      }

}


/* ++++++++shadow+++++++ */


.inner-shadow{
  box-shadow: var(--inner-shadow);
}
.outer-shadow {
  box-shadow:var(--outer-shadow);

}
.outer-shadow1{
  /* -webkit-filter: drop-shadow(5px 5px 5px #000000); */
  filter: drop-shadow(4px -3px 6px #000000);
}
.inner-shadow1{
  filter: drop-shadow(0px 0px 6px #000000);

}

.hover-in-shadow{
  position: relative;
  z-index: 1;
}
.hover-in-shadow:hover{
  box-shadow:var(--outer-shadow-0);
}
.hover-in-shadow:after{
  content: "";
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  transition:all 0.3s ease;
}
.hover-in-shadow:hover:after{
  box-shadow: var(--inner-shadow);
}



/*===== Margenes =====*/
:root{
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root{
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
}
h1,h2,p{
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/*===== CLASS CSS ===== */
.social-links{
  margin-bottom:-80%;
  text-align:center;
  display: flex;
  flex-direction: column;

}
.social-links a{
  display:inline-block;
  height:40px;
  width:40px;
  font-size:22px;
  text-align: center;
  color: var(--skin-color);
  background-color: rgb(236, 230, 230);
    /* background-color: transparent; */
  /* color:var(--text-black-600); */
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a i{
line-height:40px;
opacity: 60%;
}

.social-links a:after{
  border-radius: 50%;

}
.social-links a:hover {
  color:red;
  background-color: blue;
}
.button1{
  padding: 15px 30px;
  position:absolute;
  /* font-weight:500; */
  font-weight: bold;
  /* font-style: italic; */
  color: var(--skin-color);
  background-color: rgb(236, 230, 230);
  line-height: 1.5;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 70%;
}
.button1:after{
  border-radius:30px;
}
.outer-shadow.hover-in-shadow:hover{
  color:white;  
  background-color: blue;
}
.section-title{
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--bg-black-100);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}
.section-title::after{
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--bg-black-100);
}
.section{
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*===== LAYOUT =====*/
.bd-grid{
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}



.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  /* background-color: #9192e8; */
  background-color: #44469b;
  /* background-color: #eaeaea ; */
  /* background-color: #f5f5f5 ; */
   /* background-color: #3b3941; */
  /* background-color: #221b36; */
  box-shadow: 0 1px 4px rgba(146,161,176,.15);
}

/*===== NAV =====*/
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);

}
@media screen and (max-width: 1030px){

  .nav__menu{
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: var(--second-color);
    transition: .5s;
  }
}
.nav__item{
  margin-bottom: var(--mb-4);
}
/* .nav__item:hover{
  background-color: #7a8001;
} */
.nav__link{
  position: relative;
  color: #fff;
}
.nav__link:hover{
  position: relative;
  color: blue;
}
.nav__link:hover::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}
.nav__logo{
  color: var(--second-color);
}
.nav__toggle{
  color: var(--second-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

/*=== Show menu ===*/
.show{
  right: 0;
}

/*===== HOME =====*/
.typing{
  font-size: .67em;
}

.home{
  height: calc(100vh - 3rem);
  row-gap: 1rem;
  /* background-color: #483289; */
    /* background-color: #3b3941; */
  background: #221b36;
  /* background-color: #221b36; */
}
.homebg{
  max-width: 100%;
  /* background-color: #483289; */
    /* background-color: #3b3941; */
  background: #221b36;
  /* background-color: #221b36; */
  position: relative;
}
.about{
  color: #ffffff;
  height: 100vh;
  max-width: 100%;
  /* background-color: #3b3941; */
  background: #221b36;
  /* background-color: #221b36; */
  position: relative;
}


.home__data{
  align-self: center;
}
.home__data .button1{
  margin-top: 30px;

}

.home__title1{
  color:var(--text-black-300);
  font-size: var(--big-font-size1);
  text-transform: capitalize;
  margin: 0;
}

.home__title{
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-5);
  color: #ffffff;
}
.home__title-color{
  color:var(--text-black-300);
  font-size: var(--home-font-size);
}
.home__title-color2{
  color: #ffffff;
  font-size:var(--big-font-size1);
}

.home__social{
  display: flex;
  flex-direction: column;
}
.home__social-icon{
  width: max-content;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  color: var(--second-color);
}
.home__social-icon:hover{
  color: var(--first-color);
}
.home__img{
  position: absolute;
  right: 33%;
  bottom: 15%;
  width: 180px;

}

/*BUTTONS*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: .75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: .5rem;
}
.button:hover{
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
}

/* ===== ABOUT =====*/
.about__text{
  text-align: justify;
  text-justify: inter-word;
}
.about__container{
  row-gap: 2rem;
  text-align: center;
}
.about__subtitle{
  margin-bottom: var(--mb-2);
}
.about__img{
  justify-self: center;
}
.about__img img{
  width: 200px;
  border-radius: .5rem;
}
/* wave */
.wave {
  animation-name: wave-animation;  
  animation-duration: 2.5s;        
  animation-iteration-count: infinite;  
  transform-origin: 70% 70%;       
  display: inline-block;
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) }  
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  
  100% { transform: rotate( 0.0deg) }
}
/* ====Education====*/
.education__container{
  row-gap: 2rem;
  text-align: left;
}
.qualif__subtitle{
  margin-bottom: var(--mb-2);
  margin-left:10px;
}
.qualif__icon{
  width: max-content;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  margin-left:10px;
  margin-top: 15px;
  color: var(--second-color);
}
.qualif__text
{
  margin-left: 10px;
}
.education__data
{
  display: flex;
  justify-content: space-between;
  height : 300px;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: .5rem 1rem;
  margin-bottom: var(--mb-4);
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
  background-color:  #221b50;
}
/* ===== SKILLS =====*/
.skills__container{
  row-gap: 2rem;
  text-align: center;
  background-color: rgb(236, 230, 230);
  padding: 2rem;
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
}
.skills__subtitle{
  margin-bottom: var(--mb-2);
}
.skills__text{
  margin-bottom: var(--mb-4);
}
.skills__data{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: .5rem 1rem;
  margin-bottom: var(--mb-4);
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
  background-color: white;
}
.skills__icon{
  font-size: 2rem;
  margin-right: var(--mb-2);
  color: var(--first-color);
}
.skills__names{
  display: flex;
  align-items: center;
}
.skills__bar{
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: .25rem;
  border-radius: .5rem;
  z-index: var(--z-back);
}
.skills__tableau{
  width: 70%;
}
.skills__airflow{
  width: 90%;
}
.skills__sql{
  width: 95%;
}
.skills__google_cloud{
  width: 95%;
}
.skills__bigquery{
  width: 80%;
}
.skills__python{
  width: 95%;
}
.skills__img{
  border-radius: .5rem;
  max-width:100%;
  max-height:100%;
}
/* familiar language*/
.familiar__container
{
  grid-template-columns: repeat(2,1fr);

}
.familiar_cont
{
  width: 250px;
  height: 250px;
  border: black solid 2px;
  padding: 10px;
  text-align: center;
  margin-top: 10px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;

}
.familiar__img
{
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
.familiar__subtitle
{
  margin-left:10px;
  margin-top: 40px;
}
/* ===== WORK =====*/
.work__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work__img {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(14, 36, 49, 0.15);
}
.work__img img {
  cursor: pointer;
  transition: transform 1s;
}
.work__img img:hover {
  transform: scale(1.1);
}
.work__img .text {
  display: block;
  position: relative;
  height: 70px;
  padding: 5px;
  text-align: center;
  font-size: 1.17em;
  font-weight: bold;
  color: #ffffff;
  background-color: #353535;
}
.work__img .text:hover {
  background-color: blue;
}



/*certificate*/
#certificate, .certi{
  /* background-color: #3b3941; */
  background: rgb(236, 230, 230);
  
  /* background-color: #221b36; */
}



.certificate__container
{
  row-gap: 2rem;
  width: 20px;
  display: flex;
}
.certificate__img{
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
  border-radius: .5rem;
  overflow: hidden;
  width: 60%;
  height: 86%;
  margin: auto;
}
.certificate__img img{
  transition: 1s;
  cursor: pointer;
}
.certificate__img img:hover{
  transform: scale(1.1);
}
/* ===== CONTACT =====*/
.contact__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact__form {
  background-color: rgb(236, 230, 230);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: 1.5px solid blue;
}
.contact__label {
  display: block;
  text-align: left;
  color: black;
}

.contact__input {
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-radius: .5rem;
  border: 1.5px solid var(--second-color);
  outline: none;
  margin-bottom: var(--mb-4);
  border: 1.5px solid blue;

}
.contact__form textarea {
  max-height: 200px;
  max-height: 200px;
  overflow-y: auto;
}

.contact__button {
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
}

.contact__button:hover {
  background-color: blue;
}

/* ===== FOOTER =====*/
.footer{
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__title{
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}
.footer__social{
  margin-bottom: var(--mb-4);
}
.footer__icon{
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2)
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 1030px){
  body{
    margin: 0;
  }
  .expimg img{
    position: absolute;
  }
  .section{
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .section-title{
    margin-bottom: var(--mb-6);
  }
  .section-title::after{
    width: 80px;
    top: 3rem;
  }

  .nav{
    height: calc(var(--header-height) + 1rem);
  }
  .nav__list{
    display: flex;
    float: right;
    padding-top: 0;
  }
  .nav__item{
    margin-left: var(--mb-3);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }
  .nav__link{
    color:  #ffffff;
  }

  .home{
    height: 100vh;
  }
  .home__data{
    align-self: flex-end;
  }
  .home__social{
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon{
    margin-bottom: 0;
    margin-right: var(--mb-4);
  }
  .home__img{
    width: 350px;
    bottom: 55%;

  }

.social-links{
    margin-bottom: var(--mb-3);
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self:flex-end;
  }

  .about__container, .skills__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    text-align: initial;
  }
  .about__img img{
    width: 300px;
  }
  .certificate__container
  {
    grid-template-columns: repeat(2,1fr);
    column-gap:2rem;
  }

  .effect-4{
    display:block;

  }
  .effect-2{
    opacity: 100%;

  }


}


/* experience css start here */
.experience, .education, .achievements, .contact, .project{
  /* background-color: #483289; */
  /* background-color: #3b3941; */
  background: #221b36;
  /* background-color: #221b36; */
  color: white;
}
.skills{
  background: #221b36;
  color: black;
}
.Certifications{
  /* background-color: #3b3941; */
  background: #221b36;
  height: 100vh;
  /* background-color: #221b36; */
}

.Projects{
  /* background-color: #3b3941; */
  background: #221b36;
  height: 100vh;
  /* background-color: #221b36; */
}


.exp-shadow{
  /* box-shadow:var(--outer-shadow); */
  box-shadow:0px 0px 10px #d0d0d0;
}

.experience{
  padding-bottom:80px;
}

.timeline{
  flex:0 0 100%;
  max-width:100%;
  position:relative;

}
.timeline:before{
  content:'';
  width:1px;
  height:100%;
  left:50%;
  top:0;
  background-color:var(--bg-black-50);
  position:absolute;
}

.timeline .timeline-item{
  flex:0 0 100%;
  max-width:100%;
  padding: 0 15px;
  
}
.timeline .timeline-item:nth-child(odd){
  padding-right: calc(50% + 50px);
  text-align: left;
}
.timeline .timeline-item:nth-child(even){
  padding-left: calc(50% + 50px);
}
.timeline .timeline-item-inner{
  padding:30px;
  border-radius: 5px;
  position:relative;
  background-color: #221b50
}
.timeline .timeline-item-inner:before{
  content:'';
  position: absolute;
  width:30px;
  height:1px;
  background-color: var(--bg-black-100);
  top:37px;
  z-index: -1;

}
.timeline .timeline-item:nth-child(odd) .timeline-item-inner:before{
  right: -30px;
}

.timeline .timeline-item:nth-child(even) .timeline-item-inner:before{
  left: -30px;
}


.timeline .timeline-item-inner .icon{
  height:40px;
  width:40px;
  background-color: var(--bg-black-50);;
  text-align: center;
  border: 1px solid var(--bg-black-100);
  line-height:40px;
  border-radius: 50%;
  font-size:16px;
  color: #4070F4;
  position:absolute;
  top:18px;
}

.timeline .timeline-item:nth-child(odd) .icon{
  right:-70px;
}

.timeline .timeline-item:nth-child(even) .icon{
  left:-70px;
}

.timeline .timeline-item-inner span{
  font-weight: 500;
  font-size:20px;
  color:#4070F4;
  display: block;
  margin: 0 0 10px;
  text-transform: capitalize;


}
.timeline .timeline-item-inner h3{
  font-size:24px;
  font-weight:600;
  color: white;
  margin: 0 0 5px;
  text-transform: capitalize;

}
.timeline .timeline-item-inner h4{
  font-size:20px;
  color: white;
  font-style:italic;
  margin:0;
}
.timeline .timeline-item-inner p{
  line-height:26px;
  font-size:16px;
  color:white;
  line-height:26px;
  margin: 15px 0 0;
}

.timeline .timeline-item-inner ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.timeline .timeline-item-inner ul{
  list-style-type: square;
}

@media screen and (max-width: 1030px){

  .timeline .timeline-item:nth-child(odd){
    padding-right:15px;
    padding-left:75px;
  }
  .timeline .timeline-item:nth-child(even){
    padding-left:75px;
  }
  .timeline:before{
    left:35px;

    }
    .timeline .timeline-item:nth-child(odd) .icon{
    right:auto;
    left:-60px;
      }
      .timeline .timeline-item:nth-child(even) .icon{
      left:-60px;
        }
    .timeline .timeline-item{
      margin-bottom: 40px;
    }
    .timeline .timeline-item:last-child{
      margin-bottom:-15%;
    }
    .timeline .timeline-item:nth-child(odd) .timeline-item-inner:before{
      left:-30px;
      right:auto;
    }




}

.expimg{
  position: relative;

  }
.expimg img{
  display: flex;
  justify-content: space-between;
  /* flex: 5 0 50%; */
  /* flex-flow: row nowrap; */
 align-items: center;
  margin: auto;
 padding: 0 0px;
 max-width: 100%;
 width: 100px;
 position: center;
 top: 0px;
 right: 0px;

}

/* projects*/

.project__container{
  row-gap: 2rem;
  text-align: left;
}

/* body{
    margin:0;
    min-height:100%;
    background-color:#fff;
    font-family:Arial,sans-serif;
    font-size:14px;
    line-height:20px;
    color:#3330
0-} */
img{
  max-width:100%;
  vertical-align:middle;
  display:inline-block
}

img{
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
  vertical-align:middle !important
}

.w-widget-map 
img{
  max-width:inherit
}

.body {
  background-color: #000;
  font-family: Sen, sans-serif;
}

.wrapper {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.wrapper.projects-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.paragraph_18px {
  color: #fff;
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18px.light-grey {
  color: #8491a0;
}
.heading_55px {
  display: inline-block;
  width: 100%;
  max-width: 780px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 55px;
  line-height: 110%;
}

.heading_24px {
  margin-top: 0px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
}

.normal-wrapper._48px-right_p {
  padding-right: 48px;
}

.padding_bottom{
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.padding_bottom:hover {
  transform: scale(1.04);
}


.normal-wrapper._48px-right_p._80px-bottom_m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.normal-wrapper._120px-bottom_m {
  margin-bottom: 120px;
}

.normal-wrapper.flex-vertical_left_space-betwen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.normal-wrapper.flex-horizontal_left_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}




.projects-section {
  padding: 120px 72px;
}

.project-image {
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-description {
  position: relative;
  padding: 40px 32px;
  background-color: #181823;
}

.button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 232px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta {
  padding: 24px 32px;
  border: 1px solid #5221e6;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.cta:hover {
  background-color: #5221e6;
  box-shadow: 0 20px 60px 0 rgba(82, 33, 230, 0.3);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}


.project-wrapper {
  text-decoration: none;
  transition: transform 0.3s ease;
}
.project-wrapper {
  overflow: hidden;
}

.project-wrapper._24px-bottom_m {
  margin-bottom: 24px;
}


.arrow-div {
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #5221e6;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.project-wrapper:hover .arrow-div {
  opacity: 1;
  transform: scale(1.1);
}
.project-wrapper:hover .heading_24px{
  color : rgb(0, 255, 255);
}



@media screen and (max-width: 991px) {
  .wrapper.projects-grid {
      grid-row-gap: 48px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  }
  .projects-section {
      padding: 80px 40px;
  }
  .project-wrapper._24px-bottom_m {
      margin-bottom: 48px;
  }
  }

@media screen and (max-width: 767px) {
  .heading_55px {
      font-size: 32px;
  }
  .normal-wrapper._48px-right_p {
      padding-right: 0px;
  }
  .projects-section {
      padding: 64px 20px;
  }
  }

/*  */

/* experience css END here */

/* footer  css stat here */
.menubottompic {
background: url("../img/mbt-footer.png") repeat-x scroll left top transparent;
width: 100%;
height: 62px;
margin: 10px auto -15px;
position: relative;
z-index: 9999;
box-shadow: 1px -3px 1px rgb(23, 81, 255);
}
.menubottom-container {
width:950px;
margin:0px auto;
padding:0px;

}
/* footer css end here */


@media screen and (min-width: 1024px){
  .bd-grid{
    margin-left: auto;
    margin-right: auto;
  }
  .home__img{
    right: 10%;
    bottom: 25%;

  }
}


/* email msg */
#msg{
  color: white;
  background-color: green;
  border: 1.5px solid blue; 
  padding: 0.5px; 
  margin-top: 3px; 
  display:none;
}
