/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  background-color:lightgoldenrodyellow;
}

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: 12px;
  bottom: 12px;
  background: coral;
  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: #4B0082;
  transition: background 0.2s ease-in-out;
}


@media (max-width: 476px) {
  .back-to-top {
    right: 15px;
    bottom: 72px;
    z-index: 99999;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #202628;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.center-body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  /****** center box
  width: 300px;
  height: 300px;
  border: solid 1px #aaa;
  ******/
}


.loader-circle-11 {
  position: relative;
  width: 70px;
  height: 70px;
  transform-style: preserve-3d;
  perspective: 400px;
}

.loader-circle-11 .arc {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-bottom: 5px solid #816AB2;
}

.loader-circle-11 .arc:nth-child(1) {
  animation: rotate1 1.15s linear infinite;
}

.loader-circle-11 .arc:nth-child(2) {
  animation: rotate2 1.15s linear infinite;
}
 
.loader-circle-11 .arc:nth-child(3) {
  animation: rotate3 1.15s linear infinite;
}

.loading .arc:nth-child(1) {
  animation-delay: -0.8s;
}
 
.loader-circle-11 .arc:nth-child(2) {
  animation-delay: -0.4s;
}

.loader-circle-11 .arc:nth-child(3) {
  animation-delay: 0s;
}

.loader-circle-11 .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  width: 10px;
  background: #CFBE48;
  border-radius: 50%;
  margin-left: -5px;
  margin-top: -5px;
  animation: linear loader-circle-11-pulse 1s infinite;
}

@keyframes rotate1 {
    from {
	    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
	}
	to {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
	}
}
@keyframes rotate2 {
	from {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
	}
	to {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
	}
}
@keyframes rotate3 {
	from {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
	}
	to {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
	}
}


@keyframes loader-circle-11-pulse {
    0%, 100% {
        transform: scale(0, 0);
    }
    50% {
        transform: scale(1.5, 1.5);
    }
}




/*--------------------------------------------------------------
# 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;
}

.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.mp4") top center no-repeat;
  background-size: cover;
  position: relative;
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

@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: pink;
}

#cover h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

#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;
}

.icon-background1 {
  color: red;
}


@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: crimson;
}

.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: 0px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
}

.facts .count-box i {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 15px;
  font-size: 40px;
  background:#816AB2;
  color: #fff;
  text-align: center;
}

.facts .count-box span {
  font-size: 36px;
  font-weight: 600;
  color:#816BB2;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
}

.contact .count-box {
  padding: 0px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
}

.contact .count-box i {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 20px;
  font-size: 40px;
  color:olivedrab;
  text-align: center;
}

.contact .count-box span {
  font-size: 36px;
  font-weight: 600;
  color: #011426;
}

.contact .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: rgba(107,142,35,0.3);
  color:darkslategrey;
  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: 20px;
  display: inline-block;
  background: #816AB2;
  color: #fff;
  padding: 10px 0;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #2E8B57;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}



/* -------------------------------- 
Digital Leaflet Style
-------------------------------- */
.section {
  padding-top: 65px;
}

.row {
  margin-bottom: 60px;
}

.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(154,205,50,0.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;
}


.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(30, 89.13%, 63.92%, 0.85);
  opacity: 0;
}



/* -------------------------------- 
Pop-up Menu
-------------------------------- */

.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;
}

.columns {
  margin-bottom: 5px;
}

.col {
  padding-right: 5px;
  padding-left: 5px;
}

.pop-mask {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: rgba(0, 0, 0, .5);
}

.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-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%);
}

.pop-caption {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 10px 15px;
}

.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;
}

.link-block-3 {
  position: absolute;
  left: auto;
  top: 2%;
  right: 40px;
  bottom: auto;
  padding: 5px 10px;
}

.text-block-6 {
  display: inline;
  margin-right: 20px;
}

.text-block-7 {
  display: inline;
}

.image-2 {
  width: 15px;
}

.scroll-apply {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: 10px;
}


.list {
  padding-left: 20px;
}

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;
  }
  .popup-blk {
    height: 180px;
  }
}

