@font-face {
  font-family: Norm;
  src: url(../webfonts/ka/bpg_extrasquare_0.ttf);
}
@font-face {
  font-family: Caps;
  src: url(../webfonts/ka/bpg_extrasquare_mtavruli_0.ttf);
}
:root {
  --andBlue: #0066b3;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Norm";
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
body {
  background-color: white;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Optional: Adjust the appearance of the input (border, padding, etc.) */
input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* Header */
header {
  width: 100%;
  position: fixed;
  z-index: 10000;
  background: #ffffffe0;
  transition: height 0.3s, background 0.3s;
}
.indexHeader header {
  background: none;
}
.indexHeader header .header {
  height: 100px;
}
.indexHeader header .navigation li a {
  color: white;
  font-size: 16px;
  line-height: 40px;
}
.indexHeader header .navigation li a:hover {
  color: var(--andBlue);
}
.header {
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
}
nav.navigation {
  display: flex;
  gap: 25px;
  align-items: center;
}
.navigation li a {
  font-size: 16px;
  font-weight: 550;

  font-family: Caps;
  color: var(--black);
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.navigation li a:hover {
  color: var(--andBlue);
}
.navActiv {
  color: var(--andBlue) !important;
}
.headerSpace {
  height: 70px;
  width: 100%;
}
.blog_view {
  width: 100%;
}
.blog_view .img {
  height: 400px;
  width: 100%;
  float: left;
  overflow: hidden;
}
.blog_view .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.product_view .img {
  width: 100%;
  float: left;
  overflow: hidden;
}
.product_view .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
h2.newsViewTitle {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  letter-spacing: 0.2px;
  font-family: "Caps";
  margin-bottom: 20px;
}
h2.newsViewTitleModel {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  letter-spacing: 0.2px;
  font-family: "Caps";
  margin-bottom: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 0.5rem !important;
  font-weight: normal;
}
.viewDescWrap {
  font-size: 14px !important;
  font-family: Norm;
}
/* Loading */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  animation: slideUp 1s ease-in-out 2s forwards;
}

.loader {
  position: fixed; /* დამოუკიდებლად დავაფიქსიროთ */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 450px;
  background-image: url("https://and-georgia.ge/site/img/and-logo-blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  mask: url("https://and-georgia.ge/site/img/and-logo-blue.png")
    no-repeat center;
  -webkit-mask: url("https://and-georgia.ge/site/img/and-logo-blue.png")
    no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: #e6f0f8;
  z-index: 9999;
  transition: opacity 0 ease-out;
}

.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0066b3;
  animation: fillEffect 1s ease-in-out forwards;
}

.loader::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: 1;
  animation: fadeEffect 2s ease-in-out 0.5s forwards;
}

@keyframes fillEffect {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes fadeEffect {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
/* Slide */
.slide {
  width: 100%;
  height: 650px;
}
.slide .video {
  position: relative;
  z-index: 1;
  width: 100%; /* Make it full width */
  height: 650px; /* Full viewport height */
  overflow: hidden; /* Hide any overflow */
}
.slide .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Ensures the video fills the container while maintaining its aspect ratio */
  z-index: -1; /* Keep video behind any other content */
}
.slide_desc {
  position: absolute;
  z-index: 3;
  margin-top: 220px;
  max-width: 100%;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.slide_desc_logo {
  position: absolute;
  z-index: 3;
  margin-top: 127px;
  right: 12px;
  max-width: 412px;
  overflow: hidden;
}
.slide_desc h2 {
  font-size: 48px;
  color: var(--white);
  font-family: Caps;
  font-weight: bold;
  text-align: left;
}
.videoOpacity {
  background: #00000061;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100vh;
}
.indexServiceHeader {
  display: flex;
  gap: 30px;
  margin-top: -53px;
  z-index: 20;
  position: relative;
}
.indexServiceHeader .servCard {
  background-color: var(--white);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  max-width: 412px;
  position: relative;
  overflow: hidden;
}
.servCard .desc h2 {
  background-color: #e8e8e8;
  font-size: 14px;
  font-family: Caps;
  letter-spacing: 0.4px;
  color: var(--black);
  padding: 18px;
}
.servCard .desc h3 {
  padding: 20px;
  letter-spacing: 0.3px;
  font-size: 13px;
  color: #000000bf;
  position: absolute;
  background-color: #ffffffd4;
  opacity: 1;
}
.servCard .videoCover {
  background: #00000061;
  z-index: 2;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.servCard .videoCover video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  z-index: -1;
}
.productsVideo {
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.productsVideo video {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.servicesContainer {
  margin-top: 70px;
  margin-bottom: 70px;
}
.servicesContainer h3.title {
  font-size: 14px;
  font-family: Caps;
  width: 100%;
  background: #f7f6f6;
  height: 49px;
  margin-bottom: 0;
  line-height: 50px;
  padding-left: 20px;
}
.productsVideo video {
  display: none;
}
.productsVideo .activeVideo {
  display: block;
}
h2.activeBtn {
  color: var(--andBlue);
  font-weight: bold;
}
.indexServicesCats {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}
.indexServicesCats h2 {
  font-size: 14px;
  width: 100%;
  background: #e8e8e8;
  padding: 15px 20px;
  letter-spacing: 0.8px;
  font-family: "Norm";
  margin-block-start: 0;
  margin-block-end: 0;
  border-top: 1px solid #fff;
  text-align: center;
  cursor: pointer;
}
.indexAboutUsSection {
  width: 100%;
  margin-top: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f7f6f6;
}
.indexAboutUsVideoSection {
  width: 100%;
  margin-top: 70px;
  background-color: #f7f6f6;
}
.videoCover:hover .servCard .desc h3 {
  opacity: 0;
  transition: opacity 0.3s; /* Smooth transition effect */
}
.about-categories__category {
  background-color: #f1f6fc;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.about-categories__title {
  font-size: 14px;
  margin-bottom: 10px;
}
.about-categories__text {
  font-size: 14px;
  color: rgba(35, 31, 32, 0.4);
}
.aboutCompanyTitle {
  font-size: 14px;
  font-family: Caps;
  width: 100%;
  margin-bottom: 20px !important;
  color: var(--black);
}
.aboutCompanyText {
  font-size: 14px;
}
.indexNewsAndBlogSection {
  background-color: #e8e8e8;
  padding-top: 70px;
  padding-bottom: 70px;
}
.indexNewsAndBlogSection h2.section {
  font-size: 14px;
  font-family: Caps;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
}
a.contactBtn {
  color: black;
}
a.contactBtn .footerContactCard {
  font-size: 14px;
  background-color: var(--andBlue);
  width: 100%;
  float: right;
  color: white;
  transition: 0.5s;
  margin-top: 30px;
  padding: 16px 20px;
  border: none;
}
a.contactBtn:hover .footerContactCard {
  background-color: var(--black);
}
.owl-carousel {
  margin-top: 30px;
}
.owl-carousel .item {
  background-color: #f7f6f6;
}
.owl-carousel .item a {
  color: var(--black);
}
.owl-carousel .item a:hover {
  color: var(--andBlue);
}
.owl-carousel .item .desc h2 {
  font-size: 14px;
  padding: 20px 20px 10px;
  font-family: Norm;
}
.owl-carousel .item .desc .catAndDate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 10px;
}
.owl-carousel .item .desc .catAndDate .cat {
  font-size: 13px;
  color: rgba(35, 31, 32, 0.4);
}
.owl-carousel .item .img {
  height: 240px !important;
  width: 100%;
  overflow: hidden;
}
.owl-carousel .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.owl-carousel .item .img img:hover {
  transform: scale(1.1);
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px !important;
}

.footer {
  background-color: #282b2e;
  padding-top: 50px;
  padding-bottom: 20px;
}
.footer .footerSocAndCop a {
  color: var(--white);
  transition: 70ms;
  opacity: 0.7;
}
.footer .footerSocAndCop a:hover {
  color: var(--white);
  opacity: 1;
}
.footerSocAndCop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding-top: 15px;
  border-top: 1px solid #505050;
  margin-top: 50px;
}
.footerSocAndCop .cop {
  font-size: 12px;
  opacity: 0.7;
}
#footer-social ul {
  height: 32px;
  float: right;
  margin-top: 42px;
}
#footer-social li {
  height: 32px;
  float: left;
  line-height: 32px;
}
#footer-social a {
  position: relative;
  display: inline-block;
  width: 32px;
  height: inherit;
  text-decoration: none;
}
.dark #footer-social svg {
  color: #fff;
  transition: color 0.3s;
}
#footer-social svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.about-categories-flex {
  display: flex;
}
.servicesContainer-flex {
  display: flex;
}
.servicesContainer-grid {
  display: grid;
}
.footerSmalSection {
  color: white;
  display: flex;
  /* justify-content: center; */
  gap: 30px;
}
.footerContactCard a {
  color: var(--white);
  opacity: 0.8;
  transition: 70ms;
}
.footerContactCard a span {
  font-size: 14px;
}
.footerContactCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #505050;
  padding: 20px 30px;
  transition: 70ms;
}
.footerContactCard:hover a {
  opacity: 1;
}
.footerContactCard:hover {
  opacity: 1;
  border: 1px solid white;
}
h1.pageTitleText {
  margin-top: 90px;
  border: NONE;
  font-size: 12px;
  font-family: "NORM";
  color: var(--black);
  z-index: 45;
  opacity: 1;
  text-align: left;
}
span.pageTitleText {
  margin-top: 90px;
  border: NONE;
  font-size: 12px;
  font-family: "NORM";
  color: var(--black);
  z-index: 45;
  opacity: 1;
  text-align: left;
}
a.pageTitleText {
  margin-top: 90px;
  border: NONE;
  font-size: 12px;
  font-family: "NORM";
  color: var(--black);
  z-index: 45;
  opacity: 0.8;
  text-align: left;
}
a.pageTitleText:hover {
  color: var(--andBlue);
}
.pageTitleWrap {
  height: 130px !important;
  background-color: #e8e8e8;
}
.blog_wrap {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog_view_wrap {
  padding: 50px 0;
}
.blog_card {
  background-color: #f7f6f6;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.blog_desc {
  padding: 20px;
  float: left;
}
.blog_desc h2 {
  font-size: 14px;
  font-family: Caps;
  color: var(--black);
  letter-spacing: 0.2px;
}
.blog_card .img {
  height: 300px;
  width: 100%;
  float: left;
  overflow: hidden;
}
.blog_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.product_desc {
  padding: 10px 0 10px;
  float: left;
}
.product_desc h2 {
  font-size: 14px;
  font-family: Caps;
  color: #000000a8;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.product_desc h3 {
  font-size: 13px;
  font-family: Caps;
  color: var(--black);
  letter-spacing: 0.2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.blog_card:hover .img img {
  transform: scale(1.1);
}
.contactInput {
  margin-bottom: 20px;
}
.contactInput label {
  font-family: Caps;
  font-size: 13px;
}
.contactInput input,
.contactInput textarea {
  font-family: Norm;
  font-size: 13px;
  padding: 13px 15px;
  border: 1px solid #e8e8e8;
}
.contactInput input:focus,
.contactInput textarea:focus {
  font-family: Norm;
  font-size: 13px;
  padding: 13px 15px;
  border: 1px solid var(--andBlue);
}
.sendMailBtn {
  background-color: var(--andBlue);
  padding: 16px 20px;
  font-size: 14px;
  color: white;
  font-family: Caps;
  border: none;
  float: right;
  transition: 0.5s;
}
.sendMailBtn:hover {
  background-color: var(--black);
}
.service .img {
  height: 400px;
  width: 100%;
  float: left;
  overflow: hidden;
}
.service .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.catalog_card .img {
  height: 200px;
  width: 100%;
  float: left;
  overflow: hidden;
  background: #f1f6fc;
  position: relative;
}
.catalog-cat-title h2 {
  font-size: 15px;
  font-family: Caps;
}
.catalog_card .img h3 {
  font-size: 14px;
  font-family: Norm;
  position: absolute;
  z-index: 1111;
  top: 20px;
  left: 20px;
  color: var(--black);
  background-color: white;
  padding: 14px 20px;
  transition: 0.1s;
  letter-spacing: 0.4px;
}
.catalog-cat-title {
  margin-bottom: -10px;
}
.catalog-cat-title:not(:first-of-type) {
  margin-top: 40px !important;
}
.catalog_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.margin-topcatalog {
  margin-top: 40px;
}
.catalog_card:hover .img img {
  transform: scale(1.1);
}
.catalog_card:hover .img h3 {
  background-color: var(--andBlue);
  color: white;
}
.subCatList {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}
.subCatList .ctt {
  color: rgba(35, 31, 32, 0.6);
  font-size: 14px;
  cursor: pointer;
  font-family: Caps;
}
.subCatList .ctt:hover {
  color: var(--andBlue);
}
.subCatList .cttActiv {
  color: var(--andBlue);
}
.mobileNav {
  display: none;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  flex: 0 0 100%;
  text-align: center;
  font-size: 1.5em;
}

.about-slider-slide {
  flex: 0 0 100%;
  text-align: center;
  font-size: 1.5em;
}

.about-slider-slide h2 {
  font-size: 23px;
  color: var(--white);
  font-family: "Norm";
  font-weight: normal;
  text-align: left;
  max-width: 700px;
}

.slider-control {
  position: absolute;
  background: none;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.sliderPrevNext {
  position: relative;
  top: 500px;
  z-index: 1000000;
}

.slider-control.prev {
  right: 50px;
}

.slider-control.next {
  right: 10px;
}
.slider-about-container {
  position: relative;
  overflow: hidden;
}

.about-slider-slide {
  display: none;
}

.about-slider-slide.active {
  display: block;
}
@media (max-width: 1400px) {
  .slide_desc_logo {
    width: 352px;
    margin-top: 154px;
  }
}
@media (max-width: 1200px) {
  .slide_desc {
    width: 500px;
  }
  .slide_desc h2 {
    font-size: 30px;
  }
}
@media (max-width: 967px) {
  .slide_desc {
    width: 100%;
  }
  .blog_wrap {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .slide_desc_logo {
    width: 250px !important;
    left: 13px;
    margin-top: 180px;
  }
  .footerSmalSection {
    display: block;
  }
  .mobileNav {
    text-align: center;
    display: block;
    font-size: 30px;
    font-family: Caps;
    cursor: pointer;
    color: #0066b3;
  }
  .footerContactCard {
    margin-bottom: 20px;
  }
  nav.navigation {
    display: none;
    position: absolute;
    margin-top: 255px;
    background: white;
    width: 100%;
    left: 0;
    text-align: center;
    padding: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  }

  .indexServiceHeader {
    display: grid;
  }
  .indexServiceHeader .servCard {
    max-width: 100%;
  }
  .navigation li a {
    color: black !important;
  }
  .servCard .desc h3 {
    width: 100%;
  }
  .aboutCompanyTitle {
    margin-top: 0;
  }
  .about-categories-flex {
    display: grid;
  }
  .productsVideo {
    width: 100%;
  }
  .servicesContainer-flex {
    display: grid;
  }
  .indexServicesCats {
    width: 100%;
    display: block;
  }
  .slide_desc h2 {
    /* font-size: 18px; */
    padding: 0 10px;
  }
  .slide {
    height: 500px;
  }
  .slide .video {
    height: 500px;
  }
  .slide_desc {
    max-width: 100%;
    margin-top: 150px;
    /* text-align: center; */
  }
  .pageTitleWrap {
    height: auto !important;
    padding-bottom: 10px;
  }
  .footerSocAndCop {
    display: grid;
    text-align: center;
    gap: 15px;
    justify-content: center;
  }
  .mt-0-important {
    margin-bottom: 0 !important;
  }
  .subCatList {
    display: grid;
    gap: 5px;
  }
  .blog_view .img {
    width: 100%;
  }
  h2.newsViewTitleModel {
    margin-top: 30px;
  }
  .loader {
    width: 100px;
    height: 150px;
  }
}
