@font-face {
  font-family: "font-75-caps";
  src: url("../fonts/helvetica-neue-lt-geo-75-bold-caps.ttf")
}

@font-face {
  font-family: "font-caps";
  src: url("../fonts/helvetica-neue-lt-geo-55-roman-caps.ttf")
}

@font-face {
  font-family: "font-55";
  src: url("../fonts/helvetica-neue-lt-geo-55-roman.ttf");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1px;
}

* {
  font-family: "font-55", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: 100%;
}

h1,
h2 {
  font-family: "font-caps";
  text-transform: uppercase;
  font-weight: 200;

}

.citizens-left h5 {
  font-family: 'font-caps';
  text-transform: uppercase;
  font-weight: 500;
}

footer h4 {
  font-family: "font-caps";
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #333333
}

.nav-list a {
  font-family: 'font-caps';
  text-transform: uppercase;
}

.nav-list a span{
  font-family: 'font-caps';
  text-transform: uppercase;
}

.nav-list > li:hover{
  background-color: white;
}

.nav-list p {
  font-family: 'font-caps';
  text-transform: uppercase;
}

.nav-list li {
  font-family: 'font-caps';
  text-transform: uppercase;
}

/*.nav-list a:last-child {
  border-right: 1px solid #E2E2E2;
}*/

.container {
  max-width: 1400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 750ms ease;
  -o-transition: 750ms ease;
  transition: 750ms ease;

}

.topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: white;
  padding: 20px 0;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(165, 163, 163, 0.462);
  box-shadow: 0px 5px 10px 0px rgba(165, 163, 163, 0.462);

  -webkit-transition: 750ms ease;

  -o-transition: 750ms ease;

  transition: 750ms ease;
}

.topbar .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "font-caps";


  gap: 20px;
}

.logo p {
  font-family: "font-caps";
  text-transform: uppercase;
}

.logo img {
  width: 65px;
  height: 88px;
}

.searchbar {

  position: absolute;
  right: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  gap: 13px;
}

.searchbar img {
  width: 35px;
  padding-right: 13px;
  border-right: 1px solid #E2E2E2;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
  cursor: pointer;
  object-fit: contain;
  opacity: 0.7;
}

.searchbar img:hover {
  opacity: 1;
}

.searchbar a {
  height: 20px;
  width: 20px;
  cursor: pointer;
  font-family: "font-caps";
  text-transform: uppercase;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

.searchbar a:hover {
  color: #00923f;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: #f1f1f1;
  -webkit-transition: 750ms ease;
  -o-transition: 750ms ease;
  transition: 750ms ease;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(165, 163, 163, 0.462);
  box-shadow: 0px 5px 10px 0px rgba(165, 163, 163, 0.462);


  /* position: sticky;
  left: 0; */
}

#hamburger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: 20px;
  position: relative;
  -webkit-transition: 550ms all;
  -o-transition: 550ms all;
  transition: 550ms all;
  display: none;
}

#hamburger span {
  background-color: black;
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  /* border-radius: 5px; */
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

#hamburger span:nth-child(2) {
  top: 15px;
}

#hamburger span:nth-child(3) {
  top: 30px;
}

#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  left: 3px;
  top: 17px;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: translate(-60px);
  -ms-transform: translate(-60px);
  transform: translate(-60px);
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  left: 3px;
  top: 40px;
}

#hamburger.open {
  position: absolute;
  left: 200px;
  margin-bottom: 90px;

  z-index: 100000000000;

}

.navbar {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;


  max-width: 1400px;
  width: 100%;
  height: 54px;
}

.nav-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-list>* {
  height: 100%;
  border-left: 1px solid #E2E2E2;
  /*padding-left: 20px;
  padding-right: 20px;*/
  -webkit-box-sizing: content-box;
  box-sizing: content-box;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.nav-item {
  /* padding: 21px 65px 17px 26px; */
  color: black;
  text-align: center;
  width: 100%;
  cursor: pointer;
  position: relative;
  font-family: "font-caps";
  font-size: 14px;
}

.has-submenu {
  position: relative;
}

@media(min-width: 960px){
  .has-submenu:hover .submenu {
    display: block;
    opacity: 1;
  }
}

.nav-list > li > a{
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 54px;
  position: relative;
} 

.submenu {
  width: 237px;
  display: none;
  position: absolute;
  left: 0;
  background: #FFFFFF;
/*  padding: 15px 10px;*/
  padding: 0px;
/*  padding-left: 30px;*/
  z-index: 100;
  text-align: left;
  opacity: 0;
  list-style: none;
  padding-right: 0;
  top: 54px;
/*  margin-top: 15px;*/


}

.submenu li,
.expanded-submenu li {
  border-bottom: 1px solid #F2F2F2;
  color: #8E8E8E;
  padding: 8px 0;
  width: 100%;
}

.submenu li a {
  color: #8E8E8E;
}

.submenu li a:hover {
  color: black;
}

.expanded-submenu {
  position: absolute;
  display: none;
  left: 237px;
  width: 237px;

  top: 0;
  background: #F2F2F2;

  padding: 0 8px;
  z-index: 100;
  list-style: none;

}

.expanded-submenu .g-active{
  background: #F2F2F2 !important;
}

.expanded-submenu li {
  border-bottom: 1px solid white;
  color: #8E8E8E;

}

.submenu li:last-child {
  border: none;
}

.expanded-submenu li:last-child {
  border: none;
}

@media(min-width: 960px){
  .has-expanded-submenu:hover .expanded-submenu {
    display: block;
  }
}

.has-expanded-submenu p img {
  width: 5px;
  margin-left: 5px;

}

.meria-nav-prev {
  display: none;
}

.branches-nav-prev {
  display: none;
}

.active-nav {
  background-color: white;
}



/*

//////////////////////hero carousel

*/
.hero {
  width: 100%;
  height: 680px;
  position: relative;
  overflow: hidden;
   user-select: none;
  -moz-user-select: none; /* Disables text selection */
  -moz-user-drag: none;   /* Disables image dragging */
}

.hero-carousel {
  max-width: 100%;
  height: 580px;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: relative;
  cursor: pointer;
}

.hero-carousel aside {
  position: absolute;
  bottom: 30px;
  left: 17%;
  font-family: "font-caps";
  font-size: 30px;
  line-height: 34px;

  text-align: left;
  color: #ffffff;
  max-width: 680px;
  width: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /* transform:translateX(100%); */
  -webkit-transition: 750ms ease-in-out;
  -o-transition: 750ms ease-in-out;
  transition: 750ms ease-in-out;
  opacity: 0;
}

.slide.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-drag: none;
}

.prev,
.next {

  cursor: pointer;


}

.next:hover path {
  stroke: #333333;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;

}

.prev:hover path {
  stroke: #333333;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

.bullets {
  position: absolute;
  bottom: 0px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 400px;
  width: 100%;
  gap: 21px;
  height: 100px;
  margin-top: 10px;
  z-index: 2;
}

.bullet {
  display: inline-block;
  width: 13px;
  height: 13px;

  border-radius: 15px;
  cursor: pointer;
  border: 1px solid #333333;
}

.bullet.active {
  background-color: #00923f;
  border: none;
}

/*
news section .////////////


*/

.news {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #F2F2F2;


}

.news-container {
  max-width: 1400px;
  width: 100%;
  display: -ms-grid;
  display: grid;

  gap: 30px;
  -ms-grid-columns: 80% 30px 20%;
  grid-template-columns: 80% 20%;


}

.news-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* align-items: center; */
  gap: 50px;
  padding: 55px 0px;
}

.news-left h2,
.announcments-container h2 {
  font-size: 30px;
  font-family: 'font-caps';
  color: #333333;
  text-transform: uppercase;

}

.news-left h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.sakrebulo-news h3 {
  color: #DA251C;
  font-family: "font-caps";
}

.meria-news h3 {
  color: #00923f;
  font-family: "font-caps";
}


.carousel-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  padding-bottom: 50px;
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.carousel-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: calc((100% / 4) - 15.9px);
  /* რამდენის გამოჩენა გვინდა აქედან კონტროლდება, დაშორება რამდენიცაა იმდენი უნდა გამოაკლო თორე უშნოდ ჩანს */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 278px;
  position: relative;
  text-align: center;
  background-color: white;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  margin-bottom: 27px;
  cursor: pointer;
  -webkit-transition: 350ms ease;
  -o-transition: 350ms ease;
  transition: 350ms ease;

}

