
:root {
      --white-color: #fff;
      --main-color: #98a86d;
      --black-color: #000;
      /* --second-color: #4f7069; */
      --second-color:#5f6c3b;
      /* --bg-color: #f5f5f3; */
      --bg-color: #F2F4F0;
      --bg-dark-color: #91978d;
}

*,
*::before,
*::after {
      margin: 0;
      padding: 0;
      outline: 0;
      box-sizing: border-box;
      text-decoration: none;
      list-style: none;
      border: none;
}




body {
     font-family: "Roboto Condensed", sans-serif;
}

/* GENRAL STYLES */
.container {
    width: 96%;
    margin: auto;
}

a {
      color: #000;
}

img {
      display: block;
      width: 100%;
}

.btn {
      display: inline-block;
      padding: 12px;
      font-weight: 500;
      /* border-radius: 7px;
      -webkit-border-radius: 7px;
      -moz-border-radius: 7px;
      -ms-border-radius: 7px;
      -o-border-radius: 7px; */
      cursor: pointer;
      transition: all 300ms ease;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      font-size: 1rem;
      width: 8rem;
      background-color: var(--main-color);
      color: #FFF;
}

.btn:hover {
      /* opacity: 0.8; */
      background-color: var(--second-color);
}

.section-title {
      font-weight: bold;
      text-align: center;
      font-size: 40px;
      color: var(--main-color);
      margin-bottom: 15px;
}
.sub-section-title {
      text-align: center;
      font-size: 25px;
      color: var(--main-color);
      margin-bottom: 10px;
}

.section-p {
      font-size: 20px;
      width: 90%;
      /* margin: 40px auto; */
      color: #7e8483
}

.banner-section{
      background-image: url(p3-title-img.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: right center;
      position: relative;
      width: 100%;
      height: 50vh;
      margin-bottom: 70px;
      background-attachment: fixed;

}

.banner-layout {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
}

.banner-title{
      color: #000;
      font-size: 50px;
      letter-spacing: 5px;
      font-weight: normal;
      text-transform: uppercase;
}

/*==========HEADER==========*/

header .nav-content {
   padding: 20px;
    margin-top: 40px;
    width: 100%;
}
header .logo {
      max-width: 200px;
      min-width: 70px;
      min-height: 70px;
      margin: 20px auto;
}

header .logo img {
      width: 100%;
      height: 100%;
}
header .nav-content .navigation{
    display: flex;
   justify-content: space-between;
   align-items: center;
    
}

header .nav-content .links {
    display: flex;
    justify-content:center;
    align-items: center;
    flex: 2;
}

header .nav-content .links a{
   font-size: 15px;
   padding: 0 10px;
   font-weight: 400;
   line-height: 24px;
   text-transform: uppercase;
    
}

header .nav-content .navigation a:hover,
header .nav-content .navigation a.active-link {
    color: var(--main-color);
}

/* Sidebar For PC  */

.side-pc {
       z-index: 2001;
      position: fixed;
      top: 0;
      right: -50%;
      width: 50%;
      height: 100vh;
      margin-left: auto;
      background-image: url(./footer-background-img-1.jpg);
      transition: all 0.7s ease;
}

.side-pc .close-wrapper {
      width: 100%;
      text-align: end;
      padding: 30px;
}

.side-pc .close-wrapper .close {
      width: 70px;
      height: 70px;
      color: var(--black-color);
}

.side-pc .menu-wrapper .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.side-pc .menu-wrapper .info p {
    margin: 20px;
    font-size: 20px;
    font-weight: 200;
     font-style: italic;
    letter-spacing: 0.09em;
    line-height: 30px;
}

.side-pc .menu-wrapper .ul-pc {
    display: flex;
    justify-content: space-between;
}

.side-pc .menu-wrapper .ul-pc .li-pc {
    margin: 30px 10px;
    padding: 10px;
    font-size: 30px;
}
.side-pc .menu-wrapper .ul-pc .li-pc a {
     color: var(--main-color);
}

.mobile-navigation {
    display: none;
    margin: 30px auto 0;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    position: relative;
}
.mobile-navigation .menu-div {
     width: 100px;
    height: 50px;
    margin-top: 20px;
}
.mobile-navigation .menu-div:hover a,
 .mobile-navigation .menu-div.active a{
    color: var(--main-color);
}

.mobile-navigation .navigation-items {
position: absolute;
top: 60px;
left: 0;
right: 0;
width: 100%;
background-color: var(--white-color);
z-index: 999;
height: 0;
overflow: hidden;
 transition: all 0.5s ease;
}

.mobile-navigation .navigation-items.open {
    height:260px;
}

.mobile-navigation .navigation-items .mobile-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 70%;
    margin: 0 auto;
}
.mobile-navigation .navigation-items .mobile-links a {
 width: 100%;
 padding: 5px;
 margin: 5px;
 border-bottom: 1px solid #c9c9c9;
 font-size: 13px;
 font-weight: 300;
 text-transform: uppercase;
}

