/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #816bb2;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #0678e3;
  transition: background 0.2s ease-in-out;
}


@media screen and (max-width: 376px) {
.back-to-top {
  right: 22px;
  bottom: 75px;
  z-index: 99999;
}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #816bb2;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 992px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i {
  font-size: 20px;
}

.nav-menu a span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {
  .nav-menu a {
    width: 56px;
  }
  .nav-menu a span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  background: #0563bb;
}

.nav-menu a:hover span, .nav-menu .active > a span, .nav-menu li:hover > a span {
  color: #fff;
}

.nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #0563bb;
}

/*--------------------------------------------------------------
# cover Section
--------------------------------------------------------------*/
#cover {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_01.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}

@media (max-width: 992px) {
  #cover {
    text-align: center;
  }
}

#cover:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}


#cover p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}


#cover p span {
  color:coral;
  letter-spacing: 1px;
}

#cover .social-links {
  margin-top: 30px;
}

#cover .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#cover .social-links a:hover {
  color: #816bb2;
}


@media (max-width: 992px) {
  #cover {
    text-align: center;
  }
	
  #cover h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover h2 {
    font-size: 22px;
    line-height: 36px;
  }
  #cover p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# page 2 cover Section
--------------------------------------------------------------*/
#cover2 {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_02.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}


@media (min-width: 992px) {
  #cover2 {
    padding-left: 160px;
  }
}

#cover2:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover2 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover2 h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}

#cover2 h3 {
  margin: 0;
  font-weight: 700;
  color:purple;
  font-size: 30px;
  line-height: 36px;
  margin-top: 20px;
}
	
#cover2 p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover2 p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover2 p span {
  color:coral;
  letter-spacing: 1px;
}

#cover2 ul {
  padding: 0;	
  list-style-type: none;
  font-size: 16px; 	
  line-height: 26px;
  color: darkslateblue;
}
#cover2 ul span{
  color:deeppink;
}

@media (max-width: 992px) {
  #cover2 {
    text-align: center;
  }
  #cover2 h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover2 h2 {
    font-size: 22px;
    line-height: 36px;
  }
	
  #cover2 h3 {
    font-size: 28px;
    line-height: 36px;
	text-align: left;  
  }
  #cover2 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}


/*--------------------------------------------------------------
# page 3 cover Section
--------------------------------------------------------------*/
#cover3 {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_03.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}


@media (min-width: 992px) {
#cover3 {
    padding-left: 160px;
  }
}

#cover3:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover3 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover3 h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}


#cover3 p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover3 p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}


#cover3 p span {
  color:coral;
  letter-spacing: 1px;
}


@media (max-width: 992px) {
  #cover3 {
    text-align: center;
  }
  #cover3 h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover3 h2 {
    font-size: 22px;
    line-height: 36px;
  }
  #cover3 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# page 4 cover Section
--------------------------------------------------------------*/
#cover4 {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_04.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}


@media (min-width: 992px) {
#cover4 {
    padding-left: 160px;
  }
}

#cover4:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover4 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover4 h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}


#cover4 p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover4 p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}


#cover4 p span {
  color:coral;
  letter-spacing: 1px;
}


@media (max-width: 992px) {
  #cover4 {
    text-align: center;
  }
  #cover4 h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover4 h2 {
    font-size: 22px;
    line-height: 36px;
  }
  #cover4 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# page 5 cover Section
--------------------------------------------------------------*/
#cover5 {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_05.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}


@media (min-width: 992px) {
#cover5 {
    padding-left: 160px;
  }
}

#cover5:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover5 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover5 h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}


#cover5 p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover5 p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}


#cover5 p span {
  color:coral;
  letter-spacing: 1px;
}


@media (max-width: 992px) {
  #cover5 {
    text-align: center;
  }
  #cover5 h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover5 h2 {
    font-size: 22px;
    line-height: 36px;
  }
  #cover5 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# page 6 cover Section
--------------------------------------------------------------*/
#cover6 {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_06.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}


@media (min-width: 992px) {
#cover6 {
    padding-left: 160px;
  }
}

#cover6:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#cover6 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 66px;
  color: palegoldenrod;
}

#cover6 h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: deepskyblue;
}


#cover6 p {
  color:palegreen;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#cover6 p .div{
  color:#FFFFFF;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}


#cover6 p span {
  color:coral;
  letter-spacing: 1px;
}


