@import "libs.css";

body {
  --color-bg: #121212;
  --color-bg2: #131633;
  --color-text: #fff;
  --color-text2: #00cfb4;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background: var(--color-bg); */
  /* color: var(--color-text); */
  margin: 0px;
  padding: 0px;
}

section {
  position: relative;
}

#section0 {
  background-image: url(../images/slide.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-size: cover;
}

#section_tarig:before,
.video_links_login::before,
#section7::before,
.bog_shadow::before,
#section0::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  background-color: #224b697d;
}

.d-flex {
  display: flex;
}

.img100 {
  width: 100%;
  display: block;
}

.img_block {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.mb-30 {
  margin-bottom: 30px;
}

.flex1 {
  flex: 1;
}

/* .logo_img {
  flex: 1;
} */

.logo_img img {
  width: 10vw;
}

.m5 {
  margin-top: -15px !important;
}

.z_index3 {
  position: relative;
  z-index: 3;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-colom {
  flex-direction: column;
}

a:hover {
  text-decoration: none;
}

/*****************************************
                start header
******************************************/
.desctop_heder {
  display: flex;
  align-items: center;
  padding: 20px 0px;
  z-index: 9;
  position: relative;
}

.menu_top {
  margin: 0px;
  padding: 0xp;
  list-style: none;
  display: flex;
  flex: 1;
  justify-content: center;
}

.menu_top li {
  margin: 10px;
}

.menu_top li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.menu_top li a.actions {
  font-weight: 600;
}

.menu_top li a span {
  position: relative;
  display: block;
  cursor: pointer;
}

.menu_top li a span:before,
.menu_top li a span:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  margin-top: -0.5px;
  background: #fff;
}

.menu_top li a span:before {
  left: -2.5px;
}

.menu_top li a span:after {
  right: 2.5px;
  background: #fff;
  -webkit-transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu_top li a span:hover:before {
  background: #fff;
  width: 100%;
  -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu_top li a span:hover:after {
  background: transparent;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}

/*********************************
         hamburger_menu css
*********************************/
.hamburger_menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 0px;
  cursor: pointer;
  width: 50px;
  margin-top: 5px;
}

.hamburger_menu span {
  display: block;
  background-color: #fff;
  margin-bottom: 7px;
  -webkit-transition: width 0.5s, -webkit-transform 0.5s;
}

.hamburger_menu:hover span {
  width: 40px;
}

.hamburger_menu:hover .span2X {
  width: 30px;
}

.hamburger_menu .span3X,
.hamburger_menu .span2X,
.hamburger_menu .span1X {
  width: 30px;
  height: 2px;
  border-radius: 20px;
}

/*********************************
        end hamburger_menu css
*********************************/

/*********************************
             tillar css 
*********************************/
.sl-nav {
  display: inline;
}

.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}

.sl-nav li {
  cursor: pointer;
}

.sl-nav li .noneee {
  display: none;
  -webkit-transition: width 0.5s, -webkit-transform 0.5s;
}

.sl-nav li:hover .noneee {
  position: absolute;
  top: 10px;
  right: -5px;
  display: block;
  /* background: #fff; */
  /* width: 120px; */
  /* padding-top: 0px; */
  z-index: 1;
  /* border-radius: 5px; */
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); */
}

.sl-nav li .noneee ul {
  /* position: absolute; */
  top: 23px;
  right: 0px;
  display: block;
  background: #fff;
  min-width: 70px;
  padding-top: 0px;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li:hover .triangle {
  position: absolute;
  top: 22px;
  right: 15px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  /*  background: transparent; */
}

.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 6px 15px;
  padding-bottom: 0;
  /* z-index: 30; */
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid #95a6b230;
}

.sl-nav li ul li a {
  color: #000000;
}

.sl-nav li ul li:last-of-type {
  padding-bottom: 6px;
  border: none;
}

.sl-nav li ul li span {
  padding-left: 5px;
}

.sl-nav li ul li span:hover,
.sl-nav li ul li span.active {
  color: #64c100;
}

.sl-flag {
  display: inline-block;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  width: 15px;
  height: 15px;
  background: #aaa;
  border-radius: 50%;
  position: relative;
  top: 2px;
  overflow: hidden;
}