@media (max-width : 780px ){
  .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;
  }
  .popup-blk {
    height: 300px;
  }
  .columns {
    margin-bottom: 0px;
  }
  .row {
    margin-bottom: 0px;
  }
}

@media (max-width : 476px ){
  .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;
  }
  .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;
  }
  .row-data {
    font-size: 16px;
    line-height: 22px;
  }
}

/* -------------------------------- 
Circle
-------------------------------- */
.venn-container {
  padding: 0px 0px 0px 0px;
}

.venncirctop {
  padding: 0px 20px 0px 30px;
  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-top: 0px;
  margin-left: 20px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(24, 181, 196, 0.4);
  z-index: 1;
}

.venncirctop > a {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .004em;
  line-height: 35px;
  color: #69539c;
  text-decoration: none;
}

.venncirctop:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(244, 222, 123, 0.9);
}

.venncirclft {
  padding: 0px 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: -80px;
  margin-top:  -60px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(238, 42, 123, 0.5);
  z-index: 2;
}

.venncirclft > a {
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  letter-spacing: .004em;
  color: #69539c;
  text-decoration: none;
}

.venncirclft:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(244, 222, 123, 0.9);
}

.venncircrt {
  padding: 0px 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: -200px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(242, 126, 125, 0.6);
  z-index: 3;
}

.venncircrt > a {
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  letter-spacing: .004em;
  color: #69539c;
  text-decoration: none;
}

.venncircrt:hover {
  z-index: 5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background-color: rgba(244, 222, 123, 0.9);
}

.venntxttop {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  top: 10px;
}

.venntxttop:hover {
  text-decoration:none;
}

.venntxtrt {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  top: 10px;
  z-index: 5;
}

.venntxtrt:hover {
  text-decoration:none;
}

.venntxtlft {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  top: 10px;
  z-index: 5;
}

.venntxtlft:hover {
  text-decoration:none;
}

.venntxtbtm {
  text-align: center;
  display: inline-block;
  width: 70%;
  position: relative;
  top: 103px;
}

.venntxtbtm:hover {
  text-decoration:none;
}

.open_book {
  margin-top: 20px;
}


.image-container {
  position: relative;
}

.overlay {
  display: block;
  width: auto;
  margin: -950px auto 0px 50px;
  z-index: -100;
}



/* -------------------------------- 
Circle photos
-------------------------------- */
.circle-photo img {
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: 20px auto 0px 0px;
  display: block;
}

.circle-photot img{
  border-radius: 50%; 
  height: 200px;
  width: 200px;
  margin: 60px 0px 0px auto;
  display: block;
}

.circle-photol img{
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: 60px 60px 0px auto;
  display: block;
}

.circle-photor img{
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: -80px auto 0px -80px;
  display: block;
}

.circle-photob1 img{
  border-radius: 50%;
  height: 200px;	
  width: 200px;
  margin: -50px auto 0px 200px;
  display: block;
}

.circle-photob2 img{
  border-radius: 50%;
  height: 200px;	
  width: 200px;
  margin: 60px 0px 0px -100px;
  display: block;
}

.circle-photob3 img{
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: -200px auto 0px auto;
  display: block;
}

.open_book {
  margin-top: 0px;
}

@media (min-width: 1200px){
  .venncirctop {
    width: 300px;
    height: 300px;
    margin-top: 0px;
    margin-left: 30px;
  }
	
  .venncirclft {
	width: 260px;
    height: 260px;
    margin-left: -50px;
    margin-top:  -60px;
  }
	
  .venncircrt {
	width: 310px;
    height: 310px;
    margin-left:200px;
	margin-top: -200px;
  }

  .circle-photo img {
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: 20px auto 0px 0px;
    display: block;
  }
	
  .circle-photot img{
	border-radius: 50%; 
	height: 250px;
    width: 250px;
	margin: 60px 0px 0px auto;
    display: block;
  }

  .circle-photol img{
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: 60px 60px 0px auto;
    display: block;
  }
	
  .circle-photor img{
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: -80px auto 0px -80px;
    display: block;
}

.circle-photob1 img{
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: -50px auto 0px 200px;
    display: block;
  }

.circle-photob2 img{
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: 60px 0px 0px -100px;
    display: block;
  }

.circle-photob3 img{
	border-radius: 50%;
	height: 250px;
	width: 250px;
	margin: -200px auto 0px auto;
    display: block;
  }

.open_book {
	margin-top: -50px;
  }
.overlay {
  display: block;
  width: auto;
  margin: -850px auto 0px 50px;
  z-index: -100;
}

}

