:root {
  --whiteColor: #fff;
    --primaryColor: #242424;
    --primaryColorHover: #313131e3;
  --secondaryColor: #612d1a;
  --secondaryColorHover: #313131c7;
  --primaryColoLight: #fddcb6;
  --shadowColor:#502c1d;
  --blackColor: #000;
  --timelinePink: #ec496e;
  --timelineYellow: #f9850f;
  --timelineGreen: #8fb800;
  --timelineSkyblue: #2fcea5;
}

/* ///////////////////////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/template001/fonts/fonts/bpg_mrgvlovani_2009.ttf);
  font-weight: normal;
}


@font-face {
    font-family: Geo Rustaveli;
    src: url(/wp-content/themes/template001/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: #612d1a;
   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.3rem;
  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;
    }
}

.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: 2.5rem;
  }

  .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(--shadowColor);
    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-menu-1-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 */
.hero-img-container{
    width:100%;
    height:100vh;
    display: none;
}

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

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

.hero-text span {
    font-family: Geo Rustaveli;
    font-size: 3rem;
    font-weight: 600;
}




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

@media screen and (max-width: 768px){
  .hero-img-container{
     width:100%;
    height:500px;
    margin-top: 2rem;
  }

  .hero-img-container img{
    height: 500px;
  }

  .hero-text {
    top: 480px;
    font-size: 1.2rem;
    padding: 0 10px;
  }

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

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

    .hero-img-container img {
        height: 400px;
    }

    .hero-text {
        top: 390px;
        font-size: 1rem;
    }
}

/*  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-image-container{
  padding-left: 1rem;
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-image-container img{
  width: 80%;
  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;
  }
}

/* products */

.products-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width:1250px;
    gap:20px;
    flex-wrap: wrap;
    place-items: center;
    margin: 2.5rem auto;
}

.product-card {
    width: 400px;
    height:560px;
    background-color: transparent;
    border-radius:7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    transition: all 0.5s ease;
    cursor: pointer;
}