/* .flag-uz {
    background: url("../images/icon/uzbekistan.svg");
    background-size: cover;
    background-position: center center;
}

.flag-ru {
    background: url("../images/icon/russia.svg");
    background-size: cover;
    background-position: center center;
}

.flag-usa {
    background-size: cover;
    background-position: center center;
    background: url("../images/icon/csha.svg");
} */

.flag__text {
  border: 1px solid #64c100;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  padding: 2px 10px;
  font-weight: 400;
  border-radius: 30px;
}

.flag__text img {
  margin-right: 5px;
}

.f-right {
  justify-content: flex-end;
}

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

.search_block {
  margin-top: -3px;
  margin-right: 15px;
}

.search_block span {
  color: #54649f;
  font-size: 18px;
  cursor: pointer;
}

.fa-angle-down {
  width: 10px;
  height: 10px;
  background-size: 100%;
  bottom: 0;
  background-image: url("../images/icon/next.svg");
  background-size: cover;
  /* background-color: #fff; */
  transform: rotate(90deg);
  margin-left: 4px;
  margin-top: 3px;
}

/*********************************
           END  tillar css
*********************************/

.infn_site {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0px;
}

.infn_site h1 {
  font-size: 4vw;
  margin: 0px;
  font-weight: 700;
}

.infn_site p {
  font-size: 1.5vw;
  padding: 0px 15vw;
}

.infn_site h1 span {
  color: #64c100;
}

.link_additional_site {
  display: inline-block;
  /* margin: 0px 10px; */
  color: #fff;
  padding: 1.3vw 4vw;
  border-radius: 50px;
  opacity: 1;
  /* width: 250px; */
  /* height: 63px; */
  font-size: 1vw;
  font-weight: 600;
  text-decoration: none;
  /* border: 1px solid #fff; */
  min-width: 0vw;
}

.link_additional_site:hover {
  color: #fff;
}

#section0 .link_site {
  display: flex;
  justify-content: center;
}

.baAS {
  background: rgb(54, 104, 0);
  background: -moz-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: -webkit-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#366800", endColorstr="#63be00", GradientType=1);
  /* border: 1px solid #64c100 !important; */
  text-transform: uppercase;
}

/*****************************************
                end header
******************************************/

/*****************************************
                start abaut
******************************************/
.abaut {
  min-height: 600px;
  position: relative;
  padding: 70px 0px;
}

