html {
  overflow-x: hidden !important;
}

body {
  font-family: "FiraGO rg";
  line-height: normal;
  overflow: hidden;
  font-size: 14px;
}

h1 {
  font-family: 'BPG Mrgvlovani Caps 2010' !important;
  color: var(--main-color);
}

h3 {
  font-size: 18px;
  line-height: 1.6rem;
}

:root {
  --transition: all 0.3s ease;
  /* --main-color: #04a856;
  --primary-color: #fcde03; */
    --main-color: #522F2B; 
  --primary-color: #e1d9d8;
  --bs-light-rgb: 248, 249, 250;
}
.img_fluid {
  width: 100%;
  height: 100%;
  display: block;
}

.logo_ img {
  margin-top: -15px;
}
main {
  min-height: calc(100vh - 305px);
}
/*mobile_menu*/
.mobile_menu_block {
  padding: 10px 0;
}

.burger_menu {
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-animation: burgerAnimation 3s linear infinite alternate;
  animation: burgerAnimation 3s linear infinite alternate;
  width: 30px;
  height: 23px;
  padding: 0px 5px;
  border-radius: 2px;
}

.burger__ {
  display: block;
  width: 100%;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
}

.burger__ i {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3px;
  color: var(--main-color);
  text-transform: uppercase;
  text-indent: -55px;
  background: var(--main-color);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.burger__ i::before {
  top: -7px;
}

.burger__ i::before,
.burger__ i::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.burger__ i::after {
  bottom: -7px;
}

.burger__.burg_act i {
  background: transparent;
}

.burger__.burg_act i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

.burger__.burg_act i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}

.mobile_navigation {
  position: fixed;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--main-color);
  width: 100%;
  height: 100%;
  top: 130px;
  left: -2px;
  padding-top: 20px;
  margin: 0px !important;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.nav_li {
  margin-bottom: 10px;
}
.nav_li.active {
  color: var(--main-color);
}
.nav_act {
  -webkit-transform: translateX(0%) !important;
  -ms-transform: translateX(0%) !important;
  transform: translateX(0%) !important;
  -webkit-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
  left: 0px;
}

.overflow_hidden {
  overflow: hidden !important;
}

/*mobile_menu end*/
.header_top {
  background-color: var(--main-color);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 calc((100vw - 1296px) / 2);
}
.header_top_line {
  padding: 15px 0;
  color: var(--primary-color);
}
.logo_section {
  padding: 38px 0 16px;
  /* added properties */
  display: flex;
  justify-content: space-between !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  width: 100%; 
}
.soc_list li {
  margin-right: 20px;
}
.soc_list li:last-child {
  margin-right: 0;
}
.soc_list svg:hover path {
  fill: var(--primary-color);
  transition: all 0.3s ease;
}
.logo_ {
  width: 208px;
  height: 58px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 30px;
}
.search_block {
  width: 300px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}
.search_block input#search {
  /* width: 30px; */
  width: 0px;
  height: 34px;
  border: none;
  font-size: 12px;
  float: right;
  color: #989898;
  padding-left: 19px;
  border-radius: 17px;
  -webkit-transition: width 0.55s ease;
  -moz-transition: width 0.55s ease;
  -ms-transition: width 0.55s ease;
  -o-transition: width 0.55s ease;
  transition: width 0.55s ease;
}
.search_block .icon {
  position: absolute;
  top: 50%;
  margin-top: 10px;
  margin-left: 17px;
  z-index: 1;
  color: var(--main-color);
  right: 18px;
}

.search_block input#search:focus,
.search_block input#search:active {
  outline: none;
  width: 276px;
  background-color: #f9f9f9;
}

.search_block:hover input#search {
  width: 276px;
  background-color: #f9f9f9;
  border-radius: 17px;
}
.lang_bar {
  font-size: 20px;
  color: var(--main-color);
  font-family: "FiraGO bd";
}

