:root {
  --whiteColor: #fff;
    --primaryColor: #2E4F43;
    --primaryColorHover: #313131e3;
  --secondaryColor: #315C4E;
  --secondaryColorHover: #313131c7;
  --primaryColoLight: #ECECEC;
  --shadowColor:#502c1d;
  --blackColor: #000;
  --grayTextColor: #555;
  --backgroundColorSpecial: #7f806b;
 
}

/* ///////////////////////Global reset////////////////// */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: bpgmrgvlovani;
  src: url(/wp-content/themes/template005/fonts/fonts/bpg_mrgvlovani_2009.ttf);
  font-weight: normal;
}


@font-face {
    font-family: Geo Rustaveli;
    src: url(/wp-content/themes/template005/fonts/fonts/geo_rustaveli.ttf);
    font-weight: normal;
}

/* Main Styles */

body {
  background: var(--primaryColoLight);
  font-family: "bpgmrgvlovani";
}

.site-area {
  width: 100%;
  max-width: 1360px;
}

.page-area {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.content-area {
  width: 100%;
  margin-bottom: 0px;
  padding: 7.5rem 1rem 1rem 1rem;
  min-height: calc(100vh - 15rem);
}

.wide-image{
  width: 100%;
}

@media screen and (max-width: 768px) {
  .content-area {
    min-height: calc(100vh - 32.72rem);
    margin-bottom: 3rem;;
  }

}

/* Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--whiteColor);
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  gap:20%;
  z-index: 1002;
  transition: 0.3s ease-out;
}

#preloader img{
    padding-top:5%;
}

.loader-container{
  position: relative;
    width: 70px;
    height: 70px;
}

.loader {
  width: 60px;
  height: 60px;
  background-color: var(--secondaryColor);
  border-radius: 50%;
  animation: outerBall 1s ease-in-out infinite alternate;
}

.loader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: #803d25;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: innerBall 1s ease-in-out infinite alternate;
}

    @keyframes outerBall {
      0% {
        transform: scale(1.6);
        opacity: 0.7;
      }
  
      100% {
        transform: scale(0.9);
        opacity: 1;
      }
    }
  
    @keyframes innerBall {
      0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0.5;
      }
  
      100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
      }
    }


/* Header */
.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  padding: 0.5rem 1rem;
  z-index: 1000;
  background-color: var(--primaryColor);;
   box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo p {
  color: var(--whiteColor);
  /*text-transform: uppercase;*/
  font-size: 1.1rem;
  width:200px;
  /*font-style: italic;*/
  transition: all 0.3s ease;
}

.logo p:hover {
  color: var(--primaryColoLight);
}

@media screen and (max-width:768px){
    .logo p {
        font-size:1rem;
        width:150px;
    }
}

.main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-navigation ul li {
  /* padding: 1rem 0.5rem; */
  cursor: pointer;
}

.main-navigation ul li a {
  border-radius: 0.2rem;
  font-size: 12px;
  color: var(--whiteColor);
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
}

.main-navigation ul li a:hover {
  background-color: var(--primaryColoLight);
  color: var(--blackColor);
}

.gtranslate_wrapper{
    z-index: 1001;
}

/* flags */
.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin: 0.5rem;
}

.flags img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.3rem;
}

.language-change .flags {
  flex-direction: column;
  background-color: transparent;
}

@media screen and (max-width: 1080px) {
  .flags {
    justify-content: flex-start;
    margin: 0 1.4rem;
  }

  .main-navigation {
    flex-direction: column;
    align-items: flex-end;
    /*margin-top: 1rem;*/
    background-color: var(--secondaryColor);
  }

  .main-navigation .flags {
    border-radius: 0.3rem;
    padding:1.2rem 0.5rem 0.2rem 0.5rem;
    margin: 0;
    z-index: 1005;
  }
}

/*  */


.menu-checkbox {
  display: none;
}

.hamburger-menu {
  display: none;
}

