    @font-face {
      font-family: 'FuturaStdBold';
      src: url(../fonts/FuturaStdBold.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdBoldOblique';
      src: url(../fonts/FuturaStdBoldOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdBook';
      src: url(../fonts/FuturaStdBook.otf) format('opentype');
      font-weight: bold;
    }
    
    @font-face {
      font-family: 'FuturaStdBookOblique';
      src: url(../fonts/FuturaStdBookOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensed';
      src: url(../fonts/FuturaStdCondensed.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedBold';
      src: url(../fonts/FuturaStdCondensedBold.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedBoldObl';
      src: url(../fonts/FuturaStdCondensedBoldObl.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedExtraBd';
      src: url(../fonts/FuturaStdCondensedExtraBd.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedLight';
      src: url(../fonts/FuturaStdCondensedLight.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedLightObl';
      src: url(../fonts/FuturaStdCondensedLightObl.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondensedOblique';
      src: url(../fonts/FuturaStdCondensedOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdCondExtraBoldObl';
      src: url(../fonts/FuturaStdCondExtraBoldObl.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdExtraBold';
      src: url(../fonts/FuturaStdExtraBold.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdExtraBoldOblique';
      src: url(../fonts/FuturaStdExtraBoldOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdHeavy';
      src: url(../fonts/FuturaStdHeavy.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdHeavyOblique';
      src: url(../fonts/FuturaStdHeavyOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdLight';
      src: url(../fonts/FuturaStdLight.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdLightOblique';
      src: url(../fonts/FuturaStdLightOblique.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdMedium';
      src: url(../fonts/FuturaStdMedium.otf) format('opentype');
    }
    
    @font-face {
      font-family: 'FuturaStdMediumOblique';
      src: url(../fonts/FuturaStdMediumOblique.otf) format('opentype');
    }
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
    * {
      box-sizing: border-box;
    }
    
    .container {
      /*width: 1240px;*/
      width: 90%;
      margin: 0 auto;
    }
    
    body {
      padding: 0px;
      font-family: 'Montserrat', sans-serif;
      margin: 0px;
      background-color:#000;
    }
    
    img {
      width: 100%;
    }
    h1,h2,h3,h4{
      font-weight: normal;
    }

    .entry-content{
      min-height: 60vh;
    }

    a {
      -o-transition:.5s;
      -ms-transition:.5s;
      -moz-transition:.5s;
      -webkit-transition:.5s;
      transition:.5s;
    }
    body:after{
      content: '';
      background: url(../images/plates-ai-bg.png);
      width: 100%;
      position: fixed;
      bottom: 0px;
      left: 0px;
      display: inline-block;
      z-index: -1;
      height: 100vh;
      background-position: bottom;
      background-size: 100% 100%;
      opacity: 0.9;
    }
    .clear {
      clear: both;
    }
    /* NavBAr */
    
    .header { 
      width: 100%;
      position: relative; 
      padding: 25px 0px ;
    }
    .header  .header-logo img{
      width: 50px;

    }
    .header .header-inner {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .mobile-burger-icon{
    display: none;
    cursor: pointer;
  }


.main-navigation-mobile {
  background:#fff;
  width:100%;
  height:100vh;
  right:0px;
  position: fixed;
  padding-top:0px;
  top: 0;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
  z-index: 99;
  overflow:auto;
  display: none;

}
.main-navigation-mobile.active {
  display: block;
  }
.main-navigation-mobile .mobile-navigation-inner{
display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100vh;
}
.main-navigation-mobile .mobile-nav-logo {
  text-align: center;
  padding-top: 55px;    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 32px;
}
.main-navigation-mobile .mobile-nav-logo img{
  width: 100px;
  }
  .mobile-nav-close {
    position: absolute;
    top: 15px;
    cursor: pointer;
    right: 15px;
  }
.mobile-nav-close img{
  filter: invert();
  width: 18px;
}
  .main-navigation-mobile .mobile-nav-footer a{
        background: none;
    border-radius: 36px;
    padding: 10px 35px;
    color: #000;
    border: #000 solid 1px;
    font-size: 13px;
    text-decoration: none;
    margin:15px 10px;
    display: inline-block;
  }
  .main-navigation-mobile .mobile-nav-footer a.signup,.main-navigation-mobile .mobile-nav-footer a:hover{
    background: #CF0101;
    color: #fff;
    border-color: #CF0101;
  }
.main-navigation-mobile .close-nav {
  padding:30px 30px 10px 30px;
  text-align:right;
}
.main-navigation-mobile .close-nav img {
  width:22px;
}
.main-navigation-mobile ul {
  margin:0px  ;
  padding:0px !important;
}
.main-navigation-mobile ul li {
  display: block!important;
  padding:   0px;
  text-align:center;
  border:0px;
  margin:0px;
  border-right:none;
  font-size:16px;
  position: relative;
  width: 100%;
}
 
.main-navigation-mobile ul li a {
  color:#000;
  text-decoration:none; 
  padding:15px 0px;
  display:block;
  outline:none;
  font-size:18px;
   font-weight: 500;  width: 100%;
}
.main-navigation-mobile ul li a:hover {
  background: #F7F7F7; color:#000;
}
    .header {
      position: absolute;
      left: 0px;
      z-index: 9;
      top: 0px;
    }
    .header .header-inner .header-right a{
      background: #fff;
      border-radius: 36px;
      padding: 10px 30px;
      color: #000;
      font-size: 13px;
      text-decoration: none;
    }
    .header .header-inner .header-right a:hover{
      background:#CF0101;
      color: #fff;
    }
    .header ul {
      list-style-type: none;
      padding: 0px;
      margin: 0px;
      padding-left: 10px;
    }
    .header li{
      float: left;
      padding: 0px 25px;
    }
    .header li a {
      display: inline;
      color: white;
      text-decoration: none;
      padding: 8px 0px;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 1px;
      font-size: 14px;
      
    }
    .header li a i{
      font-size: 24px;
    }
    .header li a:hover  {
      color: #fff;
      text-decoration: underline;
    }
    .header .nav-1 li {
      float: left;
      display: inline;
      margin: 0px 25px  ;
    }
    .plates-ai-banner .plates-ai-banner-inner{
      padding: 0px;  
      position: relative;
    }
    .plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-content{
      width: 100%;
      float: left;
      color: #fff;
      text-align: center;
      padding-top: 60px;
      position: absolute;
      top: 0px;
          display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 100%;
      background: rgba(0, 0, 0, 0.5);   /* backdrop-filter: blur(2px);*/

    }   
        .plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-content .plates-ai-banner-content-inner{
          width: 55%;
          margin: 0 auto;
          padding: 0; 
          
        }
    .plates-ai-banner .plates-ai-banner-inner h2 {
      color: #fff;
      font-size: 48px;
      line-height: 58px; 
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      margin: 0px;
    }
    .plates-ai-banner .plates-ai-banner-inner p{
      font-size: 18px;
      line-height: 28px;
      color: #fff;
      margin: 15px auto;
      width: 80%;
  padding-right: 30px;
    }
 .plates-ai-banner .plates-ai-banner-inner  .plates-ai-banner-btns{

 }
    .plates-ai-banner .plates-ai-banner-inner  .plates-ai-banner-btns a{
     background: #fff;
  border-radius: 36px;
  padding: 13px 30px;
  color: #000;
  font-size: 13px;
  text-decoration: none;
  margin: 10px 0px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
   }
   .plates-ai-banner .plates-ai-banner-inner  .plates-ai-banner-btns a:hover, .plates-ai-banner  .plates-ai-banner-inner  .plates-ai-banner-btns a.active{
    background: #000;
    color: #fff;
  }
    .plates-ai-banner  .plates-ai-banner-img{
      width: 100%;
      float: right;
  }
   
  html {
  scroll-behavior: smooth;
}
 

  .plates-brands-slider{
    width: 60%;
    margin: 110px auto;
    text-align: center;
  }
  .plates-brands-slider  .plates-brands-slide-logo{
    margin-bottom: 30px;
  }
.plates-brands-slider  .plates-brands-slide-logo img{
    width: auto;
    display: inline-block;
  }
  .plates-brands-slider  .plates-brands-slide-img img{
    border-radius: 12px;


  }

  .plates-brands-slider .slick-dots {
    display: flex;
    justify-content: center;
    
    margin: 0;
    padding: 1rem 0;
    bottom: -90px;
    list-style-type: none;
    }
  .plates-brands-slider .slick-dots  li {
            margin: 0 0.25rem;width: 10px;
        }
    
  .plates-brands-slider .slick-dots  li button {
            display: block;
            width: 10px;
            height: 10px;
            padding: 0;
              border: none;
            border-radius: 100%;
            background-color: #D9D9D9;
              text-indent: -9999px;
        }
    
     .plates-brands-slider .slick-dots  li.slick-active button {
            background-color: #DF0020;
        }
  @media only screen and (min-width: 1440px)  {
    .plates-ai-banner .plates-ai-banner-inner h2 { 
font-size: 52px;
    line-height: 62px;
}
.plates-ai-banner .plates-ai-banner-inner p {
  font-size: 24px;
  line-height: 35px; 
  margin: 15px auto;
  width: 76%;
}
  }
  @media only screen and (min-width: 1580px)  {
    .plates-ai-banner .plates-ai-banner-inner h2 { 
font-size: 60px;
    line-height: 70px;
}
.plates-ai-banner .plates-ai-banner-inner p {
font-size: 24px;
    line-height: 36px;
  }
  .plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-btns a {
   padding: 15px 40px;
   font-size: 16px; 
  margin: 20px 15px; 
}

element {
}
.header li a { 
  font-size: 18px;

}
.header .header-logo img {
  width: auto;
}
  }
  @media only screen and (min-width: 992px)  and (max-width: 1200px) {

  }
  @media only screen and (min-width: 650px)  and (max-width: 992px) {

  }
  .mobile-banner{
    display: none;
  }
  @media only screen and (max-width: 650px) {
    .mobile-banner{
    display:block;
  }
      .desctop-banner{
    display: none;
  }
  .plates-brands-slider {
  width: 100%;
  margin: 60px auto;
  text-align: center;
}
    .header-nav{
      display: none;
    }
    .plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-content {
 
}
 
.plates-brands-slider .plates-brands-slide-logo img {
  width: 40%;
  }
.plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-content .plates-ai-banner-content-inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 0px;
  background: none;
  text-align: center;
}
.plates-ai-banner .plates-ai-banner-inner h2 {
  color: #fff;
  font-size: 22px;
  line-height: 33px;
  }
  .plates-ai-banner .plates-ai-banner-inner p {
  font-size: 14px;
  line-height: 22px;  
  padding: 0px;
 
}
.plates-ai-banner .plates-ai-banner-inner .plates-ai-banner-btns a {
  
  padding: 8px 20px;
 
  font-size: 10px; 
  margin: 5px;
  display: inline-block;
}

.plates-ai-banner .plates-ai-banner-img {
  width: 100%;
  overflow: hidden;
  margin: 0 auto; 
}
/*.plates-ai-banner .plates-ai-banner-img img{
  width: 900px;
}*/
.header .header-logo img {
  width: 40px;
}
.header .header-inner .header-right{
  display: none;
  }
    .mobile-burger-icon{
      display: inline-block;
      position: absolute;
    right: 10px;
    top: 5px;
    }
    .header { 
  padding: 15px 0px;
}
}
