
body {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
  color: #2f5bea;
  outline: 0;
}

button:focus, input:focus {
  outline: 0;
}

p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 16px;
  /* font-family: "Nunito", sans-serif; */
}

p:last-child {
  margin-bottom: 0;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: bold;
  text-transform: capitalize;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 20px;
}

.pb-100 {
  padding-bottom: 10px;
}

.pb-70 {
  padding-bottom: 70px;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
  background-color: #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
  font-size: 15px;
  padding: 16px 40px;
  font-weight: 600;
  
}

/* .default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000000;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
} */

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.default-btn i {
  font-size: 14px;
  line-height: normal;
  margin-left: 4px;
  position: relative;
  top: 1px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  margin: 0 0 0 0;
  position: relative;
  line-height: 1;
}

.section-title p {
  max-width: 750px;
  margin: auto;
  /* line-height: 1.8; */
  text-align: left;
}

.section-title .bar {
  height: 4px;
  width: 85px;
  background: #2f5bea;
  margin: 20px auto 20px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.section-title .bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
          animation-name: MOVE-BG;
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(85px);
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(85px);
            transform: translateX(85px);
  }
}

.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  -webkit-box-shadow: 0 1px 20px 1px #82b440;
          box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}

.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.buy-now-btn:hover {
  background-color: #2f5bea;
  color: #ffffff;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}

.preloader .preloader {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin: 0 auto;
}

.preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #2f5bea !important;
  -webkit-animation: preloader 1.3s linear infinite;
          animation: preloader 1.3s linear infinite;
}

.preloader .preloader span:last-child {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar {
  position: relative;
  padding-top: 37px !important;
  padding-bottom: 20px !important;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          padding-top: 22px !important;
}

.navbar .container-fluid {
  max-width: 1400px;
  margin: auto;
}

.navbar-light {
  background-color: transparent !important;
}

.navbar-light .logo h3 {
  font-size: 35px;
  margin-bottom: 0;
}

.navbar-light .navbar-nav {
  margin: auto;
  margin-left: 230px;
}

.is-sticky a{ color: #000 !important;}
.navbar-light .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.ani1img{height: 80px;}

.ani1img2{height: 109px;}

.ani1img3 {
  height: 80px;
  padding-left: -10px;
  margin-top: -52px;
}


.ani12 {
	margin-left: 0;
	margin-top: 148px;
	position: relative;
	right: -60px;
}

.ani23 {
  margin-left: -103px;
  margin-top: 163px;
  /* float: right; */
}

.pstyle2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  /* padding-left: 100px; */
  margin-top: 0px;
  /* font-family: "Nunito", sans-serif; */
  color: #ffffff;
  /* margin-left: -440px; */
  margin-left: 22px;
  left: 51px;
  position: relative;
}

.pstyle {
  font-size: 22px;
  font-weight: bold;
  text-align: right;
  /* padding-left: 127px !important; *
  /* margin-top: -21px; */
  color: #ffffff;
  /* margin-left: 80px; */
  position: relative;
  left: -51px;
  top: 15px;
}


/* .logo img{
  height: 172px;
  position: absolute;
  z-index: 2;
  top: 2px;
} */


.navbar-navpad{    padding-left: 120px;}




.tsrdc ul.dropdown-menu {
  width: 190%;
}

.navbar-light .navbar-nav .nav-item span {
  /* display: block; */
  font-size: 12px;
}



a:hover, a:focus {
  text-decoration: none;
  color: #ffffff;
  outline: 0;
}


.navbar-light .navbar-nav .nav-item a:hover, .navbar-light .navbar-nav .nav-item a:focus, .navbar-light .navbar-nav .nav-item a.active {
  color: #2f5bea;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}





.navbar-light .navbar-nav .nav-item a i {
  font-size: 16px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -4px;
  margin-right: -4px;
}

.navbar-light .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.navbar-light .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.navbar-light .navbar-nav .nav-item:hover a, .navbar-light .navbar-nav .nav-item.active a {
  color: #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-light .others-option .option-item {
  color: #000000;
  display: inline-block;
  position: relative;
  line-height: 1;
}

.navbar-light .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.navbar-light .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  color: #000000;
  font-size: 18px;
}

.navbar-light .others-option .option-item .close-btn.active {
  display: block;
}

/*================================================
Banner Area CSS
=================================================*/
/* .main-banner {
  position: relative;
  height: 800px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/banner-image2.jpg);
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
} */

ul.nav li.dropdown:hover ul.dropdown-menu{ display: block; }




  .dropdown-toggle::after {
    position: relative;
    top: 2px;
}

.title2{ font-size: 16px; color: #ee8b23;}

.set{    overflow: hidden;}

.rtl {
  background-color: #f68e20;
  height: 290px;
  margin-right: 70px;
  z-index: 1;
  position: relative;
  left: -150px;
  padding: 30px;
  padding-top: 50px;
  margin-top: 130px;
}

.main-banner {
  position: relative;
  height: 580px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('../../img/rh-images/banner-image234.jpg'); 
  overflow: hidden;
  z-index: 999;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}

.main-banner .container-fluid {
  max-width: 1400px;
  margin: auto;
}

.main-banner .banner-content h1 {
  font-size: 65px;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.main-banner .banner-content p {
  margin-bottom: 0;
  color: #646464;
  line-height: 1.8;
  font-size: 18px;
}

.main-banner .banner-content .banner-holder {
  margin-top: 30px;
}

.main-banner .banner-content .banner-holder a {
  margin-right: 10px;
}

.main-banner .banner-content .banner-holder a:last-child {
  margin-right: 0;
}

.main-banner .banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner .banner-image {
  text-align: right;
}

.main-banner .banner-form {
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
  padding: 40px;
}

.main-banner .banner-form h3 {
  margin-bottom: 8px;
  font-size: 26px;
  text-align: center;
}

.main-banner .banner-form p {
  margin-bottom: 30px;
  text-align: center;
}

.main-banner .banner-form form .form-group {
  margin-bottom: 15px;
}

.main-banner .banner-form form .form-control {
  height: 55px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #333333;
  background-color: transparent;
  border: 1px solid #e5e0e0;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.main-banner .banner-form form .form-control:focus {
  border-color: #2f5bea;
}

.main-banner .banner-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.main-banner .banner-form form button {
  display: block;
  width: 100%;
  margin-top: 20px;
  color: #ffffff;
  background-color: #2f5bea;
  padding: 14px 25px;
  border: 1px solid #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.main-banner .banner-form form button:hover {
  border-color: #2f5bea;
  color: #2f5bea;
  background-color: transparent;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
}

.default-shape .shape-1 {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: -1;
  -webkit-animation: moveBounce 10s linear infinite;
          animation: moveBounce 10s linear infinite;
}

.default-shape .shape-2 {
  position: absolute;
  left: 10%;
  top: 16%;
  z-index: -1;
}

.default-shape .shape-2 img {
  -webkit-animation-name: rotateMe;
          animation-name: rotateMe;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.default-shape .shape-3 {
  position: absolute;
  left: 35%;
  bottom: 15%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

.default-shape .shape-4 {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

.default-shape .shape-5 {
  position: absolute;
  left: 50%;
  top: 10%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
            transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
            transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
            transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
            transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
            transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
            transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
            transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
            transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*================================================
Fun Facts Area CSS
=================================================*/
.single-fun-fact {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  padding: 30px 40px;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact .icon i {
  font-size: 50px;
  color: #2f5bea;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact h3 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact p {
  line-height: initial;
  margin: 0 0 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  font-weight: 500;
}

.single-fun-fact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 0%;
  background: #2f5bea;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact:hover {
  border: 1px solid #2f5bea;
}

.single-fun-fact:hover::before {
  height: 100%;
}

.single-fun-fact:hover .icon i {
  color: #ffffff;
}

.single-fun-fact:hover h3 {
  color: #ffffff;
}

.single-fun-fact:hover h3 .sign-icon {
  color: #ffffff;
}

.single-fun-fact:hover p {
  color: #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-content h4{ font-size: 20px;}

.about-content p{ font-size: 16px;}

.about-content h3 {
  font-size: 26px;
  margin-bottom: 0;
}

.about-content .bar {
  height: 4px;
  width: 85px;
  background: #2f5bea;
  margin: 20px auto 20px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.about-content .bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
          animation-name: MOVE-BG;
}

.about-content .about-btn {
  margin-top: 25px;
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-features {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.single-features .icon i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #2f5bea;
  color: #ffffff;
  font-size: 25px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features h3 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features2 h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


.single-features p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features::before {
  top: 50%;
  left: 50%;
  width: 0%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #2f5bea;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
}

.single-features:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-features:hover::before {
  width: 100%;
}

.single-features:hover .icon i {
  background-color: #ffffff;
  color: #2f5bea;
}

.single-features:hover h3 {
  color: #ffffff;
}

.single-features:hover p {
  color: #ffffff;
}

/*================================================
Screenshot Area CSS
=================================================*/
.screenshot-area {
  background-image: url(../img/screenshot.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.screenshot-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.screenshot-area .section-title h2 {
  color: #ffffff;
}

.screenshot-area .section-title p {
  color: #ffffff;
}

.screenshot-area .section-title .bar {
  background: #ffffff;
}

.screenshot-area .section-title .bar::before {
  background: #2f5bea;
}

.screenshot-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #2f5bea;
  position: relative;
}

.screenshot-slider.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #2f5bea;
  border-radius: 50%;
  margin: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.screenshot-slider.owl-theme .owl-dots .owl-dot:hover span::before, .screenshot-slider.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.screenshot-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-slides {
  position: relative;
}

.testimonial-slides .client-feedback {
  position: relative;
}

.testimonial-slides .client-feedback .single-feedback {
  text-align: center;
  position: relative;
  margin-bottom: 35px;
}

.testimonial-slides .client-feedback .single-feedback p {
  position: relative;
  max-width: 750px;
  line-height: 1.5;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  font-weight: normal;
  font-style: italic;
}

.testimonial-slides .client-feedback .single-feedback .icon i {
  font-size: 65px;
  color: #2f5bea;
  margin-bottom: 20px;
}

.testimonial-slides .client-thumbnails {
  position: relative;
  max-width: 450px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slides .client-thumbnails .item .img-fill {
  cursor: pointer;
  position: relative;
  text-align: center;
}

.testimonial-slides .client-thumbnails .item .img-fill img {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  width: 85px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.testimonial-slides .client-thumbnails .item .title {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 20px -100px 0;
  text-align: center;
}

.testimonial-slides .client-thumbnails .item .title h3 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 22px;
}

.testimonial-slides .client-thumbnails .item .title span {
  display: block;
  color: #2f5bea;
  font-size: 14px;
  margin-top: 8px;
}

.testimonial-slides .client-thumbnails .item.slick-center .title {
  opacity: 1;
  visibility: visible;
}

.testimonial-slides .client-thumbnails .item.slick-center .img-fill img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.testimonial-slides .next-arrow, .testimonial-slides .prev-arrow {
  position: absolute;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #bcbcbc;
  z-index: 1;
  border-radius: 50%;
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  font-size: 25px;
  visibility: hidden;
}

.testimonial-slides .next-arrow:hover, .testimonial-slides .prev-arrow:hover {
  color: #2f5bea;
}

.testimonial-slides .next-arrow {
  right: -20px;
}

.testimonial-slides .prev-arrow {
  left: -20px;
}

.testimonial-slides:hover .next-arrow, .testimonial-slides:hover .prev-arrow {
  opacity: 1;
  visibility: visible;
}

.testimonial-slides .slick-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.slick-slide {
  outline: 0;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  background-color: #f3f3f3;
}

.overview-content h3 {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.4;
}

.overview-content p {
  margin-bottom: 0;
}

.overview-content .bar {
  height: 4px;
  width: 85px;
  background: #2f5bea;
  margin: 20px auto 20px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.overview-content .bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
          animation-name: MOVE-BG;
}

.overview-content .overview-btn {
  margin-top: 25px;
}

.overview-content .overview-btn .default-btn {
  padding: 12px 25px;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-pricing-table {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  padding-bottom: 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.font-size-14{ font-size: 11px;}

.single-pricing-table2 {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  padding-bottom: 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-pricing-table .pricing-header {
  padding-top: 25px;
  padding-bottom: 20px;
}

.single-pricing-table .pricing-header h3 {
  font-size: 25px;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-pricing-table .price {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 8px;
  padding-bottom: 5px;
  border-top: 1px dashed #f3f3f3;
  border-bottom: 1px dashed #f3f3f3;
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  transition: 0.5s;
}

.single-pricing-table .price sup {
  top: -18px;
  font-size: 30px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
}

.single-pricing-table .price sub {
  bottom: 2px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-pricing-table .pricing-features {
  padding-left: 0;
  text-align: center;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 0;
  margin-left: 50px;
  margin-right: 50px;
}

.single-pricing-table .pricing-features li {
  margin-bottom: 10px;
  position: relative;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Nunito", sans-serif;
}

.single-pricing-table .pricing-features li:last-child {
  margin-bottom: 0;
}

.single-pricing-table .pricing-features li i {
  font-size: 14px;
  margin-right: 2px;
}

.single-pricing-table .pricing-btn {
  margin-top: 30px;
}

.single-pricing-table .pricing-btn .default-btn {
  padding: 10px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-pricing-table:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  background-color: #2f5bea;
}

.single-pricing-table:hover .pricing-header h3 {
  color: #ffffff;
}

.single-pricing-table:hover .price {
  color: #ffffff;
}

.single-pricing-table:hover .price sup {
  color: #ffffff;
}

.single-pricing-table:hover .price sub {
  color: #ffffff;
}

.single-pricing-table:hover .pricing-features li {
  color: #ffffff;
}

.single-pricing-table:hover .pricing-btn .default-btn {
  background-color: #ffffff;
  color: #2f5bea;
}

.pricing-list-tab .tabs {
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 40px;
}

.pricing-list-tab .tabs li {
  display: inline-block;
}

.pricing-list-tab .tabs li a {
  display: block;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  color: #000000;
  padding: 14px 30px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.pricing-list-tab .tabs li.current a {
  color: #ffffff;
  background-color: #2f5bea;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

/*================================================
Faq Area CSS
=================================================*/
.faq-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-accordion-content .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion-content .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}

.faq-accordion-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion-content .accordion .accordion-title {
  padding: 18px 20px 18px 55px;
  color: #000000;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: block;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: bold;
}

.faq-accordion-content .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #2f5bea;
  color: #ffffff;
}

.faq-accordion-content .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}

.faq-accordion-content .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}

.faq-accordion-content .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-accordion-content .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
  font-size: 15px;
}

.faq-accordion-content .accordion .accordion-content.show {
  display: block;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-team {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.single-team .image {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .image .social {
  position: absolute;
  top: 50px;
  right: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-team .image .social li {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: perspective(1000px) rotateY(90deg);
          transform: perspective(1000px) rotateY(90deg);
  margin-bottom: 8px;
}

.single-team .image .social li:last-child {
  margin-bottom: 0;
}

.single-team .image .social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  font-size: 16px;
  color: #2f5bea;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.single-team .image .social li a:hover {
  color: #ffffff;
  background-color: #2f5bea;
}

.single-team .image .social li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.single-team .image .social li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.single-team .image .social li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.single-team .image .social li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.single-team .image .content {
  background: #ffffff;
  -webkit-box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.single-team .image .content h3 {
  margin-bottom: 5px;
  font-size: 28px;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .image .content p {
  font-size: 16px;
  margin-top: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-team:hover .image .content {
  background-color: #2f5bea;
}

.single-team:hover .image .content h3 {
  color: #ffffff;
}

.single-team:hover .image .content p {
  color: #ffffff;
}

/*================================================
App Download Area CSS
=================================================*/
.app-download {
  background-image: url(../img/download-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.app-download::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.app-download-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.app-download-content h3 {
  font-size: 50px;
  margin-bottom: 0;
  color: #ffffff;
}

.app-download-content .bar {
  height: 4px;
  width: 85px;
  background: #ffffff;
  margin: 20px auto 20px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.app-download-content .bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #2f5bea;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
          animation-name: MOVE-BG;
}

.app-download-content p {
  margin-bottom: 0;
  color: #ffffff;
}

.app-download-content .app-holder {
  margin-top: 30px;
}

.app-download-content .app-holder a {
  margin-right: 10px;
}

.app-download-content .app-holder a:last-child {
  margin-right: 0;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-blog {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  margin-bottom: 30px;
}

.single-blog .image {
  position: relative;
}

.single-blog .image .btn {
  background-color: #2f5bea;
  display: inline-block;
  position: absolute;
  right: 14px;
  bottom: 0;
  border-radius: 0;
  padding: 8px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
}

.single-blog .image .btn a {
  color: #ffffff;
}

.single-blog .content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 25px;
}

.single-blog .content h3 {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .content h3 a {
  color: #000000;
}

.single-blog .content p {
  margin-bottom: 0;
}

.single-blog .content .read-more {
  font-size: 16px;
  display: inline-block;
  color: #2f5bea;
  font-weight: 500;
  margin-top: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .content .read-more i {
  font-size: 14px;
  margin-left: 5px;
}

.single-blog .content .post-meta {
  padding-left: 0;
  margin-bottom: 10px;
}

.single-blog .content .post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  color: #767676;
  margin-right: 20px;
  font-weight: 400;
}

.single-blog .content .post-meta li:last-child {
  margin-right: 0;
}

.single-blog .content .post-meta a {
  color: #767676;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .content .post-meta i {
  color: #2f5bea;
  margin-right: 5px;
}

.single-blog:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-blog:hover .content h3 a {
  color: #2f5bea;
}

.single-blog:hover .content .read-more {
  color: #2f5bea;
  letter-spacing: 1px;
}

.single-blog:hover .image .btn {
  right: 0;
  background-color: #ffffff;
}

.single-blog:hover .image .btn a {
  color: #2f5bea;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-form form .form-group {
  margin-bottom: 15px;
}

.contact-form form .form-control {
  height: 55px;
  padding: 0 15px;
  line-height: initial;
  color: #000000;
  background-color: transparent;
  border: 1px solid #cecfdf;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  font-size: 15px;
  font-weight: 500;
}

.contact-form form .form-control:focus {
  border-color: #2f5bea;
}

.contact-form form .form-control::-webkit-input-placeholder {
  color: #999999;
}

.contact-form form .form-control:-ms-input-placeholder {
  color: #999999;
}

.contact-form form .form-control::-ms-input-placeholder {
  color: #999999;
}

.contact-form form .form-control::placeholder {
  color: #999999;
}

.contact-form form textarea.form-control {
  height: auto !important;
  padding-top: 15px;
}

.contact-form .send-btn {
  margin-top: 10px;
}

.contact-form .send-btn .default-btn {
  padding: 12px 25px;
}

.contact-form .with-errors ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-form .with-errors ul li {
  color: red;
}

.contact-form #msgSubmit {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
}

.contact-form #msgSubmit.text-danger {
  margin-top: 20px !important;
}

.contact-info .contact-info-content h3 {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.5;
}

.contact-info .contact-info-content h2 {
  margin-bottom: 20px;
}

.contact-info .contact-info-content h2 a {
  display: inline-block;
  color: #2f5bea;
  text-transform: lowercase;
  font-size: 20px;
}

.contact-info .contact-info-content h2 a:hover {
  color: #000000;
}

.contact-info .contact-info-content h2 a:not(:first-child) {
  color: #000000;
}

.contact-info .contact-info-content h2 a:not(:first-child):hover {
  color: #2f5bea;
}

.contact-info .contact-info-content h2 span {
  display: block;
  color: #646464;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
}

.contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 2px;
}

.contact-info .contact-info-content .social li a {
  width: 40px;
  display: block;
  height: 40px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #646464;
  font-size: 15px;
  position: relative;
  text-align: center;
}

.contact-info .contact-info-content .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.contact-info .contact-info-content .social li a:hover {
  color: #ffffff;
  border-color: #2f5bea;
  background-color: #2f5bea;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/subscribe-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.subscribe-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.subscribe-content h2 {
  font-size: 40px;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.4;
}

.newsletter-form {
  max-width: 580px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 70px;
  padding-left: 25px;
  border-radius: 5px;
  outline: 0;
  color: #000000;
}

.newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #646464;
}

.newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #646464;
}

.newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #646464;
}

.newsletter-form .input-newsletter::placeholder {
  color: #646464;
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #2f5bea;
  color: #ffffff;
  border: none;
  height: 62px;
  padding: 0 30px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-form button:hover {
  background-color: #000000;
  color: #ffffff;
}

.newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 16px;
  font-weight: 500;
}

/*================================================
Banner Area Two CSS
=================================================*/
.main-banner-two {
  position: relative;
  height: 850px;
  z-index: 1;
  background-image: url(../img/main-banner2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.main-banner-two::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.main-banner-two .banner-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.main-banner-two .banner-content h1 {
  font-size: 65px;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.main-banner-two .banner-content p {
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.8;
  font-size: 18px;
}

.main-banner-two .banner-content .banner-form {
  position: relative;
  margin-top: 30px;
}

.main-banner-two .banner-content .banner-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 70px;
  padding-left: 25px;
  border-radius: 5px;
  outline: 0;
  color: #000000;
}

.main-banner-two .banner-content .banner-form .input-newsletter::-webkit-input-placeholder {
  color: #646464;
}

.main-banner-two .banner-content .banner-form .input-newsletter:-ms-input-placeholder {
  color: #646464;
}

.main-banner-two .banner-content .banner-form .input-newsletter::-ms-input-placeholder {
  color: #646464;
}

.main-banner-two .banner-content .banner-form .input-newsletter::placeholder {
  color: #646464;
}

.main-banner-two .banner-content .banner-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #2f5bea;
  color: #ffffff;
  border: none;
  height: 62px;
  padding: 0 30px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.main-banner-two .banner-content .banner-form button:hover {
  background-color: #000000;
  color: #ffffff;
}

.main-banner-two .banner-content .banner-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 16px;
  font-weight: 500;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Video Area CSS
=================================================*/
.video-content {
  text-align: center;
  background-image: url(../img/subscribe-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}

.video-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}

.video-content h3 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #ffffff;
}

.video-content .video-btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #2f5bea;
  position: relative;
  z-index: 1;
}

.video-content .video-btn i {
  font-size: 30px;
  position: relative;
  top: 2px;
  left: 4px;
}

.video-content .video-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.video-content .video-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.video-content .video-btn:hover, .video-content .video-btn .video-content .video-btn:focus {
  background-color: #2f5bea;
  color: #ffffff;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  background-attachment: fixed;
  background-image: url(../img/main-banner.jpg);
  overflow: hidden;
}

.page-title-content {
  text-align: center;
  margin-top: 0;
}

.page-title-content h2 {
  margin-bottom: 0;
  color: #000000;
  font-size: 50px;
}

.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 12px;
  margin-bottom: 0;
}

.page-title-content ul li {
  color: #000000;
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  margin-left: 10px;
  margin-right: 10px;
}

.page-title-content ul li a {
  display: inline-block;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.page-title-content ul li a:hover {
  color: #2f5bea;
}

.page-title-content ul li::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2f5bea;
}

.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
}

.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 48px;
  color: #000000;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #2f5bea;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -8px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #000000;
  margin-right: 21px;
  font-family: "Nunito", sans-serif;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #000000;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #646464;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #2f5bea;
}

.blog-details-desc .article-content .entry-meta ul li i {
  color: #2f5bea;
  margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #2f5bea;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  color: #646464;
  font-family: "Nunito", sans-serif;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 40px;
  background-color: #faf5f5;
  color: #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
  background-color: #2f5bea;
  color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  color: #646464;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #646464;
  font-family: "Nunito", sans-serif;
}

.blog-details-desc .article-footer .article-tags a:hover {
  color: #2f5bea;
}

.blog-details-desc .article-footer .article-share {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #646464;
  font-family: "Nunito", sans-serif;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #2f5bea;
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
  font-size: 12px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #2f5bea;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 24px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::after, .blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #2f5bea;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-navigation .navigation-links .nav-previous a:hover i {
  margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-navigation .navigation-links .nav-next a:hover i {
  margin-left: 0;
}

.post-navigation .navigation-links div a {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 30px;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 115px;
  color: #000000;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #000000;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #2f5bea;
  border-color: #2f5bea;
}

.comments-area .comment-author {
  font-size: 18px;
  margin-bottom: 0.1em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 100px;
  left: -115px;
  position: absolute;
  width: 100px;
  border-radius: 50px;
}

.comments-area .comment-author .fn {
  font-size: 20px;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  margin-bottom: .8em;
  color: #646464;
  letter-spacing: 0.01em;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.comments-area .comment-metadata a {
  color: #646464;
}

.comments-area .comment-metadata a:hover {
  color: #2f5bea;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  position: relative;
  font-size: 30px;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  font-weight: 400;
  color: #000000;
  margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
  border-color: #2f5bea;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 4px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #646464;
  font-weight: normal;
  position: relative;
  top: -2px;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #2f5bea;
  border: none;
  color: #ffffff;
  padding: 15px 30px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 16px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #000000;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-transform: capitalize;
  position: relative;
  font-size: 25px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  background: #2f5bea;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #2f5bea;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button:hover {
  background-color: #000000;
  color: #ffffff;
}

.widget-area .widget_colugo_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_colugo_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_colugo_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_colugo_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_colugo_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/image4.jpg);
}

.widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/image5.jpg);
}

.widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/image6.jpg);
}

.widget-area .widget_colugo_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_colugo_posts_thumb .item .info time {
  display: block;
  color: #646464;
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
  margin-top: -2px;
  margin-bottom: 3px;
  font-size: 14px;
}

.widget-area .widget_colugo_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 18px;
}

.widget-area .widget_colugo_posts_thumb .item .info .title a {
  display: inline-block;
  font-family: "Nunito", sans-serif;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #646464;
  padding-left: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #2f5bea;
  height: 8px;
  width: 8px;
  content: '';
  left: 0;
  top: 8px;
  position: absolute;
  border-radius: 30px;
}

.widget-area .widget_categories ul li a {
  color: #000000;
  display: block;
}

.widget-area .widget_categories ul li a:hover {
  color: #2f5bea;
}

.widget-area .widget_categories ul li .post-count {
  float: right;
}

.widget-area .widget_recent_comments ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #646464;
  padding-left: 14px;
  line-height: 1.5;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 15.5px;
}

.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
  background: #2f5bea;
  position: absolute;
  height: 8px;
  width: 8px;
  content: '';
  left: 0;
  top: 8px;
  border-radius: 30px;
}

.widget-area .widget_recent_comments ul li a {
  display: inline-block;
  color: #000000;
}

.widget-area .widget_recent_comments ul li a:hover {
  color: #2f5bea;
}

.widget-area .widget_recent_entries ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #646464;
  padding-left: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
}

.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li::before {
  background: #2f5bea;
  height: 8px;
  width: 8px;
  content: '';
  left: 0;
  top: 8px;
  position: absolute;
  border-radius: 30px;
}

.widget-area .widget_recent_entries ul li a {
  color: #000000;
  display: block;
}

.widget-area .widget_recent_entries ul li a:hover {
  color: #2f5bea;
}

.widget-area .widget_recent_entries ul li .post-count {
  float: right;
}

.widget-area .widget_meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #646464;
  padding-left: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: #2f5bea;
  height: 8px;
  width: 8px;
  content: '';
  left: 0;
  top: 8px;
  position: absolute;
  border-radius: 30px;
}

.widget-area .widget_meta ul li a {
  color: #000000;
  display: block;
}

.widget-area .widget_meta ul li a:hover {
  color: #2f5bea;
}

.widget-area .widget_meta ul li .post-count {
  float: right;
}

.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  color: #646464;
  padding-left: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_archive ul li::before {
  background: #2f5bea;
  height: 8px;
  width: 8px;
  content: '';
  left: 0;
  top: 8px;
  position: absolute;
  border-radius: 30px;
}

.widget-area .widget_archive ul li a {
  color: #000000;
  display: block;
}

.widget-area .widget_archive ul li a:hover {
  color: #2f5bea;
}

.widget-area .widget_archive ul li .post-count {
  float: right;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: #000000;
  font-weight: 400;
  font-size: 14.5px !important;
  font-family: "Nunito", sans-serif;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #2f5bea;
  border-color: #2f5bea;
}

/*================================================
Footer Area CSS
=================================================*/
.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  display: block;
  margin-bottom: 25px;
}

.single-footer-widget .logo h2 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 700;
}

.single-footer-widget p {
  margin-bottom: 0;
}

.single-footer-widget .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 16px;
}

.single-footer-widget .social-list li {
  display: inline-block;
  list-style-type: none;
  margin-right: 10px;
}

.single-footer-widget .social-list li:last-child {
  margin-right: 0;
}

.single-footer-widget .social-list a {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 38px;
  background-color: #2f5bea;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid #2f5bea;
}

.single-footer-widget .social-list a:hover {
  background-color: transparent;
  color: #000000;
}

.single-footer-widget h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

.single-footer-widget .list {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .list li {
  margin-bottom: 8px;
  list-style-type: none;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
}

.single-footer-widget .list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .list li a {
  display: block;
  color: #818992;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .list li a:hover {
  color: #2f5bea;
  letter-spacing: 1px;
}

.single-footer-widget .footer-holder {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .footer-holder li {
  list-style-type: none;
  margin-bottom: 10px;
}

.single-footer-widget .footer-holder li:last-child {
  margin-bottom: 0;
}

/*================================================
Copy Right CSS
=================================================*/
.copy-right {
  background-color: #fafafa;
  padding-top: 30px;
  padding-bottom: 30px;
}

.copy-right-content {
  text-align: center;
}

.copy-right-content p {
  font-size: 16px;
  margin-bottom: 0;
  color: #000000;
  font-weight: 600;
}

.copy-right-content p a {
  font-size: 18px;
  font-weight: bold;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #2f5bea;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  border-radius: 50%;
  border: 1px solid #2f5bea;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
/*# sourceMappingURL=style.css.map */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");
:root {
  --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

main {
  padding: 2vw;
  /* padding: revert-layer; */
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
ul.infoGraphic li {
  position: relative;
  width: 98%;
  max-width: 18em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
  padding-bottom: 60px;
  list-style: none;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}

ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 4em;
  font-weight: 900;
  width: 150px;
  text-align: center;
  padding-top: 36px;
}
ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}
ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}
ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}
ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}
ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}
ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 15em;
  height: 7em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 8em 3em 1em 6px;
  position: relative;
}

