@font-face{
  font-family: NoirPro;
  src: url('../assets/fonts/noir_pro/NoirPro-Regular.woff') format('woff');
}
@font-face{
  font-family: NoirProLight;
  src: url('../assets/fonts/noir_pro/NoirPro-Light.woff') format('woff');
}
@font-face{
  font-family: NoirProBold;
  src: url('../assets/fonts/noir_pro/NoirPro-Bold.woff') format('woff');
}
* {
  font-family: NoirPro;
  box-sizing: border-box;
}
a{
  color:black;
  text-decoration: none;
}
.isg_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #4885ef;
  position: sticky;
  position: -webkit-sticky;
  top:0;
  z-index: 1000;
}
.isg_header-title {
  padding-left: 160px;
  font-size: 25px;
  font-weight: normal
}
.isg_header-logo {
  padding: 15px 160px 15px 0;
}
.isg_howeare {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  height: 600px;
  background-image: url('../assets/images/isago_header_image.jpg');
  background-position: 50% 70%;
  background-size: cover;
}
.isg_howeare-title{
  color: #ffffff;
  font-size: 100px;
  margin-bottom: 50px;
}
.isg_howeare-title__light{
  font-family: NoirProLight;
}
.isg_howeare-card{
  width: 400px;
  background-color: #ffffff;
  padding: 70px;
}
.isg_howeare-card-dot{
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #71a1f4;
  margin-bottom: 26px;
}
.isg_howeare-card-title{
  font-family: NoirProBold;
  font-size: 20px;
  margin-bottom: 10px;
}
.isg_howeare-card-content{
  font-family: NoirProLight;
  font-size: 20px;
}
.isg_ourservices{
  position: relative;
}
.isg_services-title{
  position: absolute;
  top:-150px;
  left:140px;
  display: inline;
  color: #E0DBC6;
  background-color: #1c57bc;
  font-family: NoirProBold;
  font-size: 20px;
  padding: 120px 20px 10px 20px;
}
.isg_services-card-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0 140px 0 140px;
}
.isg_services-card {
  margin-top: 40px;
  position: relative;
  width: 200px;
  height: 250px;
  border-radius: 30px;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
}
.isg_services-icon{
  height: 43px;
  width: 43px;
  margin-top: 30%;
  margin-bottom: 20%;
  z-index: 10;
}
.isg_services-card-dot{
  position: absolute;
  top: calc(33%);
  left: calc(33%);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #71a1f4;
  margin-bottom: 26px;
}
.isg_services-content {
  padding: 0 20px 0 20px;
  font-size: 15px;
}
.isg_nuestras-obras{
  font-family: NoirProBold;
  margin-top: 10%;
}
.isg_sliders{
  margin-top: 40px;
  margin-bottom: 60px;
}
.isg_slider{
  width: 30vw;
}
.isg_slider_card{
  height: 30vw;
  overflow: hidden;
}
.isg_slider_image_card{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.isg_whatwedo{
  position: relative;
  height: 400px;
  background-image: url('../assets/images/isago_footer_image.jpeg');
  background-position: 50% 80%;
  background-size: cover;
}
.isg_whatwedo-card{
  position: absolute;
  top: 0;
  right: 5%;
  height: 600px;
  width: 400px;
  background-color: rgba(19, 97, 231, 0.76);
  padding: 70px;
}
.isg_whatwedo-card-dot{
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #E1FF01;
  margin-bottom: 26px;
}
.isg_whatwedo-card-content{
  font-family: NoirPro;
  font-size: 20px;
  color: #FFFFFF
}
.isg_footer{
  height: 300px;
}
.isg_footer_contact{
  font-family: NoirProBold;
  margin-top: 3%;
}
.isg_footer_email{
  margin: 30px 0 30px 0;
}
.isg_footer_email > p{
  font-family: NoirPro;
  font-size: 20px;
  color:#0F3021;
  margin-bottom: 0;
  margin-left: 10px;
}
.isg_footer_data{
  color:#0F3021;
  font-size: 20px;
  font-family: NoirPro;
}

@media screen and (min-width: 1460px) and (max-width: 1600px) {
  .isg_services-card-container{
    padding: 0 350px 0 350px;
  }
  .isg_services-card {
    margin-right:20px;
  }
}

@media screen and (max-width: 1600px) {
  .isg_services-card-container{
    padding: 0 280px 0 280px;
  }
  .isg_services-card {
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .isg_header {
    justify-content: space-around;
  }
  .isg_header-title {
    padding-left: 0px;
    font-size: 17px;
  }
  .isg_header-logo {
    padding-right: 0;
  }
  .isg_howeare {
    display: flex;
    background-image: none;
    height: auto;
  }
  .isg_howeare-card{
    width: 100%;
    padding: 20px;
  }
  .isg_howeare-card-content{
    font-size: 15px;
  }
  .isg_howeare-title-container {
    display: none;
  }
  .isg_services-title {
    display: block;
    position: relative;
    top:auto;
    left: auto;
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  .isg_services-card-container {
    padding: 0;
  }
  .isg_services-card{
    margin-top: 25px;
    width: 136px;
    height: 187px;
  }
  .isg_services-content {
    font-size: 13px;
  }
  .isg_web-sliders{
    display: none;
  }
  .isg_mobile-sliders{
    display: block;
  }
  .isg_slider{
    width: 90vw;
  }
  .isg_sliders{
    margin-bottom: 20px;
  }
  .isg_slider_card{
    height: 50vh;
  }
  .isg_whatwedo{
    display: flex;
    background-image: none;
    height: auto;
  }
  .isg_whatwedo-card{
    display: block;
    position: relative;
    top:auto;
    left: auto;
    height: auto;
    width: 100%;
    padding: 20px;
    right: auto;
  }
  .isg_footer_email > p {
    font-size: 16px;
  }
}