.carousel-item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 5px;
  position: absolute;
  height: 30px;
  top: 0;
  left: 0;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background-color: #00923f;
  color: white;
  padding: 8px;
  font-size: 14px;
}

.carousel-item-date span:nth-child(2) {
  opacity: 0.5;
}

.carousel-item-date-sakrebulo {
  background: #DA251C;
}

.carousel-item-top {
  width: 100%;
  height: 124px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;

}

.carousel-item-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.3;
  z-index: 2;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;

}

.carousel-btns a {
  color: #8E8E8E;
  text-decoration: underline;
}

.carousel-item:hover .carousel-item-top::before {
  opacity: 0;
}

.carousel-item:hover .carousel-item-date span {
  opacity: 1;
}

.carousel-item:hover .carousel-item-bottom {
  color: #333333;
  font-weight: bold;

}

.carousel-item-top>img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* Add smooth transition */
}

.carousel-item:hover .carousel-item-top>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  /* Adjust the scale value as needed */

}

.carousel-item-bottom {
  padding: 15px 17px;
  font-family: "font-55";
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  font-style: normal;
  text-align: left;
  color: #8e8e8e;

}

.carousel-btns {
  position: absolute;

  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.news-right {
  height: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  padding: 10px;
  gap: 26px;
  padding-top: 26px;
  color: #333333;
  border-top: 2px solid #F2F2F2;

  z-index: 2;
}

.g-call-new-box{
  margin: 0;
  padding: 0;
  padding-left: 45px;
  width: 100%;
  height: 40px;
  background-color: white;
  border: solid 1px #F2F2F2;
  border-radius: 10px; 
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.03); 
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.03);
  position: relative;
}

.g-call-new-box::before{
  content: "";
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
  top: calc(50% - 8px);
  -webkit-mask-image: url('../images/phone.svg');
  mask-image: url('../images/phone.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat; 
  mask-repeat: no-repeat; 
  -webkit-mask-position: center center;
  mask-position: center center;
  background-color: #00923F;
}

.g-call-new-box span{
  margin: 0;
  padding: 0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-family: "font-caps";
  text-transform: uppercase;
  color: #333333;
  position: relative;
  transition-property: color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-call-new-box span::before{
  content: "";
  width: 1px;
  height: 18px;
  background-color: #E2E2E2;
  position: absolute;
  top: calc(50% - 9px);
  left: -10px;
}

.g-call-new-box:hover span{
  color: #00923F;
}

@media(min-width: 960px){
  .news-right{
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    min-height: unset !important;
    height: unset !important;
  }
}

.news-right img {
  width: 13px;
  height: 13px;

}





/*.news-right a {
  max-width: 250px;
  width: 100%;
  padding: 14px 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  border: 10px;
  height: 40px;
  color: #333333;
  font-family: 'font-caps';
  -webkit-box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  border-radius: 10px;
  -webkit-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
}

.news-right a span {
  font-family: 'font-caps';
}

.news-right a:hover {
  color: #00923F;
}*/

.survey h4 {
  font-family: 'font-caps';
  text-transform: uppercase;
  font-weight: 500;
  color: #8E8E8E;
}

.news-right a img {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-right: 10px;
  border-right: 1px solid #E2E2E2;
}

.news-calendar {
  max-width: 256px;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  border-radius: 10px;
  border: solid 1px #f2f2f2;
}

.news-calendar h2{
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
  color: #c5c5c5;
  text-align: center;
}

.news-calendar .g-tabs{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: #f2f2f2;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.news-calendar .g-tabs .g-tab{
  margin: 0;
  padding: 0;
  width: 50%;
  height: 30px;
  line-height: 30px;
  display: block;
  color: #333333;
  text-decoration: none;
  text-align: center;
  float: left;
  font-family: "font-caps";
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.4;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.news-calendar .g-sakrebulo{
  background-color: #db2228;
  color: white !important;
}

.news-calendar .g-meria{
  background-color: #00923f;
  color: white !important;
}

.news-calendar .g-tabs .g-active,
.news-calendar .g-tabs .g-tab:hover{
  opacity: 1;
}

.news-calendar .g-calendar{
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 250px;
}

.news-calendar .g-calendar .header-wrap{
  margin: 0;
  padding: 0 10px;
  display: block;
  height: 28px;
  line-height: 28px;
}

.news-calendar .g-calendar .header-wrap .header{
  margin: 0;
  padding: 0;
  width: 50%;
  float: left;
}

.news-calendar .g-calendar .header-wrap .header span{
  margin: 0;
  padding: 0;
  display: block;
  font-family: "font-caps";
  font-size: 12px;
  line-height: 28px;
  color: #8e8e8e;
  float: left;
}

.news-calendar .g-calendar .header-wrap .header button{
  margin: 0;
  padding: 0;
  border: 0;
  width: 10px;
  height: 10px;
  line-height: 28px;
  background-color: transparent;
  display: inline-block;
  margin: 0 5px;
  text-indent: -9999px;
  position: relative;
  float: left;
  margin-top: 8px;
  cursor: pointer;
  background-image: url('../images/arrow-right.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.news-calendar .g-calendar .header-wrap .header button.g-prev-calendar{
  transform: rotate(180deg);
}

.news-calendar .g-calendar .g-calendar-table{
  margin: 0;
  padding: 0;
  width: 100%;
}

.news-calendar .g-calendar .g-calendar-table table{
  margin: 0;
  padding: 0;
  width: 100%;
  padding-bottom: 10px;
}

.news-calendar .g-calendar .g-calendar-table table .tr-head{
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  height: 24px;
}

.news-calendar .g-calendar .g-calendar-table table .tr-head th{
  margin: 0;
  padding: 0;
  height: 24px;
  color: #333333;
  font-weight: normal;
}

.news-calendar .g-calendar .g-calendar-table table tr td.g-nohref{
  padding: 10px 10px;
}

.news-calendar .g-calendar .g-calendar-table table tr td{
  margin: 0;
  padding: 0;
  height: 30px;
  color: #8e8e8e;
  text-align: center;
}

.news-calendar .g-calendar .g-calendar-table table tr td.g-current-day{
  background-color: #f2f2f2;
}

.news-calendar .g-calendar .g-calendar-table table tr td a{
  color: #db2228;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 10px 10px;
}


.g-clearer{
  clear: both;
}

.survey {
  max-width: 256px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  border-radius: 10px;

  padding: 10px;
  gap: 9px;
}

.survey header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 7px;

}

.survey header img {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 16px;
  height: 15px;
  padding-right: 8px;
  border-right: 1px solid #E2E2E2;
}

.survey span {
  font-size: 14px;
  font-family: 'font-caps';
  text-transform: uppercase;
  font-weight: normal;
  line-height: 16px;
  max-width: 226px;
  width: 100%;
  color: #8E8E8E;
}

.survey-btns button {
  font-family: 'font-caps';
  text-transform: uppercase;
}

.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}




.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  cursor: pointer;
  border-radius: 10px;

}

.radio-group input[type="radio"]:checked {

  accent-color: green;
}



.radio-group input[type="radio"]+p {
  color: #8E8E8E;
}

.radio-group input[type="radio"]:checked+p {
  color: #333333;
}

.survey-btns {
  max-width: 256px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-top: 19px;
}

.survey-btns button {
  border: none;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: 350ms ease;
  -o-transition: 350ms ease;
  transition: 350ms ease;

}

.survey-vote {
  width: 172px;
  height: 31px;
  -webkit-box-shadow: 0px 3px 1.5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 1.5px rgba(0, 0, 0, 0.1);
  color: #333333;
  background-color: #F2F2F2;
  border-radius: 16px;

}

.survey-vote:hover {
  background: #00923f;
  color: white;
}

.survey-vote.votechoosed{
  background: #00923f;
  color: white;
}

.survey-vote.votechoosed:hover{
  opacity: 0.5;
}


.survey-results {
  color: #00923f;
  background: none;
  padding: 10px;
}

.survey-results:hover {
  color: #333333;
  scale: 1.1;
}


.announcments {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
  padding: 50px 0;
}

.announcments-container {
  max-width: 1400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.announcments-container h2 {
  font-size: 30px;
}

.announcments-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  gap: 16px;

}

.announcments-wrapper aside {
  width: 50%;
  position: relative;
}

.announcments-wrapper h3 {
  margin-bottom: 8px;
  font-family: "font-caps";
  font-size: 18px;
  text-transform: uppercase;
  color: #da251c;
}

.announcments-wrapper aside:nth-child(2) h3 {
  color: #00923f;
}

.announcment span,
.announcment p, 
.announcment h3{
  color: #8E8E8E !important;
  font-weight: normal;
}

@media(min-width: 960px){
  .announcments-wrapper{
    margin: 0 -6px !important;
    gap: 0 !important;
  }

  .announcments-wrapper aside {
    margin: 0 6px !important;
    width: calc(50% - 12px) !important;
  }
}

.announcments-col {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}



.announcments .carousel-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: calc(100%);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-shadow: none;
  box-shadow: none;


}