.mobile-navigation .navigation-items .mobile-links a:last-child {
    border-bottom: none;
}

.mobile-navigation .navigation-items .mobile-links a:hover ,
.mobile-navigation .navigation-items .mobile-links a.active-link {
    color: var(--main-color);
}
.mobile-navigation .navigation-items .mobile-links a li {
    padding-left: 10px;
     transition: all 0.5s ease;
}

.mobile-navigation .navigation-items .mobile-links a:hover li ,
.mobile-navigation .navigation-items .mobile-links a.active-link li{
     transform: translateX(20px);
}
.mobile-navigation .mobile-logo {
    width: 110px;
    height: 50px;
}



 .slider {
      width: 100%;
      position: relative;
      overflow: hidden;
}

.slides {
      display: flex;
      transition: transform 1s ease-in-out;
}

.slide {
      min-width: 100%;
      height: 400px;
      background-size: cover;
      background-position: bottom left;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
}

/* .slide .layout {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.5)
} */

.slide .slide-text {
      position: absolute;
      /* color: white; */
      font-size: 2rem;
      font-weight: bold;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      text-shadow: 0 .2rem .3rem var(--main-color);
      width: 70%;

}

.slide .slide-text h1 {
      margin-bottom: 15px;
      text-transform: uppercase;
}

.slide .slide-text p {
      margin-bottom: 20px;
      font-weight: normal;

}

.slide .slide-text .btn a {
      color: #fff
}


.prev,
.next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      font-weight: bold;
}

.prev {
      left: 10px;
}

.next {
      right: 10px;
} 




@media screen and (max-width:920px) {
    .nav-content ,
    .side-pc {
        display: none;
    }
  .mobile-navigation {
    display: flex;
  }

  .slide .slide-text h1 {
            font-size: 1.6rem;
            margin-bottom: 15px;
      }

      .slide .slide-text p {
            font-size: 1.2rem;

      }
}

/*------------------------- MAIN -------------------------- */

/* Welcome  */
main .welcome {
    margin: 50px 0;
    height: auto;
}

main .welcome .welcome-info{
   display: flex;
    justify-content: space-between;
    align-items: center;
}
main .welcome .welcome-text {
      flex:1.5;
}

main .welcome .welcome-text h2 {
      margin: 30px 0;
}

main .welcome .welcome-text p {
      margin-right: 30px;
      width: 70%;
      line-height: 27px;
      letter-spacing: 0.05em;
}
main .welcome-img {
      background-image: url(p1-img-2.jpg);
      margin: 30px 0 30px 20px;
      height: 400px;
       position: relative;
       flex:1;
}

main .welcome-img img {
      position: absolute;
      top: 20%;
      right: 25%;
      display: block;
      height: 360px;
      width: 450px;
      transform: scale(0);
    transition: transform 2.5s ease;
    transform-origin: center;
}

.welcome-img img.expanded {
    transform: scale(1);
}

/* Type Products  */

main .type-products {
      padding: 30px;
      background-image: url(footer-background-img-1.jpg);
}

main .type-products h2 {
      width: 50%;
      margin: auto;
}

main .type-products p {
      margin: 30px;
      line-height: 27px;
      letter-spacing: 0.05em;
}

main .type-products .types {
      display: flex;
      justify-content: space-between;
      align-items: center;
}


main .type-products .types div {
      flex:1;
      margin: 25px;
      border-radius: 10px;
      overflow: hidden;
}



main .type-products .types div img {
      display: block;
      width: 100%;
      height: 100%;
       transition: all 0.7s ease;
}



main .type-products .types div:hover img {
      transform: scale(1.1);
}


