:root {
  --whiteColor: #fff;
    --primaryColor: #003a49;
    --primaryColorHover: #00809c;
  --secondaryColor: #e5bf24;
  --secondaryColorLight: #ecd98b;
  --secondaryColorHover: #313131c7;
  --primaryColoLight: #006b82;
  --shadowColor:#502c1d;
  --blackColor: #000;
  --grayTextColor: #555;
  --grayColor: #ddd;
  --backgroundColorSpecial: #7f806b;
 
}

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

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

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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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


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

/* Main Styles */

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

.site-area {
  width: 100%;
  max-width: 1600px;
	margin: 0 auto;
}

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

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

.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: 7rem;
  padding: 3rem 10rem;
  z-index: 1000;
  background-color: var(--primaryColor);;
   box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
	 background:
        linear-gradient(
            to bottom,
            var(--primaryColor) 0%,
            var(--primaryColor) 85%,
            var(--secondaryColor) 100%
        );
}

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

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

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

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

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

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

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

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

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 0;
  height: 3px;
  background-color: var(--secondaryColor);
  transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after {
  width: 100%;
}

.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: 1800px) {
  .main-header {
  	padding: 3rem 2rem;
  }

}

@media screen and (max-width: 1600px) {
  .main-navigation ul li a {
  	padding: 1rem 1rem;
  }

}

@media screen and (max-width: 1360px) {
  .main-navigation ul li a {
  	padding: 1rem 0.5rem;
  }

}

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

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

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

/*  */


.menu-checkbox {
  display: none;
}

.hamburger-menu {
  display: none;
}

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

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

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

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

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

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

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

  #menu-toggle:checked ~ .menu-primary-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;
    background-color: var(--whiteColor);
    z-index: 1000;
    transition: transform 0.9s ease;
    animation: slideInMenu 0.5s forwards;

	overflow-y: auto;           
    overflow-x: hidden;
	padding-bottom: 5rem;
  }
  


  @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;
	font-size: 0.9rem;
	  line-height: 0.2rem;
  }


	 .main-navigation ul li .sub-menu{
        position: static;
        display: flex;
        width: 100%;
        box-shadow: none;
        background: #f5f5f5;
        margin-top: 5px;
        padding-left: 15px;
    }

    .main-navigation ul li .sub-menu li{
        width: 100%;
    }

    .main-navigation ul li .sub-menu li a{
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}


/* submenu */

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li .sub-menu {
    position: absolute;
    top: 200%;
    left: 0;
    min-width: 220px;
    background: var(--whiteColor);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.main-navigation ul li:hover > .sub-menu {
    display: flex;
}

.main-navigation ul li .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navigation ul li .sub-menu li a {
    display: block;
    padding: 20px 15px;
    color: var(--blackColor);
    white-space: nowrap;
}

.main-navigation ul li .sub-menu li a:hover {
    background: var(--grayColor);
}

@media screen and (max-width: 1080px){
	.main-navigation ul li .sub-menu {
	    position: static;
	    display: flex !important;
	    flex-direction: column;
	    width: 100%;
	    background: #f5f5f5;
	    box-shadow: none;
	    margin-top: 5px;
	    padding:0;
		height:auto;
	}

	.main-navigation ul li .sub-menu li a {
		padding-left:30px;
		font-size: 0.8rem;
	}
	
	
	.main-navigation ul li:hover > .sub-menu {
	    display: flex;
	}
}

/* menu-search */
.menu-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}


.search-checkbox {
    display: none;
}


.search-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--whiteColor);
}


.menu-search {
    position: absolute;
    right: 0;
    top: 120%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: var(--whiteColor);
    padding: 0.3rem;
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1000;
}

.menu-search input {
    border: none;
    outline: none;
    padding: 0.4rem 0.6rem;
    width: 180px;
}


.search-checkbox:checked ~ .menu-search {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* single post */

.single-post-wrapper{
	display:flex;
	justify-content:center;
	align-items:flex-start;
}

.single-post-wrapper .widget-area{
	margin-top:4rem;
}

.single-post {
    max-width: 1200px;
    margin: 3rem auto;
}

.single-post-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
	object-position:top;
    display: block;
}

.single-post-content {
    padding: 0.5rem;
}

.single-post-date {
    display: block;
    color: #777;
    margin-bottom: 1rem;
}

.single-post-title {
	font-size:1.5rem;
    margin-bottom: 2rem;
    color: var(--primaryColor);
	font-weight:900;
	text-align:center;
	line-height: 2rem;
}

.single-post-text {
    line-height: 1.8;
	width:100%;
}

.single-post-text p {
    margin-bottom: 1rem;
}

.single-post-text .gallery{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
}

@media (max-width: 1600px) {

    .single-post-wrapper #secondary{
        min-width:320px;
    }
}