.announcments .carousel {
  gap: 0;
  max-width: 100%;

}

.announcment .carousel-container {
  width: 50%;
}

.announcment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  /*-webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;*/
  /* max-width: 536px; */
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #f2f2f2;
  padding: 17px 17px 17px 17px;
  font-size: 14px;
  text-align: start;
  margin-bottom: 13px;

}

.announcment:hover {
  background-color: white;
}

.announcment-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  position: absolute;
  right: 10px;
}

.announcment-btns a {
  color: #333333;
  margin-right: 25px;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
  text-decoration: underline;

}

.announcment-btns a:hover {
  scale: 1.05;

}

.citizens {
  width: 100%;
  margin: 50px 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #F2F2F2;


}

.citizens-container {
  max-width: 1400px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  /* place-items: center; */
  gap: 30px;
  -ms-grid-columns: 80% 30px 20%;
  grid-template-columns: 80% 20%;
  margin: 0 auto;

}

.citizens-left {
  padding: 46px 0;
}

.citizens-left h2 {
  margin-bottom: 46px;
  font-size: 30px;
}

.citizens-left a {
  display: block;
  font-family: "font-caps";
  max-width: 537px;
  width: 100%;
  font-size: 18px;
}

.citizens-left h5 {
  color: #8E8E8E;
}

@media(min-width: 960px){
  /*.citizens-left a:last-child {
    color: #8E8E8E;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: underline;
    -webkit-transition: 300ms ease;
    -o-transition: 300ms ease;
    transition: 300ms ease;
    gap: 20px;
    margin-left: 7px;
    margin-top: 23px;
  }*/
}

/*.citizens-left a:last-child:hover {
  color: #333333;
  margin-left: 13px;
}*/

.citizens-left-item {
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  max-width: 637px;
  width: 100%;
  padding: 21px 35px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #F2F2F2;
  -webkit-transition: 250ms ease-in-out;
  -o-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  -webkit-box-shadow: 0px 3px 2.5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 3px 2.5px rgba(0, 0, 0, 0.02);

}

.citizens-left-item:hover {
  border: 1px solid #00923f;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.citizens-left-item:hover h5 {
  color: #333333 !important
}

.citizens-left img {
  width: 8px;
  height: 8px;
}

.citizens-left-item img {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 35px;
  height: 35px;
  padding-right: 20px;
  border-right: 1px solid #F2F2F2;
}

.citizens-right {
  height: 100%;
  max-width: 320px;
  width: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding: 26px 10px;
}

.citizens-right-item {
  width: 100%;
  height: 80px;
  /* height: 100%; */
  position: relative;
  overflow: hidden;
  border-radius: 10px;

}

.citizens-right-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #343434;
  opacity: 0.5;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
  border-radius: 10px;
  z-index: 2;


}

.citizens-right-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: 350ms ease;
  -o-transition: 350ms ease;
  transition: 350ms ease;
  scale: 1.2;

}

.citizens-right-item:hover img {
  scale: 1.3;
  opacity: 0.8;
}

.citizens-right-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-family: "font-caps";
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  width: 80%;
  z-index: 3;

}

.public-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;

  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  min-height: 409px;

}

.public-section-divider {
  max-width: 1400px;
  width: 100%;
  margin: 50px auto;
  font-family: "font-caps";
  font-size: 30px;
  color: #333333;
}

.public-info img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.public-info-container {
  max-width: 1400px;
  width: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;



}

.public-info-container button {
  max-width: 537px;
  width: 100%;
  padding: 30px 0px;
  border: none;
  background: #da251c;
  font-family: "font-caps";
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  font-weight: 500;
  border-radius: 15px;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: 350ms ease-out;
  -o-transition: 350ms ease-out;
  transition: 350ms ease-out;
  cursor: pointer;
}

.public-info-container button:hover {
  background: white;
  color: #da251c;
  border: 1px solid #DA251C;

}

.public-info-container button:last-child {
  background: #00923f;

}

.public-info-container button:last-child:hover {
  border: 1px solid #00923f;
  color: #00923f;
  background: white;
}


.services {
  width: 100%;
  margin-bottom: 100px;

}

.services-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: #F2F2F2;
  padding: 50px 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service {
  width: 301px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
  height: 181px;
  background: white;
  color: #C1C1C1;
  text-align: center;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 2.5px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 3px 2.5px rgba(0, 0, 0, 0.03);
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;

}

.service:hover {
  color: #333333;
}

.service:hover .servicesvg {
  border-color: #333333;

}

.service-more {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background: #f2f2f2;
  border: 2px solid white;

}

.service-more a {
  text-decoration: underline;

}

.servicesvg {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 25px;
  border-bottom: 1px solid #C1C1C1;
  width: 52px;
  height: 52px;
  fill: #C1C1C1;
  ;


}

.service:hover>.servicesvg {
  fill: #00923f;
}



.service-more img {
  width: 7px;
  height: 14px;
  padding-bottom: 0;
  border: none;
}

.service-more:hover {
  background: white;

}

footer {
  background: #00923f;
  width: 100%;

  /* margin-top: 100px; */
  height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-container {
  max-width: 1400px;
  width: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 130px;
  position: relative;
}

.footer-container a,
.footer-container span {
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.7;

}

.footer-center-col-item,
.footer-left-col-item {
  opacity: 0.7;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

footer h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}

.footer-left-col,
.footer-center-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  width: 100%;
}

.footer-center-col-item:hover,
.footer-left-col-item:hover {
  opacity: 1;

}

.footer-left-col-item span {
  display: inline-block;
  max-width: 180px;
  width: 100%;


}

.footer-left-col-item a {

  padding-left: 15px;
  border-left: 1px solid white;

}

footer svg {
  margin-right: 11px;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;

}

.copyright img {
  width: 60px;
  height: 20px;
}


/* 
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////



ABOUT KEDA PAGE



///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////


*/
.helper-nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  gap: 10px;
  padding-left: 20px;

}

.helper-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #E2E2E2;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  font-family: "font-55";
  -webkit-transition: 350ms ease;
  -o-transition: 350ms ease;
  transition: 350ms ease;

}

.helper-nav a:last-child {
  color: #333333;
}

.helper-nav a:hover {
  color: #333333;
}

.helper-nav img {
  width: 5px;
  height: 7px;
}

.pages-paralax {
  height: 132px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: bottom
}

.innerpage-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F2F2F2;
  position: relative;
  /* min-height: 800px; */


}

.innerpage-main-bottom {
  max-width: 1400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: inherit;
  padding: 20px 0;
  /* padding-inline: 120px; */
  min-height: 700px;





}

.innerpage-main-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  position: relative;
  max-width: 1000px;
  width: 100%;
  height: 100%;
/*  overflow: hidden;*/
}

.innerpage-main-left-item {
  width: 100%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #C1C1C1;
  font-size: 16px;
  height: 78px;
  padding-left: 28px;
  border-radius: 10px;
  gap: 30px;
  -webkit-transition: 250ms ease-out;
  -o-transition: 250ms ease-out;
  transition: 250ms ease-out;
  overflow: hidden;


}

.innerpage-main-left h2 {
  font-size: 30px;
  color: #333333;
  margin-bottom: 20px;
  font-family: 'font-caps';
  text-transform: uppercase;
}

.innerpage-main-left p {
  font-size: 14px;
  color: #8e8e8e;
  margin-top: 9px;


}

