@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
:root {
    --primary-color: #F9B227;
    --primary-sec-color: #4BA3BF;
    --white-color: #ffffff;
    --orange-color: #E75F2A;
    --yellow-color: #EFAA3F;
    --danger-color: #FF3A44;
    --green-color: #2DA771;
    --ruhy-color: #EFF9FD;

    --primary-text-color: #051E47;
    --secondary-text-color: #343435;
    --third-text-color: #9AA1B4;
    --four-text-color: #5D616A;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
a {
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    color: #444444;
    transition: .3s;
}
a:hover {
    color: #444444;
    opacity: .6;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mb-40 {
	margin-bottom: 40px;
}
.bg-ruhy {
    background-color: var(--ruhy-color);
}
.btn-pry {
    background-color: var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding: 12px 64px;
    color: var(--white-color);
    transition: .3s;
}
.btn-pry:hover {
    background-color: #E29C14;
    color: var(--white-color);
    opacity: 1;
}
.btn-scnd {
    background-color: var(--primary-sec-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding: 12px 64px;
    color: var(--white-color);
    transition: .3s;

}
.btn-scnd:hover {
    background-color: #166F8B;
    color: var(--white-color);
    opacity: 1;
}

.btn-link {
    text-align: center;
    color: var(--primary-sec-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    height: 54px;
    transition: .3s;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    background:  transparent;
    border: 2px solid  var(--primary-sec-color);
    border-radius: 12px;
}
.form-floating>.form-select {
	padding-top: 0.625rem;
}
.btn-link:hover {
    opacity: 1;
    border: 2px solid  #166F8B;
    color: #166F8B;
}
.link-all {
	font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: .3s;
}
.link-all svg {
    margin-left: 12px;
}
.link-all:hover {
    color: #E29C14;
    opacity: 1;
}
.pad-wrap {
    padding: 64px 0;
}

.title-40 {
    margin-bottom: 40px;
}
.subtitle-24 {
    margin-bottom: 24px;
}


.header {
    position: absolute;
    top: 32px;
    width: 100%;
}
.header .navbar {
    background-color: white;
    padding: 20px;
    z-index: 1;
    border-radius: 12px;
    width: 100%;
}
.header .navbar .navbar-collapse {
    justify-content: flex-end;
}
.header .navbar .navbar-brand {
    padding: 0;
}
.header .navbar .navbar-nav {
    margin-right: 24px;
}
.header .navbar .navbar-nav .nav-link {
	font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #4BA3BF;
    transition: .3s;
}
.header .navbar .navbar-nav .nav-link:hover {
    opacity: .6;
}


.header-buttons select:focus {
    outline: none;
}

.header-buttons form {
    margin-right: 16px;
}
.header-buttons select {
    padding: 12px 16px;
   -webkit-appearance:none;
   -moz-appearance:none;
   -ms-appearance:none;
    appearance:none;
    outline:0;
    height: 100%;
    box-shadow:none;
    border:0!important;
    background: #4ca3bf;
    background-image: none;
    flex: 1;
    cursor:pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}
.header-buttons select::-ms-expand {
   display: none;
}
.header-buttons form {
    position: relative;
    display: flex;
    align-items: center;
    width: 110px;
    height: 48px;
    background: #4ca3bf;
    overflow: hidden;
    border-radius: 12px;
}
.header-buttons form::after {
    content: '';
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 4px;
    right: 16px;
    display: inline-block;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    width: 10px; height: 10px;
    transform: rotate(-315deg);
}
.header-buttons form:hover::after {
   color: #23b499;
}
.header-pages .header-buttons form::after {
	 border-color: var(--primary-sec-color);
}


.header-pages.header .navbar {
	background:  var(--primary-sec-color);
}
.header-pages.header .navbar .navbar-nav .nav-link {
	color: var(--white-color);
}
.header-pages.header .header-buttons select {
    background:  var(--white-color);
    color: var(--primary-sec-color);
    border-right: 12px solid var(--white-color);
}
.header-pages.header .form-inline .btn-links {
	background:  var(--white-color);
	color: var(--primary-sec-color);
}
.header-pages.header .navbar .navbar-nav .nav-item {
	opacity: 0.6;
}
.header-pages.header .navbar .navbar-nav .nav-item.active {
	opacity: 1;
}
.header-pages.header .navbar .navbar-nav .nav-item .nav-link {
	font-weight: 500;
}
.header-pages.header .navbar .navbar-nav .nav-item.active .nav-link {
	font-weight: 700;
}
.form-inline {
    display: flex;
}
.form-inline .btn-links {
    padding: 12px 16px;
    border: none;
    background: #4ca3bf;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: .3s;
}
.form-inline .btn-links:hover {
    opacity: .6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type='number'] {
    -moz-appearance: textfield;
}
.main-banner {
    position: relative;
    height: 100vh;
    padding-top: 180px;
    text-align: center;
    color: #FFFFFF;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(0deg, #4BA3BF 45.71%, #163843 147.27%);
}
.main-banner .animateBg {
	position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
}
.main-banner .main-banner-inner {
    max-width: 720px;
    margin: auto;
    width: 100%;
}
.main-banner h1 {
    font-weight: bold;
    font-size: 64px;
    line-height: 75px;
    text-align: center;
    margin-bottom: 16px;
}
.main-banner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 32px;
}

.title-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-page h2 {
    font-weight: bold;
    font-size: 40px;
}
.owl-nav {
    display: flex;
    align-items: center;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #F9B227;
    color: #F9B227;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.owl-nav .owl-prev {
    margin-right: 16px;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
    opacity: .6;
}
.owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
    border: 2px solid #9C9C9D;
    color: #9C9C9D;
}
.owl-nav .owl-prev.disabled:hover, .owl-nav .owl-next.disabled:hover {
    opacity: 1;
    cursor: default;
}
.owl-nav .owl-prev svg, .owl-nav .owl-next svg {
	flex: none;
    width: 24px;
    height: 24px;
}

/*Projects*/
.projects-items .owl-projects {
	margin-bottom: 40px;
}
.card-p-b {
    background: #EFF9FD;
    border-radius: 24px;
    padding: 32px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 460px;
    position: relative;
}
.card-p-b .left {
    width: 70%;
}
.card-p-b .left h2 {
    font-weight: 600;
    font-size: 40px;
    color: #050505;
    margin-bottom: 24px;
}
.card-p-b .left p {
    font-weight: 400;
    font-size: 24px;
    color: #050505;
    margin-bottom: 32px;
}
.card-p-b .right {
    width: 30%;
}
.card-p-b .right .images {
    height: 100%;
    width: 320px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 8px;
    background-image: url(http://jastarruhy.kz/uploads/posts/2023-01/zhastara-zhmys.webp);
    position: absolute;
    top: 0;
    right: 0;
    clip-path: ellipse(80% 54% at 80% 51%);
    clip-path: ellipse(80% 58% at 83% 33%);

}
.btn-card-p {
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.btn-card-p a.btn-pry {
    margin-right: 16px;
}
.btn-card-p a {
    padding-left: 32px;
    padding-right: 32px;
}
.projects-items .owl-projects .btn-card-p a.btn-link {
	border-color: #9C9C9D;
	color: #9C9C9D;
}
.projects-items .owl-projects .btn-card-p a.btn-link:hover {
	border-color: #797979;
	color: #797979;
}

.projects-grid, .events-grid {
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill,calc(33% - 24px));
}
.card-projects {
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 20px;
}
.card-projects .img-photo {
    margin-bottom: 16px;
}
.card-projects .img-photo .images {
    border-radius: 20px;
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.card-projects .info h3 {
    font-weight: 500;
    font-size: 24px;
    color: #050505;
    margin-bottom: 8px;
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 58px;
}
.card-projects .info p {
    font-weight: 400;
    font-size: 18px;
    color: #343435;
    margin-bottom: 24px;
    max-height: 54px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.btn-grid-auto {
	display: grid;
}
.btn-grid-auto button, 
.btn-grid-auto a {
	width: 100%;
    margin-bottom: 16px;
}
.btn-grid-auto button:last-child, 
.btn-grid-auto a:last-child {
    margin-bottom: 0;
}



.projects-full {
    margin-bottom: 64px;
}
.projects-full .images {
    max-height: 440px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 40px;
}
.projects-full h1 {
    font-family: 'Brygada';
    font-weight: 700;
    font-size: 40px;
    color: #050505;
    margin-bottom: 16px;
}
.projects-full p {
    font-weight: 500;
    font-size: 20px;
    color: #343435;
    margin-bottom: 0;
}

.projects-info {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    position: sticky;
    top: 16px;
}
.projects-info .images-detail {
    height: 100px;
    width: 100%;
    object-fit: contain;
    border-radius: 24px;
    margin-bottom: 24px;
}
.projects-info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #050505;
    text-align: center;
    margin-bottom: 16px;
}
.btn-projects .btn-pry {
	width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.other-projects h1 {
    margin-top: 64px;
}
.other-projects h1 {
    font-family: 'Brygada';
	font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #050505;
    margin-bottom: 40px;
}
.other-projects-list {
	display: flex;
    align-items: flex-start;
    grid-gap: 24px;
}
.other-projects-list .card-projects {
	width: 33%;
}

/*Events*/
.eventes-items .owl-events .owl-stage-outer {
    padding: 32px 0;
}
.card-e {
    background: var(--white-color);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: .3s;
}
.card-e:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
}
.card-e .images {
    max-height: 220px;
    height: 220px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.card-e .info {
    padding: 20px;
}
.card-e .info h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--primary-text-color);
    margin-bottom: 16px;
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /*min-height: 48px;*/
}
.card-e .info .detail {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
}
.card-e .info .detail svg {
    margin-right: 8px;
    color: #9C9C9D;
    flex: none;
}
.btn-events {
	display: flex;
    grid-gap: 20px;
    margin-top: 24px;
}
.btn-events .btn-scnd {
	width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.btn-events .btn-link {
	width: 100%;
}

.events-full {
    margin-bottom: 64px;
}
.events-full .images {
    max-height: 440px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 40px;
}
.events-full h1 {
    font-family: 'Brygada';
    font-weight: 700;
    font-size: 40px;
    color: #050505;
    margin-bottom: 16px;
}
.events-full p {
    font-weight: 500;
    font-size: 20px;
    color: #343435;
    margin-bottom: 0;
}

.events-info {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    position: sticky;
    top: 16px;
}
.events-info .detail {
    margin-bottom: 20px;
}
.events-info .detail span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #9C9C9D;
    margin-bottom: 8px;
}
.events-info .detail p {
    font-weight: 500;
    font-size: 20px;
    color: #050505;
}
.btn-events .btn-pry {
	width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.events-gallery-full h3 {
    font-weight: 700;
    font-size: 32px;
    color: #050505;
    margin-bottom: 32px;
}
.events-gallery-full .events-gallery  {
    overflow-x: auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}
.events-gallery-full .events-gallery a img {
	width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
}
.events-gallery-full .events-gallery a {
    margin-right: 20px;
}
.events-gallery-full .events-gallery a:last-child {
    margin-right: 0;
}

/* OUR team */
.about-team .head-team {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.about-team .other-team .ohter-team-list {
    display: grid;
    align-content: flex-start;
    grid-template-columns: repeat(auto-fill, 32%);
    justify-content: space-between;
    grid-gap: 16px;
}
.about-team .head-team .card-team, .about-team .other-team .card-team {
    background-color: var(--white-color);
    border: 1px solid rgba(121, 118, 135, 0.3);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    margin-right: 24px;
    width: 100%;
}
.about-team .head-team .card-team:last-child, .about-team .other-team .card-team {
    margin-right: 0;
}
.about-team .head-team .card-team .images, .about-team .other-team .card-team .images {
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 16px;
}
.about-team .head-team .card-team .images {
    height: 100px;
    width: 100px;
}
.about-team .other-team .card-team .images {
    height: 64px;
    width: 64px;
}
.about-team .head-team .card-team .info h4, .about-team .other-team .card-team .info h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #444444;
    margin-bottom: 8px;
}
.about-team .head-team .card-team .info p, .about-team .other-team .card-team .info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #797687;
    margin-bottom: 0;
}
.about-team .other-team .card-team .info h4 {
    font-size: 16px;
}
.about-team .other-team .card-team .info p {
    font-size: 14px;
}

.about-team .other-team {
    display: flex;
    align-content: flex-start;
    grid-gap: 24px;
}
.about-team .other-team .nav-team {
    display: grid;
    align-content: flex-start;
    width: 25%;
}
.about-team .other-team .tab-team {
    width: 75%;
}
.about-team .other-team .nav-team.nav-pills .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #9C9C9D;
    padding: 12px 24px;
    width: 100%;
    text-align: left;
}
.about-team .other-team .nav-team.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}



/* Regions */
.regions-map {
	position: relative;
}
.regions-map svg #mapPlace, .regions-map svg #locate  {
	transition: .3s;
}
.regions-map svg #mapPlace:hover {
	fill: #D9D9D9;
}
.regions-map svg #mapPlace:hover > #locate {
	fill: #4BA3BF;
}
.regions-map .mapModal {
    position: absolute;
    left: 0;
    max-width: 300px;
    width: 100%;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 8%);
    border-radius: 16px;
}
.regions-map .mapModal .map-info h4 {
    font-weight: 600;
    font-size: 20px;
    color: #4BA3BF;
    margin-bottom: 8px;
}
.regions-map .mapModal .map-info p {
	font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    color: #343435;
}
.regions-map .mapModal .close-map {
    position: absolute;
    right: 12px;
    top: 12px;
    color: #9C9C9D;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    width: 24px;
    height: 24px;
}
.regions-map .mapModal .close-map svg {
    width: 24px;
    height: 24px;
}