@media (max-width: 992px) {
  #cover6 {
    text-align: center;
  }
  #cover6 h1 {
    font-size: 42px;
    line-height: 56px;
  }
  #cover6 h2 {
    font-size: 22px;
    line-height: 36px;
  }
  #cover6 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #816bb2;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  text-align: justify;	
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #0563bb;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 50px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size:20px;
  background: #816bb2;
  padding:20px;
  color: #fff;
  border-radius: 40px;
}


.facts .count-box span {
  font-size: 36px;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
}


/*--------------------------------------------------------------
# Box
--------------------------------------------------------------*/

.box .count-box1 {
  padding: 30px 30px 0px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: rgba(231, 177, 34, .3);
  height: 100%;	
  border-radius: 20px;	
}

.box .count-box2 {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: rgba(240, 85, 107, .4);
  height: 100%;	
  border-radius: 20px;	
}

.box .count-box3 {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: rgba(0, 169, 142, .4);
  height: 100%;	
  border-radius: 20px;	
}

.box i {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  padding:20px;
  color:dimgrey;
  border-radius: 100px;
}


.box .count-box span {
  font-size: 36px;
  font-weight: 600;
  color: #011426;
}

.box h3 {
  padding: 0;
  margin: 5;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
}

.box .count-box .count-box1 .count-box2 .count-box3 p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
}