.product-card:hover{
    box-shadow: 8px 8px 5px 0px rgba(0, 0, 0, 0.5),
    -3px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.product-card img{
    width: 250px;
    height:320px;
    max-width:250px;
    object-fit:cover;
}

.product-card h3{
    text-transform: uppercase;
    font-size:1rem;
    font-weight: 300;
    text-align: center;
}

.product-card h3 strong{
    text-transform: initial;
}

.product-card p{
    font-size: 0.8rem;
    padding: 8px;
}

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

@media screen and (max-width:900px) {
    .product-card{
        width: 350px;
    }

    .product-card img{
        width: 200px;
        height: 280px;
    }
}

@media screen and (max-width:760px) {
    .products-container{
    grid-template-columns: 1fr;
    }
    .product-card{
        width: 100%;;
    }
}



/* warmoebis-procesi */

.warmoeba-main{
  text-align: center;
}

.warmoeba-main p{
  font-size: 0.9rem;
  padding: 0.5rem 5rem;
}

@media screen and (max-width: 1500px){
    .warmoeba-main {
        width: 90%;
        margin: 0 auto;
    }
}

.warmoeba-main-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warmoeba-main-img img{
  width:100%;
  max-width: 500px;
  border-radius: 8px;
  margin-bottom: 1rem;
}


.warmoeba-buttons-container{
    width: 70px;
    position: fixed;
    top: calc(100vh - 75%);
    right: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.warmoeba-buttons-container p{
    font-size: 0.8rem;
}

.warmoeba-buttons {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.warmoeba-buttons .btn{
    width:40px;
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    text-align: center;
    font-size: 0.8rem;
    padding: 7px 10px;
}

.warmoeba-buttons .btn:hover{
     background-color: var(--primaryColorHover);
    color: var(--whiteColor);
}

.warmoeba-text{
    width:100%;
    font-size: 0.8rem;
}

.warmoeba-text p{
    font-size:0.7rem;
}

.main-timeline{
    width: 100%;
    max-width:1200px;
    margin:0 auto;
    position: relative;
    margin-bottom: 2rem;
}

.main-timeline::before {
  content: "";
    width: 5px;
    height: 100%;
    border-radius: 20px;
    margin: 0 auto;
    background: #242922;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.timeline{
  display: inline-block;
    margin-bottom: 0px;
    position: relative;
}

.timeline::before{
  content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: var(--timelinePink);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.timeline-yellow::before{
  background: var(--timelineYellow);
}

.timeline-green::before {
  background: var(--timelineGreen);
}

.timeline-skyblue::before{
  background: var(--timelineSkyblue);
}

.timeline-icon {
  display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--timelinePink);
    padding: 13px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.timeline-yellow .timeline-icon{
  border: 3px solid var(--timelineYellow);
}

.timeline-green .timeline-icon {
  border: 3px solid var(--timelineGreen);
}

.timeline-skyblue .timeline-icon {
  border: 3px solid var(--timelineSkyblue);
}

.timeline-icon::before {
  content: "";
    width: 100px;
    height: 4px;
    background: var(--timelinePink);
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.timeline-yellow .timeline-icon::before{
  background: var(--timelineYellow);
}

.timeline-green .timeline-icon::before {
  background: var(--timelineGreen);
}

.timeline-skyblue .timeline-icon::before {
  background: var(--timelineSkyblue);
}

@media screen and (max-width: 992px){
    .warmoeba-main p{
        padding: 0.5rem;
    }
    .timeline-icon::before{
       width: 50px; 
    right: -50px;
    } 
}

.number{
  font-size: 40px;
    color: #50382e;
    font-weight: 900;
    margin-top: 30px;
}

.timeline-icon::after{
  width: 70px;
    height: 50px;
    background: #fafafa;
    top: 89px;
    right: -30px;
} 

.timeline-content {
  width: 50%;
  padding: 0 50px;
  margin: 52px 0 0;
  float: right;
  position: relative;
}

.timeline-content img{
  width: 240px;
  max-height: 300px;
  object-fit: cover;
  margin: 0.5rem 0.5rem 0 0.5rem;
  border-radius: 6px;
}

.timeline-content::before {
  content: "";
  width: 70%;
  height: 100%;
  border: 3px solid var(--timelinePink);
  border-top: none;
  border-right: none;
  position: absolute;
  bottom: -13px;
  left: 35px;
}

.timeline-pink h3{
    color: var(--timelinePink);
}

.timeline-yellow h3{
    color: var(--timelineYellow);
}

.timeline-yellow .timeline-content::before{
  border: 3px solid var(--timelineYellow);
  border-top: none;
  border-right: none;
}

.timeline-green h3{
    color: var(--timelineGreen);
}

.timeline-green .timeline-content::before {
  border: 3px solid var(--timelineGreen);
  border-top: none;
  border-right: none;
}

.timeline-skyblue h3{
    color: var(--timelineSkyblue);
}

.timeline-skyblue .timeline-content::before {
  border: 3px solid var(--timelineSkyblue);
  border-top: none;
  border-right: none;
}

.description {
  display: inline-block;
  font-size: 10px;
  color: #545352f0;
  line-height: 20px;
  letter-spacing: 0px;
  margin: 0;
  text-align: -webkit-left;
}

.timeline-content:after {
  content: "";
  width: 37px;
  height: 3px;
  background: var(--timelinePink);
  position: absolute;
  top: 13px;
  left: 0;
}

.timeline-yellow .timeline-content:after{
  background: var(--timelineYellow);
}

.timeline-green .timeline-content:after {
  background: var(--timelineGreen);
}

.timeline-skyblue .timeline-content:after {
  background: var(--timelineSkyblue);
}

@media screen and (min-width:768px){
.timeline:nth-child(even) .timeline-icon {
  left: auto;
  right: 30%;
}

.timeline:nth-child(even) .timeline-content {
  float: left;
}

.timeline:nth-child(even) .timeline-icon:before {
  right: auto;
  left: -100px;
}

.timeline:nth-child(even) .timeline-content:before {
  left: auto;
  right: 35px;
  transform: rotateY(180deg);
}

.timeline:nth-child(even) .timeline-content:after {
  left: auto;
  right: 0;
}

.timeline:nth-child(odd) .timeline-content img {
  float: left;
}

.timeline:nth-child(even) .timeline-content img{
  float:right;
}
}

@media screen and (max-width: 992px){
    .timeline:nth-child(even) .timeline-icon:before {
            right: auto;
            left: -50px;
    }

    .timeline:nth-child(odd) .timeline-content img {
  float: none;
    }

.timeline:nth-child(even) .timeline-content img{
  float:none;
}
}

@media screen and (max-width:768px){
    .warmoeba-buttons-container {
      width:100%;
      position: initial;
    }

    .warmoeba-buttons{
      flex-direction: row;
      flex-wrap:wrap;
      margin-bottom:1rem;
      z-index: 900;
    }
    
    .main-timeline::before{
        margin: 0 0 0 5rem;
    }

    .timeline-icon::before{
        width:30px;
        left: 45px;
    }

    .timeline:nth-child(even) .timeline-icon:before {
            right: auto;
            left: 45px;
        }

        .timeline-icon {
            width:50px;
            height:50px;
            left: 0;
        }

        .timeline::before{
            left:5.1rem;
        }

        .number{
            font-size:1.2rem;
            margin-top:0px;
            margin-left:0px;
        }

        .timeline-content {
            width:100%;
            padding: 0 5px 0 8rem;
        }

        .timeline-content::before{
          margin-left: 5rem;
        }

        .timeline-content::after{
          margin-left: 5rem;
        }

        .timeline-content img{
            width:200px;
        }
}

@media screen and (max-width: 400px){
  .timeline-content{
    max-width:320px;
  } 
}

/* 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%;
    max-height: calc(100vh - 5rem);
    z-index: 5;
    margin-top: 5rem;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
	max-height: calc(100vh - 5rem);
  object-fit:cover;
  object-position: top;
}

.swiper-slide p {
    position: absolute;
    /* width:80%; */
    /* top: calc(75vh - 5rem); */
    top:1rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    line-height: 3rem;
    text-align: center;
    color: var(--whiteColor);
    font-weight: 700;
    padding: 0.5rem 1.6rem;
    background-color: var(--shadowColor);
    border-radius: 0.3rem;
    opacity: 0.95;
    animation: showSliderText 1.5s forwards;
}

@keyframes showSliderText {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.8;
    }
}

.swiper-button-next,
.swiper-button-prev {
    padding: 0.5rem;
    border: none;
    border-radius: 0.2rem;
    width: 2.8rem;
    height: 2.8rem;
    background-color: var(--shadowColor);
    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(--whiteColor);
}

@media screen and (max-width: 1350px) {
  .swiper-slide p {
    font-size: 1.2rem;
    /* top: calc(70vh - 5rem); */
    top: 2rem;
    left: 50%;
    padding: 0.3rem 1.5rem;
    letter-spacing: normal;
  }
}

@media screen and (max-width: 1280px) {
    .swiper-slide p {
        /* top: 80%; */
        top: 2rem;
        left: 50%;
        line-height: 1.7rem;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 768px) {
    .swiper-slide p {
       width: 80%;
        font-size: 0.9rem;
        padding: 0.3rem 0.2rem;
        opacity: 0.5;
    }
}

@media screen and (max-width: 460px) {
.swiper-slide p {
  width:90%;
  top: 10.5rem;
  line-height: 1.1rem;
}
}

@media screen and (max-width: 400px) {
  .swiper-slide p {
    font-size: 0.8rem;
  }
}

/* about-grid */

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

/* 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;
}

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


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

  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}

/* project page */

.download-project {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

/* .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;
}

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

.project-slider {
  margin: 1rem auto;
  width: 80%;
  height: auto;
}

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

  .project-slider {
    width: 100%;
  }

  /* .btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  } */
}


/* danishnuleba-container */
.danishnuleba-container {
  padding: 1rem;
}

.danishnuleba-container img {
  width: 100%;
  height: auto;
}

/* About-ice1 */
.about-ice1-img-container img{
width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 6px;
}

.about-ice1-text-container, 
.about-ice1-img-container {
  margin-bottom: 50px;
  padding: 1rem;
}

@media screen and (max-width: 992px){
   .about-ice1-img-container, 
 .about-ice1-text-container{
    margin: 0 auto;
    padding: 0.5rem;
   } 
}

/* 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;
}


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

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

.gallery-box p{
    margin-left: 25px;
    text-transform: uppercase;
}


.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;
}