@font-face{
  font-family: 'myriadpro-bold';
    src: url("/fonts/myriadpro/myriadpro-bold.otf");
}
@font-face{
  font-family: 'myriadpro-regular';
  src: url("/fonts/myriadpro/myriadpro-regular.otf");
}
html{
  font-family: 'myriadpro-regular';
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
body{
      /* overflow-x: hidden; */
background-attachment: fixed;
background-image: url(/pic/bacground.jpg);
-moz-background-size: 100%; 
-webkit-background-size: 100%;
-o-background-size: 100%; 
background-size: 100%;
}

h1{
  font-size: 14pt;
  font-weight: 900;
  margin:20px 20px 10px 20px;
}

#logotp{
 display: flex;
}

#logotp>img:nth-child(1)
{
  height:90px;
  width:90px;
}


#logotp>img:nth-child(2){
 margin-left:20px;
 width:200px;
}

.rev_not_p, .rev_not_p>p{
  padding:0;
  margin:0;
}

#contact {
  padding:5px 0 5px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  align-items: stretch;
}
#contact > div {
  display: flex;
  row-gap:5px;
  flex-direction: column;
  justify-content: center;
}
#contact > div:nth-child(1) {
  align-items: flex-start;
  padding: 0px;
}

#contact > div:nth-child(3) {
  align-items: flex-end;
  padding: 0px;

}
#contact > div:nth-child(3) >div{
  width:165px;
  text-align: left;
}
#contact > div.center-vertical {
  align-items: center;
}
#contact > div > div ,#contact a{
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact .ico {
  width: 30px;
  height: 30px;
  display: block;
}
#contact,  #contact a {
  font-size:10pt !important;
  color: #000000;
  text-decoration: none;
}
   
  body {   overflow-y: scroll;  
    padding:0;
    margin:0;
    display: grid;
    height: 100vh; 
    grid-template-rows: auto 1fr auto;
      grid-template-columns: 1fr 1120px 1fr;
    grid-template-areas:
      "header header header"
      ". main ."
      "footer  footer footer ";
      gap: 0px;
  }
    main {
    grid-area: main;
    background: #fff;
    padding: 0;
      width: 100%;
  }

 
header { 
  grid-area: header;
  display: grid;
  background: #ffff;
  padding: 0px;
  text-align: center;
  grid-template-columns: 1fr 1100px 1fr;
  grid-template-areas:
    "manifest_bg_left manifest manifest_bg_right"
    ". contact ."
    "nav_bg_left nav nav_bg_right";
    position: sticky;  
    top: 0; 
    gap: 0px;
}
#manifest { grid-area: manifest; background: #F4E049; padding:10px 5px 5px 5px;}
.manifest_bg_left  { grid-area: manifest_bg_left; background: #F4E049; }
.manifest_bg_right { grid-area: manifest_bg_right; background:#F4E049 }
.nav_bg_left   {grid-area:nav_bg_left; background:#1C2431}
.nav_bg_right {grid-area: nav_bg_right; background:#1C2431 }
#contact { grid-area: contact; }
#nav { grid-area: nav; }

footer {  grid-area: footer;
  background-color: #1C2431;
  display: grid;
  padding: 0;
  grid-template-columns: 1fr 1000px 1fr;
  grid-template-areas: ". nav2 ."
  ". copyright .";
  gap: 0;
}

footer nav { 
  grid-area: nav2; 
  display: flex;
  justify-content: center;
}

footer nav > div {
  width: 200px;
  margin: 20px 20px 20px 0;
  padding-right: 15px;
}

footer nav > div:not(:last-child) {
  border-right: 2px solid #fff;
}

footer nav ul {
  padding: 0;
  margin: 0;
}

footer nav span,
footer nav div > a {
  color: #FFDD00;
  font-family: 'myriadpro-bold';
  font-size: 14pt;
  text-decoration: none;
}

footer nav li {
  padding-top: 7px;
}

footer nav > div:last-child div {
  padding-top: 7px;
}

footer nav > div:last-child , #copyright{
  font-size: 15px;
  color: #f6f6f6;
  text-decoration: none;
}

footer .icon_footer img {
  margin: 5px 10px 5px 0;
  width: 30px;
}

footer nav ul li a {
  font-size: 15px;
  color: #f6f6f6;
  text-decoration: none;
}

#copyright{  
  display:none;
  grid-area:   copyright; 
flex-direction: column;
align-items: center;;
 padding:15px;
}

#copyright >img{
   margin:20px;
  width:60px;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
}

main {
  margin-top: 188px;  
}


 ol.breadcrumb  {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px;
  padding: 0;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 8px;
  color: #888;
}

.breadcrumb-item a {
  color: #0275d8;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #01447e;
  text-decoration: underline;
}

.breadcrumb-item:last-child,
.breadcrumb-item:last-child a {
  color: #333;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

@media (max-width: 1100px) {
 
body{
background-image: none;
}

footer nav > div {
    width: 25%;
}

  header {
 
    grid-template-columns: 1fr;
    grid-template-areas:
      "manifest"
      "contact"
      "nav";
  }
  
  footer { 
    grid-template-columns: 1fr;
    grid-template-areas: 
    "nav2"
    "copyright";
  }


     
  body { 
    grid-template-columns: 1fr;
    grid-template-areas:
      "header header header"
      "main main main"
      " footer footer footer";

  }
header {width:100% !important}
main {width:100% !important}
footer {width:100% !important}


.nav_bg_left,.nav_bg_right ,.manifest_bg_left ,.manifest_bg_right {display: none;}

}


#count_cart{
  font-size: 14pt;
  font-weight: 900;

}

@media (max-width: 768px) {

  main {
  margin-top: 50px;  
}
#count_cart{
 
  color:#ffff
}

  #copyright{
    display:flex;
  }
  footer nav > div:not(:last-child) {
    display:none;
  }
  
 footer nav > div:last-child {
    margin:20px 0 0 0;
    padding:0;
    text-align: center;
    width:200px;
   }
  
 
   #logotp, #logotp>img:nth-child(1)
   {
    width:39px;
    height:39px;
    margin-left:3px;
  }


  #logotp>img:nth-child(2)
  {margin: 0;
    display:none;
  }
  
  #contact .ico, #contact .ico img{
width: 30px;
height: 30px;
  }

#contact .ico img{
  width:20px;
  height:20px;
  }


  #manifest{ 
     display: none !important;
  }

  #contact {
    background-color: #1C2431;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 !important;
    order: 1;
  }

 
    #contact > div.center-vertical {
      order: 1;
      margin-right: 10px;
    }
    .center-vertical img {
      width: 90px !important;
      height: auto;
    }

    #contact > div:nth-child(1) {
      order: 2;
      display: flex !important;
      margin-right: auto;
    }
    #contact > div:nth-child(1) > div:not(:first-child) {
      display: none !important;
    }

    #contact > div:nth-child(3) {
      order: 3;
      display: flex !important;
      flex-direction: row;
          gap: 10px;
    }
    #contact > div:nth-child(3) > div:nth-child(1)  {
      display: none !important;
    }
   
    #contact > div:nth-child(3) > div:nth-child(2),
    #contact > div:nth-child(3) > div:nth-child(3) {
      width:30px;
      display: flex !important;
      align-items: center;
      padding: 0;
 
    }
    #contact > div:nth-child(3) > div:nth-child(2)>a>span,
    #contact > div:nth-child(3) > div:nth-child(3)>a>span{
      display:none;
    }
    .hamburger-menu {
      order: 4;
       margin-left: 10px;
    }
}