@media (min-width: 992px){
	
 .overlay {
  display: block;
  width: auto;
  margin: -750px auto 0px 50px;
  z-index: -100;
}

}

@media (min-width: 768px) and (max-width: 991px){
  .venncirctop {
    margin-top: 0px;
    margin-left: 30px;
  }
	
  .venncirclft {
    margin-left: -80px;
    margin-top:  -60px;
  }
	
  .venncircrt {
	margin-left:100px;
	margin-top: -100px;
  }

  .circle-photo img {
	border-radius: 50%;
	height: 180px;
	width: 180px;
	margin: 20px auto 0px 0px;
    display: block;
  }
	
  .circle-photot img{
	border-radius: 50%; 
	height: 180px;
	width: 180px;
	margin: 60px 0px 0px auto;
    display: block;
  }

  .circle-photol img{
	border-radius: 50%;
	height: 150px;
	width: 150px;
	margin: 60px 60px 0px auto;
    display: block;
  }

  .circle-photor img{
	border-radius: 50%;
	height: 180px;
	width: 180px;
	margin: -60px auto 0px -60px;
    display: block;
  }

.circle-photob1 img{
	border-radius: 50%;
	height: 150px;	
	width: 150px;
	margin: -50px auto 0px 100px;
    display: block;
  }

.circle-photob2 img{
	border-radius: 50%;
	height: 150px;	
	width: 150px;
	margin: 160px 0px 0px -100px;
    display: block;
  }

  .circle-photob3 img{
	border-radius: 50%;
	height: 200px;
	width: 200px;
	margin: -150px auto 0px auto;
    display: block;
  }

  .open_book {
	margin-top: -50px;
  }
	
  .overlay {
    display: block;
    width: auto;
    margin: -550px auto 0px 50px;
    z-index: -100;
}

}

@media (max-width : 780px ){
  .venncirctop {
    margin-top: 0px;
    margin-left: 30px;
  }
	
  .venncirclft {
    margin-left: -150px;
    margin-top:  -20px;
  }

  .venncircrt {
	margin-left:200px;
	margin-top: -60px;
  }

  .circle-photo img {
    display: none;
  }
	
  .circle-photot img{
    display: none;
  }

  .circle-photol img{
    display: none;
  }
	
  .circle-photor img{
    display: none;
  }

  .circle-photob1 img{
    display: none;
  }

  .circle-photob2 img{
    display: none;
  }

  .circle-photob3 img{
    display: none;
  }

  .open_book {
	margin-top: 0px;
  }

  .overlay {
    display: block;
    width: auto;
    margin: -350px auto 0px 50px;
    z-index: -100;
}

	
}

@media (max-width: 580px){
  .venncirctop {
    margin-top: 0px;
    margin-left: 30px;
  }
  
  .venncirclft {
    margin-left: -80px;
    margin-top:  -40px;
  }
	
  .venncircrt {
	margin-left: 50px;
	margin-top: -30px;
  }

  .circle-photo img {
    display: none;
  }
	
  .circle-photot img{
    display: none;
  }

  .circle-photol img{
    display: none;
  }
	
  .circle-photor img{
    display: none;
  }

  .circle-photob1 img{
    display: none;
  }

  .circle-photob2 img{
    display: none;
  }

  .circle-photob3 img{
    display: none;
  }

  .open_book {
	margin-top: 0px;
  }
	
	
  .overlay {
    display: block;
    width: auto;
    margin: -350px auto 0px 50px;
    z-index: -100;
}

}
@media (max-width: 476px){

  .overlay {
    display: block;
    width: auto;
    margin: -250px auto 0px 50px;
    z-index: -100;
}
}