@media (max-width: 1024px) {
	.single-post{
		margin-bottom:0;
	}

    .single-post-wrapper{
        flex-direction: column;
    }

}

/*  related post*/
.related-posts {
    margin-top: 2rem;
	padding: 0 2rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
    color: var(--primaryColor);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.related-item {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
	border-radius:6px;
	overflow:hidden;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.related-item h4 {
    padding: 0.8rem;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
	.related-grid{
	grid-template-columns: 1fr;
	}
}

/* sidebar */
#secondary {
    width: 320px;
}

.wp-element-button{
	background: var(--primaryColor);
    color: #fff;
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.wp-element-button:hover{
	background: var(--secondaryColor);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.widget {
    background: #fff;
    margin-bottom: 2rem;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primaryColor);
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: var(--primaryColoLight);
}

.widget li{
	padding-bottom: 10px;
}

.widget a{
	color:var(--blackColor);
	transition: all 0.3s ease;
	line-height:1.1rem;
	font-size:0.9rem;
}

.widget h2{
	font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
	color:var(--primaryColor);
}

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

.widget_search input[type="search"] {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    outline: none;
	margin: 1rem auto;
}

.widget_search input[type="search"]:focus {
    border-color: var(--primaryColor);
}

.widget_search input[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.6rem;
    background: var(--primaryColor);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.widget_search input[type="submit"]:hover {
    background: var(--primaryColoLight);
}


@media screen and (max-width: 800px) {
  #secondary{
	  width:300px;
  }

	.widget{
		padding: 1rem;
	}

}

@media (max-width: 1024px) {
     #secondary{
		 width:100%;
  }

	.widget{
	width:100%;
	}

}


/* content */

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

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



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

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

.section-title {
    text-align: center;
    margin: 0.5rem 0 3rem;
}

.section-title h2 {
    font-size: 1.7rem;
    color: var(--primaryColor);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondaryColor);
}


/* home */

.wave-divider {
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider path {
    fill: var(--primaryColoLight);
}

.hero-container-wrapper{
	width:100%;
	position: relative;
    background: url("/wp-content/themes/template005/img/bg.jpg") center/cover no-repeat;
    min-height: 400px;
}

.hero-container-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 95, 115, 0.4); 
}

.hero-container-wrapper > * {
    position: relative;
    z-index: 1;
}

.hero-container {
	display:flex;
	justify-content: space-between;
	align-items:center;
	width:100%;
	margin: 6rem auto 0rem auto;
	padding: 5rem;
	max-width:1600px;
	gap: 2rem;
}

.hero-left{
	flex:1;
}

.hero-left p {
    position: relative;
    display: inline-block;
    cursor: default;
	font-size: 4rem;
	font-weight: 900;
	color: var(--whiteColor);
}


.hero-left p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 10px;
    background-color: var(--secondaryColor); 
}

.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-item {
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
	transition: 0.3s ease;
	cursor:pointer;
	height: 250px;
	width: 250px;
}

.service-item:nth-child(odd) {
    background-color: var(--primaryColor);
}

.service-item:nth-child(even) {
    background-color: var(--primaryColoLight);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
}

.service-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
	line-height:1.2rem;
}


.service-item:hover {
    filter: brightness(1.2);
}

@media (max-width: 1600px) {
    .hero-left p {
        font-size:3.5rem;
    }
}

@media (max-width: 1360px) {
	.hero-left p {
        font-size:3rem;
    }
	
	.service-item{
    height: 220px;
	width: 220px;
	}
}

@media (max-width: 1200px) {
	.hero-container{
		flex-direction:column;
		gap:5rem;
	}

	.service-item{
    height: 250px;
	width: 250px;
	}
}

@media (max-width: 800px) {
	.service-item{
    height: 250px;
	width: 200px;
	}

	.hero-left p {
        font-size:2.5rem;
    }
}

@media (max-width: 600px) {
	.service-item{
    height: 200px;
	width: 150px;
	padding:0.5rem;
	}

	.icon-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
	}

	.icon-circle i {
		font-size: 1rem;
	}

	.service-item h3 {
    font-size:0.8rem;
	}
}

@media (max-width: 500px) {
	.service-item{
    height: 200px;
	width: 130px;
	padding:0.5rem;
		justify-content: flex-start;
		padding-top:50px;
	}
}

@media (max-width: 400px) {
    .services-section {
        grid-template-columns: 1fr 1fr;
    }

	.hero-left p {
        font-size:2rem;
    }
}

.home-main-content{
	margin: 4rem auto;
	display:flex;
	justify-content:space-between;
	gap: 2rem;
	align-items:top;
	width:100%;
	max-width:1600px;
	padding:0.5rem;
}