#mapModal { 
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    background: white;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
    padding: 24px;z
    z-index: 1;
}
#mapModal.show { opacity: 1; }


.map {
  width: 100%;
}

#marker {
  width: 20px;
  display: none;
  margin-left: -10px;
  margin-top: -26px;
  position: absolute;
  transition: 0.3s ease-out;
}
.regionSelect {
  transition: 0.3s ease-out;
}
.regionSelect:hover {
  fill: #DFF4FA !important;
  cursor: pointer;
}

.map-content {
  width: 60%;
  padding-left: 20px;
  padding-right: 50px;
}

.states-list .item {
  color: #0070ff;
}
.states-list .link {
  display: inline-block;
  padding: 6px 0;
  color: inherit;
  font-size: 16px;
  text-decoration: none;
}

.states-content {
    margin-top: 32px;
}
.states-content [data-state] {
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 24px;
}
.states-content [data-state]:not([style]) {
  display: none;
}


/* MyDropdown */

.select-dropdown {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.select-dropdown__button {
  padding: 10px 35px 10px 15px;
  background-color: #fff;
  color: #616161;
  border: 1px solid #cecece;
  border-radius: 3px;
  cursor: pointer;
  width: 280px;
  text-align: left;
}
.select-dropdown__button::focus {
  outline: none;
}
.select-dropdown__button .zmdi-chevron-down {
  position: absolute;
  right: 10px;
  top: 12px;
}
.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 2;
}
.select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
.select-dropdown__list-item a {
  display: block;
  list-style-type: none;
  padding: 10px 15px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: #616161;
  transition: all ease-in-out 0.3s;
}
.select-dropdown__list-item a:hover {
    color:white;
    opacity: 1;
	background: #F9B227;
}
/* MyDropdown */