/* -------------------------------- 
YouTube
-------------------------------- */
.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:200;
  left: 0;
  width: 100%;
  height: 100%;
}


/* -------------------------------- 
Curriculum Journey
-------------------------------- */

aside {
  display:block;
  position: relative;
  border-left: 34px solid #369;
  padding-left: 10px;
}

aside h3 {
  font-family: Impact, "sans serif"; 
  font-style: normal; font-variant: normal;  line-height: 26.4px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -100px;
  margin-left: -30px;
  transform-origin: 0 0;
  transform: rotate(-90deg);
}

aside p {
  font-family: Impact, "sans serif"; 
  font-size: 4.5rem;
  position: absolute;
  margin-top: 30px;
  margin-left: -10px;
}

hr.class-1 {
  height: 10px;
  background: none;	
  border-top: 5px dotted #423730;
}

.row .journey{
  margin-bottom: 30px;
}


/*--------------------------------------------------------------
# Career Periodic Table
--------------------------------------------------------------*/

#fullTable {
  width: 100%;
  padding: 0%;
}

.item-1 .item-2 {
  align-items: center;
  justify-items: center;
}

.item-1 {
  grid-column: col 1 / span 11;
  grid-row: row 1;
}

.item-2 {
  grid-column: col 1/ span 11;
  grid-row: row 1;
  z-index: -9;
}

/*--Periodic table legend --*/

.grid-container {
  display: grid;
}

.legend_container {
  display: grid;
  grid-template-columns: 2fr 5fr 4fr;
  gap: 0.2vw;
  margin:0 auto;
  max-width: 100%;
}

.legend_head {
  color:#F36E64; 
  text-align:center; 
  font-family:"Titillium Web";
  font-weight: 600;
  font-size: calc(0.1em + 3.2vw);
  margin: 0px calc(0.1vw + 2px) calc(0.1vw + 20px) calc(0.1vw + 2px);
  line-height: calc(0.1em + 2vw);
}

.key {
  display: inline-block;
  width: 1.6vw;
  height: 1.6vw;
  border: 1px solid rgba(0, 0, 0, .2);
}

.legend_item {
  color:black;
  width: 100%;
}

table {
  width:98%;
  margin-left: auto;
  margin-right: auto;
}

table, th, td {
  font-family:"Titillium Web";
  border:none;
  font-size: calc(0.1em + 0.7vw);
  text-align: left;
  line-height: calc(0.1em + 0.8vw);
  vertical-align: middle;
  padding: 0vw 0.1vw 0.3vw 0.3vw;
}


/*--Periodic table cell --*/

.p-table_container {
  display: grid;
  grid-template-columns: repeat(11, minmax(0px, 1fr));
  gap: 0.2vw;
  margin:0 auto;
  max-width: 100%;
}

.item {
  background-color: rgb(60, 60, 60);
  border: calc(0.1em + 0.1vw) solid blanchedalmond;;
  border-radius: calc(0.1em + 0.5vw);
  width: 100%;
  height: calc(1em + 7vw);
}

/* element styling */
.atNum {
  color:white;
  font-size: calc(0.1em + 0.9vw);
  text-align: right;
  margin: calc(0.1vw - 1px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 3px);
  opacity: 0.5;
  line-height: calc(0.1em + 1.0vw);
}

.symbol {
  color: white;
  font-family:"Titillium Web";
  font-weight: 600;
  font-size: calc(0.1em + 1.8vw);
  text-align: left;
  line-height: calc(0.1em + 3.0vw);
  margin: 0px calc(0.1vw + 1px);
}

.fullname {
  font-family:"Titillium Web";
  font-size: calc(0.1em + 0.7vw);
  text-align: left;
  color: white;
  display: flex;
  align-items: flex-end;
  height: calc(1em + 1.8vw);
  margin: calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 3px) calc(0.1vw + 1px);
  line-height: calc(0.1em + 0.8vw);
}