.innerpage-main-left-item span {
  padding-left: 30px;
  border-left: 1px solid #C1C1C1;
  font-family: 'font-caps';
  text-transform: uppercase;
  height: 43px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.news-right-innerpages {
  position: absolute;
  height: 100%;
  min-height: calc(100% + 133px);
  top: -133px;
  right: 0;

}

.innerpage-main-left-item:hover {
  color: #333333;
  border: 1px solid #00923F;


}

.innerpage-sakrebulo-news-item-left .greenbg {
  background: #00923f;
}




.innerpage-main-left-item img {
  width: 23px;
  height: 16px;
}

.innerpage-sakrebulo-news-item-right img {
  width: 7px;
  height: 14px;
  margin-left: 5px;
  transition-property: margin-left;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-read-more-link:hover img{
  margin-left: 10px;
}

.innerpage-sakrebulo-news-item-left img {
  width: 100%;
  height: calc(100% - 30px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-transition: 350ms ease;
  -o-transition: 350ms ease;
  transition: 350ms ease;
  z-index: -1;
  object-fit: cover;
  object-position: center;
  margin-top: 30px;
}

.mt0{
  margin-top: 0 !important;
}

.innerpage-sakrebulo-news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
/*  align-items: center;*/
  flex: 1;
  gap: 15px;

  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E2E2;
}

.innerpage-main-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

  -ms-flex-direction: row;

  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 50px;

}

.innerpage-gallery-item {
  max-width: 320px;
  width: 100%;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;
  border: none;
  cursor: pointer;

  -webkit-transition: 250ms ease;

  -o-transition: 250ms ease;

  transition: 250ms ease;
}

.innerpage-gallery-item:hover .innerpage-sakrebulo-news-item-left img {

  scale: 1.05;
}


.innerpage-sakrebulo-news-item-left {
  width: 260px;
  height: 168px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.innerpage-gallery-item-top {
  width: 100%;
  overflow: hidden;
}

.innerpage-sakrebulo-news-item-left header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-left: 8px;
  background: #DA251C;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 30px;
  font-size: 13px;
  text-align: center;
  color: white;
  gap: 5px;
  z-index: 10;
}

.innerpage-sakrebulo-news-item-left header.g-black{
  background: #666;
}

.innerpage-sakrebulo-news-item-right {
  width: calc(100% - 260px);
}

.innerpage-sakrebulo-news-item-left p {
  font-size: 13px;
  padding-left: 10px;

  border-left: 1px solid white;
  opacity: 0.8;
}

.innerpage-sakrebulo-news-item-right h4 {
  color: #8E8E8E;
  font-size: 16px;
  font-family: 'font-caps';
  text-transform: uppercase;
  font-weight: normal;

}

.innerpage-sakrebulo-news-item-right p {
  color: #C1C1C1;
  font-size: 14px;
  margin: 35px 0 25px 0;


}

.innerpage-sakrebulo-news-item-right .a {
  color: #C1C1C1;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

.innerpage-sakrebulo-news-item-right .a:hover {
  color: #00923f;
}

.g-desc{
  margin:10px 0;
}

.innerpage-proj-header {
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
}

.text-g-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gallery-img-item {
  width: 142px;
  height: 114px;
  border-radius: 10px;
  opacity: 0.5;
  -webkit-transition: 275ms ease-out;
  -o-transition: 275ms ease-out;
  transition: 275ms ease-out;
  cursor: pointer;



}

.gallery-img-item:hover {
  opacity: 1;
}

.gallery-img-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.gallery-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 320px;
  position: relative;
}

.gallery-btns {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gallery-main-image {
  width: 100%;
  height: 100%;
}

#main-image {
  width: 100%;
  border-radius: 20px;
}

.text-g-cont {
  width: 100%;
  background: #F2F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-g-wrapper {
  max-width: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  padding: 50px 0px;
}

.text-g-wrapper h2 {
  font-family: 'font-caps';
  text-transform: uppercase;
  font-weight: 200;
  font-size: 30px;
}

.gallery-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.gallery-bottom p {
  padding-left: 10px;
  font-size: 14px;
  font-family: 'font-55';
  color: #8E8E8E;
}



.statement-form {
  max-width: 540px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;

}

.statement-form input,
.contacts-form input {
  max-width: 260px;
  width: 100%;
  height: 50px;
  border: 1px solid #C1C1C1;
  border-radius: 10px;
  outline: none;
  padding: 25px 16px;
  margin-bottom: 14px;
  background: inherit;
  color: #c1c1c1;

}

.contacts-form input{
  border: 1px solid #fff;
  color: #fff;
}

.statement-form input::-webkit-input-placeholder,
.statement-form textarea::-webkit-input-placeholder {
  font-size: 12px;
  color: #c1c1c1;
}

.statement-form input::-moz-placeholder,
.statement-form textarea::-moz-placeholder {
  font-size: 12px;
  color: #c1c1c1;
}

.statement-form input:-ms-input-placeholder,
.statement-form textarea:-ms-input-placeholder {
  font-size: 12px;
  color: #c1c1c1;
}

.statement-form input::-ms-input-placeholder,
.statement-form textarea::-ms-input-placeholder {
  font-size: 12px;
  color: #c1c1c1;
}

.statement-form input::placeholder,
.statement-form textarea::placeholder {
  font-size: 12px;
  color: #c1c1c1;
}

.statement-form textarea {
  width: 100%;
  height: 179px;
  resize: none;
  border: 1px solid #C1C1C1;
  color: #c1c1c1;
  outline: none;
  border-radius: 10px;
  background: inherit;

  padding: 10px;
}

.statement-form button {
  background: #00923F;
  color: white;
  width: 260px;
  height: 50px;
  border: none;
  border: 1px solid inherit;
  border-radius: 10px;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
  cursor: pointer;

}

.statement-form button:hover {

  border: 1px solid #00923F;
  background: inherit;
  color: #00923F;

}

.inner-h-adjustment {
  height: 100%;
}

.statement-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}

.statement-list li {
  background: white;
  padding: 20px 14px;
  border-radius: 10px;
  -webkit-transition: 350ms ease-out;
  -o-transition: 350ms ease-out;
  transition: 350ms ease-out;
}

.statement-list li:hover {
  background: white;
  padding: 20px 14px;
  border-radius: 10px;
  margin-left: 10px;
}

.text-page-2-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
  gap: 77px;
}


.text-page-2-lists li {
  color: #8E8E8E;
  margin-bottom: 7px;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
  list-style: none;
  cursor: pointer;

}

.text-page-2-lists li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  /* Custom width */
  height: 10px;
  /* Custom height */
  background-color: inherit;
  border: 1px solid #E2E2E2;
  border-radius: 50%;
  /* Makes it a circle */
  -webkit-transition: background-color 0.3s, width 0.3s, height 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, width 0.3s, height 0.3s, -webkit-transform 0.3s;
  -o-transition: background-color 0.3s, transform 0.3s, width 0.3s, height 0.3s;
  transition: background-color 0.3s, transform 0.3s, width 0.3s, height 0.3s;
  transition: background-color 0.3s, transform 0.3s, width 0.3s, height 0.3s, -webkit-transform 0.3s;
}

/* Change marker on hover */
.text-page-2-lists li:hover::before,
.text-page-2-lists li.selected::before {
  background-color: green;


}

.text-page-links a {
  text-decoration: none;
  color: #00923F;
  cursor: pointer;
  font-size: 14px;
}

.text-page-links {
  margin: 50px 0px;
}

.innerpage-main-left table thead {
  margin-bottom: 20px;
  color: #8E8E8E;
}

.innerpage-main-left td {
  border: 1px solid #c1c1c1;
  padding: 5px;
  color: #8E8E8E;
}

.contacts-page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 670px;
  height: 323px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  padding-left: 72px;
  padding-right: 7px;
  background: #da251c;
  color: white;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
}

.contacts-page-item:nth-child(3) {
  background-color: #00923F;
}

.contacts-page-item .contacts-form button{
  transition-property: background-color, color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.contacts-page-item .contacts-form button:hover{
  background-color: #00923f;
  color: white;
}

.contacts-page-item:nth-child(3) .contacts-form button:hover{
  background-color: #db2228;
  color: white;
}

.contacts-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  width: 237px;
}

.contacts-form input {
  margin-bottom: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.407);
}