/* Gallery */
.grid-gallery {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
}
.grid-gallery #gallery {
    flex-wrap: wrap;
    display: flex;
    width: 50%;
    grid-gap: 16px;
    justify-content: flex-end;
    max-height: 516px;
    overflow-y: auto;
}
.grid-gallery .gallery-video {
	width: 50%;
}
.grid-gallery .gallery-video img {
	width: 100%;
    height: 516px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    border-radius: 24px;
    object-fit: cover;
    cursor: pointer;
}
.grid-gallery #gallery a {
	width: 46%;
}

.grid-gallery #gallery img {
	width: 100%;
    height: 250px;
    border-radius: 16px;
    object-fit: cover;
}


/* Structure */
.structure-inner {
	display: flex;
    grid-gap: 24px;
}
.structure-inner .nav {
    display: grid;
    align-content: flex-start;
    width: 33%;
}
.structure-grid {
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill,calc(33% - 24px));
    margin-bottom: 64px;
}
.page-wrapper .structure-title .cat-name {
    font-family: 'Montserrat';
	font-weight: 600;
    font-size: 32px;
    color: #050505;
    line-height: 1;
    margin-bottom: 24px;
}
.card-structure {
    background: #FFFFFF;
    border: 1px solid rgba(121, 118, 135, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.card-structure .img-photo {
    position: relative;
}
.card-structure .img-photo .images {
    max-height: 150px;
    height: 150px;
    width: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.card-structure .info {
    width: calc(100% - 120px)
}
.card-structure .info h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #050505;
    margin-bottom: 8px;
}
.card-structure .info .position {
    font-weight: 500;
    font-size: 14px;
    color: #343435;
    margin-bottom: 16px;
}
.card-structure .detail {
    display: flex;
    align-items: center;
    grid-gap: 12px;
}
.card-structure .detail a {
    border: 1px solid #4BA3BF;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-structure .detail a svg {
    color: #4BA3BF;
    width: 20px;
    height: 20px;
}
.card-structure .detail a.empty{
    pointer-events: none;
    user-select: none;
    border-color: #9C9C9D;
}
.card-structure .detail a.empty svg{
    color: #9C9C9D;
}
.structure-inner .nav-pills .nav-link {
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    padding: 20px 24px;
    color: #797687;
}
.structure-inner .tab-content {
	width: 66%;
}
.structure-inner .nav-pills .nav-link.active, .structure-inner .nav-pills .show>.nav-link {
    color: var(--white-color);
    background: var(--primary-color);
}
.structure-inner .tab-content>.active {
	display: flex;
    flex-direction: column;
}
.structure-inner .card-structure {
	width: 410px;
}
.card-structure.others {
    margin-top: 24px;
    order: 2;
}
.card-structure.main {order: -1;position: relative;}
.card-structure.submain {order: 1;}
.tab-pane.active > .card-structure.submain {margin-top: 40px;}
.tab-pane.active .card-structure.submain ~ .card-structure.submain {margin-top: 24px;}
.card-structure.others:first-child {position: relative; margin-top: 40px;}
.card-structure.main:before, .card-structure.others:first-child:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 100%;
    width: 2px;
    height: 41px;
    background: rgba(121, 118, 135, 0.3);
}
.card-structure.others:first-child:before {
    bottom: 100%;
    top: unset;
}
/* Regions */
.regions-map svg {
    width: 100%;
    height: 100%;
}

.tab-content-reg {
    display: none;
    padding: 15px;
}

.tab-content-reg.current{
    display: inherit;
}
.toggleStructure {
	display: none;
}
.tab-content-reg {
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.tab-content-reg .left h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #050505;
    margin-bottom: 8px;
}
.tab-content-reg .left p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #4BA3BF;
    margin-bottom: 16px;
}
.tab-content-reg .left .detail li {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
}
.tab-content-reg .left .detail li a {
    display: flex;
    align-items: center;
}
.tab-content-reg .left .detail li svg {
    margin-right: 8px;
    color: #9C9C9D;
    width: 20px;
    height: 20px;
    flex: none;
}
.tab-content-reg .right {
    flex: none;
}
.tab-content-reg .right .images {
    width: 220px;
    height: 220px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.tab-content-reg .left .detail li a svg {
    color: #4BA3BF;
    width: 24px;
    height: 24px;
    flex: none;
}
.tab-content-reg .left .detail li a.empty{
    pointer-events: none;
    user-select: none;
    border-color: #9C9C9D;
}
.tab-content-reg .left .detail li a.empty svg{
    color: #9C9C9D;
}

/* About Jastar */
.about-top {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 128px;
}
.about-top-text, .about-top-img {
	width: 50%;
}
.about-top-text h2 {
    font-weight: bold;
    font-size: 56px;
    color: #050505;
    margin-bottom: 16px;
}
.about-top-text p {
    font-weight: 400;
    font-size: 20px;
    color: #343435;
}
.about-top-img .images {
	background-repeat: no-repeat;
    background-size: cover;
    width: 80%;
    height: 360px;
    border-radius: 100px;
    margin-left: auto;
    position: relative;
}
.about-top-img .images:before {
    content: '';
    position: absolute;
    top: 54px;
    left: 42px;
    background: #4BA3BF;
    width: 100%;
    height:100%;
    opacity: 0.3;
    border-radius: 100px;
    z-index: -1;
}

.about-statistics {
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 64px;
}
.about-statistics .about-statistics-text {
    width: calc(25% - 24px);
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    margin-right: 24px;
    padding: 20px;
}
.about-statistics .about-statistics-text:last-child {
    margin-right: 0;
}

.about-statistics .about-statistics-text span {
    font-weight: 700;
    font-size: 40px;
    color: #050505;
    margin-bottom: 12px;
}
.about-statistics .about-statistics-text span small {
    font-weight: 500;
    font-size: 14px;
    color: #050505;
}
.about-statistics .about-statistics-text p {
    font-weight: 500;
    font-size: 18px;
    color: #343435;
    height: 54px;
    margin-bottom: 0;
}



.about-bottom .about-list {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.about-bottom .about-list .about-bottom-text, .about-bottom .about-list .about-bottom-img {
	width: 50%;
}
.about-bottom .about-list .about-bottom-text {
    padding: 64px 32px;
    background: #EFF9FD;
    border-radius: 24px;
}
.about-bottom .about-list .about-bottom-text .a-label {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    background: #4B57BF;
    border-radius: 12px;
    padding: 8px 24px;
    margin-bottom: 24px;
    display: inline-block;
}
.about-bottom .about-list .about-bottom-text h4 {
    font-size: 32px;
    line-height: 32px;
    color: #050505;
    margin-bottom: 12px;
}
.about-bottom .about-list .about-bottom-text p {
    font-weight: 400;
    font-size: 16px;
    color: #343435;
    margin-bottom: 0;
    width: 75%;
}
.about-bottom .about-list .about-bottom-img .images {
	background-repeat: no-repeat;
    background-size: contain;
    width: 80%;
    height: 360px;
    border-radius: 100px;
    margin-left: auto;
    position: relative;
}
.about-bottom .about-list.a-rtl {
    flex-flow: row-reverse;
}
.about-bottom .about-list.a-rtl .about-bottom-img .images {
    margin-right: auto;
    margin-left: unset;
}


/* Video Gallery */
.galleryInnerVideo {
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    gap: 24px;
}
.galleryInnerVideo a {
    display: flex;
}
.galleryInnerVideo a img {
    width: auto;
    height: 500px;
    border-radius: 24px;
    object-fit: cover;
}

.galleryInnerVideo a {
    position: relative;
}
.galleryInnerVideo a:before {
    content: "";
    width: 64px;
    height: 64px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: flex;
    margin: auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}
.galleryInnerVideo a:after {
    content: "";
    position: absolute;
    left: 8px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #dfdfdf;
}


/* Contact */
.contacts-grid {
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill,calc(25% - 24px));
}
.contacts-main {
	margin-bottom: 32px;
}
.contact-item {
    display: flex;
    flex-wrap: wrap;
}
.contact-item img {
	margin-bottom: 12px;
    width: 100%;
    height: 80px;
    object-fit: contain;
    object-position: left;
}
.contact-item h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #050505;
	margin-bottom: 12px;
}
.contact-item .info-contact {
    width: 100%;
}
.contact-item .info-contact span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #343435;
	margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.contact-item .info-contact span svg {
    color: #9C9C9D;
    width: 24px;
    height: 24px;
    flex: none;
    margin-right: 8px;
}
.contact-item .info-contact span:last-child {
	margin-bottom: 0;
}