/* Products  */

main .some-product {
      margin: 30px 0;
}
main .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    justify-content: space-between;
}

/* Styling each card */
main .cards-container .card {
     flex: 1 1 30%;
    background-color: var(--bg-color);;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    height: 400px;
      border: 1px solid #eee;
}

main .cards-container .card img {
    width: 100%;
    height: 60%; /* Half of the card height */
    object-fit: cover;
    display: block;
}

main .cards-container .card .card-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

 main .cards-container .card .card-content h4 {
    font-size: 1.2em;
     color: var(--main-color);
}

main .cards-container .card .card-content p {
    font-size: 1em;
    margin-bottom: 10px;
      text-align: center;
}


.what {
      margin: 30px 0;
      background-image: url(p1-img-2.jpg);
      display: flex;
      height: 480px;
}

.what .left {
height: 100%;
flex: 1;
}
.what .left img {
      display: block;
      height: 100%;
      width: 100%;
}

.what .right {
       padding: 30px;
       flex: 1;
       margin: 30px auto;
       color: #fff;
       position: relative;
}
.what .right h2 {
      color: #FFF;
}
.what .right p {
      margin: 20px 0;
      color: #fff;
}

.what .right .btn {
      background-color: var(--second-color);
      position: absolute;
      margin-top: 20px;
      bottom: 10px;
}



/* offer section  */

.ltr-effect,
.tb-effect{
      position: relative;
}
.ltr-effect::after,
.tb-effect::after{
      position: absolute;
      content: "";
      background-color: #333;
      top:0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index:-1;
}
.ltr-effect::after{
      width: 0;
      transition: width 0.5s ;
      -webkit-transition: width 0.5s ;
      -moz-transition: width 0.5s ;
      -ms-transition: width 0.5s ;
      -o-transition: width 0.5s ;
}
.tb-effect::after{
      height: 0;
      transition: height 0.5s ;
      -webkit-transition: height 0.5s ;
      -moz-transition: height 0.5s ;
      -ms-transition: height 0.5s ;
      -o-transition: height 0.5s ;
}
.ltr-effect:hover::after{
      width: 100%;
}
.tb-effect:hover::after{
      height: 100%;
}


.offer{
      padding: var(--main-padding);
}
.offer-content{
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
}
.offer-item{
      width: 30%;
      margin-bottom: 20px;
      border: 1px solid #e8e8e8;
      padding: 30px 15px 30px 70px;
      position: relative;
}
.offer-item.mg{
      margin-left:  5%;
      margin-right: 5%;
}
.offer-item .icon{
      position: absolute;
      left: 15px;
      top: 35px;
      color: var(--main-color);
}
.offer-item-title{
      text-transform: capitalize;
      margin-bottom: 15px;
      transition: color 0.5s;
      -webkit-transition: color 0.5s;
      -moz-transition: color 0.5s;
      -ms-transition: color 0.5s;
      -o-transition: color 0.5s;
}
.offer-item-des{
      text-transform: capitalize;
      margin-bottom: 15px;
      line-height: 1.6;
      color: #999;     
}
.offer-item:hover .offer-item-title{
      color: #fff;
}

/*--------------featured-works - Splide section ----------- */

.featured-works {
      margin: 30px 0;
      background-color:#2f3719;
      padding: 20px;
}
.main-splide {
      width: 90%;
      height: 400px;
      margin:20px auto;
}

  .splide__slide img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

.thumbnail {
      height: 60px;
      width: 80%;
      overflow: hidden;
      margin: auto;
}


@media screen and (max-width:920px) {

      .section-title {
            font-size: 30px;
      }
   main .welcome .welcome-text p {
            width: 100%;
            margin: auto;
            padding: 10px;
      }
      
      main .welcome .welcome-img {
       display: none;
      }
    
      main .type-products h2 {
      width: 100%;
}
main .type-products .types {
      flex-direction: column;
}
      main .type-products .types div {
      width: 100%;
      height: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 10px auto;
}
main .cards-container .card {
        flex: 1 1 100%; 
    }
.layer-content-title{
      font-size: 17px;
}

.what {
    flex-direction: column;
    height: auto;
}
.what .right p {
      margin-bottom: 30px;
}

.what .right .btn {
      bottom: 0;
}

.offer-item{
      width: 42%;
      margin: 15px;
}
.offer-item.mg{
      margin-left:  0;
      margin-right: 0;
}

}

