@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;

  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background: #f2f2f2;
}
/*Image hero*/
.hero-img .banner-area{
    width: 100%;
    height: 431px;
    background-image: url(../assets/type.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.banner-area h2{
    padding-top:12%;
    font-size: 40px;
    font-family: poppins;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    text-align: center;
}
.banner-area p{
  text-align: center;
}
.text-center button {
    font-size: 22px;
    text-align: center;
    letter-spacing: 2px;
    border: 2px solid rgb(255, 255, 255);
    padding: 8px;
    width: 200px;
    background-color:transparent;
    color: white;
    cursor: pointer;
  }

  .text-center button:hover{
    transition: 0.25s;
    background-color:rgb(0, 0, 0);
    color: #ffffff;
  }
.text-center
  
  .content-area{
    width: 100%;
    top: 450px;
    background: rgb(219, 243, 243);
    
  }
  .content-area h2{
    font-family: bignoodletitling;
    letter-spacing: 4px;
    padding-top: 30px;
    font-size: 40px;
    margin: 0;
    text-align: center;
  }
  .content-area p{
    text-align: justify;
    margin: 0 20px 0 15px;  
    line-height: 2em;
  }

/*section 1*/

  section{
    padding-left: 100px;
    padding-right: 10px;
}
.about{
    background: #ffffff;
}
.row{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.row .col150{
    position: relative;
    width: 48%;
}
.titleText{
    color: rgb(255, 255, 255);
    font-size: 2em;
    font-weight: 300;
}
.titleText span{
    color: #e21e1e;
    font-weight: 700;
    font-size: 1.5em;
}
.row .col150 .imgBx{
  margin-top:70px;
position: relative;
width: 100%;
height: 450px;
}
.row .col150 .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    object-fit: cover;
   
}

.container-button {
  height: 100px;
  position: relative;
}

.center-button {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.btn-center {
  background-color: rgb(255, 255, 255);
  border: 2px solid black;
  color: black;
  padding: 10px 25px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;
}

.btn-center:hover {
  background-color: #000000;
  color: white;
}

@media only screen and (max-width:991px){
    section{
        padding:20px;
    }
    .row{
        flex-direction: column;
    }
    .row .col150{
        position: relative;
        width: 100%;
        padding-left: 40px;
    }
    .row .col150 .imgBx{
        height: 300px;
         margin-top:-2px;
    }
    .hero-img{
        max-width: 100% !important;
        height:auto !important;
    }
}
@media only screen and (max-width:600px){
 
    .time-img img{
        width: 100% !important;
        height:80% !important;
    }
}

.time-img{
  display: flex;
  justify-content: center;
}

.time-img img{
  width: 100%;
}