.page-wrapper {
	padding: 180px 0 64px;
}
.page-wrapper .cat-name {
    font-weight: bold;
    font-size: 64px;
    line-height: 72px;
    color: #050505;
    margin-bottom: 40px;
}
.page-wrapper .cat-name span {
    font-size: 48px;
    line-height: 56px;
}
.page-wrapper .card-e .info h3 {
	display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /*min-height: 72px;*/
}
.page-wrapper .owl-projects .owl-item.active:not {
   
}

.mobileVersion {
    display: none;
}
.descVersion {
    display: block;
}

/* Gallery */
.gallery-item {
	margin-bottom: 32px;
}
.title-gallery h2 {
	font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #050505;
    margin-bottom: 8px;
}
.title-gallery span {
	font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #9C9C9D;
}
.gallery-item .gallery {
    margin-top: 32px;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    overflow-x: auto;
}
.gallery-item .gallery a {
    display: flex;
    margin-right: 24px;
}
.gallery-item .gallery a img {
	width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}
.gallery-item .gallery a:first-child img {
	width: 600px;
}


.gallery-section .gallery {
    margin-top: 32px;
    display: grid;
    align-items: center;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: flex-start;
}
.gallery-section .gallery a {
    display: flex;
    flex: 0 0 25%;
}
.gallery-section .gallery a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.page_form__inner .captcha {
	width: 33%;
}