@media screen and (max-width:540px) { 

.banner-title{
      font-size: 25px; 
}
.offer-item{
      width: 90%;
}

.main-splide {
      width: 90%;
      height: 230px;
}

}

/*------------------------ FOOTER----------------------------  */

footer {
background-image: url(footer-background-img-1.jpg);
 margin-top: 100px;
 padding: 20px;
 /* color: var(--white-color); */
 font-size: 16px;

 letter-spacing: 0.08em;
 line-height: 26px;
}

footer i {
      color: var(--main-color);
}
footer a ,
footer i {
 font-size: 16px;
}
footer .footer-content {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
      align-items: flex-start;
}

footer a:hover,
.foot-col-1 span:hover{
      color: var(--second-color);
}
footer .footer-content h3 {
      margin-bottom: 15px;
      font-size: 25px;
      font-weight: normal;
}
.foot-col-1,
.foot-col-2,
.foot-col-3 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin: 20px 10px;

}
.foot-col-4 {
      margin: 20px 10px;
}
 
.foot-col-4 a {
 margin: 10px;
}

.foot-col-4 a i {
      font-size: 25px;
      margin: 17px 0 ;
}

.footer-content .foot-col-1 a::after,
.footer-content .foot-col-2 a::after,
.footer-content .foot-col-3 a::after {
      background-color: var(--second-color);
      content: "";
      display: block;
      width: 0;
      height: 3px;
      margin-top: 2px;
      transition: width 0.5s;
      -webkit-transition: width 0.5s;
      -moz-transition: width 0.5s;
      -ms-transition: width 0.5s;
      -o-transition: width 0.5s;
}

.footer-content .foot-col-1 a:hover::after, 
.footer-content .foot-col-2 a:hover::after,
.footer-content .foot-col-3 a:hover::after{
      width: 100%;
      margin: auto;
}


footer .copy {
      text-align: center;
}
footer .copy span a {
      color: var(--main-color);
      font-weight: bold;
}
@media screen and (max-width:920px) {

      .footer-content {
            flex-wrap: wrap;
            align-content: space-between;
      }
      .foot-col-1,
      .foot-col-2,
      .foot-col-3,
      .foot-col-4 {
            width: 45%;
      }
     
}

@media screen and (max-width:640px){
      .footer-content {
            flex-direction: column;
            
      }
        .foot-col-1,
      .foot-col-2,
      .foot-col-3,
      .foot-col-4 {
            width: 95%;
      }
     
}



/* ============================================ ABOUT US PAGE ===========================================*/

.about-company {
      display: flex;
      justify-content: space-between;
}
.about-company .about-text {
  flex:1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(p1-img-2.jpg);
  padding: 23px;
}
.about-company .about-text h2{
      font-size: 40px;
    text-align: center;
    color: #fff;
    font-weight: normal;
    margin-bottom: 15px;
}
.about-company .about-text .about-qoute {
    font-size: 25px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px;
}

.about-company .about-text .section-p {
      color: #fff;
      line-height: 30px;
      margin-bottom: 20px;
}
.about-company .about-img {
  flex: 1;
}
.about-company .about-img img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.our-vision {
      margin-top: 50px;
      background-image: url(our-vision.jpg);
      height: 500px;
      padding: 20px;
}

.our-vision h4 {
    font-size: 40px;
    text-align: center;
    color: #000;
    font-weight: normal;
}
.our-vision .section-p {
      color: #000;
      margin: 20px auto;
      line-height: 30px;
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.09em;
}

.our-mission {
      display: flex;
      justify-content: space-between;
      height: 600px;
      margin-top: 50px;
      margin-bottom: 50px;
}
.our-mission .our-mission-img{
      height: 100%;
}
.our-mission .our-mission-img img{
      height: 100%;
      display: block;
      object-fit: cover;
}
.our-mission .our-mission-text{
      background-image: url(p1-img-2.jpg);
        padding: 23px;
}
.our-mission .our-mission-text h4 {
 font-size: 40px;
    text-align: center;
    color: #FFF;
    font-weight: normal;
}

.our-mission .our-mission-text .section-p {
      color: #FFF;
      margin: 20px auto;
      line-height: 30px;
}