.contacts-form textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  resize: none;
  height: 104px;
  background: inherit;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.419);
  padding: 10px;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.407);
  width: 100%;
}

.contacts-form input {
  padding: 10px 10px;
  height: auto;
  color: rgba(255, 255, 255, 0.407);

}

.contacts-form input:focus,
.statement-form input:focus {
  border: 1px solid rgba(255, 255, 255, 0.407);
  color: #333333;

}

.scroll-lock {
  overflow: hidden;
}

.contacts-form input::-webkit-input-placeholder,
.contacts-form textarea::-webkit-input-placeholder {

  color: rgba(255, 255, 255, 0.407);

}

.contacts-form input::-moz-placeholder,
.contacts-form textarea::-moz-placeholder {

  color: rgba(255, 255, 255, 0.407);

}

.contacts-form input:-ms-input-placeholder,
.contacts-form textarea:-ms-input-placeholder {

  color: rgba(255, 255, 255, 0.407);

}

.contacts-form input::-ms-input-placeholder,
.contacts-form textarea::-ms-input-placeholder {

  color: rgba(255, 255, 255, 0.407);

}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {

  color: rgba(255, 255, 255, 0.407);

}

.contacts-form button {
  border: none;
  background: white;
  color: #333;
  padding: 15px 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'font-caps';
  text-transform: uppercase;
}

.contacts-page-info .cp-h span{
  font-family: 'font-caps';
  text-transform: uppercase;
}

.contacts-page-info a{
  color: white !important;
}

.contacts-page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 17px;
}

.contacts-page-info a {
  color: white;
  margin-left: 20px;
}

.cp-h {
  margin-left: 40px;
  font-size: 18px;
}

.cp-h span {
  font-size: 14px;
  opacity: 0.7;
}



.mobile-nav {
  display: none;
}

.meria-expanded-mobile {
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);

}

.meria-expanded-submenu-mobile {
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
}

.innerpage-main-bottom {
  z-index: 2;
}

.contacts-map {
  margin-top: -200px;
  width: 100%;
  height: 510px;
}
.contacts-map iframe{
  width: 100%;
  height: 100%;
}

.nav-list>a:hover {
  background: white;
}









@media only screen and (max-width: 1500px) {

  .navbar,
  .news-container,
  .announcments-container,
  .citizens-container,
  .public-info-container,
  .services-container,
  .footer-container,
  .copyright,
  .public-section-divider,
  .container,
  .helper-nav,.innerpage-main-bottom {
    max-width: 1300px;
    /* padding: 10px; */
    gap: 10px;
    padding-inline: 10px;
  }

  .copyright {
    padding: 20px;
  }



  .gallery-inner-page {
    max-width: 800px;
  }

 

  .carousel-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: calc((100% / 3) - 15.9px)
  }

  .announcment-btns {

    right: 18px;
  }

  .news-container,
  .citizens-container {
    -ms-grid-columns: 75% 25%;
    grid-template-columns: 75% 25%;


  }

  .carousel-container {
    width: 100%;
  }

  .announcment {
    max-width: 97%
  }

  .nav-list>* {
    padding-right: 43px;
  }



}

@media only screen and (max-width: 1300px) {

  .navbar .news-container,
  .announcments-container,
  .citizens-container,
  .public-info-container,
  .services-container,
  .footer-container,
  .copyright,
  .public-section-divider,
  .helper-nav,
  .innerpage-main-bottom
  
  {
    width: 100%;

  }

  .container {
    width: 100%;
  }

  .news-right {
    padding-inline: 5px
  }

  .news-right a {
    font-size: 14px;
    padding: 7px;
  }

  .nav-item {
    padding: auto;
    height: 54px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    background: inherit;

  }

  .nav-list a {
    border: none;
  }

  .nav-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

  }

  .innerpage-main-left {
    max-width: 540px;
  }



  .gallery-inner-page {
    max-width: 800px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nav-list>* {
    padding-right: 33px;
    padding-left: 13px;
  }



}
@media only screen and (max-width: 1130px) {
  .text-g-wrapper{
    max-width: 650px;
  }
}
@media only screen and (max-width: 1070px) {
  .news-container,
  .announcments-container,
  .citizens-container,
  .public-info-container,
  .services-container,

  .copyright,
  .public-section-divider {
    max-width: 800px;

  }

  .news-container {
    max-width: 95%;
  }

  .news-right {
    padding-inline: 5px
  }

  .news-right a {
    font-size: 14px;
    padding: 7px;
  }

  .nav-item {
    padding: 20px 20px 17px 16px;

  }

  .nav-list a {
    border: none;
  }



  .nav-list>* {
    padding: 0;
    padding-right: 10px;
    padding-left: 5px;
  }


}

.g-mobile-nav{
  display: none;
  width: 100vw;
  height: calc(100vh - 99px);
  position: fixed;
  top: 99px;
  right: -100%;
  overflow: auto;
  z-index: 1000;
  background-color: white;
  transition-property: right;
  transition-duration: 600ms;
  transition-timing-function: ease-in-out;
}

.g-scrolled .g-mobile-nav{
  height: calc(100vh - 81px);
  top: 81px;
}

@media only screen and (max-width: 983px) {
  .navigation {
    display: none;
  }
  .text-g-cont{
    flex-direction: column;
    align-items: center;
  }
  #hamburger {
    display: block;
    /* position: absolute; */
    /* top: 100px;
    left: 0px; */
    z-index: 1101;
  }

  .topbar,
  .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 100%;
  }

  .searchbar {
    position: relative;
  }


  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    bottom: -2px;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);


    z-index: 1000;

    list-style: none;
    position: fixed;
    height:calc(100vh + 2px);
    width: 300px;
    -webkit-transition: 550ms ease;
    -o-transition: 550ms ease;
    transition: 550ms ease;
    overflow: hidden;
    background-color: white;
  }

  .mbn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    padding-left: 10px;
    margin-top: 50px;

  }

  .main-mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 300px;
    height: 100%;
    background: white;
    padding: 5px;
    z-index: 10;
    -webkit-transition: 500ms ease;
    -o-transition: 500ms ease;
    transition: 500ms ease;



  }

  .toggle-nav {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  .main-mobile-nav li {
    width: 270px;
    background: white;
    min-height: 40px;
    font-family: 'font-caps';
    text-transform: uppercase;
    padding: 5px 0;
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #8E8E8E;
    /* background:#DA251C; */
  }

  .meria-nav-prev,
  .branches-nav-prev {
    display: block;
    fill: white;
    z-index: 122;
  }

  .submenu-arrow {
    margin-left: 20px;
    width: 12px;
    height: 12px;
  }

  .carousel-item {
    min-width: calc((100% / 2) - 15.9px);
  }

  .innerpage-main-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .news-right-innerpages {
    position: inherit;
    max-width: 350px;
    width: 100%;
    top: 0;
 
  }

  .innerpage-sakrebulo-news-item-right p {
    margin: 25px 0 15px 0;

  }

  .searchbar {
    right: 20px;
  }




}


@media only screen and (max-width: 890px) {
  .footer-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .footer-left-col-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2px;

  }

  .footer-left-col-item a {
    padding-left: 0;
    border: none;
  }

}

@media only screen and (max-width: 768px) {
  .innerpage-sakrebulo-news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }

  .innerpage-sakrebulo-news-item-right {
    width: auto;
  }

  .text-page-2-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts-page-info a {
    margin-left: 5px;
  }

  .contacts-page-info {
    height: 80%;

  }

  .contacts-map {
    display: none;
  }

  .innerpage-main-bottom {
    padding: 20px 0px;
  }

  .contacts-page-item {
    border-radius: 0;
  }

  .contacts-form {
    width: 47%;
  }



}


.text-page-links a {
  text-decoration: underline;
}

.g-submenu{
  padding: 0;
}

.g-submenu > li{
  position: relative;
}

.g-submenu > li > a{
  padding: 0 10px;
  display: block;
  text-align: left;
}

.g-submenu > li > p{
  padding: 0 10px;
  display: block;
  text-align: left;
  position: relative;
}

.g-submenu > li > p > img{
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  z-index: 10;
  width: 5px;
  height: 8px;
}


@media only screen and (max-width: 660px) {
  .public-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .public-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
  }

  .announcments-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer {
    height: 100%;
    padding: 50px;
  }

  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    gap: 30px;

  }

  .hero-carousel aside {
    left: 5%;
    font-size: 24px;
  }

  .bullets {
    padding-left: 50px;
  }

}