/* Footer */
.footer {
    background: #4BA3BF;
}
.footer .footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    color: #FFFFFF;
}
.footer .footer-inner .footer-right {
    display: flex;
    align-items: flex-start;
    width: 50%;
}
.footer-inner-logo {
	width: 33%;
}
.footer-inner-logo img {
	margin-bottom: 16px;
}
.footer-inner-links {
	width: 100%;
}
.footer-inner-links h4 {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 24px;
}
.footer-inner-links ul li {
    margin-bottom: 16px;
}
.footer-inner-links ul li:last-child {
    margin-bottom: 0;
}
.footer-inner-links ul li a {
	font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.7;
    transition: .3s;
}
.footer-inner-links ul li a:hover {
    opacity: 1;
}
.footer-inner-links .social-links {
    display: flex;
    align-items: center;
}
.footer-inner-links .social-links a {
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    margin-right: 12px;
}


.footer .copyright {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .copyright p {
	font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #FFFFFF;
    margin-bottom: 0;
}


.modal-registration .modal-header h1 {
    font-family: 'Brygada';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: #050505;
}
.modal-registration .modal-footer .btn {
	width: 100%;
}

/* 
@keyframes moveRight {
    0% {
        background-position: 0% bottom;
    }
    100% {
        background-position: 100% bottom;
    }
} */
@media (min-width: 768px) {
    .owl-projects .owl-stage {
        padding-left: 0!important;
    }
    .owl-projects .owl-item {
        transform: scale(0.9) translateX(-60px);
        transition: .3s;
    }
    .owl-projects .owl-item.active {
        transform: scale(1) translateX(0);
    }
}
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
        width: 100%
    }
    .header-buttons form {
    	width: 120px;
    }

    .mobileVersion {
        display: block;
    }
    .descVersion {
        display: none;
    }
    #toggle {
        width: 32px;
        height: 32px;
        position: relative;
        padding: 0;
        border: none;
        transition: .3s;
    }
    #toggle span {
        width: 24px;
        height: 1px;
        display: block;
        background: #6ebdb8;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 4px;
        margin: auto;
    }
    #toggle:before, #toggle:after {
        content: "";
        width: 24px;
        height: 1px;
        display: block;
        background: #6ebdb8;
        position: absolute;
        left: 0;
        right: 0;
        border-radius: 4px;
        margin: auto;
        transition: .3s;
    }
    #toggle:before {
        top: 10px;
        bottom: 0;
    }
    #toggle:after {
        top: 0;
        bottom: 10px;
    }
    .header-pages #toggle:before, .header-pages #toggle:after, .header-pages #toggle span {
    	background: white;
    }
    .header #toggle.collapsed.on span {
    	opacity: 0;
    }
    .header #toggle.collapsed.on:before{
    	transform: rotate(45deg);
        top: 0;
    }
    .header #toggle.collapsed.on:after{
    	transform: rotate(-45deg);
        bottom: 0;
    }
    .header .navbar .navbar-nav {
    	padding: 16px 0;
    }
    .pad-wrap {
    	padding: 40px 0;
    }
    .structure-grid, .projects-grid, .events-grid, .contacts-grid {
        grid-template-columns: 100%;
    }
    .title-page {
        margin-bottom: 24px;
    }
    .title-page h2 {
        font-size: 28px;
        margin-bottom: 0px;
        line-height: 36px;
    }
    .owl-nav .owl-prev, .owl-nav .owl-next {
        width: 32px;
        height: 32px;    
        flex: none;
    }
    .header {
        top: 16px;
        z-index: 11;
    }
    .main-banner {
        padding-top: 116px
    }
    .main-banner .main-banner-inner {
    	max-width: 100%;
    }
    .main-banner h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .main-banner p {
        font-size: 16px;
        line-height: 24px
    }
    .main-banner::before {
        background-size: 320%;
    }

    .card-p-b {
        flex-direction: column-reverse;
        padding: 16px;
        flex-wrap: wrap;
        height: auto;
    }
    .card-p-b .left, .card-p-b .right {
        width: 100%;
    }
    .card-p-b .left h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .card-p-b .left p {
        font-size: 16px;
        line-height: 24px;
    }
    .btn-card-p, .btn-events {
    	flex-wrap: wrap;
        grid-gap: 12px;
    }
    .btn-card-p button, .btn-card-p a {
        width: 100%;
        margin-left: 0;
    }
    .card-p-b .right .images {
        height: 200px;
        background-position: center;
        position: unset;
        width: 100%;
        clip-path: none;
        margin-bottom: 12px;
    }
    .btn-card-p a.btn-pry {
    	margin-right: 0;
    }
    .eventes-items .owl-events .owl-stage-outer {
    	padding-top: 0;
    }
    .events-gallery-full {
        margin-top: 24px;
    }
    .card-structure .info h3 {
        font-size: 16px;
        line-height: 20px;
        max-height: unset;
    }
    .structure-inner {
        flex-wrap: wrap;
        grid-gap: 24px;
    }
    .structure-inner .nav, .structure-inner .tab-content {
    	width: 100%;
    }
    .structure-inner .nav .nav-item button {
        width: 100%;
    }
    .structure-inner .tab-content>.tab-pane {
    	grid-template-areas:
        "a"
        "b"
        "c";
    }
    .structure-inner .card-structure {
        width: 100%;    
    }
    
    .grid-gallery {
        display: flex;
        grid-gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .grid-gallery .gallery-video {
        width: 100%;
        flex: 0 0 100%;
    }
    .grid-gallery #gallery-container {
        flex-wrap: nowrap;
        width: 100%;
        grid-gap: 16px;
        flex: 0 0 100%;
        justify-content: flex-start !important;
    }
    .grid-gallery #gallery-container .item-glry {
        flex: 0 0 100%;
    }
    .grid-gallery .gallery-video img {
    	height: 250px;
    }

    .footer .footer-inner {
        flex-wrap: wrap;
    }
    .footer-inner-logo, .footer-inner-links {
    	width: 100%;
        margin-bottom: 24px;
    }
    .footer-inner-links h4 {
        margin-bottom: 16px;
    }
    .footer-inner-links ul li {
        margin-bottom: 12px;
    }

    .page-wrapper .cat-name {
        font-size: 28px;
        line-height: 1;
        margin: 0;
    }
    .about-top {
        flex-wrap: wrap;
        margin-bottom: 64px;
    }
    .about-top-text, .about-top-img {
    	width: 100%;
    }
    .about-top-text h2{
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 36px;
    }
    .about-top-text p {
        font-size: 16px;
    }
    .about-top-img .images {
        background-position: center;
        background-size: cover;
        width: 90%;
        margin-right: auto;
        margin-left: unset;
        height: 260px;
        border-radius: 50px;
    }
    .about-top-img .images:before {
        top: 20px;
        left: 20px;
        border-radius: 50px;
    }
    .about-statistics {
    	overflow-x: auto;
        padding-bottom: 24px;
        margin-bottom: 40px;
    }
    .about-statistics .about-statistics-text {
        width: 100%;
    }
    .about-statistics .about-statistics-text p {
    	white-space: nowrap;
    }
    .about-bottom .about-list, .about-bottom .about-list.a-rtl {
    	flex-wrap: wrap;
    }
    .about-bottom .about-list .about-bottom-text, .about-bottom .about-list .about-bottom-img {
        width: 100%;
    }
    .about-bottom .about-list .about-bottom-text {
    	padding: 32px 16px;
        margin-bottom: 24px;
    }
    .about-bottom .about-list .about-bottom-text h4 {
        font-size: 24px;
        line-height: 28px;
    }
    .about-bottom .about-list .about-bottom-text p {
    	width: 100%;
    }
    .about-bottom .about-list .about-bottom-img .images {
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 260px;
        border-radius: 50px;
    }
    .projects-full h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .other-projects-list {
        flex-wrap: wrap;
    }
    .other-projects-list .card-projects {
    	width: 100%;
    }

    .map {
        display: none;
    }
    .map-content {
    	width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .tab-content-reg {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .tab-content-reg .right, .tab-content-reg .right .images {
    	width: 100%;
    }
    .tab-content-reg .left p {
        font-size: 14px;
        line-height: 18px;
    }

    .grid-gallery #gallery {
        flex-wrap: nowrap;
        display: flex;
        width: 250px;
        max-height: 250px;
        overflow-y: unset;
        overflow-x: auto;
    }
    .footer .footer-inner .footer-right {
        flex-wrap: wrap;
        width: 100%;
    }
}