/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for about page =======*/
@media screen and (max-width: 920px) {
      .about-company ,
      .our-mission{
            flex-direction: column;
            height: auto;
      }
      .our-vision {
            height: auto;
      }
     
}



/* ==============PRODUCTS PAGE =======*/
main .collections {
      margin-bottom: 80px;
}
main .collections .collections-types{
      display: flex;
      justify-content: space-between;
      margin-top: 30px;

}
main .collections .collections-types div {
      flex: 1;
      margin: 0 20px;
      transition: all .5s ease;
      cursor: pointer;
}

main .collections .collections-types div:hover {
      transform: scale(1.1);
}
main .collections .collections-types div img {
      width: 100%;
      border-radius: 15px;
}

main .products {
      margin-bottom: 30px;
         background-image: url(our-vision.jpg);
         padding: 20px;
}
main .products .products-card {
      display: flex;
       flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
      margin-top: 20px;
}
main .products .products-card .product-card{
      flex: 1;
      margin: 0 20px;
      background-color: #ebf0e7;
}
.products .card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.products .cardProduct {
    border: 1px solid #e5e8d9;
    border-radius: 8px;
    padding: 10px;
    margin: 15px 10px;
    background-color: #fff;
    text-align: center;
    width: 200px;
    cursor: pointer;
    transition: all 1s ease;
}

.products .cardProduct:hover {
      transform: translateY(-30px);
}

.products .cardProduct img {
    width: 100%;
    height: 60%;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 10px;
}

.products .cardProduct button {
      background-color: var(--main-color);
      text-transform: uppercase;
      padding: 10px;
      margin: 10px;
      color: #fff;
      transition: all 1s ease;
}

.products .cardProduct button:hover {
      background-color: var(--second-color);
      cursor: pointer;
}

.products .pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.products .page-button {
    margin: 0 5px;
    padding: 10px 15px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
}

.products .page-button.active {
    background-color: var(--main-color);
    color: #fff;
}

.products .page-button:hover:not(.active) {
    background-color: #ddd;
}



/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for about page =======*/
@media screen and (max-width:765px) {
      main .our-products-page h2 {
      font-size: 30px;
      margin: auto 20px;
}

.products .cardProduct {
      width:90%;
}

main .collections .collections-types{ 
      flex-direction: column;
      margin: 30px;
}
main .collections .collections-types div {
      margin: 20px;
    width: 90%;;
}
}



/* ==============PRODUCT DETAILS =======*/
.productDetails{
      /* margin: 40px; */
      min-height: 630px;
      padding: 40px;
      display: flex;
      justify-content:space-around;
      align-items: center;
      gap: 20px;
       height: 80vh;
       background-image: url(our-vision.jpg);
}

.productDetails .productDetailsImg{
      background-color: var(--main-color);
      overflow: hidden;
      /* border: 2px solid #dee4d8; */
      box-shadow: 2px 4px 4px rgba(139, 134, 134, 0.5);
padding: 15px;
transition: all 0.5s ease;
width: 40%;
border-radius: 15px;
   
}
.productDetails .productDetailsImg:hover{
    transform: scale(1.2);

   
}
.productDetails .productDetailsImg img{
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

.productDetails .productDetailsInfo{
width: 40%;
}
.productDetails .productDetailsInfo h2{
font-size: 40px;
margin: 30px;
font-weight: 800;
color: var(--main-color);
}
.productDetails .productDetailsInfo p{
font-size: 20px;
margin: 10px;
}
.productDetails .productDetailsInfo p span{
   color: #7e8483
}



/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for about page =======*/
@media screen and (max-width:765px) {

      main .our-products-page h2 {
      font-size: 30px;
      margin: auto 20px;
}
      .productDetails{
            flex-direction: column;
             justify-content:center;
       height: auto;
       padding: 20px;
       margin: 20px;
      }
      .productDetails .productDetailsImg {
            width: 90%;
            max-height: 60vh;
            margin-bottom: 30px;
      }
      .productDetails .productDetailsInfo {
            width: 90%;
            margin: auto;
      }

      .productDetails .productDetailsInfo h2{
font-size: 30px;
margin: 30px 5px;
font-weight: 600;
color: var(--main-color);
text-align: center;
}
.productDetails .productDetailsInfo p{
font-size: 17px;
margin: 10px 5px;
}
}



/* ==============PRODUCTION PAGE =======*/

main .production {
      background-image: url(sliders-2.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: top center;
      position: relative;
      width: 100%;
      height: 50vh;
      margin-bottom: 70px;
      background-attachment: fixed;

}

main .production .layout {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
}

main .production h2 {
      color: #fff;
      font-size: 40px;
      letter-spacing: 3px;
      text-shadow: 0 .3rem .5rem #4f7069;
}

main .production-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    padding: 10px;
    min-height: 800px;
    margin: 10px;
}
main .production-container .production-img{
      height: 500px;
      width: 28%;
      margin: 20px;
}
main .production-container .production-img img{
      height: 100%;
      width: 100%;
      object-fit: cover;
}

/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for production page =======*/
@media screen and (max-width:765px) {

      main .production-container {
    height:auto
}
main .production-container .production-img{
      width: 99%;
      margin: 20px auto;
      height: 80%;
}
}

/* ==============CERTIFICATION PAGE =======*/

main .certifications {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 70%;
      margin: 50px auto;

}

main .certifications .certificate {
      flex: 1;
      height: 500px;
      margin: 10px;
}

main .certifications .certificate img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
}