ul.infoGraphic li .content h2 {
  font-size: 16px;
  font-weight: 500;
  text-align: center !important;
  position: relative;
  width: 100%;
  margin: 0 auto;
  top: 52px;
  text-transform: uppercase;
  margin-left: 16px;
}

ul.infoGraphic li .content p {
  line-height: 1.5em;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.icon {
  position: absolute;
  font-size: 40px;
  text-align: center;
  top: -37px;
  left: 80%;
  transform: translateX(-50%);
}

.roll .single-features{    padding: 16px;     padding-top: 40px;}

.rowheight{ display: flex;
      flex-wrap: wrap;}

.icon2 {
  /* position: absolute; */
  /* font-size: 40px; */
  /* text-align: center; */
  /* top: -37px; */
  /* left: 80%; */
  /* transform: translatex(-50%); */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  position: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}


.icon:before {
  color: #388dc9;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "";
}

.iconSocial:before {
  content: "";
}

.iconAirplane:before {
  content: "";
}

.iconMap:before {
  content: "";
}

.iconBulb:before {
  content: "";
}

.iconPeace:before {
  content: "";
}


.controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}

.sliderBox {
  text-align: center;
}
.sliderBox .range-value {
  font-weight: 500;
  font-size: 22px;
}

input[type=range] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px black;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #eee;
}

input[type=range]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}



@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

@keyframes shadow-pulse-big
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
  }
}

.example-1 {
  float: left;
  /* margin: 40px; */
  width: 60px;
  height: 60px;
  /* font: 13px/130px 'Barlow Semi Condensed', sans-serif; */
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  /* background: rgba(30, 144, 255, 0.6); */
  border-radius: 50%;
  animation: shadow-pulse 1s infinite;
}



.sec::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0px;
  content: '';
  background: #f68e20;
  animation: sec 1500ms infinite;
}

@keyframes sec {
  from {
    width: 0;
  }
  
  to {
    width: 100%;
  }
}



.c-dashed-line__path {
	animation: c-dashed-line-path 3s ease-in-out infinite alternate;
	fill: none;
	stroke: #31CC89;
	stroke-dasharray: 940; /* this is the entire length of the line */
	stroke-dashoffset: 940; /* this is the entire length of the line */
	stroke-width: 3;
}

.c-dashed-line__dash {
	fill: none;
	stroke: #FFFFFF; /* this must match the background color */
	stroke-dasharray: 16 10; /* draws a 10px dash line with a 16px gap between */
	stroke-width: 12; /* make the dashed line slightly bigger than the one it's covering */
}

@keyframes c-dashed-line-path {
	from {
		stroke-dashoffset: 940;
	}
	to {
		stroke-dashoffset: 0;
	}
}