.abaut::before {
  content: "";
  display: block;
  width: 200px;
  height: 350px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.abaut::after {
  content: "";
  display: block;
  width: 200px;
  height: 350px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 50px;
  right: 0px;
  position: absolute;
}

.title_block_color {
  font-size: 20px;
  font-weight: 700;
  color: #64c100;
  text-transform: capitalize;
}

.title_block_color::after {
  content: "";
  width: 29px;
  height: 29px;
  display: inline-block;
  background-image: url(../images/icon/icon1.png);
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.full_title_block {
  font-size: 24px;
  line-height: 37px;
  color: #224b69;
  font-weight: 600;
  margin-top: 20px;
}

.text_block {
  line-height: 37px;
  font-size: 16px;
  color: #707070;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 40px;
}

.mini_block_icon {
  width: 100%;
  border: 1px solid #7070705c;
  min-height: 70px;
  color: #224b69;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin-bottom: 20px;
  font-weight: 600;
}

.mini_block_icon img {
  margin-right: 20px;
}

.link_blocks .link_additional_site {
  padding: 1vw 1.5vw;
  /* width: 100%; */
  text-align: center;
}

.abaut .link_additional_site {
  width: 100%;
}

.video_links .span1V {
  width: 66px;
  height: 66px;
  background-color: #64c10040;
  /* display: block; */
  border-radius: 50%;
}

.video_links .span2V {
  width: 56px;
  height: 56px;
  background-color: #64c10070;
  /* display: block; */
  border-radius: 50%;
}

.video_links .span3V {
  width: 46px;
  height: 46px;
  background-color: #64c100;
  /* display: block; */
  border-radius: 50%;
}

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

.i_pley {
  content: "";
  width: 13px;
  height: 15px;
  background-image: url(../images/icon/icon6.svg);
  /* margin-left: 10px; */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.abaut .video_links {
  margin-bottom: 20px;
}

.video_links p {
  margin-left: 20px;
  font-size: 19px;
  font-weight: 600;
}

/*****************************************
                end abaut
******************************************/

/*****************************************
                start block2
*****************************************/
.block15,
.block14,
.block13,
.block12,
.block11,
.block10,
.block9,
.block8,
.block7,
.block6,
.block5,
.block4,
.block3,
.block2 {
  min-height: 560px;
  position: relative;
  padding: 70px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.block9 {
  overflow: inherit;
}
.bg_full {
  background-color: #f8faff;
  overflow: hidden;
}

.block2::after {
  content: "";
  display: block;
  width: 200px;
  height: 350px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 50px;
  right: -100px;
  position: absolute;
}

.section2_left_right_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section2_left_right_img img {
  width: 130%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*****************************************
                start block2
*****************************************/

/*****************************************
                start block2
*****************************************/

.block3::before {
  content: "";
  display: block;
  width: 100px;
  height: 150px;
  background-image: url(../images/icon/left2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: 50px;
  left: -20px;
  position: absolute;
}

/*****************************************
                start block2
*****************************************/

#section7 {
  background-image: url(../images/fotfon.jpg);
  background-size: cover;
  width: 100%;
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

.title_block_color_iu {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
}

#section7 .full_title_block {
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.block7 .text_block {
  color: #ffffff;
  text-align: center;
}

.block7_icon {
  margin: 30px 0px 10px 0px;
}

.torli {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.torli p {
  padding: 0px;
  margin: 0px;

  min-width: 150px;
}

.torli i {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #64c100;
  border-radius: 50%;
  margin-right: 12px;
}

.torli i::before {
  content: "";
  display: block;
  margin-top: 4px;
  width: 17px;
  height: 17px;
  background-size: contain;
  background-image: url(../images/icon/icon8.svg);
  background-repeat: no-repeat;
}

.block13,
.block8 {
  /* background-size: contain; */
  background-image: url(../images/icon/icon_big.svg);
  /* background-repeat: no-repeat; */
}

.block9 .section2_left_right_img img {
  margin-top: -200px;
}

/*****************************************
                end block7
*****************************************/

/*****************************************
                start block10
*****************************************/
.title_block_color_bg {
  color: #037449;
  background-color: #38d8a27a;
  padding: 10px 15px;
  display: inline-table;
  border-radius: 5px;
}

.block10 .full_title_block {
  font-weight: 300;
}

.icon_blockss {
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
}

.icon_blockss span {
  display: inline-block;
  /* padding: 10px; */
  border-radius: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
}

.bgl1 {
  background: #d9f3de;
}

.bgl1 span {
  background: #d9f3de;
}

.bgl2 {
  background: #e1e1f5;
}

.bgl2 span {
  background: #e1e1f5;
}

.bgl3 {
  background: #ffebbc;
}

.bgl3 span {
  background: #ffebbc;
}

.itle_riglt_mini {
  display: flex;
  align-items: center;
  margin: 30px 0px;
}

.itle_riglt_mini_text {
  margin-left: 20px;
}

.itle_riglt_mini_text p {
  font-size: 18px;
  font-weight: 600;
  padding: 0px;
  margin: 0px;
  color: #000000;
  margin-bottom: 10px;
}

.itle_riglt_mini_text span {
  font-size: 11px;
  padding: 0px;
  line-height: 20px;
  margin: 0px;
  color: #000000;
}

.itle_riglt_mini.action {
  background: #fff;
  padding: 20px;
  padding-left: 0px;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 50px -6px rgba(84, 84, 120, 0.26);
  box-shadow: 0 8px 50px -6px rgba(84, 84, 120, 0.26);
  margin-left: 50px;
}

.itle_riglt_mini.action::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 73px;
  background-color: #38d8a2;
  margin-right: 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/*****************************************
                end block10
*****************************************/

/*****************************************
                start block11
*****************************************/
.video_links_login {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}

.video_links_block {
  position: relative;
}

.block11 .video_links {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 9;
}

.video_links_block .video_links p {
  color: #ffffff;
}

/*****************************************
                end block11
*****************************************/

/*****************************************
                start block13
*****************************************/
.block13 .owl-nav {
  display: none !important;
}

.owl-dots {
  margin-top: 20px;
}

.owl-dots .owl-dot.active span {
  background-color: #38d8a2 !important;
}

.clent_img_user img {
  width: 41px !important;
  height: 41px;
  border-radius: 50%;
  border: 3px solid #38d8a2;
  margin-right: 20px;
}

.slidre_text {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
  margin: 20px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  text-align: left;
  position: relative;
}

.slidre_text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 50px -6px rgb(84 84 120 / 20%);
  box-shadow: 0 8px 50px -6px rgb(84 84 120 / 16%);
  position: absolute;
  bottom: -8px;
  transform: rotate(45deg);
}

.clent_img_user {
  display: flex;
  align-items: center;
  text-align: left;
  margin-left: 20px;
}

.clent_img_user p {
  padding: 0px;
  margin: 0px;
  font-weight: 600;
}

/*****************************************
                end block11
*****************************************/

/*****************************************
              start block14
*****************************************/
.my_collapse {
  background-color: #fff;
  /* padding: 20px; */
  border-radius: 10px;
  -webkit-box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 9px 37px -22px rgba(0, 0, 0, 0.75);
}

.my_collapse .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: initial;
  border-bottom: none;
}

.my_collapse .btn.btn-link::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-image: url(../images/icon/plus2.svg);
  background-repeat: no-repeat;
}

/* .my_collapse .btn.btn-link.collapsed::after {
    display: block;
    background-size: contain;
    background-image: url(../images/icon/minus.svg);
    background-repeat: no-repeat;

} */

.syle_plus_minus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.my_collapse button {
  color: #224b69;
  font-size: 16px;
  font-weight: 600;
}

.my_collapse .btn-link:hover {
  color: #224b69;
  text-decoration: none;
}

.my_collapse .btn.focus,
.my_collapse .btn:focus {
  outline: 0;
  box-shadow: none;
}

.my_collapse {
  margin-top: 30px;
}

/*****************************************
              end block14
*****************************************/

/*****************************************
              start block15
*****************************************/
.cotact_info {
  text-align: center;
}

.cotact_info img {
  margin-bottom: 20px;
}

.cotact_info div {
  color: #64c100;
  font-weight: 600;
  font-size: 16px;
}

/*****************************************
              end block15
*****************************************/

/*****************************************
              start block16
*****************************************/

.block16 {
  min-height: 350px;
  width: 100%;
  position: relative;
  background-color: #224b69;
  padding: 50px;
}

.footer_img {
  background-size: cover;
  background-image: url(../images//fons/footer.png);
  background-repeat: no-repeat;
  min-height: 350px;
  width: 100%;
}

.sot_seti {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sot_seti a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #00d800;
  border-radius: 50%;
  margin: 0px 10px;
  transition: 0.7s;
}

.sot_seti a span {
  width: 17px;
  height: 17px;
  /* background-color: #00d800; */
  display: block;
  transition: 0.7s;
  background-size: contain;
  background-repeat: no-repeat;
}

/* .sot_seti a:hover {
  border: 1px solid #fff;
}

.sot_seti a:hover span {
  background-color: #ffffff;
} */

.instagram {
  background-image: url("../images/icon/set/instagram.png");
}

.telgram {
  background-image: url("../images/icon/set/telegram.png");
}

.yotube {
  background-image: url("../images/icon/set/youtube.png");
  margin-top: 6px;
}

.facebook {
  background-image: url("../images/icon/set/facebook.png");
  margin-left: 8px;
}

.twitter {
  background-image: url("../images/icon/set/twitter.png");
  margin-top: 6px;
}

.linkedin {
  background-image: url("../images/icon/set/linkedin-logo.png");
}

.pil {
  background-image: url("../images/icon/set/pil.png");
  margin-left: 4px;
}

.footer_img .text_block {
  color: #ffffff;
}

/*****************************************
              start block16
*****************************************/

/*****************************************
              start filters-pages
*****************************************/

.filters-pages {
  position: fixed;
  right: 0px;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 1050;
}

.filters-pages.active {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: block;
}

.filters-pages-blocks {
  display: flex;
  justify-content: flex-end;
}

.shut-ix {
  width: 35px;
  height: 35px;
  background: #64c100;
  z-index: 99999;
  position: absolute;
  top: 15px;
  border-radius: 50%;
  right: 35px;
  cursor: pointer;
}

.span2,
.span3 {
  position: absolute;
  width: 20px;
  height: 2px;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: #ffffff;
  margin-top: 7px;
  cursor: pointer;
  margin-left: 7px;
}

.span2 {
  top: 9px;
}

.span3 {
  top: 18px;
}

.span2 {
  top: 0;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.span3 {
  top: 0;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.filters-right-block {
  width: 50%;
  height: 100ch;
  height: 100vh;
  background-color: #fff;
}

.overflowHidden {
  overflow: hidden;
}

.contac_right_modal {
  padding: 2.5vw 2vw;
}

.contac_right_modal h2 {
  font-weight: 600;
}

.contac_right_modal_img {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  margin-bottom: 20px;
}

.contac_right_modal_text {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 50px;
}

.contac_right_modal_text span {
  color: #00d800;
  padding-bottom: 5px;
  border-bottom: 2px solid #64c100;
}

.contac_right_modal_img img {
  width: 25px;
  margin-right: 10px;
}

.contac_right_modal_img div {
  font-weight: 600;
  font-size: 18px;
}

/*****************************************
              e fndilters-pages
*****************************************/
.haeder_text_center {
  overflow: hidden;
  height: 320px;
  margin-top: 80px;
}

/* .section2_left_right_img img:hover {
  -webkit-animation: floating 6s linear infinite;
  animation: floating 6s linear infinite;
}

.section2_left_right_img img {
  transition: 0.5s;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
} */

/*****************************************
            tarfi start
*****************************************/
.tarfi {
  padding: 40px 0px;
}

.tarfi h2 {
  padding: 20px 0px;
}

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

.rows100,
.rows15,
.rows40 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rows40 {
  justify-content: start;
}

.rows40 {
  width: 40%;
  height: 50px;
}

.rows100 {
  width: 100%;
  color: #004161;
  background-color: rgb(237 237 237);
  text-align: center;
  padding: 10px 0px;
  font-weight: 700;
  height: 50px;
}

.rows15 {
  width: 15%;
  border-radius: 0px;
  /* padding: 15px; */
  background-color: #edfbff;
  margin-left: 10px;
  text-align: center;
  height: 50px;
}

.tarifi-top .bg_color2 {
  background-color: #004161;
  color: #ffffff;
}

.tarifi-top .bg_color3 {
  background-color: #2855af;
  color: #ffffff;
}

.tarifi-top .bg_color1 {
  background-color: #64c100;
  color: #ffffff;
}

.tarifi-content .bg_color2 {
  background: #eff6f9;
  color: #000000;
}

.tarifi-content .bg_color3 {
  background: #2855af42;
}

.tarifi-content .bg_color1 {
  background-color: #f6fbe5;
}

.none_imnus::before {
  content: "";
  background-image: url(../images/icon/minus.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.none_plus::before {
  content: "";
  background-image: url(../images/icon/plus.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.tarfni_functions .itle_riglt_mini.action {
  margin: 0px !important;
  margin-top: 20px !important;
  min-height: 150px;
}

.tarfni_functions .icon_blockss span {
  width: 54px;
  height: 54px;
}

.tarfni_functions .icon_blockss img {
  width: 25px;
}

.tarfni_functions .itle_riglt_mini {
  margin: 10px;
}

.tarfni_functions .itle_riglt_mini_text p {
  font-size: 16px;
  margin-bottom: 0px;
}

#section_tarig {
  background-image: url(../images/header.jpg);
  background-size: cover;
  width: 100%;
  height: 50vh;
  background-size: cover;
}

#section_tarig .haeder_text_center {
  overflow: hidden;
  height: 80px;
  margin-top: 50px;
}

/* #section_tarig .infn_site h1 {
  font-size: 3vw;
} */

/*****************************************
            tarfi end
*****************************************/
.icon-info {
  width: 20px;
  height: 20px;
  /* margin: auto; */
  transition: 0.7s;
  margin-left: 10px;
  display: inline-block;
  -webkit-mask: url(../images/icon/information.svg);
  mask: url(../images/icon/information.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #042a41;
}

.tarifi-top2 .bg_color1,
.tarifi-top2 .bg_color2,
.tarifi-top2 .bg_color3 {
  min-height: 150px;
  height: auto;
  flex-direction: column;
}
.tarifi-top .btn {
  border-radius: 30px;
  padding: 5px 35px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 10px;
}
/* .top_top_tarifi .bg_color2,
.top_top_tarifi .bg_color1,
.top_top_tarifi .bg_color3 {
  background: red;
  width: 15%;
  margin-left: 14px;
}
.top_top_tarifi .bg_color2 {
  width: 30%;
} */
.tarifi-top2 .bg_color2 {
  background: #eff6f9;
  color: #000000;
}
.tarifi-top2 .bg_color3 {
  background: #2855af42;
  color: #000000;
}
.tarifi-top2 .bg_color1 {
  background-color: #f6fbe5;
  color: #000000;
}
#section7::before {
  background-color: #224b69ba;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
  /* height: 550px; */
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(54, 104, 0);
  background: -moz-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: -webkit-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(54, 104, 0);
  background: -moz-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: -webkit-linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
  background: linear-gradient(
    267deg,
    rgba(54, 104, 0, 1) 0%,
    rgba(99, 190, 0, 1) 100%
  );
}
/* .modal.left .modal-dialog, */
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 600px !important;
  max-width: 50vw;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -0px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
}
.modal-body .logo_img {
  text-align: center;
}
.modal-body .logo_img {
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.modal-body .logo_img img {
  width: 18vw;
  /* margin: 30px 0; */
}
.my__close span {
  background: #00bb00;
  opacity: 1;
  width: 30px;
  height: 30px;
  padding: 0px;
  margin: 0px;
  /* left: -40px; */
  z-index: 999999;
  border-radius: 30px;
  color: #fff;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.myflex {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  margin: 0 15px;
}
.flex__1 {
  flex: 1;
  text-align: center;
}
#myModal form button {
  background-color: #224b69;
  border: 0;
  height: 40px !important;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#myModal textarea {
  min-height: 15vh;
}
.img_100 img {
  width: 100%;
}

.brands-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 20px rgb(0 0 0 / 10%);
  max-width: 200px !important;
  border-right: 2px solid #fff;
  padding: 10px;
  height: 125px !important;
  margin: auto;
}
.brands-slider .item img {
  max-width: 100px !important;
  max-height: 100px !important;
}
.brands-slider .owl-stage-outer {
  padding: 15px 0 !important;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}
.owl-prev,
.owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #d6d6d6 !important;
  transform: rotate(45deg) scale(1);
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  border-radius: initial !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.owl-prev {
  left: -30px;
  top: 55px;
}
.owl-next {
  right: -30px;
  top: 55px;
}
.owl-prev span,
.owl-next span {
  transform: rotate(-40deg) scale(1);
  -webkit-transform: rotate(-40deg) scale(1);
  -ms-transform: rotate(-40deg) scale(1);
  display: block;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  padding: 0px 2px 1px 0px !important;
}
.owl-carousel .owl-nav button.owl-next :focus,
.owl-carousel .owl-nav button.owl-prev :focus {
  outline: none !important;
}

.columns_user .columns-block--column img {
  width: 200px;
  height: 200px;
  -webkit-mask-image: pixelated;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.columns-block--column_name {
  font-size: 18px;
  font-weight: 900;
  line-height: 37px;
  color: #224b69;
}

.pl__5 {
  padding-left: 3rem !important;
}

.columns-block--column {
  margin: auto;
  text-align: center;
}
.text_big_style {
  font-size: 14px;
  text-align: justify;
}
.section_tarig2 {
  background-image: url(../images/home-back.jpg);
  width: 100%;
  height: 50vh;
  background-size: cover;
}
.section_tarig2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  background-color: #224b697d;
}
.name_tarif {
  font-size: 14px;
}


ul {
  padding-left: 0rem;
  list-style-type: none;
}

.spisok {
  padding-left: 2rem;
  background-image: url(../images/305228-4caf50.svg);
  background-position: 0 0;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
}