/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for certification page =======*/
@media screen and (max-width:765px) {
      main .certifications {
            flex-direction: column;

      }

      main .certifications .certificate {
            width: 100%;
      }
}



/* ==============GALLERY PAGE =======*/

.gallery-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      min-height: 400px;
      padding: 30px;
      /* margin: 10px; */
      background-image: url(p1-img-2.jpg);
}

.gallery-section .gallery-container {
      position: relative;
      width: 280px;
      height: 280px;
      margin: 20px 0;
}

.gallery-section .gallery-container .gallery-layout {
      position: absolute;
      top:50%;
      left: 50%;
      width: 75%;
      height: 75%;
      transform: translate(-50%,-50%);
      background-color: var(--second-color);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #FFF;
      opacity: 0;
      transition: all 0.4s ease;
}

.gallery-section .gallery-container:hover .gallery-layout {
      opacity: 1;
}

.gallery-section .gallery-container .gallery-img{
      width: 100%;
      height: 100%;
}
.gallery-section .gallery-container .gallery-img img{
      width: 100%;
      height: 100%;
      display: block;
}

/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for gallery page =======*/
@media screen and (max-width:650px) {
.gallery-section {
      flex-direction: column;
}
.gallery-section .gallery-container {
      width: 95%;
      height: auto;
      margin: 20px auto;
}
}

/* ==============CONTACT PAGE =======*/

main .address {
      display: flex;
      align-items: flex-start;
      height: 80vh;
      margin: 40px 0;
}

main .address .map{
      flex: 1.4;
      height: 100%;
}
main .address .map iframe {
      width:100%;
       height:100%
}
main .address .visit{
      flex: 1;
      background-image: url(p1-img-2.jpg);
      height: 100%;
      padding: 20px;
}

.address .visit .section-title {
      color: #fff;
      font-weight: normal;
      text-transform: uppercase;
      margin-bottom: 40px;
}
.address .visit p{
      color: #fff;
      font-size: 22px;
}

main .contact-info {
      display: flex;
      background-image: url(p3-img-1.jpg);
      margin: 40px 0;
      min-height: 400px;
      background-position: top right;
      background-size: cover;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
       border-top: 0.5px solid #cdc9c9;
}
main .contact-info .office {
      margin-bottom: 30px;
}
main .contact-info .office h3{
     font-size:30px;
     font-weight: 400;
     margin-bottom: 15px;
     text-transform: capitalize;
}
main .contact-info .office p{
     font-size: 18px;
     font-weight: 300;
     margin-bottom: 10px;
}

/* ==============MEDIA QUERIES FOR TABLETS AND MOBILE PHONES for contact page =======*/
@media screen and (max-width:920px) {
   main .address {
      flex-direction: column;
      height: 800px;
   }

   main .address .map {
      width: 100%;
      height:60vh
   }
   main .address .map iframe {
      width: 100%;
      height: 100%;
   }
 .address .visit {
       width: 100%;
   }

   main .contact-info {
      flex-direction: column;
      align-items: center;
      background-position: top left;
   }
   main .contact-info .office {
      display: flex;
      flex-direction: column;
      align-items: center;
   }
}