.cdashedline{rotate: 190deg;
  margin-top: -190px;
  margin-bottom: -160px;}


  .iconone1{ background: linear-gradient(45deg, #ffbc00, #ff0058);}

  .iconone2{ background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);}

  .iconone3{  background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);}

  .iconone4{ background-image: linear-gradient(to right, #74ebd5 0%, #9face6 100%);}

  .socialimp{ width: 610px;
    padding: 0px;}  
    
    
    .indcss{    margin-top: -70px;
      margin-left: 60px;}

    .ind {
      padding-top: 20px;
      font-size: 16px;
      font-weight: bold;
      color: #304156;
  }

  .ind2{   float: left;
    font-size: 16px;
    font-weight: bold;
    color: #f2b319;
    margin-top: -130px;
    margin-left: 50px;

}

.ind3{   
  font-size: 16px;
  font-weight: bold;
  color: #cc3253;
  margin-top: -130px;
  text-align: right;
  margin-right: 50px;
}

  .indnew .single-pricing-table:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color:transparent !important;
}


.arrowmark {
  width: 150px;
  position: absolute;
  margin-left: -150px;
  margin-top: -70px;
}

.arrowmark2 {
  width: 150px;
  position: absolute;
  margin-left: 210px;
  margin-top: -40px;
}


.switch-box{ display: none;}


.single-pricing-table {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  padding-bottom: 90px !important;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fundimage{width: 80%;}





.fund .single-pricing-table:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  background-color: #fff !important;
}


.fund .single-pricing-table {

  padding-bottom: 0px !important;
  padding-top: 70px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


.mmp .single-pricing-table {

  padding-bottom: 15px !important;
  padding-top: 70px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mmp li{ text-align: left;}

.ptc li{text-align: left;}

.mcmp{    background-color: #d9dffd;
  padding: 30px;
  border-radius: 10px;}


  .mmp .single-pricing-table:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: #fff !important;
  }

  .pt35{ padding-top: 80px;}

  .pt35l2{padding-top: 50px;}

  .pt35l ul {
    margin-left: 56px;
    padding-bottom: 70px;
}


  .bounce {
    display: inline-block;
    position: relative;
    -moz-animation: bounce 0.5s infinite linear;
    -o-animation: bounce 0.5s infinite linear;
    -webkit-animation: bounce 0.5s infinite linear;
    animation: bounce 0.5s infinite linear;
  }

  @-webkit-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-moz-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-o-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @-ms-keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }
  @keyframes bounce {
      0% { top: 0; }
      50% { top: -0.2em; }
      70% { top: -0.3em; }
      100% { top: 0; }
  }

  .font-size-35 {
    font-size: 18px !important;
    padding-top: 10px;
}

  .single-fun-fact:hover .icon i {
    color: #2f5bea;
}
 
.mrg-top{    margin-top: 80px !important;}
  
  .elm{
    background-color: #ffffff;
    padding: 10px;
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 81px;
    width: 27%;
    box-shadow: 1px 2px 5px 1px #ccc;
}


.spinner-wrap {
  position: relative;
  margin-top: 100px;
}
.spinner-item {
  border: 1px solid rgb(255, 98, 0);
  border-radius: 50%;
  height: 200px;
  width: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: zoom 2s linear 0.75s infinite;
          animation: zoom 2s linear 0.75s infinite;
}
.spinner-item--2 {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.spinner-item--3 {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}

@-webkit-keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}



.icon2 {
  position: absolute;
  font-size: 40px;
  text-align: center;
  top: -37px;
  left: 50% !important;
  transform: translateX(-50%);
}





/* roundanimationcss */



@-webkit-keyframes clockwise {
  0% {
      -webkit-transform: rotate(0) translate(-165px) rotate(0);
      transform: rotate(0) translate(-165px) rotate(0)
  }

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

@keyframes clockwise {
  0% {
      -webkit-transform: rotate(0) translate(-165px) rotate(0);
      transform: rotate(0) translate(-165px) rotate(0)
  }

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

@-webkit-keyframes anti-clockwise {
  0% {
      -webkit-transform: rotate(0) translate(165px) rotate(0);
      transform: rotate(0) translate(165px) rotate(0)
  }

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

@keyframes anti-clockwise {
  0% {
      -webkit-transform: rotate(0) translate(165px) rotate(0);
      transform: rotate(0) translate(165px) rotate(0)
  }

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

@-webkit-keyframes rotating {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }

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

@keyframes rotating {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }

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

@-webkit-keyframes rotating-diagonal {
  0% {
      -webkit-transform: translate(-300px,150px) rotate(0);
      transform: translate(-300px,150px) rotate(0)
  }

  100% {
      -webkit-transform: translate(300px,-150px) rotate(180deg);
      transform: translate(300px,-150px) rotate(180deg)
  }
}

@keyframes rotating-diagonal {
  0% {
      -webkit-transform: translate(-300px,150px) rotate(0);
      transform: translate(-300px,150px) rotate(0)
  }

  100% {
      -webkit-transform: translate(300px,-150px) rotate(180deg);
      transform: translate(300px,-150px) rotate(180deg)
  }
}

.animation--clockwise {
  -webkit-animation: clockwise 30s linear infinite normal;
  animation: clockwise 30s linear infinite normal
}

.animation--anti-clockwise {
  -webkit-animation: anti-clockwise 30s linear infinite normal;
  animation: anti-clockwise 30s linear infinite normal
}

.animation--rotating {
  -webkit-animation: rotating 15s linear infinite normal;
  animation: rotating 15s linear infinite normal
}

.animation--rotating-diagonal {
  -webkit-animation: rotating-diagonal 15s linear infinite alternate;
  animation: rotating-diagonal 15s linear infinite alternate
}

@-webkit-keyframes blink {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@keyframes blink {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@-webkit-keyframes jump {
  0% {
      top: 0
  }

  50% {
      top: 50px
  }

  100% {
      top: 0
  }
}

@keyframes jump {
  0% {
      top: 0
  }

  50% {
      top: 50px
  }

  100% {
      top: 0
  }
}

.animation {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink .7s infinite;
  animation: blink .7s infinite
}

@-webkit-keyframes floating {
  from {
      -webkit-transform: translate(0,0);
      transform: translate(0,0)
  }

  65% {
      -webkit-transform: translate(0,10px);
      transform: translate(0,10px)
  }

  to {
      -webkit-transform: translate(0,0);
      transform: translate(0,0)
  }
}

@keyframes floating {
  from {
      -webkit-transform: translate(0,0);
      transform: translate(0,0)
  }

  65% {
      -webkit-transform: translate(0,10px);
      transform: translate(0,10px)
  }

  to {
      -webkit-transform: translate(0,0);
      transform: translate(0,0)
  }
}

.floating {
  -webkit-animation: floating 4s ease-in-out infinite;
  animation: floating 4s ease-in-out infinite;
  -webkit-filter: none;
  filter: none
}

@-webkit-keyframes fade-out {
  0% {
      opacity: 1
  }

  100% {
      opacity: 0
  }
}

@keyframes fade-out {
  0% {
      opacity: 1
  }

  100% {
      opacity: 0
  }
}

@-webkit-keyframes bubble-v {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  100% {
      -webkit-transform: translateY(-640px);
      transform: translateY(-640px)
  }
}

@keyframes bubble-v {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  100% {
      -webkit-transform: translateY(-640px);
      transform: translateY(-640px)
  }
}

@-webkit-keyframes bubble-v-left {
  0% {
      margin-bottom: 0;
      opacity: .1
  }

  20% {
      opacity: 1
  }

  100% {
      margin-bottom: 640px;
      opacity: 1;
      left: 0
  }
}

@keyframes bubble-v-left {
  0% {
      margin-bottom: 0;
      opacity: .1
  }

  20% {
      opacity: 1
  }

  100% {
      margin-bottom: 640px;
      opacity: 1;
      left: 0
  }
}

@-webkit-keyframes bubble-v-right {
  0% {
      margin-bottom: 0;
      opacity: .1
  }

  20% {
      opacity: 1
  }

  100% {
      margin-bottom: 640px;
      opacity: 1;
      left: 100%
  }
}

@keyframes bubble-v-right {
  0% {
      margin-bottom: 0;
      opacity: .1
  }

  20% {
      opacity: 1
  }

  100% {
      margin-bottom: 640px;
      opacity: 1;
      left: 100%
  }
}

@-webkit-keyframes shake-v {
  0% {
      margin-left: 0
  }

  100% {
      margin-left: 20px
  }
}

@keyframes shake-v {
  0% {
      margin-left: 0
  }

  100% {
      margin-left: 20px
  }
}

.dotted {
  border-bottom: 1px dotted
}

.alter3-header .container {
  padding-bottom: 20rem
}

@media (min-width: 768px) {
  .alter3-header .container {
      padding-bottom:15rem
  }
}

.alter3-header .animation-shape {
  position: absolute
}

.alter3-header .animation-shape.shape-triangle {
  top: 50%;
  left: 50%
}

.alter3-header .animation-shape.shape-triangle div {
  opacity: .1;
  position: relative;
  background-color: #fff;
  text-align: left;
  -webkit-transform: rotate(-60deg) skewX(-30deg) scale(1,.866);
  transform: rotate(-60deg) skewX(-30deg) scale(1,.866)
}

.alter3-header .animation-shape.shape-triangle div:after,.alter3-header .animation-shape.shape-triangle div:before {
  content: '';
  position: absolute;
  background-color: inherit
}

.alter3-header .animation-shape.shape-triangle div,.alter3-header .animation-shape.shape-triangle div:after,.alter3-header .animation-shape.shape-triangle div:before {
  width: 15px;
  height: 15px;
  border-top-right-radius: 30%
}

.alter3-header .animation-shape.shape-triangle div:before {
  -webkit-transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
  transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%)
}

.alter3-header .animation-shape.shape-triangle div:after {
  -webkit-transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
  transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%)
}

.alter3-header .animation-shape.shape-ring {
  top: 75%;
  left: 25%
}

.alter3-header .animation-shape.shape-ring div {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 5px solid #ff6f61
}

.alter3-header .animation-shape.shape-circle {
  top: 20%;
  left: 50%
}

.alter3-header .animation-shape.shape-circle div {
  width: 15px;
  height: 15px;
  background: rgba(237,244,248,.3);
  border-radius: 50%;
  margin: 0
}

.alter3-header .animation-shape.shape-diamond {
  top: 35%;
  left: 25%
}

.alter3-header .animation-shape.shape-diamond div {
  opacity: .5;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #007cb7;
  position: relative;
  top: -10px
}

.alter3-header .animation-shape.shape-diamond div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-top-color: #007cb7
}

.alter3-header .static-shape {
  position: absolute
}

.alter3-header .static-shape.shape-ring-1 {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  border: 15px solid rgba(255,255,255,.5);
  top: 15%;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.alter3-header .static-shape.shape-ring-2 {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  border: 15px solid rgba(255,255,255,.5);
  top: 5%;
  right: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%)
}

.alter3-header .static-shape.shape-circle-1 {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,.09);
  border-radius: 50%;
  margin: 0;
  top: 22%;
  left: 22%
}

.alter3-header .static-shape.pattern-dots-1 {
  top: 0;
  right: 0;
  width: 250px;
  height: 50%;
  background-color: transparent;
  background-image: radial-gradient(rgba(255,255,255,.1) 3px,transparent 3px);
  background-size: 30px 30px
}

.alter3-header .static-shape.pattern-dots-2 {
  left: 0;
  bottom: 0;
  width: 150px;
  height: 20%;
  background-color: transparent;
  background-image: radial-gradient(rgba(255,255,255,.1) 3px,transparent 3px);
  background-size: 30px 30px
}

.alter3-header .static-shape.ghost-shape {
  opacity: .3;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 120px
}

.alter3-header .static-shape.ghost-shape-1 {
  top: 0;
  -webkit-transform: translate3D(30%,-93%,0) skewX(35deg) rotate(-12deg);
  transform: translate3D(30%,-93%,0) skewX(35deg) rotate(-12deg);
  background-color: #e56357;
  max-height: 560px;
  -webkit-box-shadow: none;
  box-shadow: none
}

.alter3-features .shapes-container {
  overflow: unset
}


.shapes-container {
  position: absolute;
  top: 370px;
  left: auto;
  right: auto;
  bottom: 0;
}

.alter3-features .shape {
  position: absolute;
}

.section, section {
  position: relative;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

@media (min-width: 992px) {
  .alter3-features .rotated-cards {
      -webkit-transform:rotate(-5deg);
      transform: rotate(-5deg)
  }
}

.alter3-features .shape {
  position: absolute
}

.alter3-features .shape-ring {
  right: 0;
  top: 0;
  -webkit-transform: translate3d(50%,-50%,0);
  transform: translate3d(50%,-50%,0)
}

.alter3-features .shape-ring-1 .animation {
  border-radius: 50%;
  height: 680px;
  width: 680px;
  /* border: 5px solid #edf4f8; */
  border: 5px solid #151240;
  -webkit-animation-duration: 45s;
  animation-duration: 45s
}

.alter3-features .shape-ring-2 .animation {
  border-radius: 50%;
  height: 560px;
  width: 560px;
  /* border: 1px solid #d3d4d5; */
   border: 1px solid #f68e20;
  -webkit-animation-duration: 60s;
  animation-duration: 60s
}

.alter3-features .shape-ring .animation {
  border-style: dashed
}

.alter3-features .shape-circle {
  top: 50px;
  right: -120px
}

.alter3-features .shape-circle div {
  width: 15px;
  height: 15px;
  background: #5f9ed2;
  border-radius: 50%;
  margin: 0
}

.alter3-features .background-shape-main {
  z-index: 0;
  left: 0;
  top: 10%;
  width: 500px;
  height: 720px;
  -webkit-transform: translate3d(-25%,20%,0) rotate(-30deg);
  transform: translate3d(-25%,20%,0) rotate(-30deg);
  background-image: linear-gradient(35deg,#fff 0,#edf4f8 100%)
}



.tsapp{z-index: 10000;
position: relative;}



.cont h3 {
  font-size: 34px;
  margin: 0 0 0 0;
  position: relative;
  line-height: 1.3;
}

.telin .box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 90%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}
.telin .box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  border-radius: 10px;
}
.telin .box:hover {
  transform: scale(1.2);
}

.testimonial-slides .client-feedback .single-feedback .icon i {
  font-size: 17px;
  color: #2f5bea;
  margin-bottom: 20px;
  margin-top: 40px;
}



.wave-effect {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 150px;
  overflow: hidden
}

.shape-one {
  z-index: 15;
  opacity: .5
}

.shape-two {
  z-index: 10;
  opacity: .75
}

.shape-three {
  z-index: 5
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom
}

.waves-shape {
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.wave-one {
  background-size: 50% 100px;
  bottom: -40px
}

.wave-anim .wave-one {
  animation: move-wave 3s;
  -webkit-animation: move-wave 3s;
  animation-delay: 1s
}

.wave-two {
  background-image: url("../img/wave2.png");
  background-size: 50% 120px
}

.wave-anim .wave-two {
  animation: move_wave 10s linear infinite
}

.wave-three {
  background-image: url("../img/wave3.png");
  background-size: 50% 100px
}

.wave-anim .wave-three {
  animation: move_wave 15s linear infinite
}

@keyframes move_wave {
  0% {
      transform: translateX(0) translateZ(0) scaleY(1)
  }

  50% {
      transform: translateX(-25%) translateZ(0) scaleY(0.55)
  }

  100% {
      transform: translateX(-50%) translateZ(0) scaleY(1)
  }
}

.shape-one {
  opacity: .5;
  z-index: 5
}

.shape-two {
  opacity: .6;
  z-index: 10
}

.shape-three {
  opacity: 1;
  z-index: 15
}

.wave-one path {
	fill: #0b2b91;
	stroke: #0b32b0;
}





.card-wrapper{
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list .card-item{
  list-style: none;
}

.card-list .card-item .card-link{
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active{
  cursor: grabbing;
}

.card-list .card-item .card-link:hover{
  border-color: #5372f0;
}

.card-list .card-link .card-image{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge{
  color: blue;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.card-list .card-link .card-title{
  font-size: 16px;
  color: #000;
  font-weight: 100;
}

.card-list .card-link .card-button{
  height: 35px;
  width: 35px;
  color: #5372f0;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 2px solid #5382f0;
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button{
  color: #fff;
  background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet{
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet-active{
  opacity: 1;
}

.card-wrapper .swiper-slide-button{
  color: #5372f0;
  margin-top: -35px;
} 

@media screen and (max-width: 768px){
  .card-wrapper{
      margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button{
      display: none;
  }
}


.card-wrapper{
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card-list .card-item{
  list-style: none;
}

.card-list .card-item .card-link{
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active{
  cursor: grabbing;
}

.card-list .card-item .card-link:hover{
  border-color: #5372f0;
}

.card-list .card-link .card-image{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge{
  color: blue;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.card-list .card-link .card-title{
  font-size: 16px;
  color: #000;
  font-weight: 100;
}

.card-list .card-link .card-button{
  height: 35px;
  width: 35px;
  color: #5372f0;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 2px solid #5382f0;
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button{
  color: #fff;
  background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet{
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet-active{
  opacity: 1;
}

.card-wrapper .swiper-slide-button{
  color: #5372f0;
  margin-top: -35px;
} 

@media screen and (max-width: 768px){
  .card-wrapper{
      margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button{
      display: none;
  }
}






footer:before{
  background-image: url(../img/foot.png);
  background-size: contain;
  background-repeat: repeat no-repeat !important;
  background-position-x: center;
  height: 100px !important;
}




footer:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -30px;
  background-position-y: bottom;
  transform: rotate(180deg);
  background-repeat: repeat no-repeat;
}

footer {
  position: relative;
  min-height: fit-content;
  padding: 110px 0 50px 0;
  background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
  overflow: hidden;
  color: #fff;
}

footer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 294px;
  background-position-y: bottom;
  background-repeat: repeat no-repeat;
}


footer::after {
  background-image: url(../img/footerimg.png);
  background-size:cover;
  background-repeat: repeat no-repeat !important;
  background-position: bottom;
  height: 100px !important;
}

.disc{    font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding-top: 13px;}

  .title{ color: #fff;}

  .quick-link-inner a{ color: #fff;}

  .quick-link-inner ul li{ list-style-type: none;}

  .quick-link-inner ul{ padding-left: 10px;}

  .info-wrapper a{color: #fff;}


  .edu1 {
    font-size: 25px;
    margin-top: 80px;
    color: #fff;
}

  .edu2 {
    font-size: 25px;
    margin-top: 80px;
    color: #fff;
}


  .main-banner2::after {
    display: block;
    content: '';
    height: 100%;
    background: url(../img/wave-shap.svg) bottom no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 1;
    top: -600px;
    position: relative;
}

.ulp{    padding-left: 49px;}

.mydos ul{ margin-bottom: 0px;}

.mydos li{    font-size: 15px;}

.gray-light-bg {
  background: #f4f7fa;
}
.homerg{    padding: 9px 24px 9px 19px;}
.main-banner2 {
  display: block;
  content: '';
  height: 100%;
  background: url(../img/reigster.jpg) bottom no-repeat;
  background-size: cover;
  position: absolute;
  background-position: 10% 50%;
}

/* .footbottom {
	font-size: 14px;
	text-align: center;
	color: #000;
  top: 40px;
	z-index: 11111;
	position: relative;
	font-weight: bold;
} */



.main-banner2 {
	position: relative;
	height: 680px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
background: #5FC0E2;
background: linear-gradient(135deg, #5FC0E2, #2B69D8);
	overflow: hidden;
	z-index: 1;
	border-top: 1px dashed #3e444f;
}

.imz {
	z-index: 1;
	position: relative;
  margin-left: 80px;
}

.rdcric{text-align: center;
  padding-top: 80px;
  padding-right: 0px;
}
.ulimp{background-color: #166696;
  padding: 17px 0px 17px 0px;
    padding-left: 0px;
  border-radius: 10px;
  padding-left: 0px;
  margin-left: 0px !important;
  text-align: inherit;}

.pad {
	padding: 30px;
	padding-left: 0;
	padding-right: 0;
  z-index: 111111;
  position: relative;
}

   .pad .tabs li a {
    display: block;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    color: #000000;
    padding: 14px 57px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
  }

  .tab_content{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
  }

  .pad .tabs {
    text-align: center;
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 10px !important; 
  }


  .pad .form-control {
    height: 35px !important;
  }




        
  .ico:before, .ico svg {
    border-radius: 50%;
    transform-origin: 50% 0;
    transform: rotate(-8deg);
    animation: osc 0.3s ease-in-out infinite alternate;
  }
  
  @keyframes osc {
    to {
      transform: rotate(8deg);
    }
  }
  .idc {
    --narr: 1;
    --notnarr: calc(1 - var(--narr));
    --wide: 0;
    --notwide: calc(1 - var(--wide));
    --nor: calc(var(--notnarr)*var(--notwide));
    --or: calc(1 - var(--nor));
    --sum: calc(1 + var(--narr));
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow-x: hidden;
    min-height: 74vh;
    background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6);
  }
  .idc:before {
    --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) +
               var(--or)*12.5em);
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: calc(var(--sum)*2*var(--uw));
    transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
    background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
    background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
    clip-path: inset(0 calc(var(--sum)*25%) 0 0);
    filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
    content: "";
  }
  @media (max-width: 480px) {
      .idc:before {
      display: none;
    }
  }
  @media (min-width: 38em) {
      .idc {
      --narr: 0 ;
    }
  }
  @media (min-width: 58em) {
      .idc {
      --wide: 1 ;
    }
  }
  
  .hid {
    position: absolute;
    clip-path: inset(50%);
  }
  
  .idc path {
    --s: 2;
    fill: none;
    stroke: currentcolor;
    stroke-width: var(--s);
    stroke-linecap: round;
  }
  .idc path.d {
    stroke-dasharray: 0 calc(2*var(--s));
  }
  .idc path.t {
    --s: 4 ;
  }
  
  .idc section{
    display: flex;
    flex-direction: column;
    padding: 1em 1em;
    min-width: 7.5em;
    width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
    font-family: sans-serif;
    text-align: center;
    text-transform: uppercase;
  }
  
  .idc h3, .idc a {
    color: var(--c0);
  }
  
  .idc h3 {
    padding: 1em 0 0.5em;
    font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
  }
  
  .idc p {
    height: 3em;
    font-size: 0.75em;
  }
  
  .ico {
    order: -1;
    position: relative;
    margin-bottom: calc(100% + 2.875em + 2px);
    border-radius: 50%;
    box-shadow: inset 0 0 0 0.625em #fff, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
    background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
  }
  .ico a {
    --sgn: 1;
    box-sizing: border-box;
    display: grid;
    place-content: center;
    padding: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    clip-path: circle(calc(50% - 0.625em));
  }
  .ico a:hover {
    --sgn: -1 ;
  }
  .ico svg {
    --w: calc(100% - 4em);
    box-sizing: border-box;
    position: absolute;
    margin: calc(-.5*var(--w));
    border: solid 1em transparent;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
    background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
    transition: 0.3s ease-out;
  }
  .ico:before, .ico:after {
    position: absolute;
    content: "";
  }
  .ico::before {
    box-sizing: border-box;
    top: calc(165% + 1px);
    left: calc(50% - 2em);
    border: solid 0.625em transparent;
    width: 2.875em;
    height: 2.875em;
    box-shadow: 0 0 0 2px #fff;
    background: inherit;
    filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
  }
  .ico::after {
    width: 0.375em;
    top: calc(100% - 0.5em);
    left: calc(50% - 0.5em);
    border: solid 0 transparent;
    border-width: 0.5em 0.3125em;
    padding-top: 64%;
    background: linear-gradient(#fff, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #fff calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
  }

  .idc ::after, .idc ::before {
    box-sizing:content-box;
  }


  .idc *{   box-sizing:content-box;}


  /* .rdc::before {
    display: block;
    content: '';
    height: 100%;
    background: url(../img/ic1.svg) bottom no-repeat;
    background-size: cover;
    position: absolute;
    background-position: 10% 50%;
    left: -20%;
    right: -20%;
   
  }

  .rdc::after {
    display: block;
    content: '';
    height: 100%;
    background: url(../img/ic1.svg) bottom no-repeat;
    background-size: cover;
    position: absolute;
    background-position: 10% 50%;
    left: -20%;
    right: -20%;
  } */

  .idc img {
    position: absolute;
    width: 80px;
    left: 75px;
    top: 72px;
  }

  .idcr{   overflow-x: clip;}
  
  .bcl {
    background: linear-gradient(to right top, #dae0df, #d3dadb, #ced6d8, #d3dadb, #ccd4d6);
  }

  .idcr .bar{margin: 20px auto 0px;}

  .idcr h3 {
    margin-top: -50px;
  }


  .single-pricing-table {
    margin-bottom: 30px;
    text-align: center;
    background-color: #ffffff;
    padding-bottom: 0px !important;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }


  .d1 {
    background: url(../img/21.svg) bottom no-repeat;
    height: 240px;
  }

  .d2 {
    background: url(../img/22.svg) bottom no-repeat;
    height: 240px;
  }


  .d3 {
    background: url(../img/23.svg) bottom no-repeat;
    height: 240px;
  }


  .d4 {
    background: url(../img/24.svg) bottom no-repeat;
    height: 240px;
  }


  .d5 {
    background: url(../img/25.svg) bottom no-repeat;
    height: 240px;
  }


  .d6 {
    background: url(../img/26.svg) bottom no-repeat;
    height: 240px;
  }



  .single-features2 h3 {
    font-size: 17px;
    margin-top: 25px;
    margin-bottom: 12px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
}






.reasons main {
  padding: 2vw;
  /* padding: revert-layer; */
  padding-left: 0;
  padding-right: 27px !important;
  padding-bottom: 14px !important;
  padding-top: 20px;
}

.reasons .single-pricing-table {
  margin-bottom: 0px !important;
  text-align: center;
  background-color: #ffffff;
  padding-bottom: 0px !important;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}




.header-design {
  background-color: #a4508b;
  background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
  height: 120px;
  text-align: center;
}

.listar-map-button {
  width: 100%;
  position: absolute;
  display: table;
  right: 0;
  top: 0;
  height: 200px;
  line-height: 164px;
  white-space: nowrap;
  font-size: 0;
}

.listar-map-button {
  right: auto;
  /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

header .footer-wave {
  max-width: 102%;
  width: 100%;
  height: 187.8px;
  left: 0;
  z-index: 1;
  bottom: -67px;
  background: url(https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png)
    repeat-x;
  animation: wave 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
}

@keyframes wave {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1440px;
  }
}

.listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: static;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
  margin-left: -57px;
}




.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item a:after {
  content: "";
  position: absolute;
  bottom: 200px;
  /* left: 50%; */
  /* margin-left: -25px; */
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
  -5px -5px 10px rgba(255, 255, 255, 0.5);
}

@keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
}



.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #258bd5;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  z-index: 6;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
    margin-left: 2px;
    border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -3px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  color: #252525;
  font-size: 18px;
}

.listar-feature-item-excerpt {
  padding: 0 20px;
}

.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pset {
  padding-top: 180px;
  padding-bottom: 80px;
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
    15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
  bottom: -30px;
  background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
  background-size: 40%;
  color: #555;
  line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  align-self: flex-start;
}



.idcr{ background-color: #fff;}



.sp1{   background-color: #f68e20 !important;
  color: #fff !important;}

.sp2{   background-color: #592589 !important;
  color: #fff !important;}

.sp3{   background-color: #3a9d65 !important;
  color: #fff !important;}

.sp4{   background-color: #3b2feb !important;
  color: #fff !important;}




.listar-feature-item .listar-feature-item-title > span span:nth-child(4){
  background-color: #f620da !important;
}





.video-play-button {
  position: absolute;
  z-index: 10;
  top: 95.4%;
  left: 66%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #ba1f24;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #fa183d;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 13px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  top: 10px;
  left: 8px;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



.video-overlay {
  /* position: fixed;
  z-index: -1; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.80);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
}


.dds{display: flex;
      justify-content: center;
      width: 210px;
      align-items: center;
      height: 0px;}


      .oss a:hover, a:focus {
        text-decoration: none;
        color: #000;
        outline: 0;
    }

    .iconic{font-size: 42px;
      margin-left: 130px;
      color: #388dc9;
      margin-top: -20px;}




      .howitw{ padding: 80px;}

      .savemoney{    font-size: 22px;
        padding-left: 100px;
        font-weight: bold;
        color: #105570;
        position: relative;
        top: 80px;
    }


    .savemoney2{    font-size: 22px;
      padding-left: 100px;
      font-weight: bold;
      color: #F68D2F;
      position: relative;
      top: 80px;
  }


  .savemoney3 {
    font-size: 22px;
    padding-left: 31px;
    font-weight: bold;
    color: #EE4657;
    position: relative;
    top: -92px;
}

.savemoney4 {
  font-size: 22px;
  padding-left: 70px;
  font-weight: bold;
  color: #29BECD;
  position: relative;
  top: -87px;
  text-align: left;
}
    .ttleft{    text-align: left;}

    .ttleftr{    text-align: right;}



    .partners {
      background-image: url(../img/bcfor.png);
      /* background-position: 100%; */
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
      z-index: 1;
      /* padding-top: 310px;
      margin-top: -80px; */
  }

  .ghj {
    color: #fff;
    padding-top: 20px;
    font-size: 40px;
    margin-left: 100px;
}

.abt {
    margin-left: 100px;
}



  .bc1 {
    background-color: #fff;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #fd0000;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 26px;
    font-weight: 300;
    color: #000;
}

.bc1img {
  background-color: #115a87;
  padding: 10px;
  width: 90px;
  border-radius: 24px;
  position: relative;
  top: 46px;
 
}

.bc2img {
  background-color: #ff0000;
  padding: 10px;
  width: 90px;
  border-radius: 24px;
  position: relative;
  top: 43px;
}

.bc3img {
  background-color: #ef5a00;
  padding: 10px;
  width: 90px;
  border-radius: 24px;
  position: relative;
  top: 42px;
  height: 91px;
}

.bc4img {
  background-color: #00b4c2;
  padding: 10px;
  width: 90px;
  border-radius: 24px;
  position: relative;
  top: 46px;
}

    
  .bc1{    background-color: #fff;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    display: flex;}


    
  .bc1{    background-color: #fff;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    display: flex;}

    
  .bc1{    background-color: #fff;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    display: flex;}

    .mnpc{    margin-right: 50px;}

.benefit-image{
  width: 80%;
    height: 400px;
    margin-top: -25px;
}
.success-image{
  width: 80%;
    height: 400px;
    margin-top: -35px;
}

/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section{
	position:relative;
	padding-bottom:0px;
}

.pattern-layer{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	height:825px;
	width:1180px;
	background-repeat:no-repeat;
	background-position:left top;
}

/* .featured-section .left-column{
	position:relative;
  top: 80px;
} */

.featured-section .left-column .inner-column{
	position:relative;
}

.featured-section .image-column{
	position:relative;
}

.featured-section .image-column .inner-column{
	position:relative;
	text-align:center;
	margin-left:-15px;
	margin-right:-15px;
	padding-top:60px;
}

.featured-section .right-column {
  position: relative;
  top: 0px;
}

.featured-section .right-column .inner-column{
	position:relative;
}

.featured-block{
	position:relative;
	margin-bottom:100px;
  text-align: left;
}

.featured-block .inner-box{
	position:relative;
	/* text-align:center; */
}

.featured-block .inner-box h5{
	position:relative;
	line-height:1.3em;
	font-weight:700;
	z-index:1;
	letter-spacing:1px;
	text-align: left;
	display:inline-block;
	padding-bottom: 0;
	padding-top: 7px;
	/* box-shadow:0px 5px 10px rgba(0,0,0,0.10); */
	margin-bottom: 0;
  color:#9F2B68;
}

.featured-block .inner-box h5 a{
	position:relative;
	color:#2b2b2b;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.featured-block .inner-box h5 a:hover{
	color:#ff6262;
}

.featured-block .inner-box .lower-content{
	position:relative;
	margin-top:-25px;
	padding: 25px 0px 5px;
	padding-right: 24px;
  text-align: left;
}

.featured-block .inner-box .icon-box{
	position:relative;
	line-height:1em;
	color:#ff6262;
	font-size:64px;
	margin-top:20px;
	margin-bottom:25px;
}

.featured-block .inner-box .text{
	position:relative;
	color:#5a5a5a;
	font-size:16px;
	line-height:1.8em;
}





.sec-title h2 {
  position: relative;
  color: #9F2B68;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 0px;
  font-size: 20px;
  padding-top: 20px;
  text-align: left;
}

.sec-title h2 span {
  color: #0b2b91;
}

.tt{    text-align: justify;
  line-height: 2;     padding-top: 13px;
}
.btn-style-three {
  position: relative;
  font-size: 12px;
  line-height: 30px;
  color: #ffffff;
  padding: 12px 24px 12px;
  font-weight: 600;
  background: none;
  border-radius: 50px;
  background-color: #2f5bea;
  text-transform: capitalize;
  -webkit-box-shadow: 0 10px 30px rgba(255,98,98,0.10);
  -moz-box-shadow: 0 10px 30px rgba(255,98,98,0.10);
  -ms-box-shadow: 0 10px 30px rgba(255,98,98,0.10);
  -o-box-shadow: 0 10px 30px rgba(255,98,98,0.10);
  box-shadow: 0 10px 30px rgba(255,98,98,0.10);
  text-align: center;
}

.ttl li{ text-align: left;}

.ttl h5{ text-align: left;}


.indexdev{
  position: absolute;
  text-align: center;
  /* width: 90%; */
  }

  .pad-b{padding-bottom: 10px;text-align: left;}


  /* .sec-titler h2 {
    font-weight: bold;
    font-size: 19px;
    padding-top: 50px !important;
    font-style: italic;
} */

.is-sticky .logo img {
  height: 63px;
  top: 8px;
}
 /* .logo img {
  height: 65px;
}  */
.sec-titlercsr h2{  font-weight: normal;
  font-size: 19px;
  padding-top: 0px !important;}
  
.featured-block .inner-box .text {
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 2em;
  text-align: justify;
}
.mpd{
  text-align: justify;
  color:#9F2B68 !important;
}
.indus{    padding-top: 11%;}

.start{    padding-top: 5%;}

.startup h3 {
  font-weight: 600;
  font-size: 19px;
  text-align: left;
}

.csr h2{    font-size: 16px;
  text-align: left;
  font-weight: normal;
  line-height: 1.8em;}

.imgw{width: 35%; float: left;}

.imgws{width: 55%; float: left;}
.imgw2{width: 46%; float: left;}
.startup h4{font-size: 16px; text-align: left; font-weight: normal;     line-height: 1.8em;}

.csr{    padding-top: 30%;}

.clr{ clear: both;}

.mttop{margin-top: 90px;}

.mttop2{margin-top: 11%;
  position: relative;
  top: 12px; right: 40px;}


.contact-info-item h5{font-size: 15px;}

.contact-info-item span{font-size: 14px !important;}

.contact-info-item a{font-size: 14px;}

.contaction{    margin-top: 50px;
}

.faculty {
  position: relative;
  /* height: 580px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/faculty.svg);
  z-index: 1;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}

.resben li::before {
  content: '';
  display: block;
  width: 33px;
  height: 45px;
  background-image: url(../../img/rh-images/icon.svg);
  position: absolute;
  left: 0px;
  /* top: 51px; */
  list-style-type: none;
  background-position: 0px 5px;
  background-repeat: no-repeat;
}
.resben li {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
  padding-left: 10px;
}
.resben li b{
  color:#9F2B68;
}
.re li b{
  color:#fff;
}
.resben2 li b{
  color:#9F2B68;
}
.resben{ list-style-type: none;  padding-top: 7%;}



.calltoaction button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
.calltoaction button.learn-more {
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 13px;
  background: #5793ce;
  border: 2px solid #173d7a;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
.calltoaction button.learn-more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #8dc3f9;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
.calltoaction button.learn-more:hover {
  background: #ffe9e9;
  transform: translate(0, 0.25em);
}
.calltoaction button.learn-more:hover::before {
  box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
  transform: translate3d(0, 0.5em, -1em);
}
.calltoaction button.learn-more:active {
  background: #ffe9e9;
  transform: translate(0em, 0.75em);
}
.calltoaction button.learn-more:active::before {
  box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
  transform: translate3d(0, 0, -1em);
}


.contact-info-item {
  display: flex;
  padding: 35px;
  transition: 0.5s;
  border-radius: 7px;
  margin-bottom: 30px;
  background: var(--light-color);
}

.contact-info-item > i {
  height: 55px;
  width: 55px;
  flex: none;
  color: white;
  transition: 0.5s;
  border: 2px solid;
  line-height: 51px;
  text-align: center;
  margin-right: 20px;
  border-radius: 50%;
  background: var(--primary-color);
}

.contact-info-content h3 {
  margin-bottom: 0;
  transition: 0.5s;
}

.contact-info-content span {
  font-weight: 600;
  transition: 0.5s;
  text-decoration: underline;
}

.contact-info-item:hover {
  background: var(--primary-color);
}

.contact-info-item:hover h3,
.contact-info-item:hover span,
.contact-info-item:hover span a {
  color: white;
}

.contact-left-map {
  min-height: 500px;
}

.contact-form-two .form-control {
  border-width: 0 0 2px;
  padding: 0 0 20px;
  border-radius: 0;
}

.contact-form-two .form-control::placeholder {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-form-two .form-control:focus {
  border-color: var(--primary-color);
  background: transparent;
}

.contact-form-two .form-group {
  margin-bottom: 50px;
}

/* Contact Info style Two */
.contact-info-item.style-two {
  padding: 0;
  margin-bottom: 40px;
  align-items: center;
  background: transparent;
}

.contact-info-item.style-two > i {
  height: 60px;
  width: 60px;
  border: none;
  font-size: 22px;
  line-height: 60px;
  background-color: #5793ce;
}

.contact-info-item.style-two h5 {
  margin-bottom: 5px;
}

.contact-info-item.style-two span {
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.contact-info-item.style-two span,
.contact-info-item.style-two span a {
  color: var(--base-color);
}

/* Contact Page */
.contact-form-three .form-group {
  margin-bottom: 30px;
}

.contact-form-three .form-control {
  padding: 17px 30px;
  background: var(--light-color);
  border: 1px solid var(--light-color);
}

.contact-form-three .form-control::placeholder {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-form-three .form-control:focus {
  border-color: var(--primary-color);
  background: transparent;
}


.resben2 li {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
  padding-left: 10px;
  width: 120%;
}
.resben2{ padding-left: 0;}
.resben2 i {
  width: 28px;
}

.resben2{ list-style-type: none;  padding-top: 7%;}

.padtop{    padding-top: 9% !important;}

.imgpad{padding-top: 12%;
  padding-left: 12%;}
  

.researchheight h2{font-size: 12px;
  text-align: center;
  padding-top: 6px;
}

.researchheight p {
  font-size: 10px;
  text-align: center;
  font-weight: bold;
}


/*** 




/* book */




/*** OPEN BOOK ***/
.open-book {
  background: #fff;
  box-shadow: rgba(0,0,0,0.5) 0 1em 3em;
  color: #000;
  padding: 2em;
}

.open-book * {
  position: relative;
}

/* Highlight */
.open-book *::-moz-selection {
  background: rgba(222,255,0,0.75);
}

.open-book *::selection {
  background: rgba(222,255,0,0.75);
}

/* Header/Footer */
.open-book header {
  padding-bottom: 1em;
}

.open-book header *,
.open-book footer * {
  font: 700 1em/1.25 'Playfair Display', sans-serif;
  letter-spacing: 0.125em;
  margin: 0;
}

.open-book header * {
  font-size: 0.75em;
  text-transform: uppercase;
}

.open-book footer {
  padding-top: 1em;
}

.open-book footer #page-numbers {
  display: none;
  list-style: none;
  padding: 0;
  text-align: left;
}

.open-book footer #page-numbers > li:last-child {
  text-align: right;
}

/* Chapter Title */
.open-book .chapter-title {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA2NCA2NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjQgNjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCiAgICA8Zz4NCiAgICAJPHBhdGggZD0iTTAsMzJMMzIsMGwzMiwzMkwzMiw2NEwwLDMyeiBNOCwzMmwyNCwyNGwyNC0yNEwzMiw4TDgsMzJ6IE0xNiwzMmwxNi0xNmwxNiwxNkwzMiw0OEwxNiwzMnogTTI0LDMybDgsOGw4LThsLTgtOEwyNCwzMnoiIC8+DQogICAgPC9nPg0KPC9zdmc+) bottom center no-repeat;
  background-size: 0.5em 0.5em;
  font: 700 7vw/1.25 'Playfair Display', sans-serif;
  letter-spacing: 0.125em;
  margin: 0 0 1em 0;
  padding: 1em 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.open-book .chapter-title:before,
.open-book .chapter-title:after {
  border: solid 0 #000;
  border-width: 0.05em 0;
  bottom: calc((0.125em / 2) * 3);
  content: '';
  height: 0.15em;
  position: absolute;
  width: calc(50% - (1em / 2));
}

.open-book .chapter-title:before {
  left: 0;
}

.open-book .chapter-title:after {
  right: 0;
}

/* Body Copy */
.open-book article {
  line-height: 1.5;
}

.open-book article *:not(.chapter-title):not(hr):not(dl) {
  margin: 0 auto;
  max-width: 28.125em;
}

.open-book article p {
  text-indent: 2em;
}

.open-book .chapter-title + p:first-of-type {
  text-indent: 0;
}

.open-book .chapter-title + p:first-of-type:first-letter {
  float: left;
  font: 700 3em/0.65 'Playfair Display', sans-serif;
  padding: 0.15em 0.05em 0 0;
  text-transform: uppercase;
}

.open-book article > ul,
.open-book article > ol {
  padding-left: 3em;
}

.open-book article > ul ul {
  padding-left: 1em;
}

.open-book a {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA4MDAgNTAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDgwMCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KCTxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJCS5zdDB7ZmlsbDojMDAwMENDO30NCgk8L3N0eWxlPg0KCTxnIGlkPSJZMkJjMjcudGlmIj4NCgkJPGc+DQoJCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNDMwLjksNDkuMmMtMSwwLTIsMC0zLDBjLTAuMS0wLjMtMC4yLTAuOC0wLjQtMC44Yy0xLjgtMC40LTQtMC4zLTUuNC0xLjNjLTEuOC0xLjQtNC4zLDAuMS01LjgtMS45Yy00LjMtMS04LjUtMi4zLTEyLjgtMi45Yy0zLjQtMC41LTYuOS0wLjEtMTAuMy0wLjFjLTAuMywwLjgtMC41LDEuNC0wLjcsMmMtMC41LTAuMy0wLjktMC42LTEuNC0xYy0wLjIsMS4yLTAuMywyLjEtMC42LDMuN2MtMS0xLjMtMS41LTIuMS0xLjktMi42Yy0yLjgsMC01LjMtMC41LTcuNCwwLjFjLTIuMiwwLjctMy43LDAuOC01LjktMC4xYy0yLjItMC45LTIuOS0yLjYtNC00Yy0yLjUsMS4yLTUuMSwxLjEtNy41LDAuMmMtMS4yLTAuNS0yLTAuNi0zLjEsMC4xYy0xLjIsMC43LTIuNiwxLTMuOSwxLjRjLTAuMiwwLjEtMC42LTAuMi0wLjgtMC4zYy0xLjItMS4zLDIuNC0yLjMsMC0zLjdjLTIuNiwxLjYtNS4yLDMuMy04LDVjLTAuOCwwLTEuOSwwLjMtMi43LTAuMWMtMi40LTEuMS00LjgtMi4zLTYuOS0zLjljLTEuOS0xLjUtMy45LTIuMi02LjItMmMtMSwwLjEtMiwwLTIuOCwwYy0wLjgtMS4xLTEuNC0yLTIuNy0zLjljMCwyLjMsMCwzLjYsMCw0LjljLTMuNywwLjgtNywxLjYtMTAuMywyLjNjLTEuNC0xLjgtMi42LTMuMi0zLjktNC45Yy0wLjQsMC44LTAuNiwxLjItMC43LDEuNmMtMC44LDMuMi0xLDMuMS00LjIsMi4zYy0yLjktMC43LTUuNC0yLjQtOC40LTMuNmMtMS42LDItMy4yLDQtNS4yLDYuNWMtMy44LTIuMi03LjgsMi0xMS45LDBjLTAuNCwwLjMtMC44LDAuNS0xLjIsMC44Yy0xLjQtMC45LTIuNy0xLjgtMy44LTIuNWMtMC44LTIuNy0xLjYtNS4yLTIuNC04LjJjLTEuMiwxLjMtMS45LDIuMi0zLDMuNGMwLDEsMCwyLjUsMCwzLjljLTUuMSwwLjYtOS45LDIuMS0xNS4xLDAuOWMwLTEsMC0xLjcsMC0yLjljLTEuMSwwLjUtMS45LDAuOS0yLjcsMS4zYy0xLjYtMC42LTMuMS0xLjItNC44LTEuOWMtMC42LDAuOC0xLjIsMS44LTEuOSwyLjhjLTAuNC0wLjktMC44LTEuNy0xLjItMi40YzAuMi0wLjQsMC40LTAuOSwxLjEtMi4yYy0zLDEuNS01LDIuNS03LjEsMy42Yy0xLTMtMy40LTQuNS02LTUuN2MtMC41LDAuNi0xLjEsMS4xLTEuNSwxLjZjMC41LDAuOSwwLjgsMS41LDEuMSwyLjJjLTAuOCwwLTEuMSwwLTEuNywwYy0wLjItMS0wLjQtMi0wLjctMy41Yy0xLjMsMC45LTIuMywxLjYtMy4zLDIuM2MtMC4yLTAuNi0wLjUtMS4yLTAuOC0yYy0xLjEsMS41LTIuMSwyLjktMyw0LjJjLTUuMywwLjQtNS45LTUtOS4xLTYuOWMtMC43LDEtMS40LDItMiwzYy0xLjgtMC40LTMuMy0wLjgtNC44LTEuMWMtMC4yLDAtMC40LDAuMy0wLjYsMC41YzAuMywwLjMsMC42LDAuNiwxLDFjLTAuOCwwLjYtMS42LDEuMS0yLjUsMS43Yy0wLjUtMS0wLjgtMS42LTEuMi0yLjVjLTEuNSwwLjgtMi44LDEuNi0zLjgsMi4yYy0wLjcsMS43LTEuMiwyLjktMS42LDQuMWMtMS40LTEuNy0yLjYtMy4yLTQuMS01YzAtMC40LDAtMS4yLDAtMS45Yy0xLjcsMC0zLjEsMC0zLjksMGMtMy4xLDEuOS01LjYsMy40LTguMiw1LjFjLTAuNC0wLjgtMC43LTEuNS0xLjEtMi4yYy0wLjYsMC0xLjMsMC0yLjEsMGMtMC42LDAuNi0xLjMsMS4zLTIsMS45Yy0wLjUtMC40LTEtMC43LTEuOC0xLjNjLTEsMS40LTEuOSwyLjctMi44LDMuOWMtMC4xLDAuMi0wLjQsMC4xLTAuNywwLjJjLTAuMi0xLTAuNC0xLjktMC42LTMuMmMtMC41LDEtMC44LDEuNy0xLjUsMy4zYzAtMi4yLDAtMy40LDAtMy41Yy0xLjktMS45LTMuMS0zLjEtNC4zLTQuM2MtMy41LDEuMS0zLDUuNC00LjgsNy42Yy00LjgsMC41LTkuMywwLjktMTMuOCwxLjRjLTAuMS0xLjEtMC4yLTEuOS0wLjMtMi45Yy0xLjUsMC0yLjksMC00LjIsMGMtMS40LDAuNy0yLjgsMS4zLTQuMiwyYy0wLjMtMC45LTAuNi0xLjQtMC45LTIuM2MtNi43LDAuNi0xMi41LDQuNC0xOSw2LjNjLTAuOS0xLjItMS45LTIuMy0yLjYtMy4zYy0zLDEuOC01LjYsMy4xLTguNywxLjJjLTAuNSwxLTEuMSwxLjktMS42LDIuN2MtMi43LDAuOC0zLjMtMS4yLTQtMi43Yy0yLjIsMC40LTQuMiwwLjctNS45LDFjLTAuOS0wLjktMS41LTEuNS0yLjEtMi4xYy0xLjIsMC42LTUuOSwxLjEtNi44LDEuMmMtMi41LDAuMi00LjksMC42LTguMSwxYy0wLjIsMC40LTAuNywxLjMtMS4xLDJjLTItMC42LTMuNS0xLjEtNS4zLTEuNmMtMC42LDAuOC0xLjEsMS42LTIuMSwyLjljLTAuNy0xLjktMS4yLTMuMi0xLjctNC44Yy0xLDEuMi0xLjgsMi40LTIuMywzYy0xLjgsMC0zLDAtNCwwYy0wLjEtMS0wLjEtMS44LTAuMi0yLjNjLTIsMC4zLTQuMSwwLTUuNSwwLjljLTIuMywxLjMtNC44LDEuMS02LjcsMC41Yy0yLjMtMC44LTQuNi0xLjMtNi41LTAuM2MtMi4xLDEuMS00LjctMC41LTYuNCwxLjVjMCwwLjEtMC41LTAuMy0xLTAuNWMwLjQtMSwwLjktMS45LDEuMy0yLjljLTAuOS0wLjctMS42LTEuMi0yLjgtMi4xYy0xLjYsMy4xLTMsNS44LTQuNCw4LjVjLTEsMC0yLDAtMywwYy0wLjEtMC4zLTAuMi0wLjgtMC40LTAuOGMtMS44LTAuNC00LTAuMy01LjQtMS4zYy0xLjgtMS4zLTQuMywwLTUuOC0xLjlDMTAuOSw0NC4xLDUuNiw0Mi45LDAsNDEuN2MwLTguMSwwLTE2LjYsMC0yNS4yYzEtMC45LDIuMy0xLjcsMS44LTMuOGMtMC42LTAuNy0wLjYtMS41LTEuNS0yLjZDMS45LDguMSwyLjYsNiw0LjQsMy44YzEuMywwLjYsMi41LDEuMSwzLjcsMS42QzcuNSw4LDcuOCwxMC4yLDkuMywxMi4yYzAuNiwwLDEuMywwLDIuNCwwYzAuNy0wLjgsMS42LTIsMi43LTMuNGMwLjQsMS4xLDAuNiwxLjcsMC44LDIuMmMyLjYsMCw1LjEsMCw3LjksMGMwLTEuNCwwLTIuNSwwLTMuNWMxLTAuNCwxLjgtMC43LDIuOC0xLjJjMi4yLDEuOSw0LjYsMy45LDYuNyw1LjhjMS4yLDAsMi4xLDAsMi41LDBjMS4zLTEuNiwyLjMtMi43LDMuMy0zLjljMC41LDAuOSwwLjksMS42LDEuNiwyLjZjMS0xLjUsMS42LTIuNSwyLjMtMy41YzIuOSwwLDMtMC4xLDUuNSwxLjJjNC4xLDIuMiw4LjYsMi40LDEyLjcsMS4zYzMuMi0wLjgsNi4xLTAuMyw5LjItMC42YzMuMi0wLjQsNi4zLDAuMiw5LjQsMS41YzIuNywxLjEsNS41LDEsNy43LTAuOWMyLjctMi4zLDUuNC00LjQsOC42LTUuM2MxLjIsMC40LDIuMywwLjcsNCwxLjJjMC42LDEuNiwxLjQsMy40LDIuMiw1LjVjMC42LTEsMS4zLTIsMS43LTIuN2MxLjUtMC41LDIuOS0wLjksNC4xLTEuM2MwLjYsMS40LDEuMiwyLjcsMiw0LjRjMi42LTYuMiw4LTYuOSwxMy4yLTguNWMyLjEsMy40LDQuMiw2LjksNi42LDEwLjdjMS0xLjksMS42LTMuMywyLjMtNC42YzAuNywwLDEuNCwwLDIsMGMtMC4zLTAuMy0wLjYtMC42LTAuOS0xYzAuOC0wLjEsMS43LTAuMywyLjUtMC40Yy0wLjEtMC4yLTAuMy0wLjQtMC40LTAuNWMtMS41LDAtMi45LDAtNCwwYy0wLjgtMC43LTEuMy0xLjEtMS40LTEuMmMwLjQtMS44LDAuNy0zLjMsMS00LjdjMC45LDAsMS43LDAsMi40LDBjMC4yLDAuNywwLjQsMS4zLDAuNSwxLjZjMi4xLDAuNiwzLjksMS4xLDUuNSwxLjZjMC4yLDAuNywwLjUsMS4yLDAuNywxLjhjMS4yLTAuNSwyLjQtMC43LDMuMi0xLjRjMS40LTEuMiwyLjUtMi42LDMuOS00LjJjMC42LDIuNCwxLjEsNC4zLDEuNiw2LjNjLTIuNCwwLjEtNC4zLDAuMi02LjMsMC40YzAuNiwwLjcsMC45LDEsMS4xLDEuNWMwLjIsMC40LDAuMiwwLjksMC4zLDEuM2MxLjYtMC4xLDMsMC40LDQuMy0wLjljMC43LTAuNywyLTAuOCwzLTFjMC40LTAuMSwwLjksMC4yLDEuMiwwLjJjMC4yLDEuMSwwLjMsMS45LDAuNiwzLjRjMS4zLTEuMSwyLjItMS44LDMuMy0yLjdjMC44LDEuMSwxLjcsMi4yLDIuMSwyLjhjMy40LDEsMy44LTEuMyw0LjktMy40YzAuOSwxLjMsMS40LDIsMi4xLDMuMWMxLTAuOSwxLjgtMS43LDIuNi0yLjRjMC4zLDAuNywwLjcsMS40LDEsMi4xYzEuNC0wLjQsMi41LTEsMi40LTIuNmMxLjYsMC4xLDEuOC0xLjUsMi42LTIuN2MwLjQsMS4xLDAuNiwxLjcsMC43LDJjMi4xLTEuMiw0LjEtMi40LDYuMi0zLjdjMC4zLDAuMywwLjcsMC42LDEuMiwxYzAuNy0xLDEuMy0yLDEuOS0zYzEuNywwLDMuMywwLDUuMiwwYzAuNSwwLjksMS4xLDEuOCwxLjYsMi42YzUtMS42LDkuOC0wLjUsMTQuNSwxLjdjMC41LDEuNSwxLjEsMywxLjgsNS4yYzEuNy0zLjYsMy4yLTYuNiw0LjYtOS41YzIsMS42LDQsMC42LDUuOSwxYzIsMC40LDMuOSwwLjgsNiwxLjNjMCwxLjQsMCwyLjUsMCwzLjljMS41LTEuMSwyLjgtMiw0LTIuOWMwLjQtMC4yLDAuOS0wLjIsMS4yLTAuM2MwLjYsMS4xLDEuMiwyLDEuOCwzYzEuOSwwLDQsMC42LDUuNS0wLjFjMi45LTEuMyw1LjgtMC42LDktMWMwLjQsMC41LDAuOSwxLjIsMS41LDEuN2MwLjcsMC42LDEuNSwxLDIuOCwxLjljMC0yLjYsMC00LjUsMC02LjVjMS44LDAsMy4zLDAsNC41LDBjMi44LDEuNCwwLjgsNC4xLDIuMiw2LjJjMS44LTAuOCwzLjYtMS42LDUuMi0yLjNjMC4yLTEuNCwwLjQtMi4yLDAuNS0yLjljMy42LDAuNiw2LjgsMS40LDEwLjEsMS43YzIuMSwwLjIsNC4xLDAuMyw1LjgsMS43YzEuMiwxLDIuNiwxLjYsNC4xLDIuNWM1LjgtMS44LDEwLjYtNi43LDE2LjktNi4xYzEuOCwxLjMsMy4yLDIuMiw0LjYsMy4zYzEuNCwxLjEsMi42LDIuMyw0LjQsMy44YzAsMC4yLDAsMSwwLDEuOWMxLjgtMC44LDIuNC0yLjcsNC4zLTMuMWMxLjYtMC4zLDIuOS0xLjgsNC41LTIuOWMxLjIsMC4xLDIuNywwLjIsNC4zLDAuM2MtMC41LDEuMS0wLjgsMS45LTEuMywzLjFjMi0wLjksMy40LTEuNSw0LjctMi4xYzAuMywwLjgsMC41LDEuMywwLjgsMmMwLjktMC40LDEuNS0wLjcsMi4yLTEuMWMwLjIsMC42LDAuNCwxLjIsMC43LDEuOWMxLjgtMC4zLDMuNywwLjQsNS4zLTAuOGMwLjMsMC4zLDAuNiwwLjUsMC45LDAuOGMwLjctMSwxLjQtMi4xLDIuMS0zLjFjMC4yLDAsMC40LTAuMSwwLjUsMGMwLjUsMC4zLDEuMSwwLjcsMSwwLjZjMi45LTAuMyw1LjItMC41LDcuNS0wLjhjMC4yLDEuMywwLjQsMi4yLDAuNiwzLjRjMy01LjgsMTAuNS01LjksMTMuOC0zLjZjMC44LDEuMiwxLjUsMi4zLDIuMSwzLjFjMS41LDAsMi42LDAsMy44LDBjLTAuNy0xLjMtMS4zLTIuMy0xLjktMy40YzEuMS0wLjUsMi4yLTEuMSwzLjYtMS43YzAuMywxLjMsMC41LDIuMywwLjYsMi45YzAuOSwwLjUsMS40LDAuNywyLDFjLTAuNiwxLjEtMSwxLjktMS41LDNjMS40LDAuOSwyLjcsMS42LDQuMSwyLjRjMC43LTEuMSwxLjItMiwxLjgtMi45YzAuMiwxLjYsMCwzLjYtMC41LDQuOWMtMC4xLDAuMiwwLjIsMC42LDAuMywwLjljMC4xLDAuMSwwLjMsMC4yLDAuNCwwLjJjMC4zLDAsMC42LTAuMSwwLjktMC4yYzAuNi0yLjksMC42LTIuOSwzLjMtNC41Yy0wLjQtMS0wLjctMS45LTEuMy0zLjNjMS4xLDAsMS43LTAuMSwyLjQsMGMwLjYsMC4xLDEuMiwwLjMsMS44LDAuNGM0LjgsMC44LDkuNCw0LDE0LjcsMS4yYzEsMS4yLDEuOSwyLjQsMi43LDMuM2MyLjYsMC4yLDMuOS0wLjcsMy43LTMuM2MtMC42LTAuOC0xLjQtMS43LTIuMy0yLjhjMS43LTIuMiwzLjMtNC4xLDUtNi4yYzEuMywwLjYsMi4zLDEsMi44LDEuM2MwLjcsMi44LDEuMiw1LDEuNyw3YzMuMSwwLjksMy43LTIsNS42LTIuN2MwLjMsMC43LDAuNSwxLjMsMC42LDEuN2MyLjYsMCw1LjEsMCw3LjcsMGMwLTEuMywwLTIuNCwwLTMuNGMxLTAuNSwxLjgtMC45LDMtMS41YzIuMSwxLjksNC40LDQsNi42LDZjMSwwLDIsMCwyLjYsMGMxLjItMS41LDIuMi0yLjcsMy4xLTMuOWMwLjgsMC45LDEuMywxLjUsMS45LDIuMmMwLjktMS40LDEuNS0yLjQsMi4zLTMuN2MxLjgsMC42LDMuNiwwLjgsNSwxLjZjNC4xLDIuNCw4LjUsMi4yLDEyLjgsMS42YzYuNi0wLjksMTIuNS0xLjQsMTcuMiwwLjJjMi4zLDAuOCw0LjYsMS4yLDYuNiwwLjljNC0yLjUsNy42LTQuOCwxMC42LTYuOGMyLDAuNiwzLjIsMC45LDQuNSwxLjNjMC43LDEuOCwxLjUsMy42LDIuMyw1LjZjMC43LTEuMSwxLjItMiwxLjgtMi45YzEuNC0wLjQsMi44LTAuOSw0LjEtMS4yYzAuNiwxLjUsMS4xLDIuOCwxLjgsNC41YzIuNy02LjMsOC4yLTcuMSwxMy41LTguNWMyLDMuNCw0LDYuOCw2LjQsMTAuN2MwLjktMS45LDEuNi0zLjMsMi4xLTQuM2MxLjQtMC42LDIuNi0xLjIsNC44LTIuMWMtMy0wLjgtNS41LDAuNi02LjctMS40YzAuNC0xLjgsMC43LTMuMywxLTQuOWMwLjgsMCwxLjYsMCwyLjUsMGMwLjEsMC41LDAuMiwxLDAuMywxLjZjMS44LDAuNSwzLjgsMS4xLDUuNywxLjZjMC4zLDAuNiwwLjUsMS4zLDEsMi4zYzIuNi0yLDQuOC0zLjcsNy01LjRjMC41LDEuOSwwLjksMy43LDEuNSw1LjljLTIuMywwLTQuMywwLTYuMiwwYzAuNSwxLjEsMC45LDEuOSwxLjMsMi44YzIuNCwwLjYsNC4zLTAuMyw2LjEtMS43YzAuNS0wLjQsMS41LTAuMSwyLjMtMC4xYzAuMiwxLjIsMC40LDIuMSwwLjcsMy40YzEuMy0wLjksMi4yLTEuNiwzLjctMi43YzAuOSwxLDEuOSwyLjEsMywzLjNjMS45LDAuMiwyLjctMS4xLDMuMS0yLjdjMC0wLjIsMC42LTAuMiwxLjEtMC4zYzAuMiwwLjMsMC40LDAuNiwwLjcsMWMwLjMsMC40LDAuNiwwLjksMS40LDIuMWMwLjktMS4zLDEuNC0yLjEsMi0zYzAsMCwwLjIsMC4xLDAuMywwLjJjMC4yLDAuNiwwLjQsMS4yLDAuNiwxLjhjMS43LTAuOSwzLjctMi43LDUuMy00LjljMC4yLDAuNiwwLjUsMS4xLDAuNiwxLjZjMi4xLTEuMiw0LjItMi40LDYuMi0zLjdjMC40LDAuMywwLjcsMC42LDEuMiwxYzAuNi0xLjEsMS4yLTIsMS43LTIuOWMxLjgsMCwzLjYsMCw1LjQsMGMwLjYsMSwxLjEsMS45LDEuNCwyLjNjNS4yLTEsMTAtMC42LDE0LjcsMi4xYzAuNSwxLjMsMSwyLjksMS43LDUuMWMxLjctMy41LDMuMS02LjUsNC42LTkuNmMwLjQsMC4zLDAuNiwwLjcsMC44LDAuN2MyLjQsMC4yLDQuOSwwLjQsNi44LDAuNWMxLjcsMC41LDIuOCwwLjksNCwxLjNjMC4xLDEuMiwwLjMsMi40LDAuNCwzLjdjMS45LTEuMiwzLjQtMi4zLDUtMy4zYzAuOCwxLjMsMS41LDIuMywyLjIsMy40YzQuOC0wLjUsOS41LTEsMTMuNy0xLjRjMS43LDEuNCwyLjksMi41LDQuNyw0LjFjMC4xLTIuNCwwLjEtNCwwLjItNS42YzAtMC40LDAuMi0wLjksMC40LTEuM2MxLjUsMCwyLjgsMCw0LjEsMGMwLjUsMC41LDEsMSwxLjYsMS42YzAsMS4zLDAsMi43LDAsNC4yYzIuNSwwLjYsNC4xLTAuNiw1LjctMi4xYzAuMi0wLjksMC4zLTEuOCwwLjUtMi44YzQuNSwxLjIsOC44LDIuNCwxMy4yLDJjMi4zLDEuNCw0LjQsMi43LDcsNC4yYzIuMy0xLjEsNS0yLjQsNy42LTMuN2MzLTEuNSw2LTIuOSw5LjQtMi41YzIuOSwyLjIsNS43LDQuNSw4LjUsNi43YzAuMSwwLjgsMC4yLDEuNSwwLjMsMmMyLjktMiw1LjctMy44LDguMy01LjZjMS41LDAsMywwLDQuNiwwYy0wLjEsMC43LTAuMiwxLjEtMC40LDEuNmMtMC4xLDAuMy0wLjQsMC42LTEuNCwxLjljMi42LTEuMiw0LTEuOCw1LjQtMi41YzAuMiwwLjcsMC40LDEuMywwLjcsMi4xYzAuOC0wLjUsMS41LTAuOCwyLjItMS4yYzAuMiwwLjYsMC40LDEuMSwwLjYsMS43YzIuMiwxLjEsNC4zLTEsNi42LDBjMC42LTEsMS4zLTIsMi0zYzAuOSwwLjUsMS42LDAuOSwyLjIsMS4zYzIuMy0xLjYsNC42LTEuMSw3LjEtMC45YzAsMS4xLDAsMS45LDAsMi43YzEuMi0zLDMuNi0zLjcsNi40LTMuOWMyLjctMi43LDUsMC42LDcuMywwLjJjMC45LDEuNSwxLjcsMi43LDIuMywzLjdjMS40LDAsMi41LDAsMy43LDBjLTAuNi0xLjMtMS4yLTIuNC0xLjgtMy42YzEuMy0wLjUsMi40LTEsMy42LTEuNWMwLjIsMS4zLDAuMywyLjIsMC41LDIuOWMwLjgsMC4zLDEuMywwLjUsMi4xLDAuOGMtMC41LDEuMS0wLjksMS45LTEuNSwzYzEuMywwLjksMi42LDEuNywzLjksMi41YzAuNy0xLDEuMy0yLDEuOS0yLjljMC4yLDAuMSwwLjQsMC4yLDAuNiwwLjNjLTAuMywxLjgtMC42LDMuNi0xLDUuNWMwLjUsMC4xLDAuOSwwLjEsMS40LDAuMmMwLjQtMS4xLDAuNS0yLjMsMS4xLTMuMWMwLjYtMC44LDEuNi0xLjIsMi41LTEuN2MtMC41LTEuMS0wLjktMS45LTEuMy0yLjljMy4xLTEsNS41LDAuNyw4LjEsMS4xYzEuOCwwLjMsMy41LDEuNCw1LjMsMS41YzEuNywwLjEsMy40LTAuNiw1LjEtMC45YzEuNywwLjgsMi4yLDMuNCw0LjcsM2MwLDguNywwLDE3LjMsMCwyNmMtMi4zLDAtNC42LDAtNi43LDBjLTAuMywwLjktMC41LDEuNC0wLjcsMmMtMC41LTAuNC0wLjgtMC43LTEuNC0xLjFjLTAuMiwxLjEtMC4zLDItMC40LDIuN2MtMC42LTAuNi0xLjMtMS4zLTEuOC0xLjhjLTMsMC4yLTUuNSwwLTcuOCwwLjVjLTUuMSwxLjItNy4xLDAuNS05LjUtNC4xYy0yLjcsMS01LjIsMS4xLTcuOSwwLjFjLTAuNy0wLjMtMS42LTAuNS0yLjMtMC4zYy0xLjUsMC41LTIuOCwxLjMtNC4yLDEuOWMtMC4zLDAuMS0wLjktMC4yLTEuNC0wLjNjMC40LTEuMiwwLjgtMi4zLDEuNS00LjRjLTMuNywyLjMtNi41LDMuOS05LjYsNS45Yy00LjctMC40LTguMy0zLjktMTIuOC02LjJjLTEuOCwwLTMuOCwwLTUuMywwYy0wLjgtMS4xLTEuNS0yLTIuNy0zLjZjMCwyLjEsMCwzLjIsMCw0LjNjLTMuOCwxLjYtNy42LDIuNC0xMC44LDIuM2MtMS4xLTEuMy0yLjMtMi43LTMuNi00LjNjLTEsMS44LTAuNCw0LjItMy40LDQuNWMtMi45LTEuMi02LjMtMi43LTkuOS00LjJjLTEuNiwyLTMuMiw0LTUsNi4zYy00LTEuNS04LDEuOC0xMi4xLDAuMmMtMC41LDAuMy0wLjksMC41LTEuMywwLjdjLTEuNC0xLTIuNy0xLjgtMy42LTIuNWMtMC45LTIuOC0xLjctNS4yLTIuNS03LjljLTEuMiwxLjItMiwyLTMsM2MwLDEuMywwLDIuOCwwLDQuMWMtNSwwLjUtOS43LDItMTQuNiwwLjljLTAuMi0wLjktMC4zLTEuOC0wLjYtM2MtMS4xLDAuNS0xLjksMC45LTIuNiwxLjNjLTEuNy0wLjYtMy4yLTEuMi00LjktMS44Yy0wLjUsMC45LTEuMSwxLjgtMS43LDIuOGMtMC40LTAuOS0wLjktMS44LTEuMi0yLjRjMC4yLTAuNywwLjMtMS4xLDAuNy0yLjFjLTIuNywxLjQtNC43LDIuNC02LjcsMy40Yy0xLjgtMy4zLTQuOC02LjEtNi4xLTUuNmMtMC40LDAuNC0wLjksMC45LTEuMywxLjVjMC4zLDAuNywwLjYsMS4zLDEuMSwyLjNjLTAuOC0wLjEtMS4zLTAuMS0xLjgtMC4xYy0wLjItMS4yLTAuMy0yLTAuNi0zLjVjLTEuNCwxLjEtMi4zLDEuOC0zLjMsMi41Yy0wLjMtMC44LTAuNS0xLjMtMC44LTIuMmMtMS4xLDEuNi0yLjEsMi45LTMuMSw0LjRjLTIuMy0wLjgtNC43LTAuOC01LjYtMy44Yy0wLjUtMS40LTIuMS0yLjMtMy4xLTMuNGMtMC44LDEuMS0xLjUsMi4xLTIuMiwzLjFjLTEuOS0wLjUtMy41LTAuOS01LjUtMS40YzAuNSwxLDAuNywxLjQsMSwyYy0wLjgsMC41LTEuNiwwLjktMi40LDEuM2MtMC40LTEtMC43LTEuNi0xLjEtMi40Yy0xLjUsMC44LTIuNywxLjQtMy44LDJjLTAuNywxLjYtMS4yLDMtMS44LDQuM2MtMS40LTEuOC0yLjYtMy4zLTMuOC00LjhjLTAuMS0wLjctMC4xLTEuNS0wLjItMi4xYy0xLjgsMC0zLjMsMC00LDBjLTMuMSwxLjktNS42LDMuNC04LjMsNWMtMC40LTAuOC0wLjctMS41LTEuMy0yLjZjLTEuNCwwLjctMi43LDEuNC00LjEsMi4xYy0wLjMtMC4yLTAuOS0wLjUtMS42LTFjLTEsMS40LTEuOSwyLjctMi44LDMuOWMtMC4xLDAuMS0wLjQsMC4xLTAuNywwLjFjLTAuMi0xLTAuMy0xLjgtMC41LTMuMWMtMC41LDEuMS0wLjgsMS43LTEuNiwzLjNjMC0yLjIsMC0zLjUsMC00LjdjLTAuMywwLjItMC42LDAuMy0wLjgsMC41Yy0xLjEtMS4yLTIuMy0yLjMtMy42LTMuNmMtMy4zLDEuMi0yLjksNS40LTQuNyw3LjZjLTQuOSwwLjUtOS4zLDAuOS0xMy44LDEuNGMtMC4xLTEuMi0wLjItMi0wLjMtMi45Yy0xLjUsMC0yLjksMC00LjIsMGMtMS41LDAuNy0yLjksMS4zLTQuMiwyYy0wLjMtMC45LTAuNi0xLjUtMC45LTIuNGMtNi43LDEtMTIuNSw0LjQtMTkuMSw2LjZjLTAuOS0xLjItMS45LTIuNC0yLjYtMy40Yy0yLjksMS45LTUuNSwyLjktOC43LDEuMmMtMC41LDAuOS0xLjEsMS45LTEuNiwyLjhjLTAuNywwLTEuMywwLTIuMiwwYy0wLjYtMC45LTEuMy0yLTEuOC0yLjhjLTIuMSwwLjMtNC4xLDAuNy01LjgsMC45Yy0wLjktMC45LTEuNS0xLjUtMi4xLTIuMWMtMS4zLDAuNi01LjgsMS4xLTYuOCwxLjJjLTIuNSwwLjItNC45LDAuNi04LjEsMWMtMC4yLDAuNC0wLjYsMS4zLTEsMmMtMi0wLjYtMy41LTEuMS01LjMtMS42Yy0wLjYsMC44LTEuMSwxLjYtMiwzYy0wLjctMi0xLjItMy4zLTEuNy00LjdjLTEsMS4xLTEuOSwyLjItMi40LDIuOGMtMS45LDAtMi45LDAtNCwwYy0wLjEtMS0wLjEtMS44LTAuMi0yLjRjLTIsMC4zLTQuMSwwLTUuNiwwLjljLTIuMywxLjMtNC44LDEuMS02LjcsMC41Yy0yLjMtMC44LTQuNS0xLjMtNi41LTAuM2MtMi4xLDEuMS00LjctMC41LTYuNCwxLjVjMCwwLjEtMC41LTAuMy0xLTAuNWMwLjQtMC45LDAuOS0xLjksMS4zLTIuOWMtMC45LTAuNy0xLjYtMS4yLTIuOC0yLjFDNDMzLjgsNDMuOCw0MzIuNCw0Ni41LDQzMC45LDQ5LjJ6Ii8+DQoJCTwvZz4NCgk8L2c+DQo8L3N2Zz4=) bottom repeat-x;
  background-size: auto 0.25em;
  color: inherit;
  text-decoration: none;
}

.open-book s,
.open-book strike {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA4MDAgNTAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDgwMCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KCTxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJCS5zdDB7ZmlsbDojQ0MwMDAwO30NCgk8L3N0eWxlPg0KCTxnIGlkPSJZMkJjMjcudGlmIj4NCgkJPGc+DQoJCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNDMwLjksNDkuMmMtMSwwLTIsMC0zLDBjLTAuMS0wLjMtMC4yLTAuOC0wLjQtMC44Yy0xLjgtMC40LTQtMC4zLTUuNC0xLjNjLTEuOC0xLjQtNC4zLDAuMS01LjgtMS45Yy00LjMtMS04LjUtMi4zLTEyLjgtMi45Yy0zLjQtMC41LTYuOS0wLjEtMTAuMy0wLjFjLTAuMywwLjgtMC41LDEuNC0wLjcsMmMtMC41LTAuMy0wLjktMC42LTEuNC0xYy0wLjIsMS4yLTAuMywyLjEtMC42LDMuN2MtMS0xLjMtMS41LTIuMS0xLjktMi42Yy0yLjgsMC01LjMtMC41LTcuNCwwLjFjLTIuMiwwLjctMy43LDAuOC01LjktMC4xYy0yLjItMC45LTIuOS0yLjYtNC00Yy0yLjUsMS4yLTUuMSwxLjEtNy41LDAuMmMtMS4yLTAuNS0yLTAuNi0zLjEsMC4xYy0xLjIsMC43LTIuNiwxLTMuOSwxLjRjLTAuMiwwLjEtMC42LTAuMi0wLjgtMC4zYy0xLjItMS4zLDIuNC0yLjMsMC0zLjdjLTIuNiwxLjYtNS4yLDMuMy04LDVjLTAuOCwwLTEuOSwwLjMtMi43LTAuMWMtMi40LTEuMS00LjgtMi4zLTYuOS0zLjljLTEuOS0xLjUtMy45LTIuMi02LjItMmMtMSwwLjEtMiwwLTIuOCwwYy0wLjgtMS4xLTEuNC0yLTIuNy0zLjljMCwyLjMsMCwzLjYsMCw0LjljLTMuNywwLjgtNywxLjYtMTAuMywyLjNjLTEuNC0xLjgtMi42LTMuMi0zLjktNC45Yy0wLjQsMC44LTAuNiwxLjItMC43LDEuNmMtMC44LDMuMi0xLDMuMS00LjIsMi4zYy0yLjktMC43LTUuNC0yLjQtOC40LTMuNmMtMS42LDItMy4yLDQtNS4yLDYuNWMtMy44LTIuMi03LjgsMi0xMS45LDBjLTAuNCwwLjMtMC44LDAuNS0xLjIsMC44Yy0xLjQtMC45LTIuNy0xLjgtMy44LTIuNWMtMC44LTIuNy0xLjYtNS4yLTIuNC04LjJjLTEuMiwxLjMtMS45LDIuMi0zLDMuNGMwLDEsMCwyLjUsMCwzLjljLTUuMSwwLjYtOS45LDIuMS0xNS4xLDAuOWMwLTEsMC0xLjcsMC0yLjljLTEuMSwwLjUtMS45LDAuOS0yLjcsMS4zYy0xLjYtMC42LTMuMS0xLjItNC44LTEuOWMtMC42LDAuOC0xLjIsMS44LTEuOSwyLjhjLTAuNC0wLjktMC44LTEuNy0xLjItMi40YzAuMi0wLjQsMC40LTAuOSwxLjEtMi4yYy0zLDEuNS01LDIuNS03LjEsMy42Yy0xLTMtMy40LTQuNS02LTUuN2MtMC41LDAuNi0xLjEsMS4xLTEuNSwxLjZjMC41LDAuOSwwLjgsMS41LDEuMSwyLjJjLTAuOCwwLTEuMSwwLTEuNywwYy0wLjItMS0wLjQtMi0wLjctMy41Yy0xLjMsMC45LTIuMywxLjYtMy4zLDIuM2MtMC4yLTAuNi0wLjUtMS4yLTAuOC0yYy0xLjEsMS41LTIuMSwyLjktMyw0LjJjLTUuMywwLjQtNS45LTUtOS4xLTYuOWMtMC43LDEtMS40LDItMiwzYy0xLjgtMC40LTMuMy0wLjgtNC44LTEuMWMtMC4yLDAtMC40LDAuMy0wLjYsMC41YzAuMywwLjMsMC42LDAuNiwxLDFjLTAuOCwwLjYtMS42LDEuMS0yLjUsMS43Yy0wLjUtMS0wLjgtMS42LTEuMi0yLjVjLTEuNSwwLjgtMi44LDEuNi0zLjgsMi4yYy0wLjcsMS43LTEuMiwyLjktMS42LDQuMWMtMS40LTEuNy0yLjYtMy4yLTQuMS01YzAtMC40LDAtMS4yLDAtMS45Yy0xLjcsMC0zLjEsMC0zLjksMGMtMy4xLDEuOS01LjYsMy40LTguMiw1LjFjLTAuNC0wLjgtMC43LTEuNS0xLjEtMi4yYy0wLjYsMC0xLjMsMC0yLjEsMGMtMC42LDAuNi0xLjMsMS4zLTIsMS45Yy0wLjUtMC40LTEtMC43LTEuOC0xLjNjLTEsMS40LTEuOSwyLjctMi44LDMuOWMtMC4xLDAuMi0wLjQsMC4xLTAuNywwLjJjLTAuMi0xLTAuNC0xLjktMC42LTMuMmMtMC41LDEtMC44LDEuNy0xLjUsMy4zYzAtMi4yLDAtMy40LDAtMy41Yy0xLjktMS45LTMuMS0zLjEtNC4zLTQuM2MtMy41LDEuMS0zLDUuNC00LjgsNy42Yy00LjgsMC41LTkuMywwLjktMTMuOCwxLjRjLTAuMS0xLjEtMC4yLTEuOS0wLjMtMi45Yy0xLjUsMC0yLjksMC00LjIsMGMtMS40LDAuNy0yLjgsMS4zLTQuMiwyYy0wLjMtMC45LTAuNi0xLjQtMC45LTIuM2MtNi43LDAuNi0xMi41LDQuNC0xOSw2LjNjLTAuOS0xLjItMS45LTIuMy0yLjYtMy4zYy0zLDEuOC01LjYsMy4xLTguNywxLjJjLTAuNSwxLTEuMSwxLjktMS42LDIuN2MtMi43LDAuOC0zLjMtMS4yLTQtMi43Yy0yLjIsMC40LTQuMiwwLjctNS45LDFjLTAuOS0wLjktMS41LTEuNS0yLjEtMi4xYy0xLjIsMC42LTUuOSwxLjEtNi44LDEuMmMtMi41LDAuMi00LjksMC42LTguMSwxYy0wLjIsMC40LTAuNywxLjMtMS4xLDJjLTItMC42LTMuNS0xLjEtNS4zLTEuNmMtMC42LDAuOC0xLjEsMS42LTIuMSwyLjljLTAuNy0xLjktMS4yLTMuMi0xLjctNC44Yy0xLDEuMi0xLjgsMi40LTIuMywzYy0xLjgsMC0zLDAtNCwwYy0wLjEtMS0wLjEtMS44LTAuMi0yLjNjLTIsMC4zLTQuMSwwLTUuNSwwLjljLTIuMywxLjMtNC44LDEuMS02LjcsMC41Yy0yLjMtMC44LTQuNi0xLjMtNi41LTAuM2MtMi4xLDEuMS00LjctMC41LTYuNCwxLjVjMCwwLjEtMC41LTAuMy0xLTAuNWMwLjQtMSwwLjktMS45LDEuMy0yLjljLTAuOS0wLjctMS42LTEuMi0yLjgtMi4xYy0xLjYsMy4xLTMsNS44LTQuNCw4LjVjLTEsMC0yLDAtMywwYy0wLjEtMC4zLTAuMi0wLjgtMC40LTAuOGMtMS44LTAuNC00LTAuMy01LjQtMS4zYy0xLjgtMS4zLTQuMywwLTUuOC0xLjlDMTAuOSw0NC4xLDUuNiw0Mi45LDAsNDEuN2MwLTguMSwwLTE2LjYsMC0yNS4yYzEtMC45LDIuMy0xLjcsMS44LTMuOGMtMC42LTAuNy0wLjYtMS41LTEuNS0yLjZDMS45LDguMSwyLjYsNiw0LjQsMy44YzEuMywwLjYsMi41LDEuMSwzLjcsMS42QzcuNSw4LDcuOCwxMC4yLDkuMywxMi4yYzAuNiwwLDEuMywwLDIuNCwwYzAuNy0wLjgsMS42LTIsMi43LTMuNGMwLjQsMS4xLDAuNiwxLjcsMC44LDIuMmMyLjYsMCw1LjEsMCw3LjksMGMwLTEuNCwwLTIuNSwwLTMuNWMxLTAuNCwxLjgtMC43LDIuOC0xLjJjMi4yLDEuOSw0LjYsMy45LDYuNyw1LjhjMS4yLDAsMi4xLDAsMi41LDBjMS4zLTEuNiwyLjMtMi43LDMuMy0zLjljMC41LDAuOSwwLjksMS42LDEuNiwyLjZjMS0xLjUsMS42LTIuNSwyLjMtMy41YzIuOSwwLDMtMC4xLDUuNSwxLjJjNC4xLDIuMiw4LjYsMi40LDEyLjcsMS4zYzMuMi0wLjgsNi4xLTAuMyw5LjItMC42YzMuMi0wLjQsNi4zLDAuMiw5LjQsMS41YzIuNywxLjEsNS41LDEsNy43LTAuOWMyLjctMi4zLDUuNC00LjQsOC42LTUuM2MxLjIsMC40LDIuMywwLjcsNCwxLjJjMC42LDEuNiwxLjQsMy40LDIuMiw1LjVjMC42LTEsMS4zLTIsMS43LTIuN2MxLjUtMC41LDIuOS0wLjksNC4xLTEuM2MwLjYsMS40LDEuMiwyLjcsMiw0LjRjMi42LTYuMiw4LTYuOSwxMy4yLTguNWMyLjEsMy40LDQuMiw2LjksNi42LDEwLjdjMS0xLjksMS42LTMuMywyLjMtNC42YzAuNywwLDEuNCwwLDIsMGMtMC4zLTAuMy0wLjYtMC42LTAuOS0xYzAuOC0wLjEsMS43LTAuMywyLjUtMC40Yy0wLjEtMC4yLTAuMy0wLjQtMC40LTAuNWMtMS41LDAtMi45LDAtNCwwYy0wLjgtMC43LTEuMy0xLjEtMS40LTEuMmMwLjQtMS44LDAuNy0zLjMsMS00LjdjMC45LDAsMS43LDAsMi40LDBjMC4yLDAuNywwLjQsMS4zLDAuNSwxLjZjMi4xLDAuNiwzLjksMS4xLDUuNSwxLjZjMC4yLDAuNywwLjUsMS4yLDAuNywxLjhjMS4yLTAuNSwyLjQtMC43LDMuMi0xLjRjMS40LTEuMiwyLjUtMi42LDMuOS00LjJjMC42LDIuNCwxLjEsNC4zLDEuNiw2LjNjLTIuNCwwLjEtNC4zLDAuMi02LjMsMC40YzAuNiwwLjcsMC45LDEsMS4xLDEuNWMwLjIsMC40LDAuMiwwLjksMC4zLDEuM2MxLjYtMC4xLDMsMC40LDQuMy0wLjljMC43LTAuNywyLTAuOCwzLTFjMC40LTAuMSwwLjksMC4yLDEuMiwwLjJjMC4yLDEuMSwwLjMsMS45LDAuNiwzLjRjMS4zLTEuMSwyLjItMS44LDMuMy0yLjdjMC44LDEuMSwxLjcsMi4yLDIuMSwyLjhjMy40LDEsMy44LTEuMyw0LjktMy40YzAuOSwxLjMsMS40LDIsMi4xLDMuMWMxLTAuOSwxLjgtMS43LDIuNi0yLjRjMC4zLDAuNywwLjcsMS40LDEsMi4xYzEuNC0wLjQsMi41LTEsMi40LTIuNmMxLjYsMC4xLDEuOC0xLjUsMi42LTIuN2MwLjQsMS4xLDAuNiwxLjcsMC43LDJjMi4xLTEuMiw0LjEtMi40LDYuMi0zLjdjMC4zLDAuMywwLjcsMC42LDEuMiwxYzAuNy0xLDEuMy0yLDEuOS0zYzEuNywwLDMuMywwLDUuMiwwYzAuNSwwLjksMS4xLDEuOCwxLjYsMi42YzUtMS42LDkuOC0wLjUsMTQuNSwxLjdjMC41LDEuNSwxLjEsMywxLjgsNS4yYzEuNy0zLjYsMy4yLTYuNiw0LjYtOS41YzIsMS42LDQsMC42LDUuOSwxYzIsMC40LDMuOSwwLjgsNiwxLjNjMCwxLjQsMCwyLjUsMCwzLjljMS41LTEuMSwyLjgtMiw0LTIuOWMwLjQtMC4yLDAuOS0wLjIsMS4yLTAuM2MwLjYsMS4xLDEuMiwyLDEuOCwzYzEuOSwwLDQsMC42LDUuNS0wLjFjMi45LTEuMyw1LjgtMC42LDktMWMwLjQsMC41LDAuOSwxLjIsMS41LDEuN2MwLjcsMC42LDEuNSwxLDIuOCwxLjljMC0yLjYsMC00LjUsMC02LjVjMS44LDAsMy4zLDAsNC41LDBjMi44LDEuNCwwLjgsNC4xLDIuMiw2LjJjMS44LTAuOCwzLjYtMS42LDUuMi0yLjNjMC4yLTEuNCwwLjQtMi4yLDAuNS0yLjljMy42LDAuNiw2LjgsMS40LDEwLjEsMS43YzIuMSwwLjIsNC4xLDAuMyw1LjgsMS43YzEuMiwxLDIuNiwxLjYsNC4xLDIuNWM1LjgtMS44LDEwLjYtNi43LDE2LjktNi4xYzEuOCwxLjMsMy4yLDIuMiw0LjYsMy4zYzEuNCwxLjEsMi42LDIuMyw0LjQsMy44YzAsMC4yLDAsMSwwLDEuOWMxLjgtMC44LDIuNC0yLjcsNC4zLTMuMWMxLjYtMC4zLDIuOS0xLjgsNC41LTIuOWMxLjIsMC4xLDIuNywwLjIsNC4zLDAuM2MtMC41LDEuMS0wLjgsMS45LTEuMywzLjFjMi0wLjksMy40LTEuNSw0LjctMi4xYzAuMywwLjgsMC41LDEuMywwLjgsMmMwLjktMC40LDEuNS0wLjcsMi4yLTEuMWMwLjIsMC42LDAuNCwxLjIsMC43LDEuOWMxLjgtMC4zLDMuNywwLjQsNS4zLTAuOGMwLjMsMC4zLDAuNiwwLjUsMC45LDAuOGMwLjctMSwxLjQtMi4xLDIuMS0zLjFjMC4yLDAsMC40LTAuMSwwLjUsMGMwLjUsMC4zLDEuMSwwLjcsMSwwLjZjMi45LTAuMyw1LjItMC41LDcuNS0wLjhjMC4yLDEuMywwLjQsMi4yLDAuNiwzLjRjMy01LjgsMTAuNS01LjksMTMuOC0zLjZjMC44LDEuMiwxLjUsMi4zLDIuMSwzLjFjMS41LDAsMi42LDAsMy44LDBjLTAuNy0xLjMtMS4zLTIuMy0xLjktMy40YzEuMS0wLjUsMi4yLTEuMSwzLjYtMS43YzAuMywxLjMsMC41LDIuMywwLjYsMi45YzAuOSwwLjUsMS40LDAuNywyLDFjLTAuNiwxLjEtMSwxLjktMS41LDNjMS40LDAuOSwyLjcsMS42LDQuMSwyLjRjMC43LTEuMSwxLjItMiwxLjgtMi45YzAuMiwxLjYsMCwzLjYtMC41LDQuOWMtMC4xLDAuMiwwLjIsMC42LDAuMywwLjljMC4xLDAuMSwwLjMsMC4yLDAuNCwwLjJjMC4zLDAsMC42LTAuMSwwLjktMC4yYzAuNi0yLjksMC42LTIuOSwzLjMtNC41Yy0wLjQtMS0wLjctMS45LTEuMy0zLjNjMS4xLDAsMS43LTAuMSwyLjQsMGMwLjYsMC4xLDEuMiwwLjMsMS44LDAuNGM0LjgsMC44LDkuNCw0LDE0LjcsMS4yYzEsMS4yLDEuOSwyLjQsMi43LDMuM2MyLjYsMC4yLDMuOS0wLjcsMy43LTMuM2MtMC42LTAuOC0xLjQtMS43LTIuMy0yLjhjMS43LTIuMiwzLjMtNC4xLDUtNi4yYzEuMywwLjYsMi4zLDEsMi44LDEuM2MwLjcsMi44LDEuMiw1LDEuNyw3YzMuMSwwLjksMy43LTIsNS42LTIuN2MwLjMsMC43LDAuNSwxLjMsMC42LDEuN2MyLjYsMCw1LjEsMCw3LjcsMGMwLTEuMywwLTIuNCwwLTMuNGMxLTAuNSwxLjgtMC45LDMtMS41YzIuMSwxLjksNC40LDQsNi42LDZjMSwwLDIsMCwyLjYsMGMxLjItMS41LDIuMi0yLjcsMy4xLTMuOWMwLjgsMC45LDEuMywxLjUsMS45LDIuMmMwLjktMS40LDEuNS0yLjQsMi4zLTMuN2MxLjgsMC42LDMuNiwwLjgsNSwxLjZjNC4xLDIuNCw4LjUsMi4yLDEyLjgsMS42YzYuNi0wLjksMTIuNS0xLjQsMTcuMiwwLjJjMi4zLDAuOCw0LjYsMS4yLDYuNiwwLjljNC0yLjUsNy42LTQuOCwxMC42LTYuOGMyLDAuNiwzLjIsMC45LDQuNSwxLjNjMC43LDEuOCwxLjUsMy42LDIuMyw1LjZjMC43LTEuMSwxLjItMiwxLjgtMi45YzEuNC0wLjQsMi44LTAuOSw0LjEtMS4yYzAuNiwxLjUsMS4xLDIuOCwxLjgsNC41YzIuNy02LjMsOC4yLTcuMSwxMy41LTguNWMyLDMuNCw0LDYuOCw2LjQsMTAuN2MwLjktMS45LDEuNi0zLjMsMi4xLTQuM2MxLjQtMC42LDIuNi0xLjIsNC44LTIuMWMtMy0wLjgtNS41LDAuNi02LjctMS40YzAuNC0xLjgsMC43LTMuMywxLTQuOWMwLjgsMCwxLjYsMCwyLjUsMGMwLjEsMC41LDAuMiwxLDAuMywxLjZjMS44LDAuNSwzLjgsMS4xLDUuNywxLjZjMC4zLDAuNiwwLjUsMS4zLDEsMi4zYzIuNi0yLDQuOC0zLjcsNy01LjRjMC41LDEuOSwwLjksMy43LDEuNSw1LjljLTIuMywwLTQuMywwLTYuMiwwYzAuNSwxLjEsMC45LDEuOSwxLjMsMi44YzIuNCwwLjYsNC4zLTAuMyw2LjEtMS43YzAuNS0wLjQsMS41LTAuMSwyLjMtMC4xYzAuMiwxLjIsMC40LDIuMSwwLjcsMy40YzEuMy0wLjksMi4yLTEuNiwzLjctMi43YzAuOSwxLDEuOSwyLjEsMywzLjNjMS45LDAuMiwyLjctMS4xLDMuMS0yLjdjMC0wLjIsMC42LTAuMiwxLjEtMC4zYzAuMiwwLjMsMC40LDAuNiwwLjcsMWMwLjMsMC40LDAuNiwwLjksMS40LDIuMWMwLjktMS4zLDEuNC0yLjEsMi0zYzAsMCwwLjIsMC4xLDAuMywwLjJjMC4yLDAuNiwwLjQsMS4yLDAuNiwxLjhjMS43LTAuOSwzLjctMi43LDUuMy00LjljMC4yLDAuNiwwLjUsMS4xLDAuNiwxLjZjMi4xLTEuMiw0LjItMi40LDYuMi0zLjdjMC40LDAuMywwLjcsMC42LDEuMiwxYzAuNi0xLjEsMS4yLTIsMS43LTIuOWMxLjgsMCwzLjYsMCw1LjQsMGMwLjYsMSwxLjEsMS45LDEuNCwyLjNjNS4yLTEsMTAtMC42LDE0LjcsMi4xYzAuNSwxLjMsMSwyLjksMS43LDUuMWMxLjctMy41LDMuMS02LjUsNC42LTkuNmMwLjQsMC4zLDAuNiwwLjcsMC44LDAuN2MyLjQsMC4yLDQuOSwwLjQsNi44LDAuNWMxLjcsMC41LDIuOCwwLjksNCwxLjNjMC4xLDEuMiwwLjMsMi40LDAuNCwzLjdjMS45LTEuMiwzLjQtMi4zLDUtMy4zYzAuOCwxLjMsMS41LDIuMywyLjIsMy40YzQuOC0wLjUsOS41LTEsMTMuNy0xLjRjMS43LDEuNCwyLjksMi41LDQuNyw0LjFjMC4xLTIuNCwwLjEtNCwwLjItNS42YzAtMC40LDAuMi0wLjksMC40LTEuM2MxLjUsMCwyLjgsMCw0LjEsMGMwLjUsMC41LDEsMSwxLjYsMS42YzAsMS4zLDAsMi43LDAsNC4yYzIuNSwwLjYsNC4xLTAuNiw1LjctMi4xYzAuMi0wLjksMC4zLTEuOCwwLjUtMi44YzQuNSwxLjIsOC44LDIuNCwxMy4yLDJjMi4zLDEuNCw0LjQsMi43LDcsNC4yYzIuMy0xLjEsNS0yLjQsNy42LTMuN2MzLTEuNSw2LTIuOSw5LjQtMi41YzIuOSwyLjIsNS43LDQuNSw4LjUsNi43YzAuMSwwLjgsMC4yLDEuNSwwLjMsMmMyLjktMiw1LjctMy44LDguMy01LjZjMS41LDAsMywwLDQuNiwwYy0wLjEsMC43LTAuMiwxLjEtMC40LDEuNmMtMC4xLDAuMy0wLjQsMC42LTEuNCwxLjljMi42LTEuMiw0LTEuOCw1LjQtMi41YzAuMiwwLjcsMC40LDEuMywwLjcsMi4xYzAuOC0wLjUsMS41LTAuOCwyLjItMS4yYzAuMiwwLjYsMC40LDEuMSwwLjYsMS43YzIuMiwxLjEsNC4zLTEsNi42LDBjMC42LTEsMS4zLTIsMi0zYzAuOSwwLjUsMS42LDAuOSwyLjIsMS4zYzIuMy0xLjYsNC42LTEuMSw3LjEtMC45YzAsMS4xLDAsMS45LDAsMi43YzEuMi0zLDMuNi0zLjcsNi40LTMuOWMyLjctMi43LDUsMC42LDcuMywwLjJjMC45LDEuNSwxLjcsMi43LDIuMywzLjdjMS40LDAsMi41LDAsMy43LDBjLTAuNi0xLjMtMS4yLTIuNC0xLjgtMy42YzEuMy0wLjUsMi40LTEsMy42LTEuNWMwLjIsMS4zLDAuMywyLjIsMC41LDIuOWMwLjgsMC4zLDEuMywwLjUsMi4xLDAuOGMtMC41LDEuMS0wLjksMS45LTEuNSwzYzEuMywwLjksMi42LDEuNywzLjksMi41YzAuNy0xLDEuMy0yLDEuOS0yLjljMC4yLDAuMSwwLjQsMC4yLDAuNiwwLjNjLTAuMywxLjgtMC42LDMuNi0xLDUuNWMwLjUsMC4xLDAuOSwwLjEsMS40LDAuMmMwLjQtMS4xLDAuNS0yLjMsMS4xLTMuMWMwLjYtMC44LDEuNi0xLjIsMi41LTEuN2MtMC41LTEuMS0wLjktMS45LTEuMy0yLjljMy4xLTEsNS41LDAuNyw4LjEsMS4xYzEuOCwwLjMsMy41LDEuNCw1LjMsMS41YzEuNywwLjEsMy40LTAuNiw1LjEtMC45YzEuNywwLjgsMi4yLDMuNCw0LjcsM2MwLDguNywwLDE3LjMsMCwyNmMtMi4zLDAtNC42LDAtNi43LDBjLTAuMywwLjktMC41LDEuNC0wLjcsMmMtMC41LTAuNC0wLjgtMC43LTEuNC0xLjFjLTAuMiwxLjEtMC4zLDItMC40LDIuN2MtMC42LTAuNi0xLjMtMS4zLTEuOC0xLjhjLTMsMC4yLTUuNSwwLTcuOCwwLjVjLTUuMSwxLjItNy4xLDAuNS05LjUtNC4xYy0yLjcsMS01LjIsMS4xLTcuOSwwLjFjLTAuNy0wLjMtMS42LTAuNS0yLjMtMC4zYy0xLjUsMC41LTIuOCwxLjMtNC4yLDEuOWMtMC4zLDAuMS0wLjktMC4yLTEuNC0wLjNjMC40LTEuMiwwLjgtMi4zLDEuNS00LjRjLTMuNywyLjMtNi41LDMuOS05LjYsNS45Yy00LjctMC40LTguMy0zLjktMTIuOC02LjJjLTEuOCwwLTMuOCwwLTUuMywwYy0wLjgtMS4xLTEuNS0yLTIuNy0zLjZjMCwyLjEsMCwzLjIsMCw0LjNjLTMuOCwxLjYtNy42LDIuNC0xMC44LDIuM2MtMS4xLTEuMy0yLjMtMi43LTMuNi00LjNjLTEsMS44LTAuNCw0LjItMy40LDQuNWMtMi45LTEuMi02LjMtMi43LTkuOS00LjJjLTEuNiwyLTMuMiw0LTUsNi4zYy00LTEuNS04LDEuOC0xMi4xLDAuMmMtMC41LDAuMy0wLjksMC41LTEuMywwLjdjLTEuNC0xLTIuNy0xLjgtMy42LTIuNWMtMC45LTIuOC0xLjctNS4yLTIuNS03LjljLTEuMiwxLjItMiwyLTMsM2MwLDEuMywwLDIuOCwwLDQuMWMtNSwwLjUtOS43LDItMTQuNiwwLjljLTAuMi0wLjktMC4zLTEuOC0wLjYtM2MtMS4xLDAuNS0xLjksMC45LTIuNiwxLjNjLTEuNy0wLjYtMy4yLTEuMi00LjktMS44Yy0wLjUsMC45LTEuMSwxLjgtMS43LDIuOGMtMC40LTAuOS0wLjktMS44LTEuMi0yLjRjMC4yLTAuNywwLjMtMS4xLDAuNy0yLjFjLTIuNywxLjQtNC43LDIuNC02LjcsMy40Yy0xLjgtMy4zLTQuOC02LjEtNi4xLTUuNmMtMC40LDAuNC0wLjksMC45LTEuMywxLjVjMC4zLDAuNywwLjYsMS4zLDEuMSwyLjNjLTAuOC0wLjEtMS4zLTAuMS0xLjgtMC4xYy0wLjItMS4yLTAuMy0yLTAuNi0zLjVjLTEuNCwxLjEtMi4zLDEuOC0zLjMsMi41Yy0wLjMtMC44LTAuNS0xLjMtMC44LTIuMmMtMS4xLDEuNi0yLjEsMi45LTMuMSw0LjRjLTIuMy0wLjgtNC43LTAuOC01LjYtMy44Yy0wLjUtMS40LTIuMS0yLjMtMy4xLTMuNGMtMC44LDEuMS0xLjUsMi4xLTIuMiwzLjFjLTEuOS0wLjUtMy41LTAuOS01LjUtMS40YzAuNSwxLDAuNywxLjQsMSwyYy0wLjgsMC41LTEuNiwwLjktMi40LDEuM2MtMC40LTEtMC43LTEuNi0xLjEtMi40Yy0xLjUsMC44LTIuNywxLjQtMy44LDJjLTAuNywxLjYtMS4yLDMtMS44LDQuM2MtMS40LTEuOC0yLjYtMy4zLTMuOC00LjhjLTAuMS0wLjctMC4xLTEuNS0wLjItMi4xYy0xLjgsMC0zLjMsMC00LDBjLTMuMSwxLjktNS42LDMuNC04LjMsNWMtMC40LTAuOC0wLjctMS41LTEuMy0yLjZjLTEuNCwwLjctMi43LDEuNC00LjEsMi4xYy0wLjMtMC4yLTAuOS0wLjUtMS42LTFjLTEsMS40LTEuOSwyLjctMi44LDMuOWMtMC4xLDAuMS0wLjQsMC4xLTAuNywwLjFjLTAuMi0xLTAuMy0xLjgtMC41LTMuMWMtMC41LDEuMS0wLjgsMS43LTEuNiwzLjNjMC0yLjIsMC0zLjUsMC00LjdjLTAuMywwLjItMC42LDAuMy0wLjgsMC41Yy0xLjEtMS4yLTIuMy0yLjMtMy42LTMuNmMtMy4zLDEuMi0yLjksNS40LTQuNyw3LjZjLTQuOSwwLjUtOS4zLDAuOS0xMy44LDEuNGMtMC4xLTEuMi0wLjItMi0wLjMtMi45Yy0xLjUsMC0yLjksMC00LjIsMGMtMS41LDAuNy0yLjksMS4zLTQuMiwyYy0wLjMtMC45LTAuNi0xLjUtMC45LTIuNGMtNi43LDEtMTIuNSw0LjQtMTkuMSw2LjZjLTAuOS0xLjItMS45LTIuNC0yLjYtMy40Yy0yLjksMS45LTUuNSwyLjktOC43LDEuMmMtMC41LDAuOS0xLjEsMS45LTEuNiwyLjhjLTAuNywwLTEuMywwLTIuMiwwYy0wLjYtMC45LTEuMy0yLTEuOC0yLjhjLTIuMSwwLjMtNC4xLDAuNy01LjgsMC45Yy0wLjktMC45LTEuNS0xLjUtMi4xLTIuMWMtMS4zLDAuNi01LjgsMS4xLTYuOCwxLjJjLTIuNSwwLjItNC45LDAuNi04LjEsMWMtMC4yLDAuNC0wLjYsMS4zLTEsMmMtMi0wLjYtMy41LTEuMS01LjMtMS42Yy0wLjYsMC44LTEuMSwxLjYtMiwzYy0wLjctMi0xLjItMy4zLTEuNy00LjdjLTEsMS4xLTEuOSwyLjItMi40LDIuOGMtMS45LDAtMi45LDAtNCwwYy0wLjEtMS0wLjEtMS44LTAuMi0yLjRjLTIsMC4zLTQuMSwwLTUuNiwwLjljLTIuMywxLjMtNC44LDEuMS02LjcsMC41Yy0yLjMtMC44LTQuNS0xLjMtNi41LTAuM2MtMi4xLDEuMS00LjctMC41LTYuNCwxLjVjMCwwLjEtMC41LTAuMy0xLTAuNWMwLjQtMC45LDAuOS0xLjksMS4zLTIuOWMtMC45LTAuNy0xLjYtMS4yLTIuOC0yLjFDNDMzLjgsNDMuOCw0MzIuNCw0Ni41LDQzMC45LDQ5LjJ6Ii8+DQoJCTwvZz4NCgk8L2c+DQo8L3N2Zz4=) center repeat-x;
  background-size: auto 0.5em;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
}

.open-book sup {
  color: #cc0000;
  font-family: 'Rock Salt', cursive;
  left: 0;
  margin-top: -1em!important;
  max-width: 100%!important;
  position: absolute;
  text-align: center;
  width: 100%;
}

.open-book mark {
  background: linear-gradient(to bottom, rgba(222,255,0,1) 0%,rgba(222,255,0,0.5) 60%,rgba(222,255,0,1) 100%);
}

.open-book mark.pink {
  background: linear-gradient(to bottom, rgba(255,69,190,1) 0%,rgba(255,107,203,0.5) 60%,rgba(255,107,203,1) 100%);
}

.open-book mark.blue {
  background: linear-gradient(to bottom, rgba(73,179,255,1) 0%,rgba(107,193,255,0.5) 60%,rgba(107,193,255,1) 100%);
}

.open-book mark.green {
  background: linear-gradient(to bottom, rgba(67,226,15,1) 0%,rgba(39,229,54,0.5) 60%,rgba(39,229,54,1) 100%);
}

.open-book mark.orange {
  background: linear-gradient(to bottom, rgba(255,134,9,1) 0%,rgba(255,177,34,0.5) 60%,rgba(255,177,34,1) 100%);
}

.open-book hr {
  background-color: #000;
  border: 0;
  height: 2px;
  margin: 1em 0;
}

.open-book dl {
  border: solid 0 #ccc;
  border-width: 0.0625em 0;
  break-inside: avoid-column;
  margin: 1em auto;
  padding: 1em 0;
}



/*** MEDIA QUERIES ***/
@media only screen and ( min-width: 50em ) {

  .open-book {
      /* margin: 1em; */
      position: relative;
  }

  .open-book:before {
      background-color: #8B4513;
      border-radius: 0.25em;
      bottom: -1em;
      content: '';
      left: -1em;
      position: absolute;
      right: -1em;
      top: -1em;
      z-index: -1;
  }

  .open-book:after {
      background: linear-gradient(to right, transparent 0%,rgba(0,0,0,0.2) 46%,rgba(0,0,0,0.5) 49%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.5) 51%,rgba(0,0,0,0.2) 52%,transparent 100%);
      bottom: -1em;
      content: '';
      left: 50%;
      position: absolute;
      top: -1em;
      transform: translate(-50%,0);
      width: 4em;
      z-index: 1;
  }

  .open-book > * {
      position: relative;
      z-index: 1;
  }

  /* Header/Footer */
  .open-book header:before,
  .open-book header:after,
  .open-book footer:before,
  .open-book footer:after {
      background: #fff;
      border-radius: 25%;
      content: '';
      height: 2em;
      position: absolute;
      z-index: -1;
      width: calc(50% + 2em);
  }

  .open-book header:before,
  .open-book footer:before,
  .open-book footer:after {
      border-top-left-radius: 0;
  }

  .open-book header:after,
  .open-book footer:before,
  .open-book footer:after {
      border-top-right-radius: 0;
  }

  .open-book header:before,
  .open-book header:after,
  .open-book footer:after {
      border-bottom-right-radius: 0;
  }

  .open-book header:before,
  .open-book header:after,
  .open-book footer:before {
      border-bottom-left-radius: 0;
  }

  .open-book header:before,
  .open-book header:after {
      top: -2.65em;
  }

  .open-book header:before,
  .open-book footer:before {
      right: 50%;
  }

  .open-book header:before {
      transform: rotate(-2deg);
  }

  .open-book header:after,
  .open-book footer:after {
      left: 50%;
  }

  .open-book header:after {
      transform: rotate(2deg);
  }

  .open-book footer:before,
  .open-book footer:after {
      bottom: -2.65em;
  }

  .open-book footer:before {
      transform: rotate(2deg);
  }

  .open-book footer:after {
      transform: rotate(-2deg);
  }

  .open-book header > *:last-child,
  .open-book footer > *:last-child {
      text-align: right;
  }

  .open-book footer #page-numbers {
      display: block;
  }

  /* Chapter Title */
  .open-book .chapter-title {
      font-size: 3em;
  }

  .open-book .chapter-title:before,
  .open-book .chapter-title:after {
      height: 0.125em;
  }

  /* Body Copy */
  .open-book article p {
      text-indent: 3em;
  }

  .open-book article > ul,
  .open-book article > ol {
      padding-left: 4em;
  }

}


@media only screen and (min-width: 50em) {
  .open-book:before {
      background-color: #8B4513;
      border-radius: 0.25em;
      bottom: -1em;
      content: '';
      left: -1em;
      position: absolute;
      right: -1em;
      top: -1em;
      z-index: -1;

  }
}



.tab_content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.bookflip {
  width: 12%;
  rotate: 180deg;
  left: -20px;
  top: -41px;
  position: absolute;
}


.tag{    background-color: #000;
  color: #fff;
  padding: 2px;
  border-radius: 7px;
  margin-top: 14px;
  width: 42%;
  padding-left: 8px;
}

.book-b h2{font-size: 23px;}

.book-b h4{font-size: 16px;}

.book-b li {
  font-size: 14px;
  padding-left: 22px;
  list-style: none;
}


.mpd b{ font-weight: 600;}

.mrgtt{    margin-top: -26px;}

.indeximg1{    width: 80%;}

.indeximgw{width: 60%; margin-top: -60px;height: 400px;}

.indexstart {
  
    width: 80%;
    margin-top: -75px;
    height: 400px;
}


.facultyy{margin-top: -36px;
    width: 75%;}

.webtc{    width: 86%;}




.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}



.slick-dots li{     list-style: none;
  float: left;}

  .slick-dots button{
    background-color: #2f5bea;
    color: #fff;
    border: none;
    padding: 4px 11px;
    border-radius: 6px;
}

.slick-dots{    
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 19px;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin-right: 10px;
}

.testimonial_sec h1 {
  text-align: center;
  font: normal 38px/42px "Luckiest Guy", cursive;
}
.testimonial_sec .testimonial_inner {
  width: 100%;
  /* padding-top: 35px; */
}
.testimonial_sec .testimonial_inner .slick-list {
  padding: 0px;
  margin-left: 0px;
}
.testimonial_sec .testimonial_inner .slick-list .slick-track {
  left: 0px;
}
.testimonial_sec .testimonial_inner .slick-list .slick-track .card {
  margin-right: 15px;
  border-radius: 10px;
}
.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .rating > span {
  color: #ffc004;
}
.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
  padding-top: 5px;
}

.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body strong {
  text-transform: uppercase;
  font-size: 15px;
}
.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body span {
  text-transform: uppercase;
  color: #cdcdcd;
  font-size: 14px;
}
.testimonial_sec .testimonial_inner .slick-dots {
  bottom: -50px;
}
.testimonial_sec .testimonial_inner .slick-dots li {
  margin: 0 2px;
}
.testimonial_sec .testimonial_inner .slick-dots li button::before {
  font-size: 11px;
}
.testimonial_sec .all_btn {
  width: 100%;
  text-align: center;
  margin-top: 75px;
}
.testimonial_sec .all_btn a {
  background-color: #fe6805;
  color: #fff;
  padding: 10px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease-in-out;
}
.testimonial_sec .all_btn a:hover {
  background: #fff;
  color: #fe6805;
  filter: drop-shadow(0px 0px 2px #555);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial_sec .testimonial_inner .slick-list .slick-track {
    left: 122px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
    font-size: 14px;
  }

  .testimonial_sec .testimonial_inner .slick-list {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
    font-size: 14px;
  }

  .testimonial_sec h1 {
    font-size: 30px;
    line-height: 34px;
  }

  .testimonial_sec .testimonial_inner .slick-list {
    margin-left: 0px;
    padding: 0 30px;
  }

  .testimonial_sec .testimonial_inner .slick-list .slick-track {
    left: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_sec .testimonial_inner .slick-list .slick-track {
    left: 0;
  }
}

.card{ margin-right: 20px;}

.card1{
  position: relative;
  height: 740px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/ab1.jpg);
  z-index: 1;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}


.card2{
  position: relative;
  height: 740px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/bcf.jpg);
  z-index: 1;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}

.card3{
  position: relative;
  height: 740px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/bcf2.jpg);
  z-index: 1;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}

.card4{
  position: relative;
  height: 740px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/bcf5.jpg);
  z-index: 1;
  border-bottom: 1px dashed #3e444f;
  border-top: 1px dashed #3e444f;
}

.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
  /* font: normal 15px/28px "Luckiest Guy", cursive; */
  padding-top: 5px;
  font-size: 16px;
  font-weight: bolder;
}


.dnone{ display: none !important;}

.is-sticky .dblock{ display: block !important;}


.mrgtt2{ width: 90%;}

.featured-section .right-column{display: flex;
      justify-content: center;}





    /* adicss_add */


    
/*================================================
Navbar Area CSS
=================================================*/
/* .navbar {
  position: relative;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
} */
.is-sticky .logo img {
  height: 54px;
  top: 8px;
}

.navbar {
  position: relative;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  /* border-bottom: 5px solid #a4436d; */
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* z-index: 999; */
  z-index: 10000;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar .container-fluid {
  max-width: 1400px;
  margin: auto;
}

.navbar-light {
  background-color: transparent !important;
}

.navbar-light .logo h3 {
  font-size: 35px;
  margin-bottom: 0;
}

/* .navbar-light .navbar-nav {
  margin: auto;
} */



/* .logo img{
  height: 172px;
  position: absolute;
  z-index: 2;
  top: 2px;
} */


.navbar-navpad{    padding-left: 120px;}


.logo img {
  height: 54px;
    position: absolute;
    z-index: 2;
    top: 8px;
}


.navbar-light .navbar-nav .nav-item span {
  /* display: block; */
  font-size: 12px;
}

.navbar-light .navbar-nav .nav-item a {
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  margin-left: 14px;
  margin-right: 136px;
}

a:hover, a:focus {
  text-decoration: none;
  color: #ffffff;
  outline: 0;
}


.navbar-light .navbar-nav .nav-item a:hover, .navbar-light .navbar-nav .nav-item a:focus, .navbar-light .navbar-nav .nav-item a.active {
  color: #2f5bea;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}





.navbar-light .navbar-nav .nav-item a i {
  font-size: 16px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -4px;
  margin-right: -4px;
}

.navbar-light .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.navbar-light .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.navbar-light .navbar-nav .nav-item:hover a, .navbar-light .navbar-nav .nav-item.active a {
  color: #2f5bea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-light .others-option .option-item {
  color: #000000;
  display: inline-block;
  position: relative;
  line-height: 1;
}

.navbar-light .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.navbar-light .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  color: #000000;
  font-size: 18px;
}

.navbar-light .others-option .option-item .close-btn.active {
  display: block;
}

/*================================================
Banner Area CSS
=================================================*/
/* .main-banner {
  position: relative;
  height: 800px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/banner-image2.jpg);
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
} */

ul.nav li.dropdown:hover ul.dropdown-menu{ display: block; }




  .dropdown-toggle::after {
    position: relative;
    top: 2px;
}

.title2{ font-size: 16px; color: #ee8b23;}

.set{    overflow: hidden;}

.rtl {
  background-color: #f68e20;
  height: 290px;
  margin-right: 70px;
  z-index: 1;
  position: relative;
  left: -150px;
  padding: 30px;
  padding-top: 50px;
  margin-top: 130px;
}


.default-shape .shape-1 {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: -1;
  -webkit-animation: moveBounce 10s linear infinite;
          animation: moveBounce 10s linear infinite;
}

.default-shape .shape-2 {
  position: absolute;
  left: 10%;
  top: 16%;
  z-index: -1;
}

.default-shape .shape-2 img {
  -webkit-animation-name: rotateMe;
          animation-name: rotateMe;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.default-shape .shape-3 {
  position: absolute;
  left: 35%;
  bottom: 15%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

.default-shape .shape-4 {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

.default-shape .shape-5 {
  position: absolute;
  left: 50%;
  top: 10%;
  z-index: -1;
  -webkit-animation: animationFramesOne 30s infinite linear;
          animation: animationFramesOne 30s infinite linear;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
            transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
            transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
            transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
            transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
            transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
            transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
            transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
            transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*================================================
Fun Facts Area CSS
=================================================*/
.single-fun-fact {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  padding: 30px 40px;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact .icon i {
  font-size: 50px;
  color: #2f5bea;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact h3 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact p {
  line-height: initial;
  margin: 0 0 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  font-weight: 500;
}

.single-fun-fact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 0%;
  background: #2f5bea;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact:hover {
  border: 1px solid #2f5bea;
}

.single-fun-fact:hover::before {
  height: 100%;
}

.single-fun-fact:hover .icon i {
  color: #ffffff;
}

.single-fun-fact:hover h3 {
  color: #ffffff;
}

.single-fun-fact:hover h3 .sign-icon {
  color: #ffffff;
}

.single-fun-fact:hover p {
  color: #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-content h4{ font-size: 20px;}

.about-content p{ font-size: 16px;}

.about-content h3 {
  font-size: 26px;
  margin-bottom: 0;
}

.about-content .bar {
  height: 4px;
  width: 85px;
  background: #2f5bea;
  margin: 20px auto 20px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.about-content .bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
          animation-name: MOVE-BG;
}

.about-content .about-btn {
  margin-top: 25px;
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-features {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.single-features .icon i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #2f5bea;
  color: #ffffff;
  font-size: 25px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features h3 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features2 h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


.single-features p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-features::before {
  top: 50%;
  left: 50%;
  width: 0%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #2f5bea;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
}

.single-features:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-features:hover::before {
  width: 100%;
}

.single-features:hover .icon i {
  background-color: #ffffff;
  color: #2f5bea;
}

.single-features:hover h3 {
  color: #ffffff;
}

.single-features:hover p {
  color: #ffffff;
}

/*================================================
Screenshot Area CSS
=================================================*/
.screenshot-area {
  background-image: url(../img/screenshot.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.screenshot-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.screenshot-area .section-title h2 {
  color: #ffffff;
}

.whyind {
	font-size: 32px;
	text-align: center;
	color: #fff;
}

.maat {
	padding-top: 170px;
	padding-bottom: 0px;
}

.abt {
	margin-left: 100px;
}

.abt {
	margin-left: 100px;
}

.trans {
	font-size: 27px;
	line-height: 33px !important;
	font-weight: 600;
	margin-bottom: 0 !important;
	color: #0e0e0e;
	text-align: left;
}


.bdes .testimonial {
	min-height: 375px;
	position: relative;
	background:none;
	padding-top: 50px;
	padding-bottom: 50px;
	background-position: center;
	background-size: cover;
}


.navbar {
	position: relative;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	border-bottom: 5px solid #a4436d;
}


.backgroundcollegeprofile{    background: #edf2f6;}

.bccollege {
  position: relative;
  background-position: 9% -37%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/collegepro.jpg);
  overflow: hidden;
  z-index: 999;
}

.ulcol {
  list-style: none;
  text-align: left;
  margin-left: 0;
  padding: 0;
  overflow-y: scroll;
  height: 451px;
}
.ulcol li{border-bottom: 1px solid #c8bab9;
  line-height: 39px; font-size: 13px; font-weight: 600;
}

.pstycol{font-weight: bold;
color: #a5436a !important;}
.coun {
  background-color: #a5436a;
  width: 25px;
  height: 25px;
  border-radius: 70px;
  /* border: 2px dashed #ffa900; */
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
}


.font-s{    font-size: 15px;
  font-weight: bold;}


  .sciimg{width: 40px;
    text-align: right;
    margin-left: auto;}

    .fontsi{    font-size: 13px;
      font-weight: bold;}

      .profileresearch {
        background-color: #f1faff;
        padding: 7px;
        font-size: 13px;
        border-radius: 4px;
    }


    .projects {
      background-color: #ffeef1;
      padding: 7px;
      font-size: 13px;
      border-radius: 4px;
  }

  .citation {
    background-color: #fef7f5;
    padding: 7px;
    font-size: 13px;
    border-radius: 4px;
}




.viewprofile{    margin: 0 auto;
  text-align: right;
  margin-right: 10px;
}



.fourth {
  border-color: #a5436a;
  color: #000;
  background-image: linear-gradient(45deg, #a5436a 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
}
.fourth:hover {
  background-position: 0;
}

.font-szie12{ font-size: 12px;}

.fonwrite {
  color: #b70d56 !important;
}


.displayp{ display: grid !important;}





.techtra2 {
  padding-top: 90px !important;
}

.techtra24 {
  padding-top: 40px !important;
}

.techtra{padding-top: 130px !important;}

.techtraimg{width: 70%;
  margin: 0 auto;
  display: flex;
  padding-top: 20px;}






  /* publicprofiles css */


  .wrapper.style1 .feature {
    background-color: #fff;
}

.feature.left {
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.wrapper.style1 {
    background-color: #EEE;
    color: #777;
}

.feature .image {
    width: 139%;
}
.feature .image2 {

    width: 154%;
}



.style1 h6 {
    color: #555;
}


.style1 h2 {
    font-size: 1.5em;
    line-height: 1.5em;
}


.style1 ul.actions {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

.feature {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 6em;
}

.style1 button{
    background-color: transparent;
    box-shadow: inset 0 0 0 2px #51BAA4;
    color: #51BAA4 !important;
}

.features h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.features .details {
    margin-top: 80px;
    padding: 120px 0;
    background-color: color-mix(in srgb, #fb05cf, transparent 97%);
}

.features .phone-wrap img {
    width: 340px;
}


.sectionuse {
    color: #000;
    background-color: #fff;
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

.features .phone-wrap {
    position: absolute;
    right: 0;
}


.pib1{color: #ff8b2c;}

.pib2{color: #5578ff;}

.pib3{color: #e80368;}

.pib4{color: #ffa76e;}

.pib5{color: #11dbcf;}

.pib6{color: #4233ff;}

.pib7{color: #29cc61;}

.pib8{color: #ff5828;}

.features .icon-list i {
    margin-right: 10px;
    font-size: 24px;
    line-height: 1;
}


.zep{
    border-radius: 10px;
    box-shadow: 6px 11px 14px 1px #dad5d5;
}


.seti{padding: 70px;}

.image {
    border-radius: 0;
    border: 0;
    display: inline-block;
    position: relative;
}
/*event page*/
.event-banner-section{
    padding-top: 27px;
    padding-bottom: 27px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    min-height: 570px;
}
.about-event-section h5{
  color: #9F2B68 !important;
}
.about-event-section p{
  text-align:justify;
}
.event-reg-container{
    width: 100%;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1),
                0px 5px 12px -2px rgba(0, 0, 0, 0.1),
                0px 18px 36px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    
}

.event-reg-container .title{
    padding: 25px;
    background: #f6f8fa;
}

.event-reg-container .title p{
    font-size: 25px;
    font-weight: 500;
    position: relative;
}

.event-reg-container .title p::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #F37A65, #D64141);
}

.user_details{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    padding: 25px;
}

.user_details .input_box{
    width: 100%;
    margin: 0 0 12px 0;
}

.input_box label{
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.input_box label::after{
    content: " *";
    color: red;
}

.input_box input{
    width: 100%;
    height: 36px;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 14px;
    padding-left: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f6f8fa;
    font-family: 'Poppins', sans-serif;
    transition: all 120ms ease-out 0s;
}
.input_box textarea{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f6f8fa;
    font-family: 'Poppins', sans-serif;
    transition: all 120ms ease-out 0s;
}

.input_box input:focus,
.input_box input:valid{
    box-shadow: 0px 0px 0px 2px #AC8ECE;
}
.reg_btn{
  padding: 0px 25px 25px 25px;
}
.reg_btn input{
    height: 45px;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(to right, #F37A65, #D64141);
    border-radius: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.reg_btn input:hover{
    background: linear-gradient(to right, #D64141, #F37A65);
}

@media screen and (max-width: 584px){

    .user_details{
        max-height: 340px;
        overflow-y: scroll;
    }

    .user_details::-webkit-scrollbar{
        width: 0;
    }

    .user_details .input_box{
        width: 100%;
    }

    .gender .category{
        width: 100%;
    }

}


@media screen and (max-width: 419px){
    .gender .category{
        flex-direction: column;
    }   
}



  .servicenw h4{
    color: #9F2B68 !important;
   font-size: 18px;
}


.servicenw p{    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;}
    
  .sectionsds {
    color: var(--default-color);
    background-color: #2c3e50;
    padding: 10px 0;
    scroll-margin-top: 118px;
    overflow: clip;
}

.adv-banner-section {
    padding-top: 27px;
    padding-bottom: 27px;
    min-height: 490px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* border-top: 5px solid #3363ff; */
}

.sections {
    color: var(--default-color);
    background-color: #eef2ff;
    padding: 20px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    /* padding-bottom: 70px; */
        display: flex
;
    align-items: center;
}

.asanimto {
    background-color: #fff;
    padding: 40px;
    padding: 30px 30px 0;
    box-shadow: 1px 2px 10px 3px #f9f9f9;
    border-radius: 9px;
}

.member p {
    font-size: 14px;
    padding-bottom: 27px;
}

.member h4 {
    padding-top: 20px;
    padding-bottom: 5px;
    color: #9F2B68 !important;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}


.sectionnew {
    color: var(--default-color);
    background-color: #eef2ff;
    padding: 20px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    padding-bottom: 70px;
}

.sectionnew .service-item h4 a {
    color: #9F2B68 !important;
    transition: ease-in-out 0.3s;
        font-size: 20px;
}

.sectionnew .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.partners {
    background-image: url(../img/bcfor.png);
    /* background-position: 100%; */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.section-title h2 {
    font-size: 25px;
    margin: 0 0 0 0;
    position: relative;
    line-height: 1;
}