.news-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-item {
    border:none;
	border-radius:5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	max-width:450px;
	transition: 0.5s ease;
	overflow: hidden;
}

.news-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
	overflow:hidden;
}


.news-content {
    padding: 0.5rem;
}

.news-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
	line-height:1.2rem;
	color: var(--primaryColor);
}

.news-content p {
    font-size: 0.85rem;
    color: #555;
	line-height:1.2rem;
}


.news-item:hover {
	 transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
}

@media (max-width: 1600px) {
    .home-main-content{
	padding: 0.5rem 2rem;
	}
}

@media (max-width: 1360px) {
  .news-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .home-main-content{
	flex-direction: column;
		margin-bottom: 0;
	}
}

@media (max-width: 600px) {
    .news-section {
        grid-template-columns: 1fr;
    }
}

.problem-banner {
    margin: 1rem 0 3rem 0;
    text-align: center;
}

.problem-banner a {
    display: inline-flex;
	justify-content:center;
    align-items: center;
    gap: 0.6rem;
	width:90%;
	max-width:1360px;
	height:200px;
	font-size:3rem;
    box-shadow: 0 5px 8px rgba(0,0,0,0.3);
	letter-spacing:0.2rem;

    padding: 1rem 2rem;
    background: var(--primaryColor);
    color: var(--secondaryColor);

    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;

	background-image: linear-gradient(
       rgba(0, 80, 110, 0.4),
		rgba(0, 100, 130, 0.4)
    ),
    url("/wp-content/themes/template005/img/report-bg.jpg");
	background-size: cover;
    background-position: top;
	transition: 0,5s ease;
}

.problem-banner a:hover {
     transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
    .problem-banner a{
        height: 150px;
		font-size: 2.2rem;
		letter-spacing:0.05rem;
    }
}

@media (max-width: 600px) {
    .problem-banner a{
		font-size: 2rem;
		line-height:2.5rem;
    }
}
/* news */

.archive-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.archive-header h1 {
    font-size: 2rem;
    color: var(--primaryColor);
    position: relative;
    display: inline-block;
}

.archive-header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondaryColor);
}

.archive-news-grid {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.archive-news-wrapper{
	width:100%;
	max-width: 1600px;
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin: 0 auto;
}

.archive-news-item {
    background: #fff;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.archive-news-item:hover {
    transform: translateY(-5px);
}

.archive-news-item a {
    text-decoration: none;
    color: inherit;
}

.archive-news-image {
    overflow: hidden;
}

.archive-news-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.archive-news-item:hover img {
    transform: scale(1.05);
}

.archive-news-content {
    padding: 1.2rem;
}

.archive-news-date {
    display: block;
    margin-bottom: 0.7rem;
    color: #777;
    font-size: 0.85rem;
}

.archive-news-content h2 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primaryColor);
	line-height:1.3rem;
}

.archive-news-content p {
	font-size: 0.9rem;
    color: #555;
    line-height: 1.2;
}

@media (max-width: 1024px) {

    .archive-news-wrapper{
        flex-direction: column;
    }

    .archive-news-grid{
        max-width: 100%;
        width: 100%;
        margin: 2rem auto;
    }

    .sidebar,
    .widget-area,
    aside {
        width: 100%;
        max-width: 100%;
    }

}
@media (max-width: 1600px) {

    .archive-news-wrapper #secondary{
        min-width:320px;
    }

	.archive-news-content h2{
		font-size: 0.9rem;
	}

}
@media (max-width: 1360px) {

    .archive-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .archive-news-grid {
        grid-template-columns: 1fr;
    }

}

.pagination-wrapper {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a,
.nav-links span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: #f5f5f5;
    color: var(--primaryColor);

    border-radius: 4px;

    transition: 0.3s;
}

.nav-links a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.nav-links .current {
    background: var(--primaryColoLight);
    color: #fff;
}


/* moadgileebi  */

.moadgileebi-container {
	width:100%;
	max-width:1200px;
	margin:0 auto;
}

.moadgileebi-container p{
	font-size: 0.9rem;
}

.moadgileebi-container img{
	width:100%;
	max-width: 350px;
	height: 400px;
	object-fit:cover;
	float:left;
	border-radius: 5px;
	margin: 1rem 4rem 4rem 0px;
}

/* steuqtura  */

.struqtura-wrapper{
	width:100%;
	max-width:1600px;
	display:flex;
	justify-content:space-between;
	align-items: flex-start;
}

.text-side{
	width:100%;
	margin-right:1rem;
}


.struqtura-wrapper #secondary{
        min-width:320px;
}

@media (max-width: 1024px) {

    .struqtura-wrapper{
        flex-direction: column;
    }

}
/*  contact */

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

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

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

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
	box-shadow: 0 3px 12px rgba(0,0,0,0.5);
	padding:2rem;
}

