* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
button,
input,
select,
textarea,
.pure-g [class*="pure-u"] {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* --------------------------
 * Element Styles
 * --------------------------
*/
body {
  min-width: 320px;
  background-color: #FEDE01;
  color: #000;
  line-height: 1.3em;
  font-size: 18px;
  font-weight: normal;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  /*position: relative;
    min-height: 100vh;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #000000;
}

h1 {
  font-size: 2.7rem;
  line-height:2.7rem;
}
h2 {
  font-size: 2rem;
  line-height:2.3rem;
}

h3 {
  font-size: 1.25em;
  line-height:1.4rem;
}

h4 {
  font-size: 1.125em;
}

a {
  color: #ebeff2;
  /* block-background-text-normal */
  text-decoration: underline;
}

a:visited {
  color: #ebeff2;
  /* block-normal-text-normal */
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

figure {
  margin: 0;
  padding: 0;
}

svg {
  max-height: 100%;
  max-width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* --------------------------
 * Layout Styles
 * --------------------------
*/
.pageWrap{
    position: relative;
  min-height: 100vh;
}
.wrap {
  padding-left: 1.5em;
  padding-right: 1.5em;
  /* padding-bottom: 2.5rem;    Footer height */
}

.outer-wrap {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  margin-left: auto;
  margin-right: auto;
}

section {
  margin-top: 50px;
}

.p-tb {
  padding-top: 15px;
  padding-bottom: 15px;
}

.upper{
  text-transform: uppercase;
}
.line-box{
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  border-left: none;
}
.subtitle{
  font-weight:bold;
  text-transform:uppercase;
}
.robotimg{
  border-bottom: 2px solid #000;
}
.notify{
  text-align:left;
}
/* --------------------------
 * Footer Styles
 * --------------------------
*/
footer {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
/*  position: absolute;*/
  bottom: 0;
  width: 100%;
  margin-top:50px;
}

footer .copyright {
  /*padding-top: 20px;*/
  text-align: center;
}

footer ul.social-icons {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer ul.social-icons li a {
  display: block;
  cursor: pointer;
  color: #fff;
  padding: 0 10px;
}

/* --------------------------
 * Back to Top Styles
 * --------------------------
*/
.back_to_top {
  position: fixed;
  right: 3%;
  bottom: 0;
  z-index: 100;
}

.back_to_top a {
  background-color: #000;
  display: block;
  float: left;
  padding: 10px;
  position: relative;
  width: 40px;
  height: 40px;
}

.back_to_top .fa {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
}


/* --------------------------
 * Responsive Styles
 * --------------------------
*/
@media only screen and (max-width: 768px) {
  .info {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  footer .useful {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .useful > div {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  footer .info {
    text-align: center;
  }
}

@media only screen and (min-width: 980px) {
  .outer-wrap {
    max-width: 970px;
  }
}

@media only screen and (min-width: 1280px) {
  .outer-wrap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
  h2 {
    font-size: 2rem;
    line-height: 36px;
    margin-bottom:0.5rem;
  }
 

}


@media only screen and (min-width: 740px) {
  .row{
    padding: 0 10px;
  }

  h3 {
    font-size: 1em;
    line-height:1.2rem;
  }

/* --------------------------
 * Flex
 * --------------------------
*/

    .d-flex{
      display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-inline-flex{
      display: inline-flex;
    }
    .flex-row{
      flex-direction: row;
    }
    .flex-row-r{
      flex-direction: row-reverse;
    }
    .flex-column{
      flex-direction: column;
    }
    .flex-column-r{
      flex-direction: column-reverse;
    }
    .flex-justify-start{
      justify-content: flex-start;
    }
    .flex-justify-end{
      justify-content: flex-end;
    }
    .flex-justify-center{
      justify-content: center;
    }
    .flex-justify-between{
      justify-content: space-between;
    }
    .flex-justify-around{
      justify-content: space-around;
    }
    .flex-align-start{
      align-items: flex-start;
    }
    .flex-align-end{
      align-items: flex-end;
    }
 
    .flex-align-baseline{
      align-items: baseline;
    }
    .flex-align-stretch{
      align-items: stretch;
    }

    .topliner div{
      width: 20em;
    }
    .notify{
      text-align:right;
    }
    .line-box{
      border-bottom: none;
      padding-bottom: 0;
      border-left: 1px solid #000;
    }   

    .estatebox{
        display: grid;
        grid-column-gap: 1rem;
        grid-template-columns: repeat(5, 2fr);
    }

    .estatebox .lft-col{
      grid-column: auto / span 1;
    }

    .estatebox .rgt-col{
      grid-column: auto / span 4;
    }
    .col-box{
      display: flex;
    }
    .places-box{
      flex:1;
    }
    .col-box{
      margin: 20px 0;
    }

    .txt-center{
      text-align:center;
    }
    .rgt-col-place{
      display: grid;
      grid-gap: 5rem 0rem;
      grid-template-columns: repeat(4, 1fr);
    }
    .box-4{
      grid-column: 1 ;
      grid-row: 2 ;
    }
    .box-5{
      grid-column: 2 ;
      grid-row: 2 ;
    }
    .col-box-1{
      display: flex;
    }
    .places-box-1{
      flex:1;
    }
    .places-box-1 img{
      width: 50%;
    }
    .robotimg img{
      width:30%;
    } 
}

@media only screen and (max-width: 739px)  and (min-width: 665px) {
    .col-box-1{
      display: flex;
    }
    .ip-landscape{
      grid-template-columns: repeat(2, 1fr);

    }
    .places-box-1{
      flex:1;
      padding:20px;
    }
    .robotimg img{
      width:50%;
    } 
}
.col-box-1 > div{
  margin-bottom:30px;
  margin-top:30px;
}
.flex-align-center{
  align-items: center;
}
.mettlelogo{
  width:40%;
}
.box-gap{
  display: grid;
  gap: 40px;
}

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

}

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

}