@import url("https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@100;200;300;400;500;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none !important;
}

.pages {
  width: 100%;
  position: relative;
  z-index: 3;
}

.txt-200 {
  font-size: 200px;
  line-height: 200px;
  font-family: "Arima Madurai", cursive;
}
@media (max-width: 950px) {
  .txt-200 {
    font-size: 150px;
  }
}

.clight {
  color: #158527;
  font-family: "Arima Madurai", cursive;
}

h1 {
  margin: 0;
}

p {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

ul {
  padding-left: 0;
}

.bg-img {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-size: cover;
  background: url("../img/png/bg.png");
}

.bg-circle-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s ease;
}
.bg-circle-bg.active {
  opacity: 0;
}
.bg-circle-bg .bg-circle {
  z-index: 2;
  background: #F9FCDB;
  width: 1300px;
  position: absolute;
  height: 1700px;
  border-radius: 35%;
  top: -250px;
  -webkit-animation: wawe 35s infinite linear;
          animation: wawe 35s infinite linear;
  right: -750px;
  overflow: hidden;
}
@media (max-width: 1050px) {
  .bg-circle-bg .bg-circle {
    right: -900px;
  }
}
@media (max-width: 650px) {
  .bg-circle-bg .bg-circle {
    right: -1000px;
    height: 1300px;
  }
}
@media (max-width: 450px) {
  .bg-circle-bg .bg-circle {
    right: -1100px;
    height: 1300px;
  }
}

@-webkit-keyframes wawe {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wawe {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  position: relative;
}

img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-container {
  margin: 0px 120px;
}
@media (max-width: 1380px) {
  .my-container {
    margin: 0 100px;
  }
}
@media (max-width: 1050px) {
  .my-container {
    margin: 0 40px;
  }
}
@media (max-width: 650px) {
  .my-container {
    margin: 0 20px;
  }
}

.dark {
  width: 70px;
  height: 70px;
  background: #000;
  border-radius: 50%;
  position: fixed;
  top: 300px;
  right: 12px;
  z-index: 4;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 650px) {
  .dark {
    width: 40px;
    height: 40px;
  }
}
.dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.19), 0 2px 2px rgba(0, 0, 0, 0.23);
}
.dark.active {
  background: #F8FBDA;
}
.dark.active .sun {
  opacity: 1;
  top: 50%;
}
.dark.active .moon {
  opacity: 0;
  top: 60%;
}
.dark img {
  width: 35px;
  position: absolute;
  left: 50%;
  transition: 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (max-width: 650px) {
  .dark img {
    width: 18px;
  }
}
.dark .sun {
  opacity: 0;
  top: 60%;
}
.dark .moon {
  opacity: 1;
  top: 50%;
}

.glavni-btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #158527;
  padding: 14px 59px;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 11px 0px;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.19), 0 2px 2px rgba(0, 0, 0, 0.23);
}
.glavni-btn span {
  position: relative;
  pointer-events: none;
}
.glavni-btn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #24cd40, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
.glavni-btn:hover {
  color: #fff;
  border-radius: 0px 11px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
}
.glavni-btn:hover::before {
  --size: 500px;
}

.slider-btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #158527;
  margin-left: 12px;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 50%;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.19), 0 2px 2px rgba(0, 0, 0, 0.23);
}
.slider-btn span {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  justify-content: center;
}
.slider-btn span i {
  font-size: 12px;
}
.slider-btn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #24cd40, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.slider-btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
}
.slider-btn:hover::before {
  --size: 100px;
}

#to-top {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  z-index: 9;
  bottom: 0px;
  right: 30px;
  opacity: 0;
  transition: 0.3s ease;
  background-color: #158527;
  border: none;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 550px) {
  #to-top {
    right: 20px;
  }
}
#to-top:hover {
  transform: translateY(-10px);
}
#to-top.show {
  bottom: 30px;
  opacity: 1;
}
@media (max-width: 550px) {
  #to-top.show {
    bottom: 20px;
  }
}
#to-top i {
  font-size: 20px;
  color: #fff;
  margin: 0;
  transform: none !important;
}
@media (max-width: 550px) {
  #to-top {
    width: 40px;
    height: 40px;
  }
}

.txt-18 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 1380px) {
  .txt-18 {
    font-size: 17px;
  }
}
@media (max-width: 650px) {
  .txt-18 {
    font-size: 15px;
    line-height: 20px;
  }
}

.txt-16 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
}
@media (max-width: 1380px) {
  .txt-16 {
    font-size: 15px;
  }
}
@media (max-width: 650px) {
  .txt-16 {
    font-size: 14px;
    line-height: 18px;
  }
}

.txt-12 {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .txt-12 {
    font-size: 10px;
    line-height: 14px;
  }
}

.txt-14 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .txt-14 {
    font-size: 12px;
    line-height: 16px;
  }
}