@media only screen and (max-width: 500px) {
  .logo p {
    display: none;
  }

  .innerpage-main-left {
    padding-inline: 10px;
  }

  .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;


  }

  .innerpage-main-left-item {
    padding-left: 20px;
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }

  .topbar {
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;

  }

  .submenu-arrow {
    width: 12px;
    height: 12px;

    margin-left: 20px;
  }

  .searchbar {
    margin-right: 40px;
  }

  .announcments-wrapper aside {
    width: 100%;
  }

  .citizens-container {
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
  }

  .citizens-left h2 {
    font-size: 24px;
  }

  .citizens-left h5 {
    font-size: 12px;
  }

  .service {
    width: 200px;
  }

  .citizens-left-item {
    padding: 21px 25px;

  }

  .citizens-left-item img {
    width: 25px;
    height: 25px;
  }

  .citizens-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
  }

  .citizens-right-item span {
    width: 95%;
    font-size: 12px;
  }

  .public-section-divider {
    font-size: 24px;
  }

  .carousel-item-bottom {
    font-size: 13px;
    padding: 15px 7px;
    height: 132px;
  }

  .hero-carousel aside {
    left: 2%;
    font-size: 20px;
  }

  .innerpage-main-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .innerpage-main-left {
    min-width: 0;
  }



  .innerpage-sakrebulo-news-item-right h4 {
    font-size: 13px;
  }

  .innerpage-sakrebulo-news-item-right p {
    font-size: 12px;
    margin: 20px 0 18px 0;
    ;
  }

  .contacts-page-item {
    padding-left: 10px;
    font-size: 12px;
  }

  .cp-h {
    margin-left: 0;
    font-size: 16px;
  }

  .cp-h span {
    font-size: 12px;
  }

  .innerpage-main-gallery {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-carousel aside {
    bottom: 80px;
  }

  .statement-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }


}

@media only screen and (max-width: 420px) {
  .news-container {
    max-width: 100%;
  }

  .carousel {
    gap: 10px;
  }

  .carousel-item {
    min-width: calc((100% / 2) - 9.9px);
  }

  .carousel-item-bottom {
    padding: 5px 7px;
  }

  .citizens-left h2 {
    font-size: 20px;
  }

  footer {
    padding: 20px;

  }

  .footer-container {
    max-width: 100%;
  }


}

.contacts-form textarea:focus {
  outline: #333;

}

.service span,
.innerpage-main-left p {
  font-family: 'font-caps';
  text-transform: uppercase;
}

.innerpage-main .innerpage-main-left p{
  font-family: "font-55", sans-serif;
}

/* g-hero */
.g-hero{
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.g-hero #owl-hero{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 580px;
  position: relative;
}