.postit {
  text-align:center;     
  padding-top:0px;
  position:relative;   
  border-bottom-right-radius: 60px 5px;
  display:inline-block;  
  background: #fff; /* Old browsers */
  background: -moz-linear-gradient(-45deg, #fff 81%, #fff 82%, #fff 82%, #fff 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(81%,#fff), color-stop(82%,#fff), color-stop(82%,#fff), color-stop(100%,#fff)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #fff 81%,#fff 82%,#fff 82%,#fff 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #fff 81%,#fff 82%,#fff 82%,#fff 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #fff 81%,#fff 82%,#fff 82%,#fff 100%); /* IE10+ */
  background: linear-gradient(135deg, #fff 81%,#fff 82%,#fff 82%,#fff 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.postit:after {     
  content: "";
  position:absolute;
  z-index:-1;
  right:-0px; bottom:15px;
  width:200px;
  height:20px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow:2px 15px 5px rgba(0, 0, 0, 0.40);
  -moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -webkit-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -o-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -ms-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  transform: matrix(-1, -0.1, 0, 1, 0, 0);
}


/*--------------------------------------------------------------
# Hexagonal
--------------------------------------------------------------*/

.honeycombs {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.honeycombs .inner_span {
  display: inline-block;
  height: 100%;
  width: 100%;
  background-color: rgba(106, 13, 173, 0.65);
  font-family: sans-serif;
  color: white;
}
.honeycombs .inner-text {
  padding-top: 38%;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
}

.inner-text img {
  display: block !important;
}


.honeycombs .honeycombs-inner-wrapper {
  display: inline-block;
  overflow: hidden;
  width: 700px;
  position: relative;
  height: 1200px;
}

.honeycombs .comb {
  position: absolute;
  display: inline-block;
}

.honeycombs .hex_l,
.honeycombs .hex_r {
  overflow: hidden;
  position: absolute;
  /* -webkit-backface-visibility: hidden; */
}

.honeycombs .hex_l {
  visibility: hidden;
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);

  transform: rotate(60deg);
}

.honeycombs .hex_r {
  visibility: hidden;
  -moz-transform: rotate(-120deg);
  -ms-transform: rotate(-120deg);
  -o-transform: rotate(-120deg);
  -webkit-transform: rotate(-120deg);

  transform: rotate(-120deg);
}

.honeycombs .hex_inner {
  display: block;
  visibility: visible;
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);

  transform: rotate(60deg);

  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  cursor: pointer;
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item .testimonial2-img {
  width: 60px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}



.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #0563bb !important;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
  padding-bottom: 100px;
}

#footer h3 {
  font-size: 25px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 30;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #816bb2;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}





/* -------------------------------- 
Digital Leaflet Style
-------------------------------- */




.header {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  padding: 10px 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(14, 157, 156, .9);
  text-align: center;
}

.image {
  height: 100%;
  text-align: center;
}

.btn-menu {
  width: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-bar {
  position: relative;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.menu1 {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.menu2 {
  width: 100%;
  height: 1px;
  margin-top: 6px;
  margin-bottom: 6px;
  background-color: #fff;
}

.div-block {
  width: 1px;
  height: 0px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #ababab;
}

.menu-txt {
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
}

.header-100vh {
  overflow: auto;
  height: 100vh;
}

.cover-bg {
  width: 60%;
  background-image: url('../images/1.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-image: url('../images/2.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  padding-right: 20px;
  padding-left: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-block {
  position: absolute;
  left: auto;
  top: auto;
  right: 5%;
  bottom: 12%;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  color: #fff;
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #b3b3b3;
}

.link {
  font-size: 21px;
}

.link-2 {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 5px 15px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1px;
  text-decoration: none;
}

.link-2:hover {
  opacity: 0.86;
}

.next-page-btn {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-block.non {
  opacity: 0.5;
}

.inner-header {
  position: relative;
}

.inner1180 {
  position: relative;
  height: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner1180.left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-2 {
  font-size: 16px;
  line-height: 28px;
}

.div-block-5 {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  letter-spacing: 1px;
}

.div-block-6 {
  height: 650px;
}

.background-video {
  height: 100%;
}

.div-block-7 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.text-block-3 {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
}

.div-block-8 {
  height: 700px;
  background-image: url('../images/3.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}

.text-block-4 {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 1px;
}

.text-block-4.page5 {
  color: #fff;
}

.div-block-9 {
  width: 50%;
  padding: 50px 35px;
  background-color: hsla(0, 0%, 100%, .8);
}

.div-block-9.page5 {
  position: relative;
  left: -119px;
  width: 40%;
  background-color: rgba(33, 31, 65, .9);
}

.div-block-10 {
  height: 350px;
  background-image: url('../images/4.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.link-3 {
  display: block;
  width: 120px;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: #10315b;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
}

.btn-scroll {
  position: absolute;
  left: 0%;
  top: 95%;
  right: 0%;
  bottom: auto;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 65px;
  height: 65px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1000px;
  background-color: hsla(50.85365853658537, 89.13%, 63.92%, 0.85);
  opacity: 0;
}

.div-block-11 {
  height: 100%;
  background-image: url('../images/5.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 550px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: hsla(0, 0%, 100%, .65);
}

.text-block-5 {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
}

.popup {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10000;
  display: none;
  overflow: auto;
  padding: 65px 40px;
  background-color: hsla(0, 0%, 100%, .95);
  opacity: 0;
}

.popup-blk {
  position: relative;
  height: 400px;
}

.popup-blk.img1 {
  background-image: url('../img/bg_01.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-blk.img2 {
  background-image: url('../img/bg_02.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-blk.img3 {
  background-image: url('../img/bg_03.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-blk.img4 {
  background-image: url('../img/bg_04.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-blk.img5 {
  background-image: url('../img/bg_05.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-blk.img6 {
  background-image: url('../img/bg_06.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.pop-mask {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: rgba(0, 0, 0, .5);
}

.link-block-2 {
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background-image: linear-gradient(180deg, #000, #000);
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1px;
  text-decoration: none;
}

.pop-caption {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 10px 15px;
}

.text-block-6 {
  display: inline;
  margin-right: 20px;
}

.text-block-7 {
  display: inline;
}

.col {
  padding-right: 5px;
  padding-left: 5px;
}

.columns {
  margin-bottom: 5px;
}

.pop-gradient {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: linear-gradient(1deg, rgba(69, 69, 69, .54), hsla(0, 0%, 100%, 0) 52%);
}

.link-block-3 {
  position: absolute;
  left: auto;
  top: 2%;
  right: 40px;
  bottom: auto;
  padding: 5px 10px;
}

.image-2 {
  width: 15px;
}

.section {
  padding-top: 65px;
}

.section-2 {
  margin-top: 65px;
}

.div-block-13 {
  width: 60%;
  height: 100%;
  background-image: url('../images/close-up-view-rock-climber_23-2147665149.jpg');
  background-position: 100% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-block-14 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-15 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.link-block-4 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 35px;
  padding-bottom: 35px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  color: #000;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
}

.link-block-4:hover {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, .19);
}

.row {
  margin-bottom: 60px;
}

.text-block-8 {
  margin-top: 19px;
}

.background-video-2 {
  width: 100%;
  height: 100%;
}

.div-block-16 {
  height: 100vh;
}

.div-block-17 {
  height: 100%;
  background-image: url('../images/shutterstock_103425365-2.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block-18 {
  padding-top: 80px;
  background-color: #fff;
}

.scroll-apply {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: 10px;
}

.text-block-9 {
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
  letter-spacing: 0.5px;
}

.div-block-19 {
  margin-bottom: 85px;
}

.text-block-10 {
  margin-bottom: 15px;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  color: #afa560;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.list {
  padding-left: 20px;
}

.div-block-20 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ddddc0;
  background-image: url('../img/bg_03x.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



.div-block-21 {
  width: 150px;
  height: 150px;
  min-height: 150px;
  min-width: 150px;
  border-radius: 1000px;
  background-image: url('../images/');
  background-position: 100% 2%;
  background-size: cover;
  background-repeat: no-repeat;
}



.div-block-22 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-11 {
  max-width: 700px;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.5px;
}

.div-block-23 {
  padding-top: 80px;
  padding-bottom: 130px;
}

.link-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  min-height: 180px;
  min-width: 180px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1000px;
  background-color: #b8bb90;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.link-block-5:hover {
  opacity: 0.8;
}

.div-block-24 {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.div-block-25 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-26 {
  height: 100%;
  background-image: url('../images/shutterstock_103425365-5.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block-27 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.youtube {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.div-block-28 {
  height: 100%;
  background-image: url('../images/shutterstock_103425365-7.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block_01 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  overflow: auto;
  width: 600px;
  max-width: 600px;
  padding: 85px 40px;
  background-color:rgba(255,255,155,0.70);
}

.div-block-30 {
  height: 100%;
  background-image: url('../images/shutterstock_103425365-8.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block-31 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.row-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 8px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 18px;
  line-height: 26px;
}

.row-data.bold {
  font-weight: 700;
}

.row-data.grey {
  background-color: #e6e6e6;
}

.div-block-32 {
  width: 40%;
  margin-right: 3px;
  margin-left: 3px;
}

.div-block-32.line {
  margin-right: 3px;
  margin-left: 3px;
  border-bottom: 1px solid #000;
}

.div-block-33 {
  width: 15%;
  margin-right: 3px;
  margin-left: 3px;
  text-align: right;
}

.div-block-33.center {
  margin-right: 3px;
  margin-left: 3px;
  border-bottom: 1px solid #000;
  text-align: center;
}

.div-block-34 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #000;
}

.div-block-35 {
  width: 30%;
  margin-right: 3px;
  margin-left: 3px;
  border-bottom: 1px solid #000;
  text-align: center;
}

.text-block-12 {
  margin-bottom: 30px;
  font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}

html.w-mod-js *[data-ix="left-to-right"] {
  opacity: 0;
  -webkit-transform: translate(-100px, 0px);
  -ms-transform: translate(-100px, 0px);
  transform: translate(-100px, 0px);
}

@media (max-width: 991px) {
  .image {
    height: 30px;
    margin-top: 7px;
  }
  .div-block.title-line {
    display: none;
  }
  .menu-txt.menu-title {
    display: none;
  }
  .text-block {
    font-size: 40px;
  }
  .div-block-6 {
    height: 500px;
  }
  .text-block-4.page5 {
    line-height: 24px;
  }
  .div-block-9.page5 {
    left: -104px;
    width: auto;
    max-width: 600px;
  }
  .div-block-11 {
    padding-top: 60px;
  }
  .div-block-12 {
    max-width: 450px;
  }
  .popup-blk {
    height: 180px;
  }
  .div-block-13 {
    width: 100%;
  }
  .text-block-9 {
    line-height: 26px;
  }
  .div-block-27 {
    padding-top: 120px;
  }
  .div-block_01 {
    width: 500px;
    max-width: 500px;
	text-align: left;  
  }
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;	  
  }
  .cover-bg {
    width: auto;
    height: 40%;
  }
  .div-block-2 {
    padding-top: 65px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .div-block-3 {
    width: 100%;
    height: 60%;
  }
  .text-block {
    font-size: 36px;
  }
  .div-block-6 {
    height: 400px;
  }
  .text-block-4 {
    line-height: 24px;
  }
  .div-block-9 {
    width: 70%;
  }
  .div-block-9.page5 {
    left: 0px;
    max-width: 90%;
    margin-top: -100px;
  }
  .div-block-12 {
    max-width: 400px;
  }
  .text-block-5 {
    font-size: 15px;
    line-height: 28px;
  }
  .popup-blk {
    height: 300px;
  }
  .columns {
    margin-bottom: 0px;
  }
  .div-block-13 {
    height: 500px;
  }
  .div-block-14 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-15 {
    padding-bottom: 220px;
  }
  .row {
    margin-bottom: 0px;
  }
  .div-block-16 {
    height: 400px;
  }
  .div-block-17 {
    background-size: auto 100%;
    background-attachment: scroll;
  }
  .div-block-20 {
    padding-bottom: 100px;
  }
  .text-block-11 {
    font-size: 16px;
  }
  .div-block-23 {
    padding-bottom: 65px;
  }
  .link-block-5 {
    width: 140px;
    height: 140px;
    min-height: 140px;
    min-width: 140px;
    font-size: 18px;
    line-height: 22px;
  }
  .div-block-25 {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  .div-block-26 {
    background-size: auto 100%;
    background-attachment: scroll;
  }
  .div-block-27 {
    padding-bottom: 120px;
  }
  .div-block_01 {
    width: 100%;
    max-width: 100%;
    padding-top: 145px;
    padding-bottom: 0px;
	text-align: left;  
  }
  .div-block-30 {
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

@media (max-width : 400px ){
  .header {
    position: fixed;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;	  
  }
  .image {
    left: auto;
    top: auto;
    right: 10px;
    bottom: auto;
    margin-top: 0px;
  }
  .div-block {
    margin-right: 7px;
    margin-left: 7px;
  }
  .div-block-3 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .text-block {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 5%;
    margin-right: auto;
    margin-bottom: 19px;
    margin-left: auto;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .text-block-2 {
    font-size: 15px;
    line-height: 24px;
  }
  .div-block-6 {
    height: 300px;
  }
  .text-block-3 {
    line-height: 22px;
  }
  .div-block-8 {
    height: auto;
  }
  .text-block-4 {
    line-height: 22px;
  }
  .text-block-4.page5 {
    line-height: 22px;
  }
  .div-block-9 {
    width: 100%;
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 37px 23px;
  }
  .div-block-9.page5 {
    margin-top: -173px;
  }
  .text-block-5 {
    line-height: 22px;
  }
  .popup-blk {
    height: 150px;
  }
  .link-block-5 {
    width: 160px;
    height: 160px;
    min-height: 160px;
    min-width: 160px;
    margin-bottom: 10px;
  }
  .div-block-25 {
    margin-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-27 {
    padding-top: 114px;
    padding-bottom: 114px;
  }
  .div-block_01 {
    padding-right: 25px;
    padding-left: 25px;
	text-align: left;  
  }
  .row-data {
    font-size: 16px;
    line-height: 22px;
  }
}




/* -------------------------------- 
Circle
-------------------------------- */


.venn-container {
  padding: 0px 0px 100px 0px;
}

.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: -100px;
  margin-left: 50px;
  background-color: #5c5b59;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
  position: relative;
}
.venncirctop > a {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .004em;
  color: #FFFFFF;
  text-decoration: none;
}
.venncirctop:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(106, 101, 97, 0.9);
}
.venncirclft {
  padding: 50px 20px 20px 45px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: -50px;
  margin-top: -140px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
.venncirclft > a {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .004em;
  color: #FFFFFF;
  text-decoration: none;
}
.venncirclft:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(55, 104, 140, 0.9);
}
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:390px;
  margin-top:-110px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.venncircrt > a {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .004em;
  color: #FFFFFF;
  text-decoration: none;
}
.venncircrt:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(98, 95, 117, 0.9);
}
.venncircbtm {
  padding: 18px;
  width: 180px;
  height: 180px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  top: 90px;
  margin-right: 100px;
  margin-left: -70px;
  text-align: center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(98, 119, 70, 0.5);
  z-index: 1;
}
.venncircbtm > a {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .004em;
  color: #FFFFFF;
  text-decoration: none;
}
.venncircbtm:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(58, 78, 32, 0.9);
}
.venntxttop {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  top: 10px;
}
.venntxttop:hover {
  color: #FFFFFF;
  text-decoration:none;
}
.venntxtrt {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  top: 10px;
  z-index: 5;
}
.venntxtrt:hover {
  color: #FFFFFF;
  text-decoration:none;
}

.venntxtlft {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  top: 10px;
  z-index: 5;
}

.venntxtlft:hover {
  color: #FFFFFF;
  text-decoration:none;
}
.venntxtbtm {
  text-align: center;
  display: inline-block;
  width: 70%;
  position: relative;
  top: 103px;
}
.venntxtbtm:hover {
  color: #FFFFFF;
  text-decoration:none;
}


/* -------------------------------- 
Circle photos
-------------------------------- */
.circle-photo {
  margin-left:-200px;
  margin-top:100px;
}
.circle-photot {
  margin-left:100px;
  margin-top:50px;
}

.circle-photol {
  margin-left:200px;
  margin-top:-100px;
}
.circle-photor {
  margin-left:600px;
  margin-top:-130px;
}

.circle-photob1 {
  margin-left:150px;
  margin-top:-130px;
}

.circle-photob2 {
  margin-left:600px;
  margin-top:-140px;
}

.circle-photob3 {
  margin-left:450px;
  margin-top:-80px;
}


@media (max-width: 991px){
.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: -100px;
  margin-left: 0px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
}
	
.venncirclft {
  padding: 60px 20px 20px 35px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: 0px;
  margin-top: -130px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
	
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:120px;
  margin-top:-130px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.circle-photo {
  margin-left:-10px;
  margin-top:150px;
}
.circle-photot {
  margin-left:-10px;
  margin-top:100px;
}

.circle-photol {
  margin-left:200px;
  margin-top:-100px;
}
	
.circle-photob1 {
  margin-left:10px;
  margin-top:-100px;
}
	
.circle-photob2 {
  margin-left:400px;
  margin-top:-180px;
}

.circle-photob3 {
  margin-left:300px;
  margin-top:-20px;
}
	
	
}




@media (max-width: 767px){
.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: 0px;
  margin-left: 180px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
}
	
.venncirclft {
  padding: 60px 20px 20px 35px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: 30px;
  margin-top: -200px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
	
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:200px;
  margin-top:-160px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.circle-photo {
  display: none; 
}
.circle-photot {
  display: none; 
}

.circle-photol {
  display: none; 
}
	
.circle-photob1 {
  display: none; 
}

.circle-photob2 {
  display: none; 
}
	
.circle-photob3 {
  display: none; 
}
	
}



@media (max-width: 576px){
.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: 0px;
  margin-left: 180px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
}
	
.venncirclft {
  padding: 60px 20px 20px 35px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: 30px;
  margin-top: -200px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
	
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:200px;
  margin-top:-160px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.circle-photo {
  display: none; 
}
.circle-photot {
  display: none; 
}

.circle-photol {
  display: none; 
}
	
.circle-photob1 {
  display: none; 
}
	
.circle-photob2 {
  display: none; 
}

.circle-photob3 {
  display: none; 
}
	
}
@media (max-width : 476px ){
.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: 0px;
  margin-left: 105px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
}
	
.venncirclft {
  padding: 60px 20px 20px 35px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: 10px;
  margin-top: -140px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
	
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:80px;
  margin-top:-80px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.circle-photo {
  display: none; 
}
.circle-photot {
  display: none; 
}

.circle-photol {
  display: none; 
}
	
.circle-photob1 {
  display: none; 
}
	
.circle-photob2 {
  display: none; 
}

.circle-photob3 {
  display: none; 
}	
}

@media (max-width : 376px ){
.venncirctop {
  padding: 60px 30px 50px 40px;
  width: 280px;
  height: 280px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-bottom: 0px;
  margin-left: 60px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(92, 91, 89, 0.5);
  z-index: 1;
}
	
.venncirclft {
  padding: 60px 20px 20px 35px;
  width: 240px;
  height: 240px;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left: 5px;
  margin-top: -140px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(9, 61, 92, 0.5);
  z-index: 2;
}
	
.venncircrt {
  padding:60px 30px 40px 33px;
  width: 290px;
  height: 290px;
  -moz-border-radius: 280px;
  -webkit-border-radius: 280px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
  -moz-transition: color 0.5s linear, background-color 0.5s linear;
  -o-transition: color 0.5s linear, background-color 0.5s linear;
  transition: color 0.5s linear, background-color 0.5s linear;
  margin-left:50px;
  margin-top:-80px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(94, 87, 123, 0.5);
  z-index: 3;
}
.circle-photo {
  display: none; 
}
.circle-photot {
  display: none; 
}
.circle-photol {
  display: none; 
}
.circle-photob1 {
  display: none; 
}
.circle-photob2 {
  display: none; 
}
.circle-photob3 {
  display: none; 
}	
}


.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}
