html {
    font-size: 10px;
}
.main_page {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_page_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1000px;
  min-height: 550px;
}
.main_page_wr {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main_page_site_wr {
  position: relative;
  display: block;
  /* width: 33.333%; */
  flex-grow: 1;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.2s;
}
.show_page_anim .main_page_site_wr:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.2s;
}
.show_page_anim .main_page_site_wr:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
   transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.3s;
}
.show_page_anim .main_page_site_wr:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
   transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.4s;
}
/*.show_page_anim .main_page_site_wr {
  opacity: 1;
  transform: translate(0);
}*/
.main_page_site_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_page_site_wr:hover .main_page_site_bg {
  transform: scale(1);
}
.main_page_site_white_bg_wr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.main_page_site_white_bg {
  display: block;
  width: 100%;
  height: auto;
}
.main_page_site_cont_wr {
  position: absolute;
  bottom: 5.5vh;
  width: calc(100% - 6rem);
  padding: 0 3rem;
}
.main_page_site_cont_logo_wr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18vw;
  min-width: 170px;
  max-width: 32vh;
  height: 18vw;
  min-height: 170px;
  max-height: 32vh;
  margin: 0 auto;
  margin-bottom: 2rem;
  transform: scale(0.9);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_page_site_wr:hover .main_page_site_cont_logo_wr {
  transform: scale(1);
}
.main_page_site_cont_logo {
  width: auto;
  height: 100%;
  opacity: 0;
  transform: translate(0, 20rem);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.5s;
}