.lang_bar a.active {
  color: var(--main-color) !important;
}
.lang_bar a {
  color: var(--primary-color) !important;
  margin-left: 15px;
  transition: all 1s ease;
}

.lang_bar a:hover {
  color: var(--main-color) !important;
}

.header_navigation {
  background-color: var(--primary-color);
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 20px calc((100vw - 1296px) / 2) 20px;
}

.header_navigation.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav_list li {
  color: var(--main-color);
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease-in;
}

.nav_list li a {
  padding: 0 8px;
  font-family: "BPG Mrgvlovani Caps 2010";
}

.nav_list li:hover {
  color: var(--primary-color);
  border-radius: 5px;
  background-color: var(--main-color);
  width: auto;
  /* border-bottom: 1px solid var(--primary-color); */
  transition: var(--transition);
}
.sub_menu {
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
  font-size: 10px;
  color: #000;
  padding: 17px;
  transition: var(--transition);
  display: none;
  left: 0;
  min-width: 226px;
  position: absolute;
  top: 30px;
  z-index: 2;
}
.sub_menu li {
  margin-bottom: 15px;
  padding-bottom: 0;
}
.sub_menu li:last-child {
  margin-bottom: 0;
}
.nav_list li:hover .sub_menu {
  display: block;
}
.hero_section {
  margin-top: 40px;
  margin-bottom: 60px;
}
.img_ {
  height: 500px;
}

.img_.change-height {
  height: 300px;
}