.g-hero #owl-hero .owl-stage-outer{
  height: 100%;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage{
  height: 100%;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item{
  height: 100%;
  overflow: hidden;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item{
  height: 100%;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item .image{
  height: 100%;
  background-size: cover;
  background-position: center;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside{
  margin: 0;
  padding: 0;
  width: 1400px;
  position: absolute;
  bottom: 0;
  left: calc((100% - 1400px) / 2);
  color: white;
  text-align: left;
  font-family: "font-caps";
  font-size: 30px;
  line-height: 34px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside::before{
  margin: 0;
  padding: 0;
  content: "";
  width: 500px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -500px;
  background-color: rgba(0, 0, 0, 0.3);
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside::after{
  margin: 0;
  padding: 0;
  content: "";
  width: 500px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -500px;
  background-color: rgba(0, 0, 0, 0.3);
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside a{
  text-decoration: none;
  font-family: "font-caps";
    font-size: 30px;
    line-height: 34px;
    color: white;
  text-align: left;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside a.g-read-more{
  margin: 20px 0 0 0;
  padding: 0 20px;
  text-decoration: none;
  font-family: "font-caps";
  font-size: 16px;
  line-height: 35px;
  height: 35px;
  display: inline-block;
  color: white;
  text-align: center;
  background-color: #F2F2F2;
  color: black;
  border-radius: 16px;
  transition-property: background-color, color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside a.g-read-more:hover{
  background-color: #00923f;
  color: white;
}

.g-bullets{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100px;
  position: relative;
}

.g-bullets .g-wrap{
  margin: 0 auto;
  padding: 0;
  width: 1400px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}

.g-bullets .g-wrap .g-prev,
.g-bullets .g-wrap .g-next{
  cursor: pointer;
}

.g-bullets .g-wrap .g-prev svg path,
.g-bullets .g-wrap .g-next svg path{
  transition-property: stroke;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-bullets .g-wrap .g-prev svg:hover path{
  stroke: #00923f;
}

.g-bullets .g-wrap .g-next svg:hover path{
  stroke: #00923f;
}

.g-bullets .g-wrap .g-btns{
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.g-bullets .g-wrap .g-btns button{
  width: 13px;
  height: 13px;
  border-radius: 100%;
  cursor: pointer;
  border: 1px solid #333333;
  cursor: pointer;
  background-color: white;
}

.g-bullets .g-wrap .g-btns button.active,
.g-bullets .g-wrap .g-btns button:hover{
  background-color: #00923f;
  border: 1px solid #00923f;
}

.g-field_search{
  padding: 3px 8px;
  outline: 0;
  border: solid 1px #8e8e8e;
  border-radius: 10px;
}

#g-submit-btn{
  cursor: pointer;
}

/*#g-news-owl-slider{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 310px;
  position: relative;
}

#g-news-owl-slider .owl-stage-outer{
  height: 100%;
}

#g-news-owl-slider .owl-stage-outer .owl-stage{
  height: 100%;
}

#g-news-owl-slider .owl-stage-outer .owl-stage .owl-item{
  height: 100%;
}

#g-news-owl-slider .owl-stage-outer .owl-stage .owl-item .item{
  height: 100%;
}*/

.gnewsbtn{
  cursor: pointer;
}

.gnewsbtn svg path{
  transition-property: stroke;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.gnewsbtn:hover svg path{
  stroke: #00923f;
}

.sakrebulo-news .gnewsbtn:hover svg path{
  stroke: #DA251C;
}

.owl-carousel .owl-item img{
  object-fit: cover;
}

.g-active{
  background-color: white;
}

.pag-sakrebulo{
  margin: 0 0 40px 0;
  padding: 0;
}

.pag-sakrebulo ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pag-sakrebulo ul li{
  margin: 0 10px;
  padding: 0;
  display: inline-block;
}

.pag-sakrebulo ul li a{
  display: block;
  padding: 5px;
}

.g-polls{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.g-polls li{
  margin-bottom: 15px;
}

.g-polls li a{
  margin: 0;
  padding: 0;
  padding-left: 15px;
  display: inline-block;
  position: relative;
  line-height: 20px;
}

.g-polls li a::before{
  content: "";
  width: 6px;
  height: 6px;
  background-color: #333333;
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
}

/*.logo img{
  object-fit: contain;
}

.g-scrolled .logo img{
  height: 70px;
}*/

.load-calendar h2 a{
  font-family: "font-caps";
  text-transform: uppercase;
  font-weight: 200;
  color: #8e8e8e;
}

.g-services a .g-img{
  margin: 0;
  padding: 0;
  width: 52px;
  height: 52px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8E8E8E;
  transition-property: background-color;
  transition-duration: 600ms;
  transition-timing-function: ease-in-out;
}

.g-services a:hover .g-img{
  background-color: #00923f;
}

.g-services .service img{
  display: none;
  width: 52px;
  height: unset;
}

.g-services .service span{
  color: #8E8E8E;
  transition-property: color;
  transition-duration: 600ms;
  transition-timing-function: ease-in-out;
}

.g-services a .service{
  border: solid 1px white;
  transition-property: border-color;
  transition-duration: 600ms;
  transition-timing-function: ease-in-out;
}

.g-services a:hover .service{
  border-color: #00923f;
}

.g-services a:hover span{
  color: #00923f;
}

#g-announcments-owl-slider img,
#g-announcments-owl-slider2 img{
  width: 120px !important;
  height: 120px !important;
  object-fit: cover;
  object-position: center;
}

.g-view-all-serv{
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.g-view-all-serv::after{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  background-image: url('/_website/images/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 960px){
  .header-search{
    display: none;
  }

  #g-submit-btn{
    display: none;
  }

  #hamburger{
    position: absolute;
    top: 7px;
    right: -10px;
    transition: unset;
  }

  #hamburger.open{
    left:unset;
    right: -12px;
    top: -7px;
    margin-bottom: unset;
  }

  .mobile-nav{
    -webkit-transform: translateX(calc(100% + 175px));
    -ms-transform: translateX(calc(100% + 175px));
    transform: translateX(calc(100% + 175px));
  }

  .toggle-nav{
    -webkit-transform: translateX(calc(100% - 175px));
    -ms-transform: translateX(calc(100% - 175px));
    transform: translateX(calc(100% - 175px));
  }

  .searchbar{
    margin-right: 40px;
  }

  .searchbar a{
    width: unset;
    font-size: 16px;
    text-transform: uppercase;
  }

  #hamburger.open span:nth-child(3){
    top: 39px;
  }

  .logo img{
    object-fit: contain;
  }

  .g-scrolled .logo img{
    height: 70px;
  }

  .g-scrolled #hamburger{
    top: 0px;
  }

  .g-scrolled #hamburger.open{
    top: -15px;
  }
}

@media (max-width: 1600px){
  .g-bullets .g-wrap{
    width: calc(100% - 30px);
    margin-left: 15px;
  }

  .g-hero #owl-hero .owl-stage-outer .owl-stage .owl-item .item aside{
    width: calc(100% - 30px);
    left: 15px;
  }

  .g-field_search{
    width: 120px;
  }

  .innerpage-sakrebulo-news-item-left {
    width: 100%;
    height: 240px;
  }
}

.mobile-header-title{
  display: none;
}

.g-statement-list{
  list-style-type: none !important;
  width: 100%;
  display: block;
}

.g-statement-list li::before{
  content: none !important;
}

.g-statement-list li{
  background-color: #f2f2f2;
  border: 1px solid #e2e2e2;
}

.g-statement-list li .g-text span{
  color: #8E8E8E !important;
  font-weight: normal;
}

.g-statement-list li .g-text p{
  color: #8E8E8E !important;
  font-weight: normal;
  font-family: "font-caps";
  font-size: 18px;
}

.g-statement-list li:hover{
  background-color: #ffffff;
}

.g-statement-list li a{
  display: flex;
  width: 100%;
  gap: 20px;
}

.g-statement-list li a .g-img{
  display: block;
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.g-statement-list li a .g-text{
  flex-basis: calc(100% - 200px);
}

.g-statement-list li{
  width: 100%;
  margin-bottom: 15px;
}

.g-banner-peticia{
  margin: 0 0 40px 0;
  padding: 20px;
  width: 100%;
  -webkit-box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  box-shadow: 0px 4px 5px 1px rgba(242, 242, 242, 1);
  border-radius: 10px;
  border: solid 1px #f2f2f2;  
  text-align: center;
  transition-property: background-color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-banner-peticia:hover{
  background-color: #00923f;
}

.g-banner-peticia p{
  font-family: 'font-caps';
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 30px;
  color: #8e8e8e;
  transition-property: color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-banner-peticia:hover p{
  color: white;
}

.g-banner-peticia p::before{
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  -webkit-mask-image: url(../images/petition.svg);
  mask-image: url(../images/petition.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8e8e8e;
  transition-property: background-color;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.g-banner-peticia:hover p::before{
  background-color: white;
}

main.innerpage-main a{
  color: #00923f;
}

main.innerpage-main a:hover{
  color: #db2228;
}

main.innerpage-main ul{
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
}

main.innerpage-main ul li{
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
  color: #8e8e8e;
}

main.innerpage-main ul li:last-child{
  margin-bottom: 0px;
}

main.innerpage-main ul li::before{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #8e8e8e;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
}

main.innerpage-main ol{
  list-style-type: decimal;
  padding-left: 20px;
  color: #8e8e8e;
}

main.innerpage-main ol li{
  display: list-item;
  list-style-type: inherit;
  color: #8e8e8e;
}

main.innerpage-main ol li::before {
    content: none; /* Avoid any custom content that might remove the number */
}

main.innerpage-main .post-image img{
    border-radius: 10px;
}

.g-innerpage-main-left-item{
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 20px;
  height: unset;
}

.g-innerpage-main-left-item .g-img{
  display: block;
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.g-innerpage-main-left-item span{
  display: block;
  flex-basis: calc(100% - 200px);
}

.g-askpublic-info{
  margin: 0;
  padding: 0;
  width: 100%;
}

.g-askpublic-info .box{
  margin: 0;
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
}

.g-askpublic-info .box input[type="text"],
.g-askpublic-info .box input[type="email"]{
  margin: 0;
  padding: 0 15px;
  width: 100%;
  height: 60px;
  border: solid 1px #f2f2f2;
  border-radius: 10px;
}

.g-askpublic-info .box textarea{
  margin: 0;
  padding: 15px;
  width: 100%;
  height: 220px;
  border: solid 1px #f2f2f2;
  border-radius: 10px;
}

.g-askpublic-info .box label{
  margin-right: 20px;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin-bottom: 10px;
  clear: both;
}

.choose_department{
  font-size: 16px;
  font-family: 'font-caps' !important;
  text-transform: uppercase !important;
  margin-bottom: 10px;
}

.g-askpublic-info button{
  margin: 0;
  padding: 10px 20px;
  background-color: #00923f;
  color: white !important;
  font-family: "font-caps";
  cursor: pointer;
  border-radius: 10px;
  border: 0 !important;
}

.g-msg{
  margin-bottom: 15px;
  color: red;
  font-weight: bold;
}

.g-msg.g-success{
  color: green;
}

.g-post-image{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.g-post-image img{
  display: none;
}

.g-radio{
  display: inline-block;
  width: 18px;
  height: 18px; 
  margin-right: 0;
  position: relative;
  cursor: pointer;
}

.g-radio input{
  visibility: hidden;
  opacity: 0;
}

.g-radio[data-checked="true"]::before{
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px #00923f;
  border-radius: 100%;
}

.g-radio[data-checked="true"]::after{
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  background-color: #00923f;
  border-radius: 100%;
}

.g-radio[data-checked="false"]::before{
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px #00923f;
  border-radius: 100%;
}

#g-owl-news-carousel .owl-nav{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 100;
  pointer-events: none;
}

#g-owl-news-carousel .owl-nav button{
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  float: left;
  margin-left: 15px;
  /*background-image: url('/_website/images/narr.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;*/

  -webkit-mask-image: url(/_website/images/narr.svg);
  mask-image: url(/_website/images/narr.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #00923f;

  transform: rotate(180deg);
  pointer-events: all;
}

#g-owl-news-carousel .owl-nav button.owl-next{
  float: right;
  margin-left: 0;
  margin-right: 15px;
  transform: rotate(0deg);
}

#g-owl-news-carousel .owl-nav button span{
  display: none;
}

#g-owl-news-carousel .owl-nav button:hover{
  background-color: #db2228;
}

.g-header-search{
  width: 0px;
  overflow: hidden;
  transition-property: width;
  transition-duration: 600ms;
  transition-timing-function: ease-in-out;
}

.g-header-search[data-status="opened"]{
  width: 170px;
}

.g-call-box:hover{
  color: #00923f;
}

.g-call-box2:hover{
  color: #00923f;
}

.g-result a{
  color: #8E8E8E;
}

.g-result a:hover{
  color: #00923f;
}

.g-news-title-link{
  font-family: "font-caps" !important;
  text-transform: uppercase !important;
  color: #8E8E8E !important;
}



.g-read-more-link{
  text-decoration: none;
}

.g-read-more-link span{
  color: #8E8E8E !important;
}

.g-read-more-link:hover span{
  color: #db2228 !important;
}

.g-read-more-link.greenhover:hover span{
  color: #00923f !important;
}

.innerpage-sakrebulo-news-item:hover .g-news-title-link{
  color: #db2228 !important;
  text-decoration: none;
}

.innerpage-sakrebulo-news-item:hover .g-news-title-link.greenhover{
  color: #00923f !important;
}

.g-news-img-box{
  position: relative;
}

.g-post-date-sakrebulo{
  display: inline-block;
  background-color: #db2228;
  color: white;
  padding: 10px 10px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.g-post-date-meria{
  display: inline-block;
  background-color: #00923f;
  color: white;
  padding: 10px 10px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.innerpage-sakrebulo-news-item-right .g-desc{
  color: #8E8E8E !important;
}

.g-news-slider-controls{
  display: none;
}

.g-innerpage-main-left222 .g-content222 p{
  text-transform: unset !important;
}

@media(min-width: 960px){
  .g-innerpage-main-left{
    overflow: unset !important;
  }

  .g-news-img-box{
    width: 100%;
    position: relative;
  }

  .g-news-slider-controls{
    display: block;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-news-slider-controls .g-slider-btn{
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
  }

  .g-news-slider-controls .g-slider-next{
    margin-top: 30px;
    margin-bottom: 0;
  }

  .g-news-slider-controls .g-slider-btn::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-mask-image: url(/_website/images/narr.svg);
    mask-image: url(/_website/images/narr.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #00923f;
    transform: rotate(-90deg);
  }

  .g-news-slider-controls.g-slider-controls-sakrebulo .g-slider-btn::before{
    background-color: #db2228;
  }

  .g-news-slider-controls .g-slider-next::before{
    transform: rotate(90deg);
  }

  .g-news-slider-controls .g-slider-cirlces{
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .g-news-slider-controls .g-slider-cirlces button span{ display: none; }
  .g-news-slider-controls .g-slider-cirlces button{
    margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: white;
    margin-bottom: 20px;
    display: block;
    cursor: pointer;
    border: solid 1px #C1C1C1;
  }

  .g-news-slider-controls .g-slider-cirlces button::focus {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
  }
  

  .g-news-slider-controls .g-slider-cirlces button:last-child{
    margin-bottom: 0px;
  }

  .g-news-slider-controls .g-slider-cirlces.g-cirlces-sakrebulo button.active{
    background-color: #db2228;
  }

  .g-news-slider-controls .g-slider-cirlces.g-cirlces-meria button.active{
    background-color: #00923f;
  }

  .g-news-slider-controls .g-slider-cirlces button.active{
    background-color: #333333;
  }

  .g-innerpage-main-left222{
    gap: 0;
  }

  .g-content222{
    margin-top: 30px;
    margin-bottom: 100px;
  }

  .g-content222 p{
    margin-top: 0;
    margin-bottom: 10px;
  }

  .g-content222 p:last-child{
    margin-bottom: 0;
  }
}


.g-footer-title{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: left;
  position: absolute;
  top: -60px;
  left: 0;
  color: white;
  font-size: 30px;
  font-family: "font-caps";
  text-transform: uppercase;
}

@media (max-width: 960px){
  .g-post-image{
    height: 350px;
  }
  .mobile-header-title{
    display: block;
  }
  .topbar{
    border-bottom: solid 1px #f2f2f2;
  }

  .g-mobile-nav{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
  }

  .g-mobile-contact-us{
    margin: 0;
    padding: 0;
    width: calc(100% - 60px);
    height: 60px;  
    margin: 15px 30px; 
    flex: 1;
  }

  .g-mobile-contact-us a{
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    line-height: 30px;
    padding-left: 25px;
    position: relative;
  }

   .g-mobile-contact-us a::after{
      content:"";
      width: 16px;
      height: 16px;
      position: absolute;
      left: 0;
      top: calc(50% - 8px);
      background-image: url('https://keda.gov.ge/_website/images/phone-icon.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: left center;
  }

  .g-mobile-nav .header-search{
    display: block;
    position: relative;
    width: calc(100% - 60px);
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    margin-left: 30px;
    margin-bottom: 15px;
    flex: 1;
  }

  .g-mobile-nav .header-search .g-field_search{
    width: 100%;
    padding: 5px 30px 5px 8px;
  }

  .g-mobile-nav .header-search #g-submit-btn{
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
  }

  .g-mobile-nav .navbar{
    display: block;
    height: unset;
    max-width: 100%;
    padding-inline: unset;
    flex:1;
  }

  .g-mobile-nav .navbar .nav-item{
    display: block !important;
    border-bottom: solid 1px #f2f2f2;
  }

  /*.g-mobile-nav .navbar .nav-item:last-child{
    border-bottom: none;
  }*/

  .has-submenu .submenu li{
    border-bottom: solid 1px #f2f2f2 !important;
  }

  .has-submenu .submenu li:last-child{
    border-bottom: none;
  }

  .g-mobile-nav .navbar .nav-list{
    display: block;
    padding: 0 30px;
  }
  
  .g-mobile-nav .nav-list > li > a{
    height: unset;
    line-height: unset;
  }

  .g-mobile-nav.g-toggle-nav{
    right:0px;
  }

  .g-mobile-nav .nav-list>*{
    padding-left: 0;
    padding-right: 0;
  }

  .g-mobile-nav .nav-list a span{
    font-family: 'font-caps';
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }

  .g-mobile-nav .nav-item.has-submenu > a > span{
    padding-right: 15px;
  }

  .g-mobile-nav .nav-item.has-submenu > a > span::after{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 0px;
    background-image: url('https://keda.gov.ge/_website/images/arrow-right.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    transform: rotate(90deg);
  }

  .g-carousel-item-top{
    height: unset;
  }

  .g-carousel-item-top img{
    height: 190px;
  }

  .g-carousel-item{
    height: unset;
  }

  .g-carousel-item .carousel-item-bottom{
    width: 100%;
    padding: 30px 15px;
    height: unset;
  }

  .news-right-innerpages{
    min-height: unset;
    padding-bottom: 40px;
  }

  .pag-sakrebulo ul{
    display: flex;
  }

  .pag-sakrebulo ul li{
    margin: 0 2px;
    display: block;
  }

  .pag-sakrebulo ul li a{
    padding: 2px;
    font-size: 14px;
  }

  .g-mobile-nav .nav-item{
    height: unset;
    line-height: 30px;
  }

  .submenu li, .expanded-submenu li{
    padding: 0;
  }

  .has-submenu .submenu{
    display: none;
    position: static !important;
    width: 100%;
    background-color: transparent;
    text-align: center;
    opacity: 1;
    padding-left: 30px;
  }

  .has-submenu .submenu li{
    border-bottom: none;
    width: 100%;
    text-align: center;
  }

  .has-submenu .submenu li a,
  .g-submenu > li > p{
    text-align: left;
    display: block;
  }

  .g-submenu > li > a,
  .g-submenu > li > p{
    padding: 0;
  }

  .expanded-submenu{
    position: static !important;
    width: 100%;
    background: transparent;
    padding-left: 30px;
  }

  .g-new-opened span::after{
    transform: rotate(-90deg) !important;
  }

  .g-new-opened img{
    transform: rotate(-180deg) !important;
  }

  .g-mobile-nav .navbar .nav-item{
    text-align: left;
  }

  .topbar .logo{
    gap: 10px;
  }

  .mobile-header-title div{
    text-transform: uppercase;
  }

  .g-call-new-box{
    max-width: 256px;
    padding: 0 !important;
    padding-left: 45px !important;
  }

}

.g-list-gancxadebebi{
  background-color: white !important;
}

@media(min-width: 960px){
  .citizens-left .gcitizens-box{
    margin: 0 -5px !important;
  }

  .citizens-left .gcitizens-box a {
    display: inline-block !important;
    width: calc(50% - 10px) !important;
    margin: 0 5px !important;
  }

  .announcments .announcments-container header h2{
    margin-bottom: 50px;
  }

  .innerpage-sakrebulo-news-item-right{
    position: relative;
  }

  .g-read-more-link222{
    position: absolute;
    bottom: 5px;
    left: 0;
    text-decoration: underline;
    display: inline-block;
  }

  .g-read-more-link222::after{
    content: "";
    width: 30px;
    height: 16px;
    position: absolute;
    right: -40px;
    top: calc(50% - 8px);
    -webkit-mask-image: url(../images/news.arrow.svg);
    mask-image: url(../images/news.arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #C1C1C1;
  }

  #g-submit-btn{
    margin-left: 10px;
  }

  .form-x{
    display: flex;
  }
}

@media(max-width: 960px){
  .footer-container{
    padding-top: 50px;
  }

  .footer-container .g-footer-title{
    top: 0;
    left: 10px;
    font-size: 26px;
  }
}