@media screen and (max-width: 1430px) {
  .main-navigation ul li a {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1080px) {
    
  .hamburger-menu {
    display: block;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.9rem 0.5rem;
    z-index: 100;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--secondaryColor);
    transition: all 0.5s ease-out;
  }

  /*.hamburger-menu:hover {*/
  /*  background-color: var(--primaryColorHover);*/
  /*}*/

  .hamburger-menu span {
    display: block;
    width: 2rem;
    height: 0.2rem;
    margin-bottom: 0.3rem;
    background: var(--whiteColor);
    border-radius: 0.2rem;
    transition: transform 0.3s ease;
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(1) {
    transform: translatey(8px) rotate(45deg);
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .hamburger-menu span:nth-child(3) {
    transform: translatey(-8px) rotate(-45deg);
  }

  #menu-toggle:checked ~ .menu-primary-menu-container .right,
  #menu-toggle:checked~.menu-menu-en-container .right,
  #menu-toggle:checked~.menu-menu-ru-container .right{
      display:block;
  }
   
  
  

  

  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 5rem;
    right: 0;
    width: 300px;
    height: 100vh;
    padding-top: 2rem;
    background-color: var(--whiteColor);
    z-index: 1000;
    transition: transform 0.9s ease;
    animation: slideInMenu 0.5s forwards;
  }
  


  @keyframes slideInMenu {
    0% {
      transform: translateX(300px);
    }
    100% {
      transform: translateX(0px);
    }
  }

  @keyframes slideOutMenu {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(300px);
    }
  }

  .main-navigation ul li {
    width: 100%;
    margin: 0.5rem auto;
    padding: 0.3rem 0;
  }


  .main-navigation ul li a {
    color: var(--blackColor);
    text-align: left;
    display: block;
    font-size: 1rem;
    line-height: 1rem;
    padding-left: 1rem;
  }
}




/* content */