.txt-19 {
  font-size: 19px;
  line-height: 23px;
  font-weight: 500;
}
@media (max-width: 1380px) {
  .txt-19 {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .txt-19 {
    font-size: 16px;
    line-height: 18px;
  }
}

.txt-20 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
@media (max-width: 1380px) {
  .txt-20 {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .txt-20 {
    font-size: 17px;
    line-height: 22px;
  }
}

.txt-22 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}
@media (max-width: 1380px) {
  .txt-22 {
    font-size: 21px;
  }
}
@media (max-width: 650px) {
  .txt-22 {
    font-size: 18px;
    line-height: 22px;
  }
}

.txt-30 {
  font-size: 30px;
  line-height: 39px;
  font-weight: 600;
}
@media (max-width: 1380px) {
  .txt-30 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .txt-30 {
    font-size: 19px;
    line-height: 24px;
  }
}

.txt-32 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 600;
}
@media (max-width: 1380px) {
  .txt-32 {
    font-size: 30px;
  }
}
@media (max-width: 650px) {
  .txt-32 {
    font-size: 23px;
    line-height: 28px;
  }
}

.txt-24 {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
}
@media (max-width: 1380px) {
  .txt-24 {
    font-size: 23px;
  }
}
@media (max-width: 1150px) {
  .txt-24 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 650px) {
  .txt-24 {
    font-size: 18px;
    line-height: 24px;
  }
}

.txt-29 {
  font-weight: 600;
  font-size: 29px;
  line-height: 33px;
}
@media (max-width: 1380px) {
  .txt-29 {
    font-size: 27px;
  }
}
@media (max-width: 650px) {
  .txt-29 {
    font-size: 23px;
    line-height: 28px;
  }
}

.txt-50 {
  font-weight: 400;
  font-size: 50px;
  line-height: 59px;
}
@media (max-width: 650px) {
  .txt-50 {
    font-size: 28px;
    line-height: 35px;
  }
}

.txt-80 {
  font-weight: 400;
  font-size: 80px;
  line-height: 130px;
}
@media (max-width: 650px) {
  .txt-80 {
    font-size: 40px;
    line-height: 50px;
  }
}

.txt-42 {
  font-weight: 600;
  font-size: 42px;
  line-height: 46px;
}
@media (max-width: 650px) {
  .txt-42 {
    font-size: 22px;
    line-height: 35px;
  }
}

.txt-38 {
  font-weight: 600;
  font-size: 38px;
  line-height: 45px;
}
@media (max-width: 1380px) {
  .txt-38 {
    font-size: 33px;
    line-height: 40px;
  }
}
@media (max-width: 650px) {
  .txt-38 {
    font-size: 22px;
    line-height: 35px;
  }
}

.swiper-wrapper {
  padding-bottom: 3px;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%);
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  pointer-events: all;
}