.fullname2 {
  font-family:"Titillium Web";
  font-size: calc(0.1em + 0.7vw);
  text-align: left;
  color: white;
  display: flex;
  align-items: flex-end;	
  height: calc(1em + 0.3vw);
  margin: calc(0.1vw + 1px) calc(0.1vw + 3px) calc(0.1vw + 1px) calc(0.1vw + 3px);
  line-height: calc(0.1em + 0.8vw);
}

.fullname3 {
  font-family:"Titillium Web";
  font-size: calc(0.1em + 0.5vw);
  font-style: italic;	
  text-align: left;
  color: white;
  display: flex;
  align-items: flex-end;	
  height: calc(1em + 0.8vw);
  margin: calc(0.1vw + 1px) calc(0.1vw + 3px) calc(0.1vw + 2px) calc(0.1vw + 3px);
  line-height: calc(0.1em + 0.7vw);
}

.fullname4 {
  font-family:"Titillium Web";
  font-size: calc(0.1em + 0.7vw);
  text-align: left;
  color: white;
  display: flex;
  align-items: flex-end;	
  height: calc(1em + 0.3vw);
  margin: 0px calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw + 3px);
  line-height: calc(0.1em + 0.8vw);
}

.fullname5 {
  font-family:"Titillium Web";
  font-size: calc(0.1em + 0.4vw);
  font-style: italic;	
  text-align: left;
  color: white;
  display: flex;
  align-items: flex-end;	
  height: calc(1em + 0.8vw);
  margin:  calc(0.1vw + 4px) calc(0.1vw + 3px) 0px calc(0.1vw + 3px);
  line-height: calc(0.1em + 0.5vw);
}

.hidden {
  opacity: 0;
}

/* Hover states for groups */
.item:hover {
  -ms-transform: scale(2); /* IE 9 */
  -webkit-transform: scale(2); /* Safari 3-8 */
  transform: scale(2); 
  z-index: 1;
}

.leftupper:hover {
  transform-origin: 0% 0%;
}

.left:hover {
  transform-origin: 0% 50%;
}

.leftlower:hover {
  transform-origin: 0% 100%;
}

.rightupper:hover {
  transform-origin: 100% 0%;
}

.right:hover {
  transform-origin: 100% 50%;
}

.rightlower:hover {
  transform-origin: 100% 100%;
}

.top:hover {
  transform-origin: 50% 0%;
}

.bottom:hover {
  transform-origin: 50% 100%;
}

.civil {
  background-color: #15A990;
  border-color: #18695F;
}

.education {
  background: #138ABC;
  border-color:#293890;
}

.business {
  background: #D25AA2;
  border-color:#BF206A;
}

.study {
  background: #97A93C;
  border-color:#35753C;
}

.ngo {
  background: #E7B020;
  border-color: #6D4315;
}

.qc{
  background: #EF546C;
  border-color:#C63443;
}

.testing {
  background: #755AA6;
  border-color:#5D3688;
}

@media (max-width : 1920px){
  .legend_head {
    font-size: calc(0.5em + 1.8vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.5vw;
    height: 1.5vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.6vw);
    text-align: left;
    line-height: calc(0.1em + 0.7vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 6.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.8vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.4vw);
    line-height: calc(0.1em + 2.3vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 1.8vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.6vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.85vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.6vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 0.5vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.5vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.6vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.6vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.35vw);
    height: calc(1em + 0.7vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.4vw);
  }
}


@media (max-width : 1680px){
  .legend_head {
    font-size: calc(0.5em + 1.8vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.6vw;
    height: 1.6vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.8vw);
    text-align: left;
    line-height: calc(0.1em + 0.9vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.0vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.8vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.4vw);
    line-height: calc(0.1em + 2.9vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 1.8vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.7vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 0.85vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.7vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.5vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 0.15vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.7vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.45vw);
    height: calc(1em + 1.15vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.55vw);
  }
}