.img_ img {
  object-fit: cover;
  object-position: center;
}
.swiper-button-next,
.swiper-button-prev {
  transition: var(--transition);
  width: 56px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-next.swiper-button-disabled svg path,
.swiper-button-prev.swiper-button-disabled svg path {
  fill: #fcde03;
}

.arrows {
  bottom: -15px;
}
.arrows .swiper-button-prev {
  /* left: -40px; */
}
.arrows .swiper-button-next {
  /* right: -40px; */
}
.arrows .swiper-button-prev:hover {
  /* left: -50px; */
}
.arrows .swiper-button-next:hover {
  /* right: -50px; */
}

.position-relative .swiper-button-next,
.position-relative .swiper-button-prev {
  top: -300px !important;
}

.position-relative .swiper-button-next {
  right: 5%;
}

.position-relative .swiper-button-prev {
  left: 5%;
}

.bg_txt {
  background-color: rgba(252, 222, 3, 70%);
  color: var(--main-color);
  font-size: 29px;
  font-family: "Gilroy GEO";
  z-index: 1;
  width: 422px;
  top: 100px;
  left: 0;
  padding: 50px 55px;
}
.sm_txt {
  font-size: 20px;
  font-family: "Gilroy GEO";
  z-index: 1;
  background-color: rgba(255, 255, 255, 91%);
  left: 210px;
  bottom: 80px;
  width: 298px;
  padding: 25px 30px;
  color: var(--main-color);
}
.more_info {
  margin-top: 15px;
  font-family: "FiraGO rg";
  font-size: 12px;
}
.more_info:hover svg {
  transition: var(--transition);
  transform: translateX(50%);
}
.main_title {
  font-size: 40px;
  color: var(--main-color);
  font-family: "Gilroy GEO";
  margin-top: -50px;
}
.light_txt {
  font-family: "Gilroy light";
}
.info_txt p {
  padding: 0 125px;
  margin-bottom: 37px;
}
.video_item {
  width: 793px;
  height: 400px;
  margin: 0 auto !important;
}
.play_btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
.green_btn {
  background-color: var(--main-color);
  color: var(--primary-color);
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  margin: 40px auto 0;
}

.green_btn a {
  margin-bottom: 0 !important;
}

.title {
  font-size: 30px;
  color: var(--main-color);
  margin-top: 10px;
  font-family: 'BPG Mrgvlovani Caps 2010' !important;
  padding-top: 20px;
/*  margin-top: -105px;*/
}
.mb-30 {
  margin-bottom: 30px;
}
.product_title {
  font-size: 16px;
  font-family: "FiraGO md";
  color: var(--main-color);
}
.product_img {
  margin-bottom: 20px;
  width: 100%;
  height: 274px;
  overflow: hidden;
  border-radius: 5px;
}
.product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  border-radius: 5px;
}
.product_img:hover img {
  transform: scale(1.1);
}
.product_txt {
  font-size: 14px;
}
.mb-20 {
  margin-bottom: 20px;
}
.footer_ {
  background-color: var(--main-color);
  padding: 50px 20px 10px; 
  color: #fff;
}
.footer_info {
  border-right: 1px solid var(--primary-color);
  height: 80%;
  display: flex;
  flex-direction: column;
}
.footer_info li {
  margin-bottom: 10px;
}
.footer_info li:last-child {
  margin: 0;
}
.contact_title {
  color: var(--primary-color);
  margin-bottom: 10px;
}
.footer_info a,
.footer_info p {
  margin-bottom: 10px;
}
.footer_soc {
  margin-bottom: 30px;
}
.footer_soc svg:hover path {
  fill: var(--primary-color);
  transition: all 0.3s ease;
}
.rights_ {
  font-family: "BPG Mrgvlovani Caps 2010";
  margin-bottom: 50px;
}
.rights_ a {
  color: var(--primary-color) !important;
}
.title_ {
  font-size: 30px;
  font-family: "Gilroy GEO";
  color: var(--main-color);
}
.txt_ {
  font-size: 16px;
  line-height: 1.3;
}
.obj_img {
  height: 408px;
  overflow: hidden;
}
.obj_img:hover img {
  transform: scale(1.05);
  transition: var(--transition);
}
footer {
/*  margin-top: 30px;*/
}
.nav_list li a.active {
  color: var(--primary-color) !important;
  background-color: var(--main-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}

.product_items {
  border: 1px solid var(--main-color);
  border-radius: 20px;
  font-size: 20px;
  padding: 42px 0;
  transition: var(--transition);
}
.product_items:hover {
  color: #fff;
  background-color: var(--main-color);
}
.product_box .product_img {
  /* height: 302px; */
  height: 245px;
  margin-bottom: 20px;
}
.product_name,
.item_name,
.news_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 12px;
  text-decoration: none;
}
.img_block {
  padding-right: 53px;
}
.bg_img {
  height: 430px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.bg_img img {
  object-fit: cover;
  object-position: center;
}
.sm_img {
  width: 146px;
  height: 129px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-right: 21px;
  overflow: hidden;
}
.sm_img:nth-child(3),
.sm_img:nth-child(6) {
  margin-right: 0;
}
.bg_img:hover img,
.sm_img:hover img {
  transform: scale(1.1);
  transition: var(--transition);
}
.sup_title {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pdf_block {
  border: 1px solid var(--main-color);
  padding: 13px 15px;
  border-radius: 5px;
  transition: all 0.5s ease-in;
}
.pdf_block:hover {
  padding-left: 25px;
  background-color: var(--primary-color);
}

.pdf_block i {
  font-size: 25px;
  color: var(--main-color);
}
.recipie_ {
  border-bottom: 1px solid var(--main-color);
  font-size: 16px;
  padding-bottom: 10px;
}
.desc_list li {
  border-bottom: 1px solid #9f9f9f;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.back_btn {
  margin-bottom: 40px;
}
.back_btn:hover {
  transform: translate(-12px);
  transition: var(--transition);
}
.sm_title {
  font-size: 16px;
}
.line_ {
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  margin-bottom: 12px;
}
.mb-25 {
  margin-bottom: 25px;
}
.category_title {
  font-size: 16px;
}
.form-check-input {
  border-color: #80cca6;
  width: 17px;
  height: 17px;
  border-radius: 3px;
}
.form-check-input:checked {
  border-color: #80cca6;
  background-color: var(--main-color);
  box-shadow: none;
}
.form-check-input:active {
  fill: none;
}
.form-check-input:focus {
  border-color: #80cca6;
}
.form-check-label {
  margin-left: 13px;
}
.slider_block {
  padding-right: 53px;
}
.s3 .swiper-slide {
  height: 430px;
}
.s2 .swiper-slide {
  height: 129px;
}
.img_item {
  height: 247px;
}
.img_item img {
  object-fit: cover;
  object-position: center;
}
.item_box {
  box-shadow: 0px 3px 38px rgba(0, 0, 0, 5%);
}
.item_info {
  padding: 24px 24px 49px;
}
.date_ {
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 18px;
  font-family: 'BPG Mrgvlovani Caps 2010';
}
.item_name {
  font-size: 18px;
  font-family: 'BPG Mrgvlovani Caps 2010';
}
.news_img {
  height: 269px;
}
.news_block {
  background-color: #f9f9f9;
  padding: 37px;
  height: 100%;
}
.news_block .date_ {
  font-size: 14px;
  font-family: "FiraGO bd";
}
.news_title {
  font-size: 16px;
}
.news_text_block {
  background-color: #f9f9f9;
  padding: 40px 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.share_block {
  color: #a4a4a4;
}
.soc_li li {
  margin-left: 20px;
}
.soc_li li i {
  font: 16px;
}
.soc_li li:hover i {
  transition: var(--transition);
  color: var(--main-color);
}
.txt_title {
  color: var(--main-color);
}


/* Added styles */
.banner-display {
  margin: 0 calc((100% - 100vw) / 2) !important;
}

.video-preview {
  margin-top: -50px;
}

.video-preview iframe {
  width: 45%;
}

.outer-row {
  display: flex;
  flex-direction: column;
}

.outer-row .col-md-4 {
}

.outer-row .col-md-8 {
  width: 100%
}

.inner-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  width: 100%;
  max-width: 1296px;
  row-gap: 1.5rem;
/*  margin: 0 auto;*/
}

.inner-row .col-sm-6 {
  width: 100%;
}

.container {
  max-width: 1366px !important;
}

/*.inner-container-add {
  padding: 0 20px;
}
*/
.info_section iframe {
  width: 65%;
}

.mobile_menu_block .soc_list {
  width: 120px;
  margin: 0 auto;
}

.mobile_menu_block .lang_bar {
  width: 70px;
  margin: 0 auto;
}

.mobile_menu_block .box {
  width: 285px;
  margin: 0 auto;
}

.image-decoration {
  background-color: var(--main-color);
  border-radius: 3px;
  margin-bottom: 10px;
  width: 50px;
  height: 5px;
}

.select-category {
  appearance: none;
  background-color: var(--primary-color);
  border: none;    
  border-radius: 5px;
  color: var(--main-color) !important;
  cursor: pointer;
  color: #4D5663;
  line-height: 20px;
  padding-left: 17px;
  width: 100%;
  height: 40px;
  margin-bottom: 0px;
}

.select-category:focus {
  outline: none;
}

.choose-category {
  position: relative !important;
  width: 300px;
  margin-bottom: 1rem;
}

.select-arrow {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
  font-size: 12px;
  color: var(--primary-color);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.5s ease-in;
}

.product_name {
  font-size: 20px;
  font-family: "BPG Mrgvlovani Caps 2010";
  margin-bottom: 5px;
  height: 30px;
  color: var(--main-color);
}

.product_intro {
  color: #B68D40;
  height: 60px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3rem;
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 10px;
  position: relative; 
}

.learn-more-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* color: #A45C40; */
  color: var(--main-color);
  transition: all 1s ease; 
  position: relative;
  background: var(--primary-color);
  padding: 10px;
}

.learn-more-btn:hover {
  padding-right: 1.5rem;
}

.learn-more-btn i {
  opacity: 0;
  transition: all 1s ease; 
  font-size: 15px;
  position: absolute;
  right: 0;
  padding-right: 4px;
}

.learn-more-btn:hover i {
  opacity: 1;
  padding-right: 4px;
}

.mobile_navigation .nav_list li:hover {
  color: var(--primary-color);
  background-color: unset;
}

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

.popular-products-slide-container {
    max-width: 1296px;
    width: 100%;
}

.popular-products-slide-content {
    /* margin: 0 65px; */
    margin: 0;
    overflow: hidden;
}

.popular-products-slide-container .swiper-button-prev::after,
.popular-products-slide-container .swiper-button-next::after {
    content: '';
}

.popular-next, .popular-prev {
  color: var(--main-color) !important;
  font-size: 30px;
}

.banner-margin-top {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  /* padding-top: 74px; */
}

.product_txt hr {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.gallery {
  padding: 0 0 22px;
  margin-bottom: 10px;
}

.gallery-slide-content {
/*    margin: 0 45px;*/
    overflow: hidden;
}

.gallery-card {
    width: 155px;
    height: 111px !important;
}

.gallery-card img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.row > * {
  padding-right: 0 !important;
}

/*.product_section {
  background-color: rgb(235, 234, 241);
}*/

.green_btn svg {
  margin-left: 10px;
}

.arrow-down-image {
    position: absolute;
    bottom: 200px;
    right: 0;
    left: 0;
    width: 50px;
    text-align: center;
    margin: 0 auto;
    z-index: 6;
    display: inline-block;
}

.inner-news-add {
  gap: 46px !important;
}

.inner-news-col1 {
  width: 61% !important;
}

@media screen and (max-width: 1340px) {
  .outer-row {
    width: unset;
  }

  .container {
    max-width: 1296px !important;
  };
}

@media screen and (max-width: 1336px) {
  .header_navigation {
    padding: 20px 20px 20px;
  }
}


@media screen and (max-width: 1070px) {
  .inner-row {
    grid-template-columns: repeat(2, 1fr) !important; 
  }
}

@media screen and (max-width: 650px) {
  .inner-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media screen and (max-width: 994px) {
  .select-arrow {
    top: 34%;
  }

  .gallery {
    padding-top: 22px;
  }
}

@media screen and (max-width: 993px) {
  .main_title {
    margin-top: unset;
  }

  .green_btn {
    margin-top: 45px;
  }

  .video_item {
    height: auto !important;
  }

  .title {
    margin-top: -60px;
  }
}

@media screen and (max-width: 700px) {
  .info_section iframe {
    width: 100%;
  }
}

@media screen and (max-width: 675px) {
  .position-relative .swiper-button-next,
  .position-relative .swiper-button-prev {
  top: -150px !important;
}
}

@media screen and (max-width: 420px) {
  .inner-row .col-sm-6 {
    width: 100%;
  }
}

.products-divider {
  background-color: var(--primary-color);
  width: 98%;
  height: 2px;
  margin-left: calc(var(--bs-gutter-x)* .5);
  margin-bottom: 1rem;
}

.winemaking-img img {
  object-fit: contain;
}

.winemaking-box {
  background-color: #F8F9FA;
  padding: 15px;
  /* background: linear-gradient(180deg, #ffffff 58%, #F8F9FA 50%); */
}

.recepies-box {
  background-color: #F8F9FA;
  padding: 15px;
}

.winemaking-img {
  background-color: white;
}

/* change appearance of elements */
/* Version 1 */
.product_box.chosen {
  background-color: var(--main-color);
  padding: 10px;
}

.image-decoration.chosen {
  background-color: var(--primary-color);
}

.product_box.chosen img,
.product_box.chosen .product_img {
  border-radius: 0;
}

.product_name.chosen {
  color: var(--primary-color);
}

.product_intro.chosen {
  color: var(--primary-color);
}

/* Version 2 */
.product_box.chosen1 {
  padding: 10px;
  background-color: var(--primary-color);
}

.product_name.chosen1 {
  color: var(--main-color);
}

.product_box.chosen1 img,
.product_box.chosen1 .product_img {
  border-radius: 0;
}

.product_intro.chosen1 {
  color: var(--main-color);
}

.learn-more.chosen1  .learn-more-btn {
  background-color: var(--main-color);
  color: var(--primary-color);
}

/* Version 3 */
.product_box.chosen3 {
  padding: 10px;
  background-color: rgba(var(--bs-light-rgb));
}

.product_box.chosen3 img,
.product_box.chosen3 .product_img {
  border-radius: 0;
}

.product_name.chosen3 {
  color: var(--main-color);
}

.product_intro.chosen3 {
  color: var(--main-color);
}

.winemaking-box.chosen3 img {
  object-fit: contain;
}

.product_box.chosen3 .product_img {
  background-color: white;
}

.main-page > .hero_section:nth-child(2) {
  background-color: rgba(var(--bs-light-rgb));
}

.main-page > .hero_section:nth-child(3)  {
  background-color: var(--primary-color);
}

.main-page > .hero_section:nth-child(4) {
  background-color: rgba(var(--bs-light-rgb));
}

.main-page > .hero_section:nth-child(2),
.main-page > .hero_section:nth-child(3),
.main-page > .hero_section:nth-child(4) {
  margin: 0 !important;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer_info li a {
  color: var(--primary-color) !important;
}


/* Contact US */
.contact--title {
  font-size: 16px;
  font-family: "BPG Mrgvlovani Caps 2010";
  margin-bottom: 25px;
}

.fieldset--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

fieldset {
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  padding: 5px 5px 5px 30px;
}

.contact--btn {
  height: 50px;
  width: 164px;
  background-color: var(--main--bg);
  color: white;
  display: grid;
  place-items: center;
  border-radius: 10px;
  transition: 0.5s;
  font-family: "BPG Mrgvlovani Caps 2010";
}

#contact--map {
  height: 350px;
  margin-bottom: 140px;
}

legend {
  float: unset;
  width: auto;
  font-family: "Gilroy GEO";
  font-size: 14px;
  position: relative;
  padding-inline: 10px;
  margin-left: -10px;
}

fieldset input {
  width: 100%;
  height: 100%;
  border: none;
  color: #8D8D8D;
  padding-block: 10px;
}

legend+* {
  clear: left;
}

fieldset textarea {
  width: 100%;
  border: none;
  height: 64px;
}
textarea {
  resize: none;
}

.contact--head {
  background-image: url(https://innoterra.star.ge/uploads_script/banner/tmzv973s12h6t3a.png);
  height: 180px;
  position: relative;
  margin-bottom: 40px;
  display: grid;
  place-items: center;
  padding: 20px 80px;
  color: white;
  font-size: 14px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact--head::before, .contact--addresses::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 10px;
  opacity: 0.70;
  z-index: 5;
  left: 0;
  top: 0;
}

.contact--head>div {
  position: relative;
  z-index: 56;
}

.contact--head__item {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.contact--head__item .icon--wrapper {
  background-color: var(--yellow);
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  transition: 0.5s;
}

.contact--head__item p:nth-child(3) {
  padding: 6px 11px;
  background-color: var(--yellow);
  border-radius: 5px;
}

.required legend::after {
  position: absolute;
  top: -4px;
  right: 3px;
  width: 5px;
  height: 5px;
  content: '*';
  color: #EE3135;
  font-weight: lighter;
}

.contact--head__item.bordered {
  padding: 24px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.39);
  border-left: 1px solid rgba(255, 255, 255, 0.39);
}

.innotera-address {
  padding: 24px 44px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.39);
}

.news-gallery-img {
  object-fit: cover;
}

.title-order-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-order-btn button,
#orderForm button {
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 30px;
  padding: 10px 20px;
  transition: all ease 1s;
}

.title-order-btn button:hover,
#orderForm button:hover {
  background-color: var(--primary-color);
  color: var(--main--bg);
}

#orderForm form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

#orderForm button {
  margin-top: 10px;
}

.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  width: 300px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.order-title {
  font: 20px 'BPG Mrgvlovani Caps 2010' !important;
  color: var(--main-color);
  text-align: center;
}