.content-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-area h3{
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-area p{
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-area a{
  color: var(--blackColor);
  transition: all 0.3s ease;
}

.content-area a:hover{
  color: var(--secondaryColor);
}

.content-area strong{
  font-weight: 700;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 200px;
    font-size: 2.5rem;
}

/* main */

.homepage{
    display:flex;
    margin: 0 auto;
    width:100%;
    flex-direction:column;
}


.homepage .hero-img-container{
    width:100%;
    height:50vh;
    display: none;
    background-color:black;
}

.hero-img-container img{
    width:100%;
    height: 50vh;
    opacity: 0.7;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top:25%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: var(--blackColor);
    font-size: 2rem;
    animation: fadeInUp 3s forwards;
}

.hero-text span {
    color:#ffeab6;
    font-family: 'Montserrat', cursive;
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-text p{
    color: var(--whiteColor);
    font-weight: 900;
    font-size:4rem;
    font-family: 'Montserrat', sans-serif;
    margin-top:2rem;
     font-family: 'Playfair Display', serif;
     -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}




@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


@media screen and (max-width: 1360px){
    .hero-text span{
        font-size:3rem;
    }
   .hero-text p{
    font-size: 2.5rem;
  } 
}
@media screen and (max-width: 768px){
    
    .hero-text{
        top:23%;
        width:95%;
        left:2%;
    }
  .hero-img-container{
     width:100%;
    height:500px;
    margin-top: 2rem;
  }


.hero-text span{
        font-size:2.5rem;
    }
}

@media screen and (max-width: 450px) {
    .hero-img-container {
        width: 100%;
        height: 400px;
    }


.hero-text span{
        font-size:2.2rem;
    }
    
    .hero-text p{
    font-size: 1.8rem;
  } 
}

.btn {
  padding: 14px 28px;
  background: var(--secondaryColor);
  color: #1f1f1f;
  border: 2px solid #1f1f1f;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondaryColorHover);
  color: #fff;
}

.special-background{
    width:100%;
    background-color: var(--backgroundColorSpecial);
}

.home-main{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}
.home-main-container{
    width:100%;
    max-width:1360px;
    margin: 5rem auto;
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding:0.5rem;
}

.home-main img{
    width:100%;
    max-width: 500px;
    border-radius:10px;
     border-radius: 12px 0 12px 0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home-main-text{
    width:100%;
    max-width: 700px;
}

@media (max-width: 1360px){
    .home-main-container{
       width:95%;
       justify-content:center;
       gap:2rem;
    }
    
    .home-main-container img, 
    .home-main-text{
    max-width:500px;
    }
}

@media (max-width: 768px) {
    .home-main-container{
        flex-direction:column;
    }
    
    .home-main-container img{
        height:300px;
        object-fit:cover;
    }
}

.home-products{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    width:100%;
    max-width:1360px;
    margin:2rem auto;
    flex-direction:column;
    padding:40px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
    color:#ffeab6;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight:600;
}

.section-header p {
  font-size: 1.1rem;
  color: #fafafa;
}

.cards {
    width:100%;
    max-width:1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin:0 auto;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  cursor:pointer;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.card h3 {
  font-size: 22px;
  margin: 1rem;
  color: var(--grayTextColor);
}

.card p {
  font-size: 15px;
  color: var(--grayTextColor);
  margin: 1rem;
}

.center-btn{
    margin: 3rem auto 1rem auto;
}

/* Responsive */

@media (max-width: 1360px) {
    .home-products{
        padding:0.5rem;
    }
    .cards{
        max-width: 800px;
    }
    
    .card img{
        height:300px;
    }
}
@media (max-width: 768px) {
    
    .home-products{
        width:95%;
        max-width:500px;
    }
    
  .cards {
    grid-template-columns: 1fr;
  }
}

.home-sections{
    display:flex;
    width:100%;
    max-width:1360px;
    padding: 5rem 0;
    margin:0 auto;
   justify-content: space-between;
    align-items: center;
    flex-direction:column;
}

.homepage .home-section{
    display:flex;
    width:100%;
    max-width:1360px;
    padding: 1rem 0;
    margin:0 auto;
   justify-content: space-between;
    align-items: center;
    height: 200px;
}

.home-section-img{
    flex:2;
}

.home-section img{
    display:flex;
    justify-content:center;
    align-items:center;
    width:200px;
    height:200px;
}

.home-section-text{
    flex:4;
    text-align:center;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.special-text{
    color: var(--secondaryColor);
    font-size:1.5rem;
    font-weight:600;
}

.home-section p,
.home-main-text p{
    margin:0 auto;
    color: var(--grayTextColor);
    font-size:1rem;
    margin-top:1rem;
    max-width: 700px;
    line-height: 1.5rem;
}

@media (max-width: 1360px) {
    .home-sections{
      padding:0.5rem;
  }
}

@media (max-width: 996px) {
    .home-sections{
      padding:0.5rem;
  }
  
  .home-section-text p{
      font-size: 0.9rem;
  }
  
  .home-section-text h5{
      font-size: 1.2rem;
      line-height:1.5rem;
  }
}

@media (max-width: 768px) {
    
    .home-sections{
        height:auto;
        padding:2rem auto;
    }
    
  .homepage .home-section{
      width:95%;
      flex-direction:column;
      height:auto;
  }
  
  .home-section-text{
      flex:1;
  }
  
  .home-section-img{
      flex:1;
  }
  
  .home-section-img img{
      width:150px;
      height:150px;
  }
  
  .home-section-text p{
      text-align:left;
  }
  
  .home-section-text h5{
      font-size: 1.1rem;
  }
}

/*  contact */

.contact-info-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    width:100%;
    max-width:1200px;
    margin: 1rem auto 4rem auto;
}

.contact-info{
    width:100%;
    max-width:500px;
    margin-top:3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

.contact-info i{
    color: var(--secondaryColor);
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 400px;
  height: 40px;
  padding: 10px;
  border: none;
 border-bottom: 1px solid var(--secondaryColor);
  transition: all 0.3s ease;
}

.contact-form textarea {
  height: 200px;
}

.contact-form input:hover,
.contact-form textarea:hover {
   background-color: var(--PrimaryColor);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.contact-form #submitinput {
  display: block;
  border-radius: 5px;
  width: 300px;
  padding: 10px;
  border: none;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.contact-form #submitinput:hover {
  cursor: pointer;
  background-color: var(--secondaryColor);
}

@media screen and (max-width: 992px){
    .contact-info-container{
        flex-direction:column;
        width:95%;
        justify-content:center;
        align-items:center;
        gap:1rem;
        padding:0.5rem;
    }
    
    .contact-info-container .contact-info{
        padding:2rem 1rem 1em 1rem;
        margin-top:1rem;
    }
    
    .contact-info-container .contact-info h5{
        font-size:1.2rem;
        margin-
    }
    
    .contact-form-container{
        max-width:500px;
        width:100%;
    }
    
    .contact-form input, .contact-form textarea{
        width:95%;
    }
    
}


/*  map-container */

.map-container img{
  width: 100%;
  border-radius:10px;
  transition: all 0.5s ease;
}

.map-container img:hover{
    opacity: 0.7;
}

.map-small{
    max-width: 800px;
}

.contactPage-contact{
    width: 100%;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: top;
}

.contactPage-contact div{
    flex:3;
    padding: 20px 0;
}

.contactPage-contact div:nth-of-type(2){
    padding-left: 20px;
    flex: 1;
}

.contactPage-contact hr, .contactPage-title hr{
    margin: 10px 0;
    height: 0.5px;
    color:var(--whiteColor);
}

.contactPage-contact p{
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px){
    .contactPage-contact{
        flex-direction: column;
    }

    .contactPage-contact div:nth-of-type(2) {
        padding-left: 0;
    }
}

/* about */

.about-content-1 p{
  line-height: 2rem;
  padding: 1rem 2rem 1rem 0;
}

.about-text-container{
    flex:1;
}

.about-img-container{
    flex:1;
  padding-left: 1rem;
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-img-container img{
    
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  
}

.wide-content{
  width:100%;
}

.about-content-2{
  margin-top: 1rem;
}

.about-content-2 p{
  line-height: 2rem;
}

.about-content-2 .map {
  margin-top: 1rem;
  border-radius: 0.5rem;
}

@media screen and (max-width: 1360px){
  .about-content-1 p,  
  .about-content-2 p{
    line-height: 1.7rem;
    padding: 0;
  }
}

@media screen and (max-width: 1360px){
  .about-image-container img {
    width:100%;
  }
}

@media screen and (max-width: 768px){
  .about-image-container {
    padding: 0;
  }
}


/* services */

.service-text-content {
  line-height:1.7rem;
  padding: 0 5rem;
}

.service-images-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem 5rem 4rem 5rem;
  place-items:center;
}

.service-images-container img{
  width: 300px;
  max-height: 320px;
  object-fit:cover;
  border-radius: 0.5rem;
  transition: all 0.3s ease-out;
}

.service-image:hover{
  opacity:0.7;
  cursor:pointer;
}

.service-text-content i{
  color:green;
  font-size:1.5rem; 
  padding-right: 0.5rem;
}

.service-modal{
  display:none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1009;
  width: 100vw; 
  height:100vh;
  background-color: #333;
  opacity: 0.95;
  display:flex;
  justify-content:center;
  align-items:center; 
  overflow: auto; 
}

.modal-content {
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 5% auto; 
  padding: 20px;
  width: 80%; 
  max-width: 700px; 
  height:85vh; 
}

.modal-content img{
  max-height: 85vh;
  object-fit:cover;
}

.close {
  position: fixed;
  top:1rem; 
  right:1rem;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: all 0.5s ease;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 1360px){
  .service-images-container {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .service-text-content {
  padding: 0;
}
}

@media screen and (max-width: 768px){
  .service-images-container {
    grid-template-columns: 1fr;
    place-items: center;
    margin: 1rem 0.5rem 2rem 0.5rem; 
  }
}

@media screen and (max-width: 420px){
  .service-images-container img{
    width: 100%;
  }

  .service-text-content {
  padding: 0rem 0.5rem;
}
}

/* main page content */

.swiper {
    width: 100%;
    height: 100%;
}


.swiper-slide {
     width: 100%;
    height: 100%;
    /* background-position: center;
    background-size: cover;
    position: relative; */
    width: fit-content;
}


.swiper-slide img {
    display: block;
    width: 100%;
    width:200px;
    height: 300px;
  object-fit:cover;
}

.swiper-slide p {
    font-size: 0.8rem;
}


.swiper-button-next,
.swiper-button-prev {
    padding: 0.5rem;
    border: none;
    border-radius: 0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.3s ease-out;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primaryColorHover);
} */


.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
    color: var(--secondaryColor);
}

.swiper-pagination-bullet {
  background: #5a5a5a; 
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--secondaryColor);
  opacity: 1;
}

/*new swiper*/


.home-gallery {
    width:100%;
    background-color: var(--backgroundColorSpecial);
    padding: 2rem 0 4rem 0;
    display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
}

.swiper {
  width: 100%;
  max-width:1360px;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-pagination{
    margin-top:2rem;
}

.home-contact-container{
     width:100%;
    display: flex;
    flex-direction:column;
    align-items:center;
    padding:4rem 0;
}

.home-contact{
    width:100%;
     max-width:1360px;
    display:flex;
  justify-content: space-between;
  align-items: center;
  margin:3rem auto 1rem auto;
  padding"0.5rem;
}

.home-contact .contact-info{
  flex:1;
  width:100%;
  max-width:600px;
  height:270px;
  margin-top:0;
}

.home-contact .contact-info p, .home-contact .contact-info hr{
    margin-bottom: 10px;
}

.home-contact .contact-info i{
    color:var(--secondaryColor);
}

.home-contact .contact-info a{
    color: var(--blackColor);
    transition: 0.5s ease;
}

.home-contact .contact-info a:hover{
    color: var(--secondaryColor);
}

.home-contact iframe{
    flex:1;
    width:100%;
    padding:1.5rem;
    max-width:600px;
    height:325px;
}

@media screen and (max-width: 1360px) {
    .swiper{
    padding:0.5rem;
    }
    
}

@media screen and (max-width: 768px) {
    .swiper{
        width:95%;
    }
    .home-contact{
        flex-direction:column;
        gap:1rem;
        height:550px;
    }
    
    .home-contact .contact-info{
        width:95%;
    }
    
    .home-contact iframe{
        padding:0;
        width:95%;
        height:400px;
    }
}



/* about-grid */

.grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2rem auto;
  max-width: 1360px; 
  gap:7rem;
}
.grid-content h3{
  font-size: 0.9rem;
}
.grid-content p{
  font-size: 0.9rem;
}




/* masalebi */

.about-text-container{
    padding: 1rem;
}


.about-text-container li{
    line-height: 2rem;
    margin-bottom:1rem;
}

.about-text-container li i {
    color: var(--secondaryColor);
    margin-right:10px;
}





/* btn */

.btn {
  padding: 0.5rem 0.8rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-top:1rem;
}

.btn:hover {
  background-color: var(--secondaryColor);
}

@media screen and (max-width: 1360px) {
    
    
    .grid-content{
        gap:1rem;
    }
    
    .grid-content img{
        height:480px;
        object-fit:cover;
    }
    
}

@media screen and (max-width: 992px) {
  .grid-content {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
  
  .about-text-container{
      padding:0;
  }
  
  .about-img-container{
      padding:0;
  }
  
  .grid-content img{
      width:100%;
        height:400px;
        object-fit:cover;
    }
}

@media screen and (max-width: 550px) {
    .wc-thumbnails img{
        width: 80px !important;
        height:80px !important;
    }
}



/* footer */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-size: 0.9rem;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 2rem;
}

.footer-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-navigation ul {
  margin-right: 2rem;
}

.footer-navigation ul li {
  line-height: 2rem;
  list-style-type: none;
  margin-right: 1rem;
  color: var(--whiteColor);
  transition: all 0.5s ease-out;
}

.footer-navigation ul li a {
  color: var(--whiteColor);
}

.footer-navigation ul li a::before{
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 5px;
}

.footer-navigation ul li:hover {
  transform: translateX(0.3rem);
}

.footer-navigation ul li a:hover {
  color: var(--primaryColoLight);
}

.footer-contact {
  width: 100%;
  max-width: 20rem;
}

.footer-contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  margin-right: 0.5rem;
}

.footer-contact-item a {
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--secondaryColorLight);
}

footer hr {
  width: 90%;
  margin: 1rem;
}

.copyright {
  text-align: center;
  margin-bottom: 2rem; 
}

.copyright p{
  padding:  0.5rem;
  line-height: 1.5rem;
}

@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    place-items: left;
    padding-bottom: 0.5rem;
  }

  .footer-navigation {
    width: 19rem;
    justify-content: left;
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

  .footer-navigation ul {
      margin-right: 0.1rem;
  }

  .footer-navigation ul li{
    margin-right: 0.1rem;
    line-height:1.7rem;
  }

  .footer-contact{
    width: 18rem;
    font-size: 0.8rem;
  }

  .copyright{
    font-size: 0.8rem;
  }
}

/* gallery */

.gallery-folders-container {
  width: 100%;
  max-width: 1360px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 1rem auto;
}

.gallery-folder {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  margin: 1rem auto;
  background-color: var(--secondaryColor);
  -webkit-box-shadow: 8px 8px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 8px 8px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 8px 8px 5px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.gallery-folder:hover {
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

.gallery-folder img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.gallery-folder h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--whiteColor);
}

@media screen and (max-width: 768px) {
  .gallery-folders-container {
    grid-template-columns: 1fr;
  }
}
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1px;
  text-align: center;

}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 5px;
  padding: 0;
  width: 240px;
  height: 240px;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.gallery-item:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.3);
}



.gallery-caption {
  display: block;
}


.video-section{
    width:100%;
    max-width: 1200px;
    margin: 0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1rem;
    flex-wrap:wrap;
    padding:0.5rem;
}

.gallery-title{
    text-align:center;
    margin: 2rem auto 1rem auto;
}



/*---------------------------------------------------------------*/
/*  gallery-page */
/*---------------------------------------------------------------*/
.gallery-text {
    text-align: center;
    margin-top: 7rem;
    color: var(--secondaryColor);
    padding: 0 2rem;
}

.gallery-box {
  /* margin: -25px 0 0 0; */
  padding-top: 20px;
  /* background-color: black; */
}

.gallery-box p{
    font-size: 2rem;
    margin-left: 25px;
}


.gallery-page {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* width: 90%; */
  width:100%;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.gallery-page a {
  height: 200px;
  width: 290px;
  margin: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 5px #000;
}

.gallery-page a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-page a img:hover {
  transform: scale(1.1);
  transition: all 0.5s linear;
}