@media (max-width : 1536px){
  .legend_head {
    font-size: calc(0.5em + 1.5vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.5vw;
    height: 1.5vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.75vw);
    text-align: left;
    line-height: calc(0.1em + 0.85vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.8vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.6vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.75vw);
    height: calc(1em + 2.5vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.75vw);
    height: calc(1em + 1.2vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.7vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.75vw);
    height: calc(1em + 0.7vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 1.2vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }
}

@media (max-width : 1400px){
  .legend_head {
    font-size: calc(0.5em + 1.8vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.6vw;
    height: 1.6vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.8vw);
    text-align: left;
    line-height: calc(0.1em + 0.9vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.9vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.8vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.7vw);
    height: calc(1em + 2.5vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.7vw);
    height: calc(1em + 1.50vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.5vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.7vw);
    height: calc(1em + 0.8vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.2vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }
}

@media (max-width : 1280px){
  .legend_head {
    font-size: calc(0.5em + 1.9vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.5vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.8vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 8vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.8vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 3.0vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 1.8vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.75vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 1.0vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.45vw);
    height: calc(1em + 1.354vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.65vw);
  }
}

@media (max-width : 1024px){
  .legend_head {
    font-size: calc(0.5em + 1.9vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.5vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 8.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 2.0vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 3.7vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 2.4vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 0.5vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 1.8vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 1.0vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.2vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.65vw);
  }
}

@media (max-width : 991px){
  .legend_head {
    font-size: calc(0.5em + 1.9vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.0vw);
  }
	
  .key {
    display: inline-block;
    width: 1.6vw;
    height: 1.6vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.7vw);
    text-align: left;
    line-height: calc(0.1em + 0.8vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 6.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.9vw);
    margin: calc(0.1vw - 2px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.0vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.4vw);
    line-height: calc(0.1em + 2.7vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 2.1vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.95vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.45vw);
    height: calc(1em + 0.45vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.3vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 1.0vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }
}

@media (max-width : 800px){
  .legend_head {
    font-size: calc(0.5em + 2.0vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.5vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 8.5vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 1px) calc(0.1vw + 3px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 2.0vw);
    line-height: calc(0.1em + 2.7vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 3.5vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.95vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 2.0vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.95vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 0.65vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.85vw);
    height: calc(1em + 1.4vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.95vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.3vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }
}
	
@media (max-width : 767px){
  .legend_head {
    font-size: calc(0.5em + 1.8vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.0vw);
  }
	
  .key {
    display: inline-block;
    width: 1.5vw;
    height: 1.5vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.65vw);
    text-align: left;
    line-height: calc(0.1em + 0.75vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 6.0vw);
  }	

  .atNum {
    font-size: calc(0.1em + 0.8vw);
    margin: calc(0.1vw - 1px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.0vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.4vw);
    line-height: calc(0.1em + 2.0vw);
    margin:0px calc(0.1vw + 1.8px);
  }

  .fullname {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 2.4vw);
    margin: calc(0.1vw + 0px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.75vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 1.1vw);
    margin:  0px calc(0.1vw + 0px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.75vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 0.55vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.7vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.75vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.3vw);
    height: calc(1em + 0.9vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.6vw);
  }
}

@media (max-width : 667px ){
  .legend_head {
    font-size: calc(0.5em + 1.8vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.0vw);
  }
	
  .key {
    display: inline-block;
    width: 1.5vw;
    height: 1.5vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.7vw);
    text-align: left;
    line-height: calc(0.1em + 0.8vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.0vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 1px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.9vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 2.7vw);
    margin: calc(0.1vw + 0px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 1.2vw);
    margin:  0px calc(0.1vw + 0px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.45vw);
    height: calc(1em + 0.6vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.55vw);
    height: calc(1em + 0.35vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.8vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 1.55vw);
    margin: 0px calc(0.1vw + 0px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.55vw);
  }
}