.navigation {
  width: 100%;
  padding: 12px 0;
  z-index: 100;
}
.navigation .navigation-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation .navigation-in .logo img {
  width: 150px;
}
.navigation .navigation-in .blog {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
@media (max-width: 1050px) {
  .navigation .navigation-in .blog {
    margin-left: 18px;
    flex-wrap: wrap;
  }
}
.navigation .navigation-in .blog .blog-in {
  width: 250px;
  display: flex;
  align-items: center;
  margin-right: 24px;
}
@media (max-width: 1200px) {
  .navigation .navigation-in .blog .blog-in {
    display: none;
  }
}
@media (max-width: 850px) {
  .navigation .navigation-in .blog .blog-in {
    display: flex !important;
  }
}
@media (max-width: 650px) {
  .navigation .navigation-in .blog .blog-in {
    width: 250px !important;
  }
}
.navigation .navigation-in .blog .blog-in:last-child {
  margin-right: 0;
}
@media (max-width: 1050px) {
  .navigation .navigation-in .blog .blog-in {
    margin-right: 12px !important;
    margin-top: 12px !important;
  }
}
.navigation .navigation-in .blog .blog-in .blog-left {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FCDB;
  margin-right: 12px;
}
.navigation .navigation-in .blog .blog-in .blog-left img {
  width: 24px;
}
.navigation .navigation-in .blog .blog-in .text-blog {
  width: 70%;
}
.navigation .navigation-in .blog .blog-in .text-blog .txt-16 {
  color: #5A7C52;
  font-weight: 400;
}
.navigation .navigation-in .blog .blog-in .text-blog .txt-18 {
  color: #000;
  font-weight: 600;
  margin-top: 4px;
}
.navigation .navigation-in .language {
  background: transparent;
  box-shadow: none;
  margin-left: 24px;
}
@media (max-width: 850px) {
  .navigation .navigation-in .language {
    position: absolute;
    top: 20px;
    right: 40px;
  }
}
@media (max-width: 650px) {
  .navigation .navigation-in .language {
    top: 20px;
    right: 20px;
  }
}
.navigation .navigation-in .language .txt-14 {
  color: #000;
  text-align: center;
  font-size: 14px;
}
.navigation .navigation-in .language-in {
  border: 1px solid #24cd40;
  padding: 12px 9px;
  display: flex;
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  align-items: center;
}
@media (max-width: 650px) {
  .navigation .navigation-in .language-in {
    padding: 8px 6px;
  }
}
.navigation .navigation-in .language-in:after {
  display: none;
}
.navigation .navigation-in .language-in.show .chervon {
  transform: rotate(-180deg);
}
.navigation .navigation-in .language-in .glob {
  width: 18px;
  height: 18px;
}
.navigation .navigation-in .language-in .chervon {
  width: 20px;
  height: 20px;
  transition: 0.2s;
}
.navigation .navigation-in .language-in .txt-14 {
  margin: 0 6px 0 5px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.navigation .navigation-in .language-menu {
  background: #fff;
  border-radius: 8px;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}
.navigation .navigation-in .language-menu .txt-14 {
  color: #000;
  font-weight: 400;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}
.navigation .navigation-in .language-menu a:hover {
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
}
.navigation .navigation-in .language-menu a:active {
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
}
.navigation .navigation-in .language-menu a:focus {
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
}

.sec-page {
  width: 100%;
  padding: 40px 0;
}

.glavni-page {
  width: 100%;
  position: relative;
}
.glavni-page .glavni-page-in {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.glavni-page .glavni-page-in .g-left {
  width: 40%;
}
.glavni-page .glavni-page-in .g-left .txt-200 {
  margin-top: 60px;
}
.glavni-page .glavni-page-in .g-left .txt-50 {
  color: #444939;
}
.glavni-page .glavni-page-in .g-left .txt-16 {
  margin-top: 18px;
}
.glavni-page .glavni-page-in .g-left .glavni-btn {
  margin-top: 20px;
}
.glavni-page .glavni-page-in .g-right {
  width: 58%;
  margin-top: 70px;
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: waweTwo 15s infinite linear;
          animation: waweTwo 15s infinite linear;
}
.glavni-page .barg1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  pointer-events: none;
}
.glavni-page .barg2 {
  position: absolute;
  right: 0;
  top: -40px;
  width: 500px;
  pointer-events: none;
}

.section {
  color: #444939;
  font-weight: 400;
}

@-webkit-keyframes waweTwo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes waweTwo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
.counter-page {
  background: #fff;
}
.counter-page .counter-page {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.counter-page .counter-page .counter-blog {
  width: 33.3%;
  display: flex;
  align-items: center;
  min-height: 175px;
  justify-content: center;
  flex-direction: column;
  padding: 10px 25px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.counter-page .counter-page .counter-blog:last-child {
  border-right: none;
}
.counter-page .counter-page .counter-blog .bg-c {
  display: flex;
  align-items: center;
}
.counter-page .counter-page .counter-blog .txt-80 {
  color: #000;
}
.counter-page .counter-page .counter-blog .clight {
  color: #158527;
}
.counter-page .counter-page .counter-blog .txt-24 {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.txt-80 {
  font-family: "Arima Madurai", cursive;
}

.top-nav-text {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.top-nav-text .buttons {
  display: flex;
  align-items: center;
}

.nav-text {
  color: #000;
}
.nav-text span {
  color: #158527;
  font-family: "Arima Madurai", cursive;
}

body.dark-ver {
  background: #1C2C1F;
}
body.dark-ver .section {
  color: #fff;
}
body.dark-ver .txt-200 {
  color: #fff;
}
body.dark-ver .bg-img {
  background: #1C2C1F;
}
body.dark-ver .bg-circle-bg .bg-circle {
  background: #158527;
}
body.dark-ver .navigation .navigation-in .blog .blog-in .blog-left {
  background: #293D2D;
}
body.dark-ver .navigation .navigation-in .blog .blog-in .text-blog .txt-16 {
  color: #fff;
}
body.dark-ver .navigation .navigation-in .blog .blog-in .text-blog .txt-18 {
  color: #fff;
}
body.dark-ver .glavni-page .glavni-page-in .g-left .txt-50 {
  color: #fff;
}
body.dark-ver .counter-page {
  background: #162318;
}
body.dark-ver .counter-page .counter-page .counter-blog {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark-ver .counter-page .counter-page .counter-blog .txt-80 {
  color: #fff;
}
body.dark-ver .counter-page .counter-page .counter-blog .clight {
  color: #158527;
}
body.dark-ver .counter-page .counter-page .counter-blog .txt-24 {
  color: rgba(255, 255, 255, 0.5);
}
body.dark-ver .slider-page {
  background: #162318;
}
body.dark-ver .slider-page .slider-page-in .my-swiper-slider .card-n {
  background: #1C2C1F;
}
body.dark-ver .slider-page .slider-page-in .my-swiper-slider .card-n .img {
  background: #293D2D;
}
body.dark-ver .slider-page .slider-page-in .my-swiper-slider .card-n .text-blog .txt-20 {
  color: #fff;
}
body.dark-ver .slider-page .slider-page-in .my-swiper-slider .card-n .text-blog .txt-14 {
  color: rgba(255, 255, 255, 0.5);
}
body.dark-ver .about-page {
  background: #162318;
}
body.dark-ver .about-page .blog-batafsil .top-img {
  background: #293D2D;
}
body.dark-ver .about-page .blog-batafsil .bottom-img {
  background: #293D2D;
}
body.dark-ver .about-page .about-page-in .left-blog {
  background: #293D2D;
}
body.dark-ver .about-page .about-page-in .a-right .blog-right {
  background: #158527;
}
body.dark-ver .about-nav {
  background: #162318;
}
body.dark-ver .blog-chek .chek-text .chek {
  background: #293D2D;
  margin-right: 12px;
}
body.dark-ver .blog-chek .chek-text .chek i {
  color: #fff;
}
body.dark-ver .rec-page-in .main-blog .blog-in .top {
  background: #293D2D;
}
body.dark-ver .card-c {
  background: #1C2C1F;
}
body.dark-ver .card-c .sl-top .text-blog .txt-24 {
  color: #fff;
}
body.dark-ver .card-c .sl-top .text-blog .txt-14 {
  color: rgba(255, 255, 255, 0.6);
}
body.dark-ver .card-c .section {
  color: rgba(255, 255, 255, 0.6);
}
body.dark-ver .form-page .section {
  color: rgba(255, 255, 255, 0.5);
}
body.dark-ver .form-page .input {
  background: #121C13;
  color: #fff;
}
body.dark-ver .footer .footer-in .text-blog .txt-16 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
body.dark-ver .footer .footer-in .text-blog .txt-14 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
body.dark-ver .footer .footer-in .text-blog .txt-14 a {
  color: #158527;
}
body.dark-ver .nav-text {
  color: #fff;
}
body.dark-ver .nav-text span {
  color: #158527;
}

.about-nav {
  background: #fff;
}

.slider-page {
  width: 100%;
  background: #fff;
}
.slider-page .slider-page-in {
  width: 100%;
}
.slider-page .slider-page-in .my-swiper-slider {
  width: 100%;
  overflow-x: hidden;
}
.slider-page .slider-page-in .my-swiper-slider .card-n {
  margin-top: 24px;
  padding: 24px;
  background: #FAFAF9;
  border-radius: 0px 24px;
  transition: 0.2s ease;
}
.slider-page .slider-page-in .my-swiper-slider .card-n:hover {
  transform: translateY(-10px);
}
.slider-page .slider-page-in .my-swiper-slider .card-n .img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3EE;
}
.slider-page .slider-page-in .my-swiper-slider .card-n .img img {
  width: 90%;
  border-radius: 12px;
}
.slider-page .slider-page-in .my-swiper-slider .card-n .text-blog {
  margin-top: 18px;
}
.slider-page .slider-page-in .my-swiper-slider .card-n .text-blog .txt-20 {
  line-height: 24px;
  color: #000;
}
.slider-page .slider-page-in .my-swiper-slider .card-n .text-blog .txt-14 {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
}

.about-page {
  background: #fff;
}
.about-page .blog-batafsil {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-page .blog-batafsil .top-img {
  width: 100%;
  height: 430px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3EE;
  border-radius: 87px 0px;
}
.about-page .blog-batafsil .top-img img {
  width: 400px;
}
.about-page .blog-batafsil .bottom-img {
  width: 48.5%;
  height: 230px;
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3EE;
  border-radius: 0px 60px;
}
.about-page .blog-batafsil .bottom-img:last-child {
  border-radius: 60px 0px;
}
.about-page .blog-batafsil .bottom-img img {
  width: 130px;
}
.about-page iframe {
  width: 100%;
  height: 500px;
  border-radius: 0px 50px;
  filter: grayscale(1);
}
.about-page .about-page-in {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.about-page .about-page-in .text-blog {
  width: 100%;
}
.about-page .about-page-in .text-blog .txt-16 {
  margin-top: 18px;
}
.about-page .about-page-in .left-blog {
  width: 90%;
  height: 460px;
  background: #F9FCDB;
  border-radius: 59px 0px;
  position: relative;
}
.about-page .about-page-in .left-blog .img-left-img {
  width: 600px;
  position: absolute;
  top: -300px;
  z-index: 1;
  left: -150px;
}
.about-page .about-page-in .left-blog .img-left-one {
  width: 100%;
  height: 460px;
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 10%;
  border-radius: 59px 0px;
}
.about-page .about-page-in .about-barg .left-blog .img-left-img {
  left: auto;
  right: -270px;
}
.about-page .about-page-in .txt-200 {
  color: #158527;
}
.about-page .about-page-in .a-left {
  width: 48.5%;
}
.about-page .about-page-in .a-left .a-img {
  width: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 470px;
  background: #5A7C52;
  border-radius: 87px 0px;
}
.about-page .about-page-in .a-right {
  width: 48.5%;
  position: relative;
}
.about-page .about-page-in .a-right .blog-right {
  background: #F9FCDB;
  width: 100px;
  height: 550px;
  float: right;
  position: relative;
  z-index: 1;
  border-radius: 87px 0px;
}
.about-page .about-page-in .a-right .hand {
  position: absolute;
  right: 100px;
  z-index: -1;
  width: 500px;
  top: 50%;
  transform: translateY(-50%);
}
.about-page .batafsil-page {
  align-items: flex-start;
}
.about-page .glavni-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 24px;
}

.bg-tr {
  background: transparent;
  padding: 80px 0;
}

.pad-section {
  padding: 80px 0;
}

.blog-chek {
  width: 100%;
  margin-top: 24px;
}
.blog-chek .chek-text {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
}
.blog-chek .chek-text .chek {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F9FCDB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.blog-chek .chek-text .chek i {
  font-size: 10px;
  color: #158527;
}

.rec-page-in {
  width: 100%;
}
.rec-page-in .txt-50 {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
.rec-page-in .main-blog {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.rec-page-in .main-blog .blog-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 180px;
}
.rec-page-in .main-blog .blog-in .top {
  width: 123px;
  height: 123px;
  border-radius: 24px 0;
  background: #F9FCDB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-page-in .main-blog .blog-in .top img {
  width: 38px;
}
.rec-page-in .main-blog .blog-in .top .txt-50 {
  color: #158527;
  font-family: "Arima Madurai", cursive;
}
.rec-page-in .main-blog .blog-in .txt-24 {
  text-align: center;
  margin-top: 18px;
}

.card-c {
  margin-top: 20px;
  padding: 24px;
  background: #FAFAF9;
  border-radius: 30px 0px;
}
.card-c .sl-top {
  display: flex;
  align-items: center;
}
.card-c .sl-top img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 18px;
}
.card-c .sl-top .text-blog .txt-24 {
  font-weight: 600;
  color: #000;
}
.card-c .sl-top .text-blog .txt-14 {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.3);
}
.card-c .section {
  margin-top: 18px;
}

.form-page {
  width: 450px;
  float: right;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .form-page {
    width: 100%;
  }
}
.form-page .section {
  margin-top: 24px;
}
.form-page form {
  width: 100%;
  float: right;
  display: flex;
  flex-direction: column;
}
.form-page .input {
  width: 100%;
  margin-top: 22px;
  background: #F9F9F9;
  border: 1px solid transparent;
  outline: none;
  padding: 13px 18px;
  font-weight: 300;
  border-radius: 12px 0px;
  transition: 0.3s ease;
}
.form-page .input:focus {
  border-radius: 0px 12px;
  border: 1px solid #158527;
}
.form-page .glavni-btn {
  margin-top: 24px;
  width: 100%;
}

.footer {
  padding: 24px 0;
}
.footer .footer-in .logo {
  width: 150px;
}
.footer .footer-in .logo img {
  width: 100%;
}
.footer .footer-in .text-blog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
.footer .footer-in .text-blog .txt-16 {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.footer .footer-in .text-blog .txt-14 {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-top: 7px;
  color: #444939;
}
.footer .footer-in .text-blog .txt-14 a {
  color: #158527;
}

.bg-ff {
  background: #fff;
}

@media (max-width: 950px) {
  .about-page .blog-batafsil {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .about-page .blog-batafsil .top-img {
    width: 100%;
    height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3EE;
    border-radius: 87px 0px;
    margin-top: 24px;
  }
  .about-page .blog-batafsil .top-img img {
    width: 400px;
  }
  .about-page .blog-batafsil .bottom-img {
    width: 48.5%;
    height: 230px;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3EE;
    border-radius: 0px 60px;
    margin-bottom: 24px !important;
  }
  .about-page .blog-batafsil .bottom-img:last-child {
    border-radius: 60px 0px;
  }
  .about-page .blog-batafsil .bottom-img img {
    width: 130px;
  }
  .about-page iframe {
    width: 100%;
    height: 500px;
    border-radius: 0px 50px;
    filter: grayscale(1);
  }
  .about-page .about-page-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .about-page .about-page-in .text-blog {
    width: 100%;
  }
  .about-page .about-page-in .text-blog .txt-16 {
    margin-top: 18px;
  }
  .about-page .about-page-in .left-blog {
    width: 460px;
    height: 460px;
    background: #F9FCDB;
    border-radius: 59px 0px;
    position: relative;
    margin: 80px 0;
  }
  .about-page .about-page-in .left-blog .img-left-img {
    width: 500px;
    position: absolute;
    top: -300px;
    z-index: 1;
    left: -150px;
  }
  .about-page .about-page-in .left-blog .img-left-one {
    width: 100%;
    height: 460px;
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 10%;
    border-radius: 59px 0px;
  }
  .about-page .about-page-in .about-barg {
    overflow-x: hidden;
  }
  .about-page .about-page-in .about-barg .left-blog {
    margin: 0px 0 50px;
  }
  .about-page .about-page-in .about-barg .left-blog .img-left-img {
    display: none;
  }
  .about-page .about-page-in .txt-200 {
    color: #158527;
  }
  .about-page .about-page-in .a-left {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .about-page .about-page-in .a-left .a-img {
    width: 400px;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 400px;
    background: #5A7C52;
    border-radius: 50px 0px;
  }
  .about-page .about-page-in .a-right {
    width: 100%;
    position: relative;
    margin-top: 24px;
  }
  .about-page .about-page-in .a-right .blog-right {
    background: #F9FCDB;
    width: 100px;
    height: 550px;
    float: right;
    position: relative;
    z-index: 1;
    border-radius: 87px 0px;
  }
  .about-page .about-page-in .a-right .hand {
    position: absolute;
    right: 100px;
    z-index: -1;
    width: 500px;
    top: 50%;
    transform: translateY(-50%);
  }
  .about-page .batafsil-page {
    align-items: flex-start;
  }
  .about-page .glavni-btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 24px;
  }
  .bg-tr {
    background: transparent;
    padding: 80px 0;
  }
  .pad-section {
    padding: 80px 0;
  }
  .blog-chek {
    width: 100%;
    margin-top: 24px;
  }
  .blog-chek .chek-text {
    display: flex;
    align-items: flex-start;
    margin-top: 18px;
  }
  .blog-chek .chek-text .chek {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F9FCDB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }
  .blog-chek .chek-text .chek i {
    font-size: 10px;
    color: #158527;
  }
  .rec-page-in {
    width: 100%;
  }
  .rec-page-in .txt-50 {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  .rec-page-in .main-blog {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0px;
  }
  .rec-page-in .main-blog .blog-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 24px;
    width: 48%;
  }
  .rec-page-in .main-blog .blog-in .top {
    width: 123px;
    height: 123px;
    border-radius: 24px 0;
    background: #F9FCDB;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rec-page-in .main-blog .blog-in .top img {
    width: 38px;
  }
  .rec-page-in .main-blog .blog-in .top .txt-50 {
    color: #158527;
    font-family: "Arima Madurai", cursive;
  }
  .rec-page-in .main-blog .blog-in .txt-24 {
    text-align: center;
    margin-top: 18px;
  }
  .card-c {
    margin-top: 20px;
    padding: 24px;
    background: #FAFAF9;
    border-radius: 30px 0px;
  }
  .card-c .sl-top {
    display: flex;
    align-items: center;
  }
  .card-c .sl-top img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 18px;
  }
  .card-c .sl-top .text-blog .txt-24 {
    font-weight: 600;
    color: #000;
  }
  .card-c .sl-top .text-blog .txt-14 {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.3);
  }
  .card-c .section {
    margin-top: 18px;
  }
  .form-page {
    width: 100%;
    float: right;
    display: flex;
    flex-direction: column;
  }
  .form-page .section {
    margin-top: 24px;
  }
  .form-page form {
    width: 100%;
    float: right;
    display: flex;
    flex-direction: column;
  }
  .form-page .input {
    width: 100%;
    margin-top: 22px;
    background: #F9F9F9;
    border: 1px solid transparent;
    outline: none;
    padding: 13px 18px;
    font-weight: 300;
    border-radius: 12px 0px;
    transition: 0.3s ease;
  }
  .form-page .input:focus {
    border-radius: 0px 12px;
    border: 1px solid #158527;
  }
  .form-page .glavni-btn {
    margin-top: 24px;
    width: 100%;
  }
  .row-fl {
    flex-direction: column-reverse !important;
  }
  .pad-section {
    padding: 40px 0;
  }
}
@media (max-width: 950px) and (max-width: 650px) {
  .pad-section {
    padding: 30px 0;
  }
}
@media (max-width: 950px) {
  .txt-200 {
    font-size: 150px;
    line-height: 120px;
  }
}
@media (max-width: 850px) {
  .navigation {
    width: 100%;
    padding: 12px 0;
  }
  .navigation .navigation-in {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .navigation .navigation-in .logo img {
    width: 150px;
  }
  .navigation .navigation-in .blog {
    display: flex;
    align-items: center;
    margin-left: 0;
    width: 100%;
    margin-top: 18px;
  }
  .navigation .navigation-in .blog .blog-in {
    width: 250px;
    display: flex;
    align-items: center;
    margin-right: 80px;
  }
}
@media (max-width: 850px) and (max-width: 1050px) {
  .navigation .navigation-in .blog .blog-in {
    margin-right: 30px;
  }
}
@media (max-width: 850px) {
  .navigation .navigation-in .blog .blog-in .blog-left {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FCDB;
    margin-right: 12px;
  }
  .navigation .navigation-in .blog .blog-in .blog-left img {
    width: 24px;
  }
}
@media (max-width: 850px) {
  .navigation .navigation-in .blog .blog-in .text-blog .txt-16 {
    color: #5A7C52;
    font-weight: 400;
  }
  .navigation .navigation-in .blog .blog-in .text-blog .txt-18 {
    color: #000;
    font-weight: 600;
    margin-top: 4px;
  }
}
@media (max-width: 850px) {
  .glavni-page {
    position: relative;
  }
  .glavni-page .glavni-page-in {
    flex-direction: column-reverse;
  }
  .glavni-page .glavni-page-in .g-left {
    width: 100%;
  }
  .glavni-page .glavni-page-in .g-left .txt-200 {
    margin-top: 0px !important;
  }
  .glavni-page .glavni-page-in .g-left .txt-50 {
    color: #444939;
  }
  .glavni-page .glavni-page-in .g-left .txt-16 {
    margin-top: 18px;
  }
  .glavni-page .glavni-page-in .g-left .glavni-btn {
    margin-top: 20px;
  }
  .glavni-page .glavni-page-in .g-right {
    width: 600px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-animation: waweTwo 15s infinite linear;
            animation: waweTwo 15s infinite linear;
  }
  .glavni-page .barg1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
  }
  .glavni-page .barg2 {
    position: absolute;
    right: 0;
    top: -40px;
    width: 400px;
  }
}
@media (max-width: 650px) {
  .navigation {
    padding: 10px 0;
  }
  .navigation .navigation-in .logo img {
    width: 120px;
  }
  .navigation .navigation-in .blog {
    margin-top: 0px;
  }
}
@media (max-width: 650px) and (max-width: 450px) {
  .navigation .navigation-in .blog {
    margin-right: 0;
    justify-content: space-between;
  }
}
@media (max-width: 650px) {
  .navigation .navigation-in .blog .blog-in {
    width: 48% !important;
    display: flex;
    align-items: center;
    margin-right: 0px !important;
  }
}
@media (max-width: 650px) and (max-width: 450px) {
  .navigation .navigation-in .blog .blog-in {
    margin-right: 0;
  }
}
@media (max-width: 650px) {
  .navigation .navigation-in .blog .blog-in .blog-left {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .navigation .navigation-in .blog .blog-in .blog-left img {
    width: 14px;
  }
}
@media (max-width: 650px) {
  .navigation .navigation-in .blog .blog-in .text-blog .txt-16 {
    display: none;
  }
  .navigation .navigation-in .blog .blog-in .text-blog .txt-18 {
    font-size: 12px;
    line-height: 15px;
    margin-top: 0px;
  }
}
@media (max-width: 650px) {
  .glavni-page {
    position: relative;
  }
  .glavni-page .glavni-page-in {
    flex-direction: column-reverse;
  }
  .glavni-page .glavni-page-in .g-left {
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .glavni-page .glavni-page-in .g-left .txt-200 {
    margin-top: 10px;
    text-align: center;
  }
  .glavni-page .glavni-page-in .g-left .txt-50 {
    color: #444939;
    margin-top: 0;
    text-align: center;
  }
  .glavni-page .glavni-page-in .g-left .txt-16 {
    margin-top: 18px;
    text-align: center;
  }
  .glavni-page .glavni-page-in .g-left a {
    width: 100%;
  }
  .glavni-page .glavni-page-in .g-left .glavni-btn {
    margin-top: 20px;
    width: 100%;
  }
  .glavni-page .glavni-page-in .g-right {
    width: 350px;
    margin-top: 0px;
    position: relative;
    left: -60px;
    z-index: 2;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-animation: waweTwo 15s infinite linear;
            animation: waweTwo 15s infinite linear;
  }
  .glavni-page .barg1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
  }
  .glavni-page .barg2 {
    position: absolute;
    right: 0;
    top: -40px;
    width: 300px;
  }
}
@media (max-width: 650px) {
  .counter-page .counter-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
  .counter-page .counter-page .counter-blog {
    width: 48.5%;
    display: flex;
    align-items: center;
    min-height: 105px;
    justify-content: center;
    flex-direction: column;
    padding: 10px 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .counter-page .counter-page .counter-blog:last-child {
    border-right: none;
  }
  .counter-page .counter-page .counter-blog:nth-child(2) {
    border-right: none;
  }
  .counter-page .counter-page .counter-blog .bg-c {
    display: flex;
    align-items: center;
  }
  .counter-page .counter-page .counter-blog .txt-80 {
    color: #000;
  }
  .counter-page .counter-page .counter-blog .clight {
    color: #158527;
  }
  .counter-page .counter-page .counter-blog .txt-24 {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .about-page .blog-batafsil {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0px;
  }
  .about-page .blog-batafsil .top-img {
    width: 100%;
    height: 303px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3EE;
    border-radius: 50px 0px;
  }
  .about-page .blog-batafsil .top-img img {
    width: 200px;
  }
  .about-page .blog-batafsil .bottom-img {
    width: 48.5%;
    height: 155px;
    margin-top: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3EE;
    border-radius: 0px 30px;
  }
  .about-page .blog-batafsil .bottom-img:last-child {
    border-radius: 30px 0px;
  }
  .about-page .blog-batafsil .bottom-img img {
    width: 80px;
  }
  .about-page iframe {
    width: 100%;
    height: 300px;
    border-radius: 0px 50px;
    filter: grayscale(1);
  }
  .about-page .about-page-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0px;
  }
  .about-page .about-page-in .txt-50 {
    text-align: center;
  }
  .about-page .about-page-in .section {
    text-align: center;
  }
  .about-page .about-page-in .text-blog {
    width: 100%;
  }
  .about-page .about-page-in .text-blog .txt-16 {
    margin-top: 18px;
  }
  .about-page .about-page-in .left-blog {
    width: 250px;
    height: 220px;
    background: #F9FCDB;
    border-radius: 50px 0px;
    position: relative;
    margin: 24px 0;
  }
  .about-page .about-page-in .left-blog .img-left-img {
    width: 300px;
    position: absolute;
    top: -100px;
    z-index: 1;
    left: -100px;
  }
  .about-page .about-page-in .left-blog .img-left-one {
    width: 100%;
    height: 220px;
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 10%;
    border-radius: 59px 0px;
  }
  .about-page .about-page-in .about-barg .left-blog .img-left-img {
    left: auto;
    right: -270px;
  }
  .about-page .about-page-in .txt-200 {
    color: #158527;
  }
  .about-page .about-page-in .a-left {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .about-page .about-page-in .a-left .a-img {
    width: 100%;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 350px;
    background: #5A7C52;
    border-radius: 50px 0px;
  }
  .about-page .about-page-in .a-right {
    width: 100%;
    position: relative;
    margin-top: 24px;
  }
  .about-page .about-page-in .a-right .blog-right {
    display: none;
  }
  .about-page .about-page-in .a-right .hand {
    display: none;
  }
  .about-page .batafsil-page {
    align-items: flex-start;
  }
  .about-page .glavni-btn {
    width: 100%;
    margin-top: 24px;
  }
}
@media (max-width: 650px) {
  .bg-tr {
    background: transparent;
    padding: 30px 0;
  }
}
@media (max-width: 650px) {
  .sec-page {
    padding: 30px 0;
  }
}
@media (max-width: 650px) {
  .pad-section {
    padding: 30px 0;
  }
}
@media (max-width: 650px) {
  .blog-chek {
    width: 100%;
    margin-top: 24px;
  }
  .blog-chek .chek-text {
    display: flex;
    align-items: flex-start;
    margin-top: 18px;
  }
  .blog-chek .chek-text .chek {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F9FCDB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }
  .blog-chek .chek-text .chek i {
    font-size: 10px;
    color: #158527;
  }
}
@media (max-width: 650px) {
  .rec-page-in {
    width: 100%;
  }
  .rec-page-in .txt-50 {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  .rec-page-in .main-blog {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0px;
  }
  .rec-page-in .main-blog .blog-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 24px;
    width: 48%;
  }
  .rec-page-in .main-blog .blog-in .top {
    width: 123px;
    height: 123px;
    border-radius: 24px 0;
    background: #F9FCDB;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rec-page-in .main-blog .blog-in .top img {
    width: 38px;
  }
  .rec-page-in .main-blog .blog-in .top .txt-50 {
    color: #158527;
    font-family: "Arima Madurai", cursive;
  }
  .rec-page-in .main-blog .blog-in .txt-24 {
    text-align: center;
    margin-top: 18px;
  }
}
@media (max-width: 650px) {
  .card-c {
    margin-top: 20px;
    padding: 24px;
    background: #FAFAF9;
    border-radius: 30px 0px;
  }
  .card-c .sl-top {
    display: flex;
    align-items: center;
  }
  .card-c .sl-top img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 18px;
  }
  .card-c .sl-top .text-blog .txt-24 {
    font-weight: 600;
    color: #000;
  }
  .card-c .sl-top .text-blog .txt-14 {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.3);
  }
  .card-c .section {
    margin-top: 18px;
  }
}
@media (max-width: 650px) {
  .form-page {
    width: 100%;
    float: right;
    display: flex;
    flex-direction: column;
  }
  .form-page .section {
    margin-top: 24px;
  }
  .form-page form {
    width: 100%;
    float: right;
    display: flex;
    flex-direction: column;
  }
  .form-page .input {
    width: 100%;
    margin-top: 22px;
    background: #F9F9F9;
    border: 1px solid transparent;
    outline: none;
    padding: 13px 18px;
    font-weight: 300;
    border-radius: 12px 0px;
    transition: 0.3s ease;
  }
  .form-page .input:focus {
    border-radius: 0px 12px;
    border: 1px solid #158527;
  }
  .form-page .glavni-btn {
    margin-top: 24px;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .footer {
    padding: 20px 0;
  }
  .footer .footer-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer .footer-in .logo {
    width: 120px;
  }
  .footer .footer-in .logo img {
    width: 100%;
  }
  .footer .footer-in .text-blog {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 300px;
    margin-top: 182x;
  }
  .footer .footer-in .text-blog .txt-16 {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .footer .footer-in .text-blog .txt-14 {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: 7px;
    color: #444939;
  }
  .footer .footer-in .text-blog .txt-14 a {
    color: #158527;
  }
}/*# sourceMappingURL=main.css.map */