.show_page_anim .main_page_site_cont_logo {
  opacity: 1;
  transform: translate(0);
}
.show_page_anim .main_page_site_wr:nth-child(2) .main_page_site_cont_logo {
  opacity: 1;
  transform: translate(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.7s;
}
.show_page_anim .main_page_site_wr:nth-child(3) .main_page_site_cont_logo {
  opacity: 1;
  transform: translate(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.9s;
}
.main_page_site_cont_txt_wr {
  transform: scale(0.9);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_page_site_wr:hover .main_page_site_cont_txt_wr {
  transform: scale(1);
}
.main_page_site_cont_txt {
  margin-bottom: 3rem;

  font-family: "MyriadPro-Bold";
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 4px 1px 10px #ffffff, 0 0 1em #ffffff;

  opacity: 0;
  transform: translate(0, 20rem);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.8s;
}
.show_page_anim .main_page_site_cont_txt {
  opacity: 1;
  transform: translate(0);
}
.show_page_anim .main_page_site_wr:nth-child(2) .main_page_site_cont_txt {
  opacity: 1;
  transform: translate(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1s;
}
.show_page_anim .main_page_site_wr:nth-child(3) .main_page_site_cont_txt {
  opacity: 1;
  transform: translate(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.2s;
}
.main_page_site_cont_btn_wr {
  width: 100%;
  display: flex;
  justify-content: center;
  transform: scale(0.9);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_page_site_wr:hover .main_page_site_cont_btn_wr {
  transform: scale(1);
}
.main_page_site_cont_btn {
  display: inline-flex;
  padding: 1rem 5.5rem;
  padding-top: 1.4rem;
  border-radius: 10rem;

  font-family: "MyriadPro-Regular";
  font-size: 2.8rem;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;

  opacity: 0;
  transform: translate(0, 20rem);
  transition: transform 0.9s cubic-bezier(.19,1,.22,1) 0.9s, opacity 0.9s cubic-bezier(.19,1,.22,1);
}
.show_page_anim .main_page_site_cont_btn {
  opacity: 0.7;
  transform: translate(0);
}
.show_page_anim .main_page_site_wr:nth-child(2) .main_page_site_cont_btn {
  opacity: 0.7;
  transform: translate(0);
  transition: transform 0.9s cubic-bezier(.19,1,.22,1) 1.1s;
}
.show_page_anim .main_page_site_wr:nth-child(3) .main_page_site_cont_btn {
  opacity: 0.7;
  transform: translate(0);
  transition: transform 0.9s cubic-bezier(.19,1,.22,1) 1.3s;
}
.main_page_site_wr:hover .main_page_site_cont_btn {
  opacity: 1 !important;
  transition: opacity 0.9s cubic-bezier(.19,1,.22,1);
}
.main_page_site_cont_btn span {
  position: relative;
}
.main_page_top_blue_bg_wr {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100rem;
  pointer-events: none;

  opacity: 0;
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.5s;
}
.show_page_anim .main_page_top_blue_bg_wr {
  opacity: 1;
}
.main_page_top_blue_bg {
  display: block;
  width: 100%;
  height: auto;
}
.main_page_top_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.main_page_top_cont {
  position: relative;
  width: 100%;
    height: 11.6rem;
  margin-bottom: 0.5vw;
  display: flex;
  align-items: center;
    justify-content: space-between;
  background: rgba(256, 256, 256, 0.5);

  opacity: 0;
}
.show_page_anim .main_page_top_cont {
  opacity: 1;
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.5s;
}
.main_page_top_cont_txt {
display: flex;
    justify-content: center;
    padding: 1.6rem 2rem;
    font-family: "AgencyGothicCT-Condensed";
    font-size: 10rem;

    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #980c3a;
    opacity: 0;
    transform: translateY(-10rem);
}
.show_page_anim .main_page_top_cont_txt {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.9s;
}
.main_page_top_cont_img {
    height: 100%;
    display: block;
    width: auto;
    opacity: 0;
    transform: translateX(15rem);
}
.show_page_anim .main_page_top_cont_img {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.8s;
}
.main_page_top_small_txt {
  width: 100%;

  font-family: "MyriadPro-Semibold";
  font-size: 2.9rem;
  text-transform: uppercase;
  text-shadow: 4px 1px 10px #ffffff, 0 0 1em #ffffff;
  text-align: center;
  color: #6e6b6c;

  opacity: 0;
}
.show_page_anim .main_page_top_small_txt {
  opacity: 1;
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1.7s;
}
/*----------------------------------------------------------
--------- MAIN MAP -----------------------------------------
----------------------------------------------------------*/
.main_page_map_wrap {
  position: relative;
  width: 100%;
  height: 83rem;
  overflow: hidden;

  opacity: 0;
  transform: translateY(100%);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.2s;
}
.show_page_anim .main_page_map_wrap {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.6s;
}
.main_page_map_img_wr {
  position: relative;
  width: 100%;
  height: 100%;
}
#map_wrap{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
#map_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#map_svg {}

.main_marker {
  position: absolute;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
/* .main_marker_plus {
  transform: translate(-100%, -100%);
} */
.main_marker_img_wr {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_marker_plus .main_marker_img_wr{
  bottom: 0;
  right: 0;
}
.main_marker_varsh .main_marker_img_wr{
  bottom: 0;
  left: 0;
}
.main_marker_varsh_2 .main_marker_img_wr{
  top: 0;
  right: 0;
}
.main_marker_hover .main_marker_img_wr,
.main_marker:hover .main_marker_img_wr {
  /* width: 120%;
  height: 120%; */
  transform: scale(1.2);
}
.main_marker_img_wr img {
  display: block;
  width: 100%;
  height: auto;
}
.main_marker_text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 80%);
  display: inline-flex;
  padding: 0.7rem 1.5rem;
  border-radius: 10rem;
  background: #fff;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_marker_hover .main_marker_text {
  opacity: 1;
  transform: translate(-50%, 150%);
}
.main_show_map_btn {
  position: absolute;
  top: 40%;
  left: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6.7rem;
  padding: 0 4rem 0 3rem;
  background: #192848;
  border-radius: 10rem;
  cursor: pointer;
}
.main_show_map_ico_wr {
  width: 1.8rem;
  height: 2.4rem;
  margin-right: 1.8rem;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_show_map_btn:hover .main_show_map_ico_wr {
  transform: scale(1.2);
}
.main_show_map_btn path {
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_show_map_btn:hover path {
  fill: #EA3D3E;
}
.main_show_map_txt {
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #fff;
}

.main_real_map_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);

  background: red;
}
.main_real_map_wrap.show_map {
  opacity: 1;
  pointer-events: all;
}

#map {
  width: 100%;
  height: 100%;
}
.main_map_close_wr {

    z-index: 1;
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_map_close_wr:hover {
  transform: rotate(90deg)
}
.main_map_close_wr img {
  display: block;
  width: 100%;
  height: auto;
}

.main_gp_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_gp_wrap.main_gp_show {
  opacity: 1;
  pointer-events: all;
}
.varsh_genplan {
  /*overflow: hidden;*/
}
.main_gp_wr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_gp_link_btn_wr {
  width: 100%;
  padding-bottom: 4.4rem;
  display: flex;
  justify-content: center;
      position: absolute;
    bottom: 0;
}
.main_gp_link_btn {
  /* position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%); */
  margin: 0 auto;
  display: inline-flex;
  align-items: center;

  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
}
.main_gp_link_btn.varsh {
  height: 4rem;
  padding: 0 3rem;
  background: #462a0a;
  border-radius: 10rem;
  position: relative;
  overflow: hidden;
}

.main_gp_link_btn.varsh:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 0.3rem;
    background: rgba(52, 198, 244, 0.6);
    opacity: 0;
    transform: translate(0, 50%);
    transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.2s;
    z-index: 1;
}
.main_gp_link_btn.varsh:hover:before {
    height: 100%;
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_gp_link_btn_text{
	position: relative;
	z-index: 1;
}
.main_gp_varsh_wr {
  display: flex;
  overflow: hidden;
      height: 100%;
}
.main_gp_varsh_half {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_gp_varsh_img {
  width: auto;
  max-width: 100%;
  min-width: 450px;
  height: auto;
  max-height: 100%;
}

.main_gp_varsh_right {
  width: 50%;
  height: 100%;
}

.main_gp_varsh_main_name {
margin-bottom: 2vh;
    /* padding-left: 4rem; */
    font-family: "PFBeauSansPro-Bold";
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #5b3913;
    line-height: 1;
}
.main_gp_varsh_title {
  margin-bottom: 6vh;

  font-family: "PFBeauSansPro-SemiBold";
  font-size: 2.7rem;
  text-transform: uppercase;
  color: #5b3913;
}
.main_gp_varsh_items_wrap {
  padding-right: 10vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.main_gp_varsh_item_wr {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.main_gp_varsh_item_ico_rec {
  width: 4.3rem;
  height: 2.7rem;
  margin-right: 1.8rem;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
  text-transform: uppercase;
  color: #f30000;
}
.main_gp_varsh_item_ico_circle {
  width: 2.7rem;
  height: 2.7rem;
  margin-left: 0.6rem;
  border: 1px solid #1192bb;
  border-radius: 50%;
}
.main_gp_varsh_item_ico_station {
  width: 3rem;
  height: 3rem;
  margin-left: 0.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #ffffff;
}
.main_gp_varsh_item_img {
  width: 11%;
  display: flex;
  align-items: center;
}
.main_gp_varsh_item_img img {
  display: block;
  width: 100%;
  height: auto;
}
.main_gp_varsh_item_text {
  width: 84%;
  font-family: "PFBeauSansPro-Bbook";
  font-size: 1.6rem;
  color: #484848;
}
.main_gp_varsh_item_text_last {
  position: absolute;
  width: 28vw;
  font-family: "PFBeauSansPro-Bbook";
  font-size: 1.6rem;
  color: #f40000;
}

/*---------------------------------------------------------------------
-----  MAIN VARSH PLUS GENPLAN ----------------------------------------
----------------------------------------------------------------------*/

.main_gp_varsh_pluscontainer {
  display: flex;
  width: 100%;
  height: 92%;
}
.main_gp_varsh_plusleft {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 53%;
  height: 100%;
  padding: 0 5rem;
}
.main_gp_varsh_plusleft_img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.main_gp_varsh_plusright {
  position: relative;
  width: calc(100% - 53%);
  height: 100%;
  padding-right: 3rem;
  display: flex;
  align-items: center;
}
.main_gp_varsh_plusright_cont {

}
.main_gp_varsh_plusright_main_txt {
    width: 100%;
    /* padding-top: 22rem; */
    font-family: "PFBeauSansPro-Bold";
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #5b3913;
    line-height: 1;
}
.main_gp_varsh_plusright_txt {
  width: 100%;
  padding-bottom: 5vh;
  font-family: "PFBeauSansPro-SemiBold";
  font-size: 2.7rem;
  text-transform: uppercase;
  color: #5b3913;
}
.main_gp_varsh_plusright_items_wr {
  display: flex;
  height: calc(44vh);
  overflow: hidden;
  min-height: 274px;
}
.main_gp_varsh_pluscontainer .mCSB_container {
  display: flex;
}
.main_gp_varsh_plusright_items_cont {
  width: 50%;
}
.main_gp_varsh_plusright_item_wr {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
  padding-left: 0.8rem;
}
.main_gp_varsh_plusright_item_img_wr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 4.5rem;
  height: 3rem;
}
.main_gp_varsh_plusright_item_img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.main_gp_varsh_plusright_item_txt {
  padding-left: 1rem;
}
/*---------------------------------------------------------------------
-----  MAIN VARSH PLUS GENPLAN END ------------------------------------
----------------------------------------------------------------------*/
/*---------------------------------------------------------------------
-----  MAIN VARSH 2 GENPLAN -------------------------------------------
----------------------------------------------------------------------*/

.parent_tittle{
	color:#b2093a;
	font-size: 4.5rem;
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
  margin-bottom: 2vh;
}

.main_gp_varsh_2_page{
	position: relative;
	height: 100%;
	height: 100%;
}
.main_gp_varsh_2_wrap{
	position: relative;
    padding-bottom: 16rem;
	display: flex;
	    padding-top: 8vh;
}
.main_gp_varsh_2_img_wr {
width: 50%;
    position: relative;
    padding: 3rem;
}
.main_gp_varsh_2_img{
display: block;
    max-width: 100%;
    /* height: auto; */
    max-height: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

}
.show_page_anim .main_gp_varsh_2_img{
    transform: translateX(0);
	transition: 1.9s all 1s cubic-bezier(.19,1,.22,1);
}
.main_gp_varsh_2_left{
  position: relative;
  flex-grow: 1;
  max-width: calc(780px + 14.7rem + 1.7rem);
  top: 0;
  padding-top: calc(4vh + 1rem);
    padding-left: 8vw;
}

.main_gp_varsh_2_info{

	position: relative;
}

.main_gp_varsh_2_oboz_title{
position: relative;
    font-size: 2.3rem;
    color: #242d48;
    font-weight: bold;
    /* font-family: "Myriad-Bold"; */
    /* font-family: "SolomonSans-Bold"; */
    margin-bottom: 2vh;
    text-transform: uppercase;
    transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.6s;
}
.main_gp_varsh_2_oboz_wrap{
display: flex;
}
.main_gp_varsh_2_oboz_cont{
    width: 51%;
}
.main_gp_varsh_2_oboz_cont:first-child{
    margin-right: 1%;
    width: 48%;
}
.main_gp_varsh_2_oboz_wr{
    display: flex;

    opacity: 0;
    margin-bottom: 1.3rem;
    transform: translateX(-10rem);
  opacity: 1;
  transform: translateX(0);
}

.main_gp_varsh_2_oboz_img_wr{
    width: 3.7rem;
    max-height: 3.3rem;
    /*min-height: 33px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_gp_varsh_2_oboz_img{
	max-width: 95%;
	max-height: 100%;
}
.main_gp_varsh_2_oboz_defis{
	color: #242d48;
    font-size: 1.8rem;
	margin:0 .5rem 0 1rem;
}
.main_gp_varsh_2_oboz_text{
    color: #242d48;
    font-size: 1.8rem;
width: calc(100% - 3.7rem - 1.5rem);
    font-family: "MyriadPro-Regular";
}
.main_gp_varsh_2_oboz_text span{
	color:#b2093a;
	font-family: "SolomonSans-Italic";
	font-size: 1.8rem;
	display: block;
	font-family: "MyriadPro-Italic";
}

.mCSB_scrollTools {
  opacity: 0 !important;
}
.show_page_anim .mCSB_scrollTools {
  opacity: 0.8 !important;
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 1s !important;

}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: transparent !important;
}
.main_gp_varsh_2_etapu{
	/* transform: translateX(calc(-102% - 16rem)); */
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.show_page_anim .main_gp_varsh_2_etapu {
    transform: translateX(0);
    transition: 1.9s all 1.1s cubic-bezier(.19,1,.22,1);
}
.main_gp_varsh_2_etap_title{
position: relative;
    font-size: 2.3rem;
    color: #242d48;
    font-weight: bold;
    margin-bottom: 1vh;
    margin-top: 2vh;
    text-transform: uppercase;
}
.main_gp_varsh_2_etap_wr{
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
    white-space: nowrap;
	padding-right: 1rem;
}
.main_gp_varsh_2_etap_img_wr{
	width:3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	border: 2px solid #77beeb;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #242d48;
	font-size: 2.3rem;
	font-family: "SolomonSans-Bold";
	margin-right: 1rem;
}

.main_gp_2_link_btn_m {
	 margin-top: 4vh;
	position: relative;
	display: inline-block;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_gp_2_link_btn_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.main_gp_2_link_btn_text {
    position: relative;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
..main_gp_2_link_btn_m path {
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}
.main_gp_2_link_btn_m:hover path {
    fill: #242d48;
}




/*---------------------------------------------------------------------
-----  MAIN VARSH 2 GENPLAN END ------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------
--------- END MAIN MAP -------------------------------------
----------------------------------------------------------*/

@media screen and (max-width: 1650px){
	.main_page_top_cont{
    	height: 8.6rem;
	}
	.main_page_top_cont_txt{
    	font-size: 7.5rem;
	}
	.main_page_top_small_txt{
	    font-size: 2.2rem;
	}
 /* .main_page_top_cont_txt {
    font-size: 7.5rem;
  }
  .main_page_top_small_txt {
    font-size: 2rem;
  }*/
}
@media screen and (max-width: 1350px), (max-height: 800px) {
	.main_page_top_cont{
    	height: 5.6rem;
	}
	.main_page_top_cont_txt{
    	font-size: 4.5rem;
	}
	.main_page_top_small_txt{
	    font-size: 1.4rem;
	}
  .main_page_site_cont_txt {
      font-size: 3.4rem;
  }
}


/* ------------------------------
-------- MOBILE STYLES -------
------------------------------ */

.main_page_m {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.main_page_wrap_m {
    position: relative;
    width: 100%;
    height: 100%;
}
.main_page_site_wr_m {
    position: relative;
    width: calc(100% - 10vmin);
    min-height: 90vmin;
    padding: 5vmin;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.main_page_map_wrap_m {
  position: relative;
  width: 100%;
  height: 170vmin;
  overflow: hidden;
}
.main_marker_m {
  position: absolute;
  width: 15vmin;
  height: 15vmin;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_show_map_btn_m {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 4vmin;
  transform: translateX(-50%);
  height: 13vmin;
  padding: 0 9vmin 0 7vmin;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #192848;
  border-radius: 10vmin;
}
.main_show_map_ico_wr_m {
  width: 4vmin;
  height: 6vmin;
  margin-right: 3vmin;
}
.main_show_map_txt_m {
  font-size: 4vmin;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
.main_map_close_wr_m {
  position: absolute;
  top: 5vmin;
  right: 5vmin;
  width: 10vmin;
  height: 10vmin;
}
.pop_close {
  position: fixed;
}
.main_map_close_wr_m img {
  display: block;
  width: 100%;
  height: auto;
}

.main_gp_wr_m {
  display: block;
  padding: 0 3vmin;
}
/* MAIN VARSH POPUP */
.main_gp_varsh_main_name_m {
    font-family: "PFBeauSansPro-Bold";
    font-size: 12vmin;
    text-transform: uppercase;
    color: #5b3913;
    text-align: center;
    margin-bottom: 10vmin;
    padding-top: 5vmin;
}
.main_gp_varsh_top_m {
  width: 100%;
  height: 130vmin;
  margin-bottom: 4vmin;
  overflow: auto;
}
.main_gp_varsh_bottom_m {
  width: 100%;
  margin-bottom: 4vmin;
}
.main_gp_varsh_img_m {
  width: 200vmin;
  height: auto;
}

.main_gp_varsh_title_m {
  margin-bottom: 8vmin;
  font-family: "PFBeauSansPro-SemiBold";
  font-size: 6vmin;
  text-transform: uppercase;
  text-align: center;
  color: #5b3913;
}
.main_gp_varsh_item_wr_m {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3vmin;
}
.main_gp_varsh_item_text_m {
    width: 75%;
    font-family: "PFBeauSansPro-Bbook";
    font-size: 4vmin;
    color: #484848;
}
.main_gp_varsh_item_text_last_m {
    font-family: "PFBeauSansPro-Bbook";
    font-size: 4vmin;
    color: #f40000;
}
.main_gp_link_btn_wr_m {
width: 100%;
    padding-bottom: 9vmin;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
}
.main_gp_link_btn_m {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    font-size: 5vmin;
    text-transform: uppercase;
    color: #fff;
}
.main_gp_link_btn_m.varsh {
    height: 10vmin;
    padding: 0 6vmin;
    background: #462a0a;
    border-radius: 10rem;
}
/* MAIN VARSH POPUP END */
/* MAIN VARSH PLUS POPUP  */
.main_gp_varsh_pluscontainer_m {
  width: 100%;
}
.main_gp_varsh_plusright_main_txt_m {
    width: 100%;
    margin-bottom: 3vmin;
    padding-top: 6vmin;
    font-family: "PFBeauSansPro-Bold";
    font-size: 11vmin;
    text-transform: uppercase;
    text-align: center;
    color: #5b3913;
}
.main_gp_varsh_plusleft_m {
    width: 96%;
    height: 76vh;
    margin: 0 auto;
    margin-bottom: 5vmin;
    overflow: auto;
}
.main_gp_varsh_plusleft_img_m {
    display: block;
    width: 160vmin;
    height: auto;
}
.main_gp_varsh_plusright_m {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.main_gp_varsh_plusright_txt_m {
    width: 100%;
    padding-bottom: 6vmin;
    font-family: "PFBeauSansPro-SemiBold";
    font-size: 8vmin;
    text-transform: uppercase;
    text-align: center;
    color: #5b3913;
}
.main_gp_varsh_plusright_items_wr_m {
  width: 100%;
  height: 100%;
  margin-bottom: 4vmin;
}
.main_gp_varsh_plusright_item_wr_m {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1vmin;
    padding-left: 2vmin;
}
/* MAIN VARSH PLUS POPUP END */
/* MAIN VARSH 2 POPUP */
.main_varsh_2_tittle_m {
  margin-bottom: 5vmin;
  padding-top: 5vmin;
  font-size: 11vmin;
  text-align: center;
  color: #b2093a;
}
.main_gp_varsh_2_wrap_m {
  position: relative;
  width: 94%;
  margin: 0 auto;
}
.main_gp_varsh_2_left_m {
    position: relative;
    width: 100%;
    height: 100%;
    height: 70%;
}
.main_gp_varsh_2_img_wr_m {
    width: 100%;
    height: 100%;
    margin-bottom: 7vmin;
    overflow: auto;
}
.main_gp_varsh_2_img_m {
    display: block;
    width: 160vmin;
    height: auto;
}

.main_gp_varsh_2_oboz_wrap_m {
  display: block;
}
/* MAIN VARSH 2 POPUP END */


.main_page_site_white_bg_wr_m {
    position: absolute;
    bottom: -13vh;
    left: 0;
    right: 0;
    overflow: hidden;
}
.main_page_site_white_bg_m {
    display: block;
    width: 100%;
    height: auto;
}
.main_page_site_cont_wr_m {
    position: relative;
    margin-top: 20vh;
}
.main_page_site_cont_logo_wr_m {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vmin;
    height: 40vmin;
    margin: 0 auto;
    margin-bottom: 3vmin;
}
.main_page_site_cont_logo_m {
    width: auto;
    height: 100%;
}
.main_page_site_cont_txt_m {
    margin-bottom: 4vmin;
    font-family: "MyriadPro-Bold";
    font-size: 7vmin;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 4px 1px 10px #ffffff, 0 0 1em #ffffff;
}
.main_page_site_cont_btn_wr_m {
    width: 100%;
    display: flex;
    justify-content: center;
}
.main_page_site_cont_btn_m {
    display: inline-flex;
    padding: 1.5vmin 8vmin;
    padding-top: 2vmin;
    border-radius: 10vmin;
    font-family: "MyriadPro-Regular";
    font-size: 4vmin;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
}


.main_page_top_bg_wr_m {
  position: absolute;
  top: 0;
  right: 0;
  height: 40vmin;
}
.main_page_top_bg_m {
  display: block;
  height: 120%;
  width: auto;
}
.main_page_top_wr_m {
    position: absolute;
    top: 2vmin;
    left: 0;
    right: 0;
    width: 95vmin;
    margin: 0 auto;
}
.main_page_top_cont_m {
    position: relative;
    width: 100%;
    height: 20vmin;
    margin-bottom: 1vmin;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(256, 256, 256, 0.5);
}
.main_page_top_cont_txt_m {
    padding-left: 2vmin;
    padding-top: 3vmin;
    font-family: "AgencyGothicCT-Condensed";
    font-size: 16vmin;
    text-transform: uppercase;
    color: #980c3a;
}
.main_page_top_cont_img_m {
    position: absolute;
    right: 0;
    display: block;
    height: 100%;
    width: auto;
}
.main_page_top_small_txt_m {
  width: 102%;
  transform: translateX(-1%);

  font-family: "MyriadPro-Semibold";
  font-size: 4.5vmin;
  text-transform: uppercase;
  text-shadow: 4px 1px 10px #ffffff, 0 0 1em #ffffff;
  text-align: center;
  color: #6e6b6c;
}

/* MAIN VARSH 3 POPUP */



.genplan_wrap{
	position: relative;
	height: 100%;
	height: 100%;
	display: flex;
	z-index: 1;
    justify-content: end;
}
.genplan_wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.15;
    background: linear-gradient(to bottom, #00C4FF 0%, rgba(0, 196, 255, 0.00) 100%);
}
.genplan_wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.15;
    background: linear-gradient(to top, #00C4FF 0%, rgba(0, 196, 255, 0.00) 100%);
}
.genplan_page .umova_pdf_wrap {

}
.tittle_wrap{
    display: flex;
    align-items: end;
    z-index: 2;	
margin-bottom: 2rem;
}
.line_title{
    border-top-right-radius: 15px;
    height: 3.4rem;
    background: #6DBB91;
    width: 7.7rem;
    margin-right: 1.7rem;
    position: absolute;
    left: 0;
}

.line_title.line_title_varsh4{
	border-radius: 0 15px 15px 0;
    height: 1.8rem;
    background: #868889;
    idth: 7.7rem;
    margin-bottom: 0.4rem;
    margin-right: 1.7rem;
    position: absolute;
    left: 0;
    top: 17rem;
}

.tittle_wr{
	
}
.tittle{
	        position: relative;
    /* line-height: 0.7; */
    position: relative;
    font-size: 4.5rem;
    font-weight: 700;
    color: #264646;
    text-transform: uppercase;
}
.parent_tittle{
	
}
.genplan_page .umova_pdf_text {
    line-height: 1.8rem;
}
#genplan_svg{
	position: absolute!important;
	top: 0!important;
	left: 0!important;
}


.genplan_img{
    display: block;
    /* height: 100%; */
    margin: auto;
    max-height: calc(100% - 3rem);
    margin-right: 2.7rem;
    max-width: 50%;
}

.genplan_left{
position: relative;
    flex-grow: 1;
    max-width: calc(780px - 7.3rem + 1.7rem);
    top: 0;
    padding-top: calc(21vh + 9rem);
    padding-top: calc(9vh + 9rem);
    left: 0;
    padding-left: 9rem;
    position: absolute;
    top: 9rem;
    top: 3rem;
    z-index: 1;
    
}

/*-------------VARSH 4$------------*/
.varsh_4_genplan .genplan_left{
    padding-top: calc(0vh + 9rem);  
}


.genplan_line_1_varsh4_wr {
    height: 106%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: -1rem;
    left: -10rem;
    transform: rotate(-212deg);
}
.gal_line_1 {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%) scale(0) rotate(360deg);
    width: 93%;
    transition: all 3s cubic-bezier(.19, 1, .22, 1);
}
.gal_line_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    width: 100%;
    transition: all 3s cubic-bezier(.19, 1, .22, 1);
}
.gal_line_3 {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%) scale(0) rotate(360deg);
    width: 92%;
    transition: all 3s cubic-bezier(.19, 1, .22, 1);
}
.genplan_line_2_varsh4_wr {
    width: 11.2rem;
    height: 11.2rem;
    position: absolute;
    top: 2em;
    opacity: 0.1;
    left: 46rem;
    transform: rotate(-65deg);
}
.genplan_line_3_varsh4_wr {
    width: 5.8rem;
    height: 5.8rem;
    position: absolute;
    top: 18em;
    left: 1rem;
    transform: rotate(-65deg);
}
.genplan_line_4_varsh4_wr {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 32rem;
    opacity: 0.5;
    left: 4rem;
    transform: rotate(-65deg);
}
.show_page_anim .gal_line_1, .show_page_anim .gal_line_2, .show_page_anim .gal_line_3 {
    transform: translate(-50%, -50%) scale(1) rotate(17deg);
    transition: 2.9s all .5s cubic-bezier(.19, 1, .22, 1);
}
/*-----------END VARSH 4$----------*/
.genplan_info{
	height: 100%;
    padding-bottom: 7rem;
	position: relative;
}


.genplan_oboz_title{
  position: relative;
	font-size: 2.3rem;
	color:#264646;
	font-weight: 600;
  margin-bottom: 1vh;
	text-transform: uppercase;
  transition: all 0.9s cubic-bezier(.19,1,.22,1) 0.6s;
}
.genplan_oboz_scroll{
	/*height: calc(100% - 10vh - 12rem);
    max-height: calc(90vh - 31rem);*/
    height: 100%;
    overflow: hidden;
    height: calc(100% - 11rem);
    margin-bottom: 1rem;
}

.genplan_oboz_wrap{
display: flex;
}
.genplan_oboz_cont{
    width: 51%;
}
.genplan_oboz_cont:first-child{
    margin-right: 1%;
    width: 48%;
}
.genplan_oboz_wr{
    display: flex;
    align-items: center;
    opacity: 0;
    margin-bottom: 1.2rem;
    transform: translateX(-10rem);
  opacity: 1;
  transform: translateX(0);
}


.genplan_oboz_img_wr{
    width: 3.7rem;
    max-height: 3.3rem;
    /*min-height: 33px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.genplan_oboz_img{
	max-width: 95%;
	max-height: 100%;
}
.genplan_oboz_defis{
	color: #242d48;
    font-size: 1.8rem;
	margin:0 .5rem 0 1rem;
}
.genplan_oboz_text{
    color: #284848;
    font-size: 1.4rem;
width: calc(100% - 3.7rem - 1.5rem);
}
.genplan_oboz_text span{
	color:#b2093a;
	font-size: 1.8rem;
	display: block;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: transparent !important;
}

.genplan_etap_title{
position: relative;
    font-size: 2.3rem;
    color: #242d48;
    margin-bottom: 1vh;
    margin-top: 2vh;
    text-transform: uppercase;
}
.genplan_etap_wr{
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
    white-space: nowrap;
	padding-right: 1rem;
}
.genplan_etap_img_wr{
	width:3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	border: 2px solid #77beeb;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #242d48;
	font-size: 2.3rem;
	margin-right: 1rem;
}
.main_gp_link_btn_wr_3{
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;	
}
.main_gp_2_link_btn_3{
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #fff;
    height: 6.2rem;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    background: #6DBB91;
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;	
}

.main_gp_2_link_btn_3:hover {
    background: #264646;
}

.main_gp_4_link_btn_3{
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #fff;
    height: 6.2rem;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    background: #A31D42;
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;	
}
.main_gp_4_link_btn_3:hover {
    background: #6B192F;;
}

@media screen and (max-width: 1440px) {
	.genplan_wrap {
    min-height: 100%;
    align-items: baseline;
	}
	.genplan_oboz_cont {
    width: 40%;
	}
	.genplan_oboz_cont:first-child {
    width: 40%;
	}
	.genplan_img {
    max-width: 48%;
	}
	.genplan_left {
    padding-top: calc(9vh + 1rem);
	}
	.main_gp_link_btn_wr_3 {
    bottom: 3rem;
	}
}
@media screen and (max-width: 1368px) {
	.genplan_left {
        padding-top: 1vh;
    }
    .genplan_wrap {
        min-height: 105%;
        align-items: baseline;
    }
        .main_gp_link_btn_wr_3 {
        bottom: -2rem;
    }
}
@media screen and (max-width: 1280px) {
	.genplan_wrap {
        min-height: 100%;
        align-items: baseline;
    }
    .genplan_left {
        padding-top: 19vh;
    }
    	.genplan_img {
    max-width: 48%;
    height: auto;
	}
	    .main_gp_link_btn_wr_3 {
        bottom: 5rem;
    }

}
@media (orientation: landscape) {
  .main_page_site_cont_wr_m {
    margin-top: 25vh;
  }
  .main_page_wrap_m {
    display: flex;
  }
  .main_page_site_cont_logo_wr_m {
    width: 35vmin;
    height: 35vmin;
  }
  .main_page_site_cont_txt_m {
    font-size: 5vmin;
  }
  .main_page_site_cont_btn_m {
    font-size: 3.5vmin;
  }
  .main_page_top_wr_m {
    width: 80vmin;
  }
  .main_page_top_cont_txt_m {
    font-size: 12vmin;
  }
  .main_page_top_small_txt_m {
    font-size: 3.8vmin;
  }
}









/*  */