@media (max-width : 576px){
  .legend_head {
    font-size: calc(0.5em + 2.0vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.0vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 0px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.9vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 2.7vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 1.4vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.6vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.6vw);
    height: calc(1em + 0.7vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 1.1vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }
}
	
@media (max-width : 476px){
  .legend_head {
    font-size: calc(0.5em + 2.0vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7.0vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 0px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.8vw);
    line-height: calc(0.1em + 2.5vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 2.7vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.4vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 0.65vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.1vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.35vw);
    height: calc(1em + 1.0vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }
}
	

@media (max-width : 393px){
  .legend_head {
    font-size: calc(0.5em + 2.0vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 6.8vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 0px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.7vw);
    line-height: calc(0.1em + 2.65vw);
    margin:0px calc(0.1vw + 2px);
  }

  .fullname {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 2.8vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.5vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 0.65vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.2vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.35vw);
    height: calc(1em + 1.8vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.7vw);
  }
}

@media (max-width : 375px){
  .legend_head {
    font-size: calc(0.5em + 2.0vw);
    margin: 0px calc(0.1vw + 2px) calc(0.1vw + 10px) calc(0.1vw + 2px);
    line-height: calc(0.1em + 2.2vw);
  }
	
  .key {
    display: inline-block;
    width: 1.8vw;
    height: 1.8vw;
    border: 1px solid rgba(0, 0, 0, .2);
  }
	
  table, th, td {
    font-size: calc(0.1em + 0.9vw);
    text-align: left;
    line-height: calc(0.1em + 1.0vw);
  }
	
  .item {
    border-radius: calc(0.1em + 0.5vw);
    width: 100%;
    height: calc(1em + 7vw);
  }	

  .atNum {
    font-size: calc(0.1em + 1.0vw);
    margin: calc(0.1vw - 0px) calc(0.1vw + 1px) calc(0.1vw + 5px) calc(0.1vw - 4px);
    line-height: calc(0.1em + 1.2vw);
  }

  .symbol {
    font-weight: 600;
    font-size: calc(0.1em + 1.6vw);
    line-height: calc(0.1em + 3.0vw);
    margin:0px calc(0.1vw + 1px);
  }

  .fullname {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 2.8vw);
    margin: calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname2 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 1.5vw);
    margin:  0px calc(0.1vw + 1px) calc(0.1vw + 1px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname3 {
    font-size: calc(0.1em + 0.4vw);
    height: calc(1em + 0.65vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.8vw);
  }

  .fullname4 {
    font-size: calc(0.1em + 0.5vw);
    height: calc(1em + 0.05vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 2px) calc(0.1vw + 1px);
    line-height: calc(0.2em + 0.9vw);
  }

  .fullname5 {
    font-size: calc(0.1em + 0.35vw);
    height: calc(1em + 1.8vw);
    margin: 0px calc(0.1vw + 1px) calc(0.1vw + 0px) calc(0.1vw + 1px);
    line-height: calc(0.1em + 0.75vw);
  }
}

/*--------------------------------------------------------------
# UG plus TG circles
--------------------------------------------------------------*/

.circle_BSc {
  font-family: 'Poppins', sans-serif;
  height: calc(20px + 12vw);
  width: calc(20px + 12vw);
  font-size: calc(4px + 2vw);
  font-weight: 300;
  color: #BF2169;
  text-align: center;
  line-height: calc(1em + 0.5vw);
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  display: flex;
  background: rgba(244,222,123,0.5);
}

.circle_MSc {
  font-family: 'Poppins', sans-serif;
  height: calc(20px + 12vw);
  width: calc(20px + 12vw);
  font-size: calc(4px + 2vw);
  font-weight: 300;
  color: #BF2169;
  text-align: center;
  line-height: calc(1em + 0.5vw);
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  display: flex;
  background: rgba(24,181,196,0.5);
}

.circle {
  font-family: 'Poppins', sans-serif;
  height: calc(20px + 18vw);
  width: calc(20px + 18vw);
  font-size: calc(8px + 4vw);
  font-weight: 600;
  color: #BF2169;
  text-align: left;
  line-height: calc(0.2em + 4vw);
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  display: flex;
  background: rgba(141,198,63,0.5);
}

.circle span{
  font-weight: normal;
}

.plus {
  height: calc(2px + 6vw);
  width: calc(2px + 6vw);
  font-size: calc(8px + 5vw);
  font-weight: 500;
  color: #BF2169;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  display: flex;
}