.join-us-form{
	max-width:1200px;
	margin:2rem auto;
}

.form-right textarea{
	margin-bottom: 1rem;
}

form h4{
	text-align: center;
	line-height:1.5rem;
}

@media (max-width: 996px) {

    .form-inputs{
        flex-direction: column;
    }

}

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

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

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

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

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

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

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

	.contact-form-container, .contact-info-container, .contact-info{
		width:100%;
	}

	.form-iputs{
		flex-direction:column;
	}
}

.contact-form-container h3{
	font-size: 1.7rem;
	text-align:center;
	margin-top:1.5rem;
}

.form-inputs{
	max-width:1200px;
	display:flex;
	justify-content:center;
	align-items:flex-start;
}

.form-left input{
	margin-bottom:2rem;
}

.contact-form-header{
	margin-top:0 !important;
}


/*  map-container */

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

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

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

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

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

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

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

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

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

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

/* about */

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

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

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

.about-img-container img{
    
  width: 100%;
  height: auto;
	max-height:600px;
	object-fit:cover;
  border-radius: 0.5rem;
  
}

.wide-content{
  width:100%;
}

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

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

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

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

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

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


/* services */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* main page content */

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


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


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

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


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

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


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

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

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

/*new swiper*/


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/* about-grid */

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




/* masalebi */

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


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

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





/* btn */

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

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

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

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

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

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



/* footer */

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

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

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

.footer-navigation li {
    list-style: none;
}

.footer-navigation ul li a {
	font-size: 0.8rem;
  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(--secondaryColor);
}

.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: 1600px) {
	.footer-container {
	grid-template-columns: 1fr 1fr;
	place-items:center;
	}

	.footer-container > :nth-child(3) {
		margin-top:3rem;
        grid-column: 1 / 3;
        justify-self: center;
    }

	.footer-contact-item {
		justify-content:center;
	}

	.footer-contact-item  p{
  text-align:center;
}
}

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

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

.footer-container > :nth-child(3) {
    grid-column: auto;
    margin-top: 0;
  }

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

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

  .footer-contact, .footer-navigation ul li a{
    font-size: 0.8rem;
  }

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

@media screen and (max-width: 768px) {
	.footer-navigation ul{
		grid-template-columns: 1fr;
	}
}

/* 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;
	margin:0 auto;
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 5px;
  padding: 0;
  width: 300px !important;
  height: 225px !important;
  border-radius: 3px;
  transition: 0.3s;
}

.gallery-item img{
	width: 300px !important;
  height: 225px !important;
  object-fit: cover !important;
  border-radius: 5px !important;
  box-shadow: 5px 5px 10px black !important;
  margin: 10px !important;
	transition: 0.5s ease;
}

.gallery-item img:hover{
	box-shadow: 10px 10px 15px black !important;
}

.gallery-caption {
  display: block;
}


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

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




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

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

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


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

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

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

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

/* Posts pagination */

.wp-pagenavi{
  width: 100%;
  padding: 10px;
  border: 2px solid var(--whiteColor);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  text-align:center;
    }
.wp-pagenavi > *{ display:inline-block; padding:0.5em 0.5em; margin:0.3em; border:2px solid var(--primaryColor); border-radius:3px; color:var(--secondaryColor); }
.wp-pagenavi a,
.wp-pagenavi a:hover{ text-decoration:none; }
.wp-pagenavi a{ background-color:var(--whiteColor); }
.wp-pagenavi a:hover{ border-color:var(--secondaryColor); color: var(--primaryColor);}
.wp-pagenavi .pages{ }
.wp-pagenavi .current{ border-color:var(--secondaryColor); color: var(--primaryColor); }
.wp-pagenavi .extend{ color:var(--primaryColor); }
.wp-pagenavi .first{  }
.wp-pagenavi .last{  }
.wp-pagenavi .prev{ border-color:rgba(0,0,0,0); }
.wp-pagenavi .next{ border-color:rgba(0,0,0,0); }
	
/*-------------Mail OK ------------*/

.ok {
 background: #00B5B5;
 margin-bottom: 15px;
 padding: 10px;
 color: white;
 text-align: center;
}

.form-right label{
	padding-left:0.5rem;
	font-size: 0.9rem;
}
input#image{
	margin-top:0.5rem;
	border: none;
}

input#image:hover {
	background: transparent;
}

input[type="file"]::file-selector-button {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
    background: var(--secondaryColor);
}
/*---------------pdfjs-fullscreen----------*/
.pdfjs-fullscreen a{
	line-height:3rem;
	padding:7px 10px;
	background-color: var(--primaryColor);
	color:var(--whiteColor);
	border-radius:5px;
	font-size: 0.8rem;
	margin:2rem 0;
}


