body {
  background-color: #f9f9f9;
}

.spinners-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 70px;
}

.spinners-container .spinner-block {
  width: 50px;
  text-align: center;
  margin-right: 83px;
}

.spinners-container .spinner-block:nth-child(5n) {
  margin-right: 0px;
}

.spinners-container .spinner-block h2 {
  margin: 0px 0px 20px 0px;
}

/* YOU NEED THESE STYLES */
/* spinner style */
.spinner-eff {
  position: relative;
  width: 100px;
  height: 100px;
}

.spinner-eff:before,
.spinner-eff:after {
  content: "";
  display: block;
}

.spinner-eff .spinner-bar:before,
.spinner-eff .spinner-bar:after {
  content: "";
  display: block;
}

/* spinner-1 styles */
@-webkit-keyframes rotation-top {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  20% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-top {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  20% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-right {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  20% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  40% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-right {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  20% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  40% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-bottom {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  40% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  60% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-bottom {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  40% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  60% {
    transform: rotate(360deg);
    opacity: 1;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-left {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  60% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-left {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  60% {
    transform: rotate(0deg);
    opacity: 0.5;
  }

  80% {
    transform: rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

.spinner-eff.spinner-eff-1 .bar {
  width: 0;
  height: 0;
  border: 25px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  opacity: 0.5;
}

.spinner-eff.spinner-eff-1 .bar-top {
  border-top: 25px solid #47A8BD;
  -webkit-animation: rotation-top 3.6s linear 0s infinite;
  animation: rotation-top 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-right {
  border-right: 25px solid #47A8BD;
  -webkit-animation: rotation-right 3.6s linear 0s infinite;
  animation: rotation-right 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-bottom {
  border-bottom: 25px solid #47A8BD;
  -webkit-animation: rotation-bottom 3.6s linear 0s infinite;
  animation: rotation-bottom 3.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-1 .bar-left {
  border-left: 25px solid #47A8BD;
  -webkit-animation: rotation-left 3.6s linear 0s infinite;
  animation: rotation-left 3.6s linear 0s infinite;
}

/* spinner-2 styles */
@-webkit-keyframes scale-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  12.5% {
    transform: scale(0.5) rotate(45deg);
  }

  25% {
    transform: scale(1) rotate(90deg);
  }

  37.5% {
    transform: scale(0.5) rotate(135deg);
  }

  50% {
    transform: scale(1) rotate(180deg);
  }

  62.5% {
    transform: scale(0.5) rotate(225deg);
  }

  75% {
    transform: scale(1) rotate(270deg);
  }

  87.5% {
    transform: scale(0.5) rotate(315deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes scale-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  12.5% {
    transform: scale(0.5) rotate(45deg);
  }

  25% {
    transform: scale(1) rotate(90deg);
  }

  37.5% {
    transform: scale(0.5) rotate(135deg);
  }

  50% {
    transform: scale(1) rotate(180deg);
  }

  62.5% {
    transform: scale(0.5) rotate(225deg);
  }

  75% {
    transform: scale(1) rotate(270deg);
  }

  87.5% {
    transform: scale(0.5) rotate(315deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

.spinner-eff.spinner-eff-2 .square {
  width: 100%;
  height: 100%;
  background-color: #F51AA4;
  transform: scale(1) rotate(0deg);
  transform-origin: center center;
  -webkit-animation: scale-rotate 3s linear 0s infinite;
  animation: scale-rotate 3s linear 0s infinite;
}

/* spinner-3 styles */
@-webkit-keyframes pulse {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-2 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-2 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.spinner-eff.spinner-eff-3 .circle {
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1);
  transform-origin: center center;
}

.spinner-eff.spinner-eff-3 .circle-1 {
  width: 100%;
  height: 100%;
  background-color: #f9ddff;
  top: 0;
  -webkit-animation: pulse 1.6s linear 0s infinite;
  animation: pulse 1.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-3 .circle-2 {
  width: 66.6%;
  height: 66.6%;
  background-color: #f1b8fd;
  top: 16.5%;
  -webkit-animation: pulse-2 1.6s linear 0s infinite;
  animation: pulse-2 1.6s linear 0s infinite;
}

.spinner-eff.spinner-eff-3 .circle-3 {
  width: 33.3%;
  height: 33.3%;
  background-color: #cf7ae0;
  top: 33.3%;
}

/* spinner-4 styles */
.spinner-eff.spinner-eff-4 {
  -webkit-animation: rotation 12.8s steps(1) 0s infinite;
  animation: rotation 12.8s steps(1) 0s infinite;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }

  12.5% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }

  12.5% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@-webkit-keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }

  12.5% {
    transform: scale(1, 0);
  }

  25% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }

  12.5% {
    transform: scale(1, 0);
  }

  25% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@-webkit-keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }

  25% {
    transform: scale(0, 1);
  }

  37.5% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(0, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }

  25% {
    transform: scale(0, 1);
  }

  37.5% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(0, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@-webkit-keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }

  37.5% {
    transform: scale(1, 0);
  }

  50% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }

  37.5% {
    transform: scale(1, 0);
  }

  50% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

.spinner-eff.spinner-eff-4 .bar {
  background-color: #FE4E00;
}

.spinner-eff.spinner-eff-4 .bar-top {
  width: 100%;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  -webkit-animation: bar-top 3.2s linear 0s infinite;
  animation: bar-top 3.2s linear 0s infinite;
}

.spinner-eff.spinner-eff-4 .bar-right {
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: left top;
  transform: scale(1, 0);
  -webkit-animation: bar-right 3.2s linear 0s infinite;
  animation: bar-right 3.2s linear 0s infinite;
}

.spinner-eff.spinner-eff-4 .bar-bottom {
  width: 100%;
  height: 7px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  -webkit-animation: bar-bottom 3.2s linear 0s infinite;
  animation: bar-bottom 3.2s linear 0s infinite;
}

.spinner-eff.spinner-eff-4 .bar-left {
  width: 7px;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: scale(1, 0);
  -webkit-animation: bar-left 3.2s linear 0s infinite;
  animation: bar-left 3.2s linear 0s infinite;
}

/* spinner-5 styles */
@-webkit-keyframes ellipse-animation {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
  }

  12.5% {
    border-top-left-radius: 0;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(45deg);
  }

  25% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(90deg);
  }

  37.5% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50%;
    transform: rotate(135deg);
  }

  50% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(180deg);
  }

  62.5% {
    border-top-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(225deg);
  }

  75% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(270deg);
  }

  87.5% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 0;
    transform: rotate(315deg);
  }

  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(360deg);
  }
}

@keyframes ellipse-animation {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
  }

  12.5% {
    border-top-left-radius: 0;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(45deg);
  }

  25% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(90deg);
  }

  37.5% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50%;
    transform: rotate(135deg);
  }

  50% {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(180deg);
  }

  62.5% {
    border-top-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(225deg);
  }

  75% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(270deg);
  }

  87.5% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 0;
    transform: rotate(315deg);
  }

  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(360deg);
  }
}

.spinner-eff.spinner-eff-5 .ellipse {
  width: 100%;
  height: 100%;
  background-color: #FFE314;
  border-radius: 50%;
  -webkit-animation: ellipse-animation 2.4s cubic-bezier(0, -0.26, 0.32, 1.22) 0s infinite;
  animation: ellipse-animation 2.4s cubic-bezier(0, -0.26, 0.32, 1.22) 0s infinite;
  transform: rotate(0deg);
}

body {
  font-size: 16px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  /* background-image: url(../img/bg.png); */
}

h1,
h2,
h3,
h4,
h5,

h6 {
  font-family: 'helveticaneuemedium';
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #1A1818;
  line-height: 26px;
}

a {
  color: #000;
}

a:hover,
a:focus,
a:active {
  color: #000;
}

.no-need-b::before {
  display: none !important;
}

.no-need-b i {
  opacity: 0.5;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  right: 0px;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  left: 0px;
}
/*
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-Black.woff2') format('woff2'),
    url('../fonts/Avenir-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'helveticaneueregular';
  src: url('../fonts/helveticaneueregular-webfont.woff2') format('woff2'),
    url('../fonts/helveticaneueregular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'helveticaneuebold';
  src: url('../fonts/helveticaneuebold-webfont.woff2') format('woff2'),
    url('../fonts/helveticaneuebold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'helveticaneuemedium';
  src: url('../fonts/helveticaneuemedium-webfont.woff2') format('woff2'),
    url('../fonts/helveticaneuemedium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue.woff2') format('woff2'),
    url('../fonts/HelveticaNeue.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-CondensedBlack.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-CondensedBlack.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-CondensedBold.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-CondensedBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Italic.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueLT Std Cn';
  src: url('../fonts/HelveticaNeueLTStd-Cn.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTStd-Cn.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueLT Std Lt Cn';
  src: url('../fonts/HelveticaNeueLTStd-LtCn.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTStd-LtCn.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-LightItalic.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-MediumItalic.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Thin.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-UltraLight.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
*/


.inner-banner {
  margin-bottom: 40px;
}

.thankyou .content-block p {
  text-align: left !important;
  font-size: 18px;
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-20 {
  margin-bottom: 20px;
}

a {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

img {
  max-width: 100%;
}

.purple {
  color: #772d7b;
  font-weight: bold;
}

.navbar-brand {
  padding: 0px;
  float: right;
}

.navbar-brand img {
  height: 100%;
}

header {
  padding-top: 10px;
  border-bottom: 1px solid #fff;
}



header .container {
  /* border-bottom: 1px solid #e2e6e7; */
  padding-bottom: 10px;
  position: relative;
}

header .nav>li.language-wrap {
  border-left: 1px solid #cfcfcf;
  border-right: 0px solid #cfcfcf;
  padding: 0px 20px;
  margin: 0px 0px 0px 20px;
  float: right;
  display: inline-block;
}

header .nav>li.language-wrap ul.dropdown-menu {
  padding: 0px;
}

header .nav>li.language-wrap ul li a {
  display: block;
  padding: 5px 10px;
  font-size: 10px;
}

header .nav>li.language-wrap a {
  padding: 0px;
  display: inline-block;
}

.custom-top {
  display: inline-block;
  float: left !important;
  margin-top: 30px;
}

.navbar-collapse {
  padding-top: 25px;
  text-align: center;
}

.language-wrap {
  text-transform: uppercase;
  color: #0d313b;
  font-size: 11px;
  letter-spacing: 2px;
}

.c-english {
  padding: 0px 0px 0px 15px;
  color: #0d313b;
  opacity: 0.3;
}

.account-login span {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  color: #0d313b;
  padding-left: 20px;
  letter-spacing: 2px;
}

.margin-01 {
  margin-top: 0px;
  margin-bottom: 30px;
}

.reg-box {
  margin: 20px 0px;
  color: #fff;
  background-color: #2a7de2;
  background-image: url(../img/resgiter-icon.png);
  background-repeat: no-repeat;
  background-position: 95% 20px;
  background-size: 70px;
  padding: 30px;
}

.reg-box-green {
  background-color: #234d5d;
  background-image: url(../img/open-book.png);
  background-repeat: no-repeat;
  background-position: 95% 20px;
  background-size: 70px;
  padding: 30px;
}

.reg-box-green h3,
.reg-box-blue h3 {
  color: #fff !important;
}

.reg-box.reg-box-1 {
  background-color: #fc4237;
  background-image: url(../img/search-icon.png);
  background-position: 95% 16px;
  background-size: 80px;
}

.reg-box h3 {
  margin: 0px 0px 15px 0px;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.reg-box a {
  text-decoration: none;
  color: #fff;
}

.reg-box span {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  font-size: 12px;
}

.stars-wrap .stars {
  height: 12px;
  width: 12px;
  background-image: url(../img/stars.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  display: none;
}

.newsBlock {
  margin-bottom: 30px;
}

.latest-news {
  background-color: #663366;
  color: #fff;
  padding: 20px;
  position: relative;
  display: table;
  width: 100%;
}

.latest-news span {
  vertical-align: middle;
}

.latest-news span.title {
  width: 133px;
  height: 46px;
  display: inline-block;
  background-image: url(../img/latest-news.png);
  margin-left: -32px;
  text-align: center;
  line-height: 38px;
  text-transform: uppercase;
  font-size: 10px;
  margin-right: 5px;
  letter-spacing: 1.8px;
  font-weight: 200;
}

.latest-news p {
  display: inline-block;
  width: 89%;
  margin: 0px;
}

.latest-news p:after {
  display: inline-block;
  content: "";
  margin: 0px 20px;
  width: 3px;
  height: 3px;
  background-color: #fff;
  opacity: 0.6;
  vertical-align: middle;
  border-radius: 30px;
  display: none;
}

.latest-news p span {
  opacity: 0.6;
  font-size: 12px;
}

.latest-news marquee {
  position: relative;
  top: 5px;
}

.news-ticker {
  display: table-cell;
  vertical-align: middle;
}

.latest-news p a {
  color: #fff;
}

.newsdate {
  font-size: 11px;
  margin-left: 15px;
  font-style: italic;
  padding-right: 5px;
  vertical-align: middle;
}

.latest-books .thumbnail-wrap h3 {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
  /* min-height: 70px; */
}

.latest-books .thumbnail-wrap h3 a {
  color: #000;
}

.latest-books .thumbnail-wrap p {
  color: #000;
  opacity: 0.6;
  font-size: 12px;
}

h3.title-big {
  position: relative;
  color: #663366;
  font-weight: bold;
  font-size: 34px;
  font-style: normal;
  margin: 0px 12% 40px 0px;
  height: 23px;
  border-bottom: 1px solid #eaeaea;
}

h3.title-big span {
  display: inline-block;
  background-color: #fff;
  padding-right: 20px;
}

h3.title-big span a {
  color: #663366;
}

.latest-books .thumbnail {
  padding: 0px;
  border: none;
  margin-bottom: 0px;
}

.latest-books .thumbnail p {
  color: gray;
}

.latest-news-thumb .media-left img {
  width: 124px;
}

.latest-news-thumb a {
  color: #000;
}

.latest-news-thumb a .media-object {}

.latest-news-thumb a.latest-thumb-img {
  /* display: block;
  overflow: hidden;
  height: 100%; */
}

.latest-news-thumb a.latest-thumb-img img {
  /* height: 100%;
  width: 100%;
  transform: scale(1.6); */
}

.latest-news-thumb a.latest-thumb-img.placeholderImg img {
  transform: scale(1);
}

h4.media-heading {
  font-size: 14px;
  font-style: italic;
}

.news-date {
  font-size: 10px;
  display: block;
  color: #000;
  opacity: 0.6;
}

.latest-news-block h4 {
  margin-top: 0px;
  line-height: 18px;
}

.upcoming-events h4 {
  font-size: 14px;
  line-height: 18px;
}

.news-dec {
  font-size: 10px;
}

.upcoming-events span.news-dec {
  margin-top: 10px;
  display: block;
}

.btn-green-wide {
  border: none;
  width: 152px;
  display: block;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  border-radius: 0px;
  color: #fff !important;
  background: #00a479;
  box-shadow: 0px 13px 36px -14px #00a479;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  text-decoration: none !important;
  background-position: center;
  transition: background 0.8s;
}

.btn-green-wide:hover,
.btn-green-wide:active,
.btn-green-wide:focus {
  color: #fff !important;
  background: #772d7b radial-gradient(circle, transparent 1%, #772d7b 1%) center/15000%;
}

.btn-green-wide:active {
  background-color: #06ecb0;
  background-size: 100%;
  transition: background 0s;
}

.btn-purple-wide {
  border: none;
  width: 152px;
  display: block;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  border-radius: 0px;
  color: #fff !important;
  background: #772d7b;
  box-shadow: 0px 13px 36px -14px #772d7b;
  text-align: center;
  margin-top: 20px;
  text-decoration: none !important;
  background-position: center;
  transition: background 0.8s;
}

.btn-purple-wide:hover,
.btn-purple-wide:active,
.btn-purple-wide:focus {
  color: #fff !important;
  background: #009966 radial-gradient(circle, transparent 1%, #9b3da0 1%) center/15000%;
  box-shadow: 0px 11px 36px -14px #009966 !important;
}

.btn-purple-wide:active {
  background-color: #c660cb;
  background-size: 100%;
  transition: background 0s;
}

.btn-purple {
  border: none;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 0px;
  color: #fff !important;
  background: #772d7b !important;
  box-shadow: 0px 20px 40px -5px #fdeafd !important;
}

.btn-purple:hover,
.btn-purple:active,
.btn-purple:focus {
  color: #fff !important;
  background: #009966 !important;
  box-shadow: 0px 11px 36px -14px #009966 !important;
}

.btn-event {
  border: none;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 0px;
  color: #fff !important;
  background: #009966;
  box-shadow: 0px 11px 36px -14px #009966;
}

.btn-event:hover,
.btn-event:active,
.btn-event:focus {
  color: #fff !important;
  background: #772d7b !important;
  box-shadow: 0px 20px 40px -5px #fdeafd !important;
}

.btn-full {
  background-color: #b2e4d7 !important;
  color: #fff !important;
}

.btn-full:hover,
.btn-full:active,
.btn-full:focus {
  cursor: not-allowed;
}

.btn-trans {
  line-height: 28px;
  vertical-align: middle;
  color: #00a479 !important;
  text-decoration: underline;
  font-weight: 500;
}

.btn-trans:hover {}

.reg-btn,
.Learn-btn {
  margin-top: 10px;
  width: 136px;
  border: none;
  border-radius: 0px;
  color: #fff !important;
  background: #009966;
  font-size: 12px;
  line-height: 24px;
  box-shadow: 0px 11px 36px -14px #009966;
}

.reg-btn:hover,
.reg-btn:active,
.reg-btn:focus {
  color: #fff !important;
}

.usr-follow-btn {
  border: 1px solid #4494e0;
  color: #4494e0 !important;
  font-size: 9px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 10px;
  font-style: normal;
}

.usr-follow-btn:hover,
.usr-follow-btn:focus,
.usr-follow-btn:active {
  color: #fff !important;
  background-color: #4494e0;
}

.insta-details a {
  color: #4494e0 !important;
}

.user-tweets {
  background-color: #fff;
  border: 1px solid #e1e8ee;
  border-radius: 0px;
  padding: 10px;
  margin-bottom: 5px;
}

.user-tweets p {
  font-size: 12px;
  color: #000;
}

.twitter-thumb-wrap {
  display: table;
  width: 100%;
  margin-bottom: 15px;
}

.twitter-user,
.twitter-thumb {
  display: table-cell;
  vertical-align: top;
}

p.cus-para {
  line-height: 26px !important;
}

.twitter-thumb {
  width: 46px;
  padding-right: 10px;
}

.twitter-user span {
  color: gray;
  opacity: 0.6;
  font-size: 12px;
}

.tweet-data {
  margin: 0px;
}

.tweet-data li a {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.tweet-data li span {
  font-size: 12px;
}

.tweet-data .retweet {
  position: relative;
  background-image: url(../img/retweet-icon.png);
}

.tweet-data .revision {
  position: relative;
  background-image: url(../img/revision-icon.png);
}

.tweet-data .fvrt {
  position: relative;
  background-image: url(../img/fvrt-icon.png);
}

.message {
  margin-bottom: 20px;
  position: relative;
}

.message-wrap {
  /* position: absolute;
  top: 60px;
  bottom: 20px;
  color: #fff;
  left: 275px;
  right: 20px;
  max-width: 60%;
  overflow: hidden;
  padding-bottom: 10px; */
  padding-left: 20px;
}

.message-wrap h3 {
  /* font-size: 16px;
  color: #fff;
  margin-bottom: 20px; */
}

.message-wrap p {
  /* opacity: 0.8;
  font-size: 12px; */
}

.events {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
}

.event-1 {
  background-color: #336699;
}

.event-2 {
  background-color: #772d7b;
}

.event-3 {
  background-color: #dd443e;
}

.event-4 {
  background-color: #00a479;
}

.main-slider img {
  width: 100%;
}

.custom-shadow01 img {
  /*box-shadow: 4px 30px 60px 10px #efecff;*/
}

.custom-shadow02 img {
  box-shadow: 4px 30px 60px 10px #fff7ef;
}

.main-slider h2 {
  margin: 20px 0px 0px 0px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  padding-bottom: 10px;
  color: #0d313b;
}

.main-slider .carousel-inner {
  margin-top: 50px;
  margin-bottom: 50px;
}

.main-slider span {
  opacity: 0.4;
  color: #0d313b;
  font-size: 12px;
  display: block;
  padding-bottom: 5px;
}

.main-slider p {
  color: #0d313b;
  opacity: 0.6;
  font-size: 12px;
}

ul.stars-wrap {
  margin-bottom: 20px;
}

ul.stars-wrap li {
  display: inline-block;
}

.book-content-block {
  background-color: #fff;
  box-shadow: -50px 20px 30px 0px #ececec;
  position: relative;
  z-index: 1;
  padding: 50px;
  margin-top: 15%;
}

.book-image-block {
  position: relative;
  z-index: 2;
  padding-right: 0px;
}

.book-image-block img {
  /*box-shadow: 0px 0px 40px 10px #f5f5f5;*/
}

.category-slider {
  padding: 30px;
  background-color: #772d7b;
  color: #fff;
  min-height: 330px;
}

.category-slider a {
  color: #fff;
}

.category-slider a.learn-more {
  margin-bottom: 0px;
  position: relative;
  bottom: 0px;
  padding-left: 0px;
  text-indent: 0px;
  text-align: center;
  width: 100%;
}

.category-header h2 {
  margin: 0px;
  padding-bottom: 7px;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  position: relative;
}

.category-header h2:after {
  content: "";
  background: url(../img/slider-arrow.png);
  width: 25px;
  height: 13px;
  position: absolute;
  right: 20px;
  top: 15px;
  display: none;
}

.category-header h2:before {
  content: "";
  background: #844288;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 30px;
  display: none;
}

.category-slider h3 {
  margin: 0px;
  padding-bottom: 10px;
  font-weight: 200;
  color: #fff;
  line-height: 18px;
  font-size: 15px;
  font-style: italic;
  white-space: nowrap;
}

.category-slider h4 {
  margin: 0px;
  padding-bottom: 10px;
  font-weight: 200;
  font-size: 12px;
}

.category-slider span {
  font-size: 12px;
  opacity: 0.6;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  word-break: break-all;
}

.category-header {
  margin-bottom: 20px;
}

.category-slider p {
  margin: 0px;
  font-size: 12px;
  font-weight: 300;
  padding-bottom: 20px;
  display: none;
}

.learn-more {
  border: none;
  width: 152px;
  display: block;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  border-radius: 0px;
  color: #fff;
  background: #00a479;
  box-shadow: 0px 13px 36px -14px #00a479;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  text-decoration: none !important;
  background-position: center;
  transition: background 0.8s;
}

.learn-more:hover,
.learn-more:active,
.learn-more:focus {
  color: #fff;
  background: #00d29b radial-gradient(circle, transparent 1%, #00d29b 1%) center/15000%;
}

.learn-more:active {
  background-color: #06ecb0;
  background-size: 100%;
  transition: background 0s;
}

.category-slider .carousel-indicators li {
  height: 8px;
  width: 8px;
  background-color: #fff;
  border: none;
  opacity: 0.7;
  vertical-align: middle;
  margin: 0px 4px;
}

.category-slider .carousel-indicators li.active {
  height: 8px;
  width: 8px;
  background-color: #fff;
  border: none;
  opacity: 1;
}

.no-padding {
  padding: 0px;
}

.content-category {
  margin-left: 20px;
  padding-bottom: 30px;
}

.category-slider .carousel-indicators {
  left: 0px;
  width: 100%;
  bottom: 10px !important;
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: none;
}

.account-login a.usericon:before {
  content: "";
  display: inline-block;
  background-image: url(../img/sprite.png);
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: -9px -10px;
  height: 12px;
  width: 14px;
}

header .nav>li.account-login .dropdown-menu {
  padding: 0px;
}

header .nav>li.account-login .dropdown-menu>li>a {
  font-size: 10px;
  padding: 5px 10px;
}

header .nav>li.account-login.dropdown.open a span {
  color: #000;
}

.banner-section {
  text-align: center;
}

.banner-section h1 {
  font-size: 50px;
  margin: 0px;
  padding-top: 31px;
  padding-bottom: 15px;
  color: #0d313b;
  display: none;
}

.banner-section p {
  color: #0d313b;
  font-size: 14px;
  opacity: 0.4;
  margin: 0px;
}

.carousel .container {
  position: relative;
}

.section-shipping-info .container {
  display: table;
  width: 100%;
  max-width: 1150px;
}

.carousel-inner>.item img {
  margin: 0px auto;
}

.section-shipping-info {
  padding: 30px 10px;
  overflow: hidden;
}

.section-shipping-info span {
  display: table-cell;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
  line-height: 20px;
}

.section-shipping-info span:before {
  content: "";
  display: inline-block;
  background-image: url(../img/sprite.png);
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 15px;
}

.section-shipping-info span small {
  display: inline-block;
  font-size: 16px;
}

span.info-advice:before {
  width: 31px;
  height: 32px;
  background-position: -792px -11px;
  vertical-align: baseline;
}

span.info-shipping:before {
  width: 51px;
  height: 30px;
  background-position: -834px -11px;
}

span.info-invoice:before {
  width: 33px;
  height: 32px;
  background-position: -896px -10px;
}

span.info-quality:before {
  width: 50px;
  height: 46px;
  background-position: -940px -10px;
}

.section-products {
  margin-bottom: 40px;
}

.product-box {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
}

.overlay-panel {
  position: absolute;
  bottom: 0px;
  left: 15px;
}

.overlay-panel li {
  display: inline-block;
  vertical-align: top;
}

li.overlay-title {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

li.overlay-quantity {
  width: 60px;
}

.product-box span {
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0.7);
  right: 0px;
  bottom: 43px;
}

.product-box a.hover-active {
  color: #c30c15;
}

.product-box a.hover-active li {
  color: #666666;
}

.product-box small.glyphicon {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 30px;
}

.product-box small.glyphicon.glyphicon-remove-sign {
  color: #c30c15;
}

.product-box small.glyphicon.glyphicon-info-sign {
  color: #bab9b9;
}

.product-box a {
  color: #646567;
  text-decoration: none;
  font-weight: bold;
}

.product-box a img {
  width: 100%;
}

.product-box a:hover {
  color: #c30c15;
}

.product-box p {
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin: 0px;
  border-top: 1px solid #cccccc;
}

.color-red {
  color: #c30c15;
}

.block-title {
  padding: 0px;
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  line-height: 20px;
  font-family: 'helveticaneuemedium';
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}

.block-title a {
  font-size: 16px !important;
  font-weight: normal;
  text-decoration: none !important;
  color: #333 !important;
}

.block-content ul li {
  padding-bottom: 10px;
  display: inline-block;
  margin-right: 5px;
}

.block-content-2 ul.bullet {
  width: 45%;
  display: inline-block;
}

ul.bullet li {
  padding-bottom: 5px;
}

ul.bullet li {
  display: block;
}

.insta-gallery {
  padding: 0px 10px;
  margin-bottom: 10px;
}

.cus-thumb {
  padding: 5px;
}

.insta-profile {}

.insta-thumb-wrap {
  display: table;
  width: 100%;
}

.insta-thumb,
.insta-details {
  display: table-cell;
  vertical-align: middle;
}

.insta-thumb {
  padding-right: 40px;
}

.insta-profile {
  margin-bottom: 20px;
}

.insta-profile h4 {
  font-size: 12px;
  margin-top: 0px;
  font-weight: 400;
}

.insta-profile h4 a {
  margin-left: 10px;
}

.insta-profile p {
  font-size: 11px;
  margin: 0px;
}

.insta-profile span {
  margin-right: 10px;
}

.cus-l-n-01,
.cus-l-n-01 img {
  min-height: 98px;
}

/* Add a gray background color and some padding to the footer */
.footer-row {
  position: relative;
}

.footer::after {
  content: '';
  position: absolute;
/*
  background-image: url(../img/books.svg);
  background-repeat: repeat-x;
  background-position: bottom;
*/
  width: 100%;
  max-width: 100%;
  height: 30px;
  right: 0px;
  border-bottom: 0px;
}

footer {
  /* background-image: url(../img/footer-strip.png);
  background-repeat: repeat-x;
  background-position: bottom; */
  padding: 20px 0px 40px 0px;
}

footer section {
  padding: 15px 10px 30px 10px;
}

footer section.footer-columns .container {
  /* border-top: 1px solid #e9ecec;
  padding-top: 40px; */
}

footer {
  padding: 20px 0px 30px 0px;
}

.footer a {
  color: #000;
  font-size: 14px;
  font-family: 'helveticaneuemedium';
}

.footer a:hover {
  text-decoration: underline;
}

.footer-columns ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
}

.footer-columns ul li {
  margin: 0px;
  flex: 1 0 calc(50% - 0px);
}

.footer-icons-section {
  border-top: 1px solid #909090;
  border-bottom: 1px solid #909090;
}

.footer-columns .block-wrap {
  padding: 0px 50px 0px 0px;
}

@media (min-width: 0px) and (max-width: 991px) {
  .footer-columns .block-wrap {
    padding: 0px 0px 0px 0px !important;
  }
}

.footer-columns .row .col-md-3:last-child .block-wrap {
  padding-right: 0px;
}

.footer-bottom {
  border-top: 1px solid #fff;
  padding: 25px 10px;
}

.footer-bottom .container {
  display: table;
}

.footer-bottom .container a {
  display: table-cell;
  text-align: center;
  width: 20%;
}

.footer-copyright {
  font-size: 12px;
}

.footer-copyright a {
  color: #000;
  text-decoration: none;
}

.footer-copyright a:after {
  content: "/";
  display: inline-block;
  position: relative;
  font-size: 12px;
  padding-right: 7px;
  margin-left: 7px;
}

.footer-copyright a:last-child:after {
  content: "";
}

.ic-address p {
  margin-bottom: 5px;
}

.footer-copyright .container {
  border-top: 1px solid #e9ecec;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-copyright p {
  color: #000;
  font-size: 14px;
}

.footer-copyright .social-media a {
  vertical-align: top;
  text-align: center;
}

.footer-copyright .social-media a i.fab.fa-instagram {
  position: absolute;
  top: 8px;
}


.footer-copyright .pull-right {
  float: none !important;
  text-align: center;
}

.social-wrap {
  margin-top: 20px;
}

.social-wrap a {
  margin-right: 10px;
}

header .nav>li.social-media,
header .nav>li.account-login {
  padding: 0px;
  margin: 0px;
  float: none;
  display: inline-block;
}

header .nav>li.account-login a {
  padding: 0px;
}

li.social-media a {
  display: inline-block;
  padding: 0px;
  margin-right: 10px;
  line-height: 32px;
}


li.social-media a:last-child {
  margin-right: 0px;
}

.social-media a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
}

.social-media a.gplus {
  background-color: #f24033;
}

.social-media a.facebook {
  /* background-color: #43619c; */
}

.social-media a.linkedin {
  /* background-color: #187fb8; */
}

.social-media a.insta {
  /* background-color: #2a5b83; */
}

.align-it {
  float: right;
}

.ic-address {
  font-size: 12px;
}

.navbar-nav>li {
  float: none;
}

.navbar-nav>li.menu-wrap {
  float: left;
  display: inline-block;
  margin-right: 50px;
}

.button_container {
  position: relative;
  height: 12px;
  width: 16px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
  margin-left: 0px;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active-canvas .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}

.button_container.active-canvas .middle {
  opacity: 0;
  background: #fff;
}

.button_container.active-canvas .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}

.button_container.active-canvas {
  width: 37px;
}

.button_container.active-canvas span {
  height: 2px;
}

.button_container.active-canvas span:nth-of-type(2) {
  top: 11px;
}

.button_container.active-canvas span:nth-of-type(3) {
  top: 22px;
}

.button_container span {
  background: #0d313b;
  border-radius: 4px;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 6px;
  width: 10px;
  right: 0px;
  left: inherit;
}

.button_container span:nth-of-type(3) {
  top: 12px;
}

.button_container:hover span:nth-of-type(2) {
  width: 100%;
}

.overlay-canvas {
  position: fixed;
  z-index: 50;
  background: #772d7b;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}

.overlay-canvas.open-canvas {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
  z-index: 10;
}

.overlay-canvas.open-canvas li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay-canvas.open-canvas li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.overlay-canvas.open-canvas li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.overlay-canvas.open-canvas li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.overlay-canvas nav {
  position: relative;
  height: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 34px;
  font-weight: 400;
  text-align: center;
}

.overlay-canvas ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay-canvas ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay-canvas ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.overlay-canvas ul li a:hover:after,
.overlay-canvas ul li a:focus:after,
.overlay-canvas ul li a:active:after {
  width: 100%;
}

.overlay-canvas ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* custom css*/
.form-outline .form-control {
  border-top: none;
  border-left: none;
  border-right: none;
  height: 45px;
  padding: 15px 0px 0px 0px;
}

.form-outline .form-control~.form-label {
  top: 10px;
  left: 0px;
  padding-top: 0px;
  border-radius: 0px;
  color: #000;
}

.form-outline .form-control~.form-notch div {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: #000;
  border-radius: 0px !important;
}

.newsletterWrp {
  position: relative;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #e0e0e0;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #e0e0e0;
}

::placeholder {
  color: #e0e0e0;
}

@media (min-width: 0px) and (max-width: 991px) {
  .newsletterWrp {
    margin-bottom: 20px;
  }
}

button.newslettebtn {
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0px;
  height: 45px;
  width: 45px;
}

.form-outline .form-control:focus~.form-notch .form-notch-trailing {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px !important;
}

.form-outline .form-control:focus~.form-notch .form-notch-leading {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px !important;
}

.form-control {
  /* border-radius: 0px !important; */
}

textarea.form-control {
  height: 60px;
  resize: none;
}

.custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.custom-file-upload {
  background-image: url(../img/pin.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  display: block;
  border: 1px dashed #c5c5c5;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #dadce3;
  text-align: left;
  vertical-align: middle;
  padding: 0px 6px 0px 30px;
  position: relative;
  height: 65px;
}

.custom-file-upload label {
  display: block;
  margin-bottom: 5px;
}

.file-upload-wrapper {
  position: relative;
  margin-bottom: 5px;
  text-align: center;
}

.file-upload-input {
  /* display: none; */
  width: 45%;
  color: #000;
  font-size: 16px;
  padding: 5px 17px;
  border: none;
  background-color: #f6f5f3;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  float: left;
  margin-top: 6px;
  /* IE 9 Fix */
  position: absolute;
  right: 0px;
  background: transparent;
}

.file-upload-input:hover,
.file-upload-input:focus {
  background-color: transparent;
  outline: none;
}

.file-upload-button {
  cursor: pointer;
  display: inline-block;
  color: #dc3a34;
  font-size: 14px;
  padding: 5px 10px;
  border: none;
  margin-left: -1px;
  background-color: transparent;
  margin-top: 0px;
  max-width: 50%;
  margin: 0px auto;
  /* IE 9 Fix */
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none !important;
  background: transparent;
}

.file-upload-button:hover span {
  text-decoration: none !important;
}

.file-upload-button:hover {
  text-decoration: underline;
}

.file-upload-button span {
  color: #000;
  text-decoration: none !important;
}

.custom-form select {
  width: 100%;
  height: 32px;
  outline: none;
  line-height: normal;
  padding: 0px 10px;
  border-radius: 0px;
  margin-bottom: 6px;
  box-shadow: none;
  border: 1px solid #d2d2d2;
  margin-top: 10px;
}

.custom-form select:focus {
  /* border: none; */
  outline: none;
}

select {
  color: #e0e0e0;
}

option {
  color: #000;
}

option:first-child {
  color: #e0e0e0;
}

.custom-form .select-items div {
  background-color: transparent;
  border: none;
  padding-right: 10px;
  padding-left: 10px;
  font-weight: 400;
  font-size: 12px;
}

.custom-form .select-selected {
  background-color: transparent;
  border: none;
  padding-right: 0px;
  padding-left: 0px;
  font-weight: 400;
  font-size: 12px;
}

.custom-form .select-selected:before {
  right: 0px;
  border-color: #fff transparent transparent transparent;
  top: 13px;
}

.custom-form .select-selected:after {
  right: 0px;
  top: 14px;
  border-color: #0d313b transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

.custom-form .select-selected.select-arrow-active:after {
  border-color: transparent transparent #0d313b transparent;
  top: 7px;
}

.custom-form .select-selected.select-arrow-active:before {
  border-color: transparent transparent #fff transparent;
  top: 8px;
}

.custom-form .select-items div:hover,
.custom-form .same-as-selected {
  background: #772d7b;
  color: #fff;
}

.custom-form .select-items {
  background-color: #fff;
  box-shadow: 0px 4px 5px 3px #f9f9f9;
  max-height: 300px;
  overflow: auto;
}

.custom-form .form-group {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0px 4px 25px 3px #f0f0f0;
  margin-bottom: 30px;
}

.custom-form .form-group-cus {
  background-color: transparent;
  padding: 0px 0px 0px 0px;
  box-shadow: none;
  margin-bottom: 20px;
}

.custom-form .form-group-cus label {
  font-weight: bold;
}

.custom-form .form-group-cus .form-check-input {
  vertical-align: middle;
  margin: 5px 10px 0 0;
}

input.input-validation-error.form-check-input~.form-check-label {
  color: red;
}

.custom-form label {
  font-weight: normal;
  color: #0d313b;
  font-size: 14px;
}

.custom-form .form-control {
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #d2d2d2;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 5px 10px;
}

.arText {
  display: none;
}

.help-text {
  font-size: 14px;
  color: #9e9e9e;
  display: block;
  font-weight: 200;
}

.videlist a i {
  opacity: 0.5;
}

.videlist:hover a i {
  opacity: 1;
}

.preview-thumb i {
  position: absolute;
  top: 40%;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.fas.fa-play {
  background: rgba(0, 0, 0, 0.8);
  width: 60px;
  height: 60px;
  top: 35%;
  text-align: center;
  color: #fff;
  line-height: 60px;
  border-radius: 100px;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.standard-gallery p {
  font-size: 12px;
}

.preview-thumb {
  position: relative;
}

.preview-thumb img {
  width: 100%;
}

.imglist {
  margin-top: 25px;
}

.imglist-detail {
  margin-top: 10px;
  margin-bottom: 20px;
  height: 190px;
  overflow: hidden;
}

.imglist-detail a {
  display: block;
  height: 100%;
}

.imglist-detail a img {
  height: 100%;
  width: 100%;
}

.thumb-wrap {
  position: absolute;
  width: 100%;
  display: table;
  padding: 0px 5px;
  bottom: 10px;
  text-align: center;
}

.imglist a,
.total-count {
  vertical-align: middle;
}

.imglist a {
  display: table-cell;
  padding: 0px 5px;
  text-decoration: none;
  font-size: 24px;
  color: #000;
  width: 33.333333%;
  height: 60px;
  overflow: hidden;
}

.imglist a img {
  height: 100%;
}

.total-count {
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  /* display: flex!important;
  justify-content: center;
  flex-direction: column; */
  text-align: center;
}

.preview-thumb a.total-count {
  color: #fff;
}

.total-count small {
  position: absolute;
  left: 0px;
  right: 0px;
  font-size: 24px;
  top: 0px;
  bottom: 0px;
  line-height: 60px;
}

.standard-gallery h4.media-heading {
  margin-top: 15px;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
}

.dual-block-inline {
  max-width: 220px;
  margin-bottom: 25px;
}

.dual-block-inline .news-date {
  text-align: center;
}

.dual-block {
  display: table;
  width: 100%;
}

.dual-block span {
  display: table-cell;
  font-size: 12px;
  font-weight: 600;
}

.categorytag {
  color: #000;
  background-color: #efefef;
  text-align: center;
  padding: 10px 0px;
}

/*the container must be positioned relative:*/

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: #e6eaeb;
}

/*style the arrow inside the select element:*/

.select-selected:before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 16px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #e6eaeb transparent transparent transparent;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #0d313b transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #0d313b transparent;
  top: 10px;
}

.select-selected.select-arrow-active:before {
  border-color: transparent transparent #e6eaeb transparent;
  top: 11px;
}

/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
  color: #0d313b;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

/*style items (options):*/

.select-items {
  position: absolute;
  background-color: #e6eaeb;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.event-posted {
  margin-bottom: 20px;
}

.event-posted .event-time {
  padding: 10px 20px;
  color: #0d313b;
  background-color: #e6eaeb;
  display: inline-block;
  margin-right: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
  vertical-align: top;
  min-height: 48px;
}

.event-posted .event-time:nth-child(2) {
  margin-right: 0px;
}

.event-posted .event-time img {
  vertical-align: text-top;
  margin-right: 5px;
}

.event-posted .event-time p {
  margin: 0px;
  padding: 0px;
}

.event-listing-wrap .news-date {
  color: #772d7b;
  font-weight: 600;
}

.event-listing-wrap .news-dec,
.latest-news-thumb .news-dec {
  font-size: 12px !important;
}

.sidebar-menu {
  background-color: #f5f4f4;
  border: 1px solid #ecebeb;
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-menu ul {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
}

.sidebar-menu ul li {
  padding-bottom: 25px !important;
  list-style: none inside !important;
  margin-left: 0px !important;
}

.sidebar-menu ul li.active a {
  color: #0d313b;
  opacity: 1;
}

.sidebar-menu ul li:last-child {
  padding-bottom: 0px !important;
}

.sidebar-menu ul li a {
  color: #0d313b;
  display: block;
  opacity: 0.6;
  text-decoration: none;
}

.sidebar-menu ul li a:hover {
  opacity: 1;
}

.share-title {
  color: #000;
  font-weight: 500;
  margin-top: 15px;
}

.likes-wrap {}

.likes-wrap a {
  margin-right: 5px;
  margin-top: 10px;
  display: inline-block;
  vertical-align: top;
}

.title-main {
  margin-bottom: 30px;
  font-size: 50px;
}

.title-main span {
  font-size: 14px;
  float: right;
  color: #536e75;
  position: relative;
  padding-right: 70px;
  text-align: right;
  margin-top: 20px;
}

.title-main span small {
  font-size: 25px;
  color: #0d313b;
  font-weight: bold;
  position: absolute;
  right: 0px;
  top: 0px;
}

.title-main-big {
  font-size: 50px;
  line-height: 52px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}

.title-main-mid {
  font-size: 40px;
  line-height: 52px;
  font-weight: 500;
  margin-bottom: 30px;
}

.title-main-big-2 {
  color: #772d7b;
  margin-bottom: 15px;
}

.content-block .media-heading {
  line-height: 22px;
}

.content-block .news-date {
  margin: 8px 0px;
}

.content-block p {
  line-height: 22px;
  text-align: justify;
}

.content-block ul {
  margin: 0px;
}

.content-block ul>ul {}

.content-block ol>ol {}

.content-block ol>ul {}

.content-block ul>ol {}

.content-block ul>ul>li {}

.content-block ol>ol>li {}

.content-block ul>ol>li {
  list-style: outside decimal;
}

.content-block ol>ul>li {}

.content-block ul li {
  list-style: outside;
  padding-bottom: 10px;
  margin-left: 15px;
}

.content-block ol {
  margin: 0px;
}

.content-block ol li {
  list-style: outside decimal;
  padding-bottom: 10px;
  margin-left: 15px;
}

.content-block div {
  line-height: 22px;
  text-align: justify !important;
}

.content-block div.linehight {
  line-height: 33px;
}

.category-body .row {
  display: flex;
  margin: 0px;
}

.category-body img {
  width: 100%;
}

.content-block p {
  text-align: justify !important;
}

.prize {
  padding: 20px 20px 0px 20px;
  background-color: #f3f3f3;
  text-align: center;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  text-transform: uppercase;
}

.badge-prize {
  padding: 10px 30px;
  text-align: center;
  background-color: #ffc426;
  display: inline-block;
  color: #fff;
  margin: 5px 0px 25px 0px;
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
}

.second-prize.badge-prize {
  background-color: #6c7181;
}

.third-prize.badge-prize {
  background-color: #c27338;
}

.trophy {
  padding: 20px;
}

.winner-info {}

.winner-info h4 {
  margin-bottom: 20px;
}

.winner-info h4 small {
  display: block;
  color: #0d313b;
  font-size: 14px;
  margin-bottom: 5px;
}

.latest-books-listing p {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 20px;
}

.latest-books-listing .media-object {
  margin-bottom: 15px;
}

.book-title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  /* min-height: 70px; */
  text-align: left;
}

.book-box {
  margin-bottom: 20px;
}

.latest-books-listing .book-box {
  padding-bottom: 50px;
  position: relative;
}

.book-author {
  opacity: 0.6;
  font-size: 12px;
  margin-bottom: 0px;
  display: block;
  margin-top: 5px;
}

p.book-tag {
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-top: 0px;
}

.book-details p {
  padding-bottom: 20px;
}

.btn-green {
  background-color: #00a479;
  color: #fff !important;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0px 20px 40px -5px #c3fbed;
  cursor: pointer;
  border: none;
}

.btn-green:hover {
  background: #772d7b !important;
  box-shadow: 0px 11px 36px -14px #772d7b !important;
  display: inline-block;
  text-decoration: none;
}

.small-title {
  font-size: 16px;
  color: #772d7b;
  text-align: center;
  border-bottom: 1px solid #eaedee;
  height: 10px;
  margin-bottom: 30px;
}

.small-title span {
  background-color: #f9f9f9;
  display: inline-block;
  padding: 0px 10px;
}

.img-border {
  padding: 10px;
  border: 1px solid #e2e6e7;
}

.btn-back {
  color: #00a479 !important;
  font-size: 17px;
  text-decoration: none;
}

.btn-back:hover {
  text-decoration: none;
}

.btn-back span {
  display: inline-block;
  vertical-align: middle;
}

.btn-back small {
  font-size: 28px;
  color: #00a479 !important;
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
}

.btn-back span::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00a479;
  bottom: 0px;
  position: relative;
  transition: width 0.3s;
}

.btn-back span:hover::after {
  width: 100%; //transition: width .3s;
}

.notice {
  padding: 20px;
  background-color: rgba(216, 216, 216, 0.1);
}

.notice h4 {
  font-weight: 400;
  font-size: 14px;
}

.login-section {
  text-align: center;
}

.login-section h4 {
  font-weight: 400;
  border-bottom: 1px solid #e2e6e7;
  height: 10px;
  margin-bottom: 20px;
}

.login-section h4 span {
  font-weight: 400;
  background-color: #fff;
  padding: 5px 10px;
}

.comments-section {
  text-align: center;
}

.comments-section h4 {
  font-weight: 400;
  border-bottom: 1px solid #e2e6e7;
  height: 10px;
  margin-bottom: 20px;
}

.comments-section h4 span {
  font-weight: 400;
  background-color: #fff;
  padding: 5px 10px;
}

.comments-wrap {
  text-align: left;
  font-size: 14px;
}

.user-img-comment {
  max-width: 70px;
  border-radius: 100px;
  float: left;
}

.comments-wrap p {
  padding-left: 90px;
  font-size: 14px;
  line-height: 26px;
  color: #0d313b;
}

.comments-wrap span {
  display: block;
}

.comments-wrap .user-title-comment {
  font-weight: 600;
  margin-bottom: 5px;
  color: #0d313b;
}

.comments-wrap .date-comment {
  font-size: 14px;
  opacity: 0.6;
  color: #0d313b;
  margin-bottom: 5px;
}

.reply-comment {
  margin-left: 90px;
}

.input-validation-error {
  border: 1px solid red !important;
}

.event-box {
  position: relative;
  display: block;
}

.date-cus {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  display: flex;
  text-align: center;
  font-size: 20px;
  color: #fff !important;
  line-height: 25px;
}

.date-cus strong {
  -webkit-align-self: center;
  /* Safari 7.0+ */
  align-self: center;
  margin: 0px auto;
  max-width: 50px;
}

.login-form {
  padding: 20px 20px 0px 20px;
  position: relative;
}

.custom-form-login button.close {
  position: absolute;
  right: 35px;
  top: 7px;
  font-weight: 100;
  font-size: 40px;
  z-index: 1;
}

.custom-form-login button.close:hover,
.custom-form-login button.close:focus,
.custom-form-login button.close:active {
  box-shadow: none;
  outline: none;
}

.login-form h3.title-big span {
  font-size: 18px;
}

.custom-form-login .modal-footer {
  border: none;
  padding: 0px 35px 20px 35px;
}

#forgotModal {
  z-index: 1060;
}

.forgotPass {
  font-weight: 700;
  font-size: 14px;
  color: #772d7b;
  float: left;
  padding: 8px;
}

.latest-news-thumb.latest-news-thumb-cus .hide-it {
  display: none;
}

.latest-news-thumb .news-dec {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 100%;
}

.m-desktop .m-name {
  display: inline-block;
  margin-left: 25px;
  vertical-align: top;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  color: #0d313b;
  letter-spacing: 2px;
  margin-top: 1px;
}

#myCarousel2.carousel.slide {
  margin-bottom: 35px;
}

@media (min-width: 960px) and (max-width: 1260px) {

  .reg-btn,
  .Learn-btn {
    margin-bottom: 30px;
  }

  .main-slider .carousel-inner {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .book-content-block {
    margin-top: 5%;
  }

  .banner-section h1 {
    font-size: 60px;
    padding-top: 50px;
  }
}

@media (min-width: 0px) and (max-width: 1023px) {
  .banner-section h1 {
    font-size: 40px;
    padding-top: 40px;
  }

  .book-image-block {
    padding-right: 10px;
  }

  .book-content-block {
    padding: 20px;
    margin-top: 0px;
  }

  .main-slider .carousel-inner {
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .date-cus {
    font-size: 26px;
  }
}

.glyphicon-chevron-left:before {
  content: "\e257";
}

.glyphicon-chevron-right:before {
  content: "\e258";
}

.only-xs {
  display: none;
}

.signup {
  font-weight: 700;
  font-size: 14px;
  color: #772d7b;
  float: left;
  padding: 8px;
  position: relative;
}

.signup::before {
  content: "/";
  display: inline-block;
  margin-right: 19px;
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #e0e0e0 !important;
  opacity: 1;
  /* Firefox */
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #e0e0e0 !important;
}

input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #e0e0e0 !important;
}

/*zee*/

.address-map {
  margin-top: -155px;
}

.content-category h4 {
  display: none;
}

.content-category h4+span {
  display: none;
}

.btn-stick {
  position: absolute;
  bottom: 0px;
}

.latest-books-listing .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.latest-books-listing .row>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.reg-box1 {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* zee */

.topbarwrap {
  background: #234d5d;
  padding: 10px 0px;
  border-bottom: 1px solid #234d5d;
  position: relative;
  z-index: 1000;
}

.topbar {
  padding: 0px;
  margin: 0px 0px 0px 15px;
}

.topbar ul {
  padding: 0px;
  margin: 0px;
}

.topbar ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
}

.topbar ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
}

.topbarwrap.onlyMoble .topbar ul li:first-child {
  display: none;
}

.sub-header {
  padding-bottom: 15px;
  background: #F2F2F2;
  padding-top: 15px;
}

.sub-header a {}

.sub-header img {}

.navbar-logo img {
  max-width: 140px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .reg-box.reg-box-1 {
    margin-top: 0px;
  }
}

@media screen and (min-width: 768px) {

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 60px;
    height: 60px;
    margin-top: -10px;
    font-size: 20px;
    color: #000;
    background: #fff;
    line-height: 60px;
    border-radius: 30px;
    box-shadow: 0px 17px 30px #bbbbbb;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: 0px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: 0px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .imglist a {
    height: 50px;
  }

  .total-count small {
    font-size: 18px;
    line-height: 65px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .message-wrap {
    /* top: 40px; */
  }
}

@media (min-width: 0px) and (max-width: 992px) {
  .title-main span {
    font-size: 14px;
    padding-right: 40px;
    margin-top: 0px;
  }

  .title-main span small {
    font-size: 18px;
  }

  .title-main {
    font-size: 24px;
  }

  .m-name {
    position: relative;
    left: -45px;
    top: -3px;
    font-size: 15px;
  }

  .c-english {
    padding: 0px 0px 0px 0px;
    font-size: 12px;
  }

  .navbar-brand {
    display: inline-block;
    float: none;
  }

  .hide-xs {
    display: none !important;
  }

  .only-xs {
    display: inline-block !important;
    float: right;
    margin: 35px 10px 35px 10px;
  }

  #splMenu ul {
    font-size: 18px;
  }

  #splMenu div#closex {
    width: 30px;
    height: 30px;
  }

  .message-wrap {
    /* top: 10px; */
    /* overflow: auto; */
  }

  .message-wrap h3 {
    /* font-size: 14px; */
    /* margin-bottom: 10px; */
  }

  .message-wrap p {
    /* font-size: 10px; */
  }

  .book-author {
    height: 45px;
    overflow: hidden;
  }

  .file-upload-button {
    max-width: 100%;
    font-size: 12px;
  }

  .button_container.active-canvas {
    position: fixed;
    top: 30px;
    right: 30px;
  }

  .banner-section {
    padding: 0px 10px;
  }

  .banner-section h1 {
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .banner-section p {
    font-size: 14px;
  }

  .main-slider .carousel-inner {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .book-image-block {
    padding-right: 15px;
  }

  .book-content-block {
    margin-top: 0px;
  }

  .user-tweets {
    margin-top: 0px;
    margin-bottom: 5px;
  }

  h3.title-big span {
    width: 100%;
  }

  .reg-btn,
  .Learn-btn {
    margin-bottom: 30px;
  }

  .media-heading br {
    display: none;
  }

  .latest-news-block h4 {
    margin-top: 0px;
  }

  h3.title-big:after {
    width: 100%;
  }

  header {
    padding-top: 0px;
    margin-bottom: 0px;
    background: #fff;
  }

  header .container {
    padding-bottom: 0px;
  }

  .custom-shadow01 img {
    box-shadow: none !important;
  }

  .book-content-block {
    box-shadow: none !important;
  }

  .main-slider h2 {
    margin-top: 0px;
  }

  .custom-top {
    display: block;
    text-align: center;
    margin: 10px 0px;
    float: none !important;
  }

  header .nav>li.social-media {
    display: block;
    margin-bottom: 20px;
  }

  header .nav>li.language-wrap {
    margin: 0px 0px 0px 10px;
    padding: 0px 10px 0px 0px;
    border-left: none;
    float: none;
    border-right: 1px solid #cfcfcf;
  }

  .content-category {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .title-main-big {
    font-size: 34px;
    line-height: 40px;
  }
}

@media (min-width: 0px) and (max-width: 479px) {
  .category-slider a.learn-more {
    width: auto;
  }

  .message-wrap {
    /* max-width: 55%; */
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .latest-news p {
    width: 70% !important;
  }
}

@media (min-width: 0px) and (max-width: 479px) {
  .latest-news p {
    width: 55% !important;
  }

  .latest-books .thumbnail-wrap h3 {
    min-height: 120px;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {

  /*
 * Row with equal height columns
 * --------------------------------------------------
 */
  .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  h3.title-big {
    font-size: 22px;
  }

  .cus-l-n-01,
  .cus-l-n-01 img {
    min-height: auto;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: 0px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: 0px;
  }

  .address-map {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {

  .cus-l-n-01,
  .cus-l-n-01 img {
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    /* margin-left: -90px; */
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    /* margin-right: -90px; */
  }
}

.btnNo {
  position: absolute;
  right: 15px;
  font-size: 15px;
  top: 14px;
}

.btnNo:hover {
  color: #00a479;
}

.menuContain {
  padding: 0px;
  direction: ltr;
}

.nav .nav-submenu>ul {
  direction: ltr;
}

ul ul li.nav-submenu>a:after {
  transform: rotate(-180deg);
}

body .nav .nav-submenu>a {
  padding-right: 30px !important;
  padding-left: 15px !important;
}

body .nav li.nav-submenu li>a {
  font-size: 13px;
  padding: 12px 20px 12px 20px !important;
  color: #484848;
}

body .nav li.nav-submenu li>a:hover {
  /* color: #87189d; */
  color: #234d5d;
}

.noMoble {
  display: inline-block;
  display: flex;
  align-items: center;
}

.noMoble ul {
  display: inline-block;
}

.noMoble ul li {
  margin: 0px;
  border: none;
}

.noMoble ul li a,
.noMoble ul li a:active,
.noMoble ul li a:hover,
.noMoble ul li a:visited {
  display: inline-block;
}

.onlyMoble {
  display: none;
}

/* .nav .nav-submenu>a:after {
  width: 10px;
  left: inherit;
  -webkit-transform: scaleX(0);
  transform: scaleX(1);
} */

.custom-form h3 {
  margin-bottom: 20px;
}

.cusSelect {}

.cusSelect select {}

.cusSelect li.select2-selection__choice {
  padding: 0px 5px !important;
  margin-right: 5px !important;
  font-size: 12px !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  padding: 0px 0px;
  font-size: 13px;
  margin: 0px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  outline: 0;
  min-height: 32px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: text;
}

span.social-media-top {
  display: flex;
  margin-right: auto;
}

span.social-media-top a {
  margin-right: 10px;
}

.topbar ul li a.arabic-text {
  font-family: 'Markazi Text', serif;
  font-size: 16px;
  vertical-align: bottom;
  letter-spacing: 2px;
}

@media only screen and (min-width: 0px) and (max-width: 992px) {
  ul ul li.nav-submenu>a:after {
    transform: none;
  }

  .nav ul li {
    padding: 0px 25px;
  }

  .nav ul li li {
    padding: 0px 10px;
  }

  .onlyMoble {
    display: block;
  }

  .noMoble {
    display: none;
  }

  .nav a,
  .nav a:active,
  .nav a:hover,
  .nav a:visited {
    background: #fff;
  }

  .nav {
    background: #fff;
  }

  body .nav .nav-submenu>a {
    padding-right: 30px !important;
    padding-left: 0px !important;
  }

  body .nav a,
  body .nav a:active,
  body .nav a:hover,
  body .nav a:visited {
    padding: 0px;
  }

  .nav .nav-submenu>ul {
    margin-left: 0px;
  }
}


.product__slider-main {}

.product__slider-main img {
  margin: 0 auto;
}

.product__slider-thmb .slick-slide {
  opacity: 0.5;
  transition: all .3s ease;
}

.product__slider-thmb .slick-slide.slick-active,
.product__slider-thmb .slick-slide:hover {
  opacity: 1;
}

.product__slider-main,
.product__slider-thmb {
  display: none;
}

.slickWrapper {
  position: relative;
}


.overthumbs {
  position: absolute;
  z-index: 512;
  width: 500px;
  bottom: 100px;
  color: #fff;
  left: 10%;
  display: none !important;
}

.overthumbs h3 {
  font-size: 17px;
  font-weight: bold;
  border-top: 2px solid #fff;
  padding-top: 20px;
  margin-right: 20px;
  color: #fff;
}

.overthumbs p {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}

.slide .container {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
}

.slick-arrow {
  background: #EFEFEF;
  border: none;
  width: 90px;
  height: 56px;
  color: #000;
  position: absolute;
  bottom: 0px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.slick-arrow:hover,
.slick-arrow:active,
.slick-arrow:focus {
  outline: none;
}

.slick-next.slick-arrow {
  left: 90px;
  border-left: 1px solid #d4d4d4;
}

.slick-slide {
  height: 86vh;
  background-repeat: no-repeat;
}

.slick-slide img {
  width: 100%;
  /* height: 100%; */
  max-height: 100vh;
  position: absolute;
  top: 0px;
}

.slick-slide::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 0px;
  display: none;
}

.slide_content {
  z-index: 2;
  /* position: absolute;
  bottom: 25%;
  left: 10%; */
  color: #fff;

}

.slide_content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  border-top: 2px solid #fff;
  padding-top: 40px;
  max-width: 340px;
  color: #fff;
}

.slide_content p {
  font-size: 21px;
  max-width: 460px;
  color: #fff;
}

.product__slider-thmb .slick-slide:hover,
.product__slider-thmb .slick-slide:active,
.product__slider-thmb .slick-slide:focus {
  outline: none;
}

.arrowWrapper {
  position: relative;
  max-width: 1170px;
  margin: 0px auto;
}


@media screen and (max-width: 1435px) and (min-width: 1025px) {

  .slide_content {
    bottom: 35%;
  }

  .slide_content p {
    font-size: 16px;
    max-width: 360px;
  }

  .slide_content h2 {
    font-size: 22px;
    padding-top: 20px;

  }
}


/* new page styling */
.welcomeMessage {
  background: #F2F2F2;
  padding: 80px 0px;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 15px;
}

.maintitle {
  /*font-family: 'helveticaneuebold';*/
  font-family: "Helvetica NeueLT Arabic 55 Roman", sans-serif; /*RMRMRM*/
  font-size: 48px;
}

.maintitle2 {
  /*font-family: 'helveticaneuebold';*/
  font-family: "Helvetica NeueLT Arabic 55 Roman", sans-serif; /*RMRMRM*/
  font-size: 30px;
}

.divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 30px;
  margin-bottom: 30px;
}

.divider-white {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 45px;
  margin-bottom: 30px;
}

.message-wrap p {
  line-height: 30px;
}

.mx-title-width {
  /* max-width: 60%; */
}

section.search_engine {
  padding: 60px 0px 80px 0px;
  background: #0f0;
  margin-bottom: 40px;

}

.search_engine h2 {}

.search_engine p {}

.search-input {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.search-input input[type="text"] {
  border: none;
  box-shadow: 0px 7px 15px #f1f1f1;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  width: 100%;
  padding: 0px 175px 0px 15px;
  border-radius: 6px;
}

.search-input input[type="text"]:hover,
.search-input input[type="text"]:focus,
.search-input input[type="text"]:active {
  outline: none;
  border: none;
  box-shadow: 0px 7px 15px #fcf0ff;
}

input.search-btn {
  height: 42px;
  background: #87189D;
  border: none;
  border-radius: 6px;
  padding: 0px 20px;
  line-height: 42px;
  font-size: 16px;
  font-family: 'helveticaneuebold';
  min-width: 160px;
  color: #fff;
}

input.search-btn:hover,
input.search-btn:focus,
input.search-btn:active {
  outline: none;
  border: none;
}

input.Eventsearch-btn {
  height: 55px;
  background: #87189D;
  border: none;
  border-radius: 6px;
  padding: 0px 20px;
  line-height: 42px;
  font-size: 16px;
  font-family: 'helveticaneuebold';
  min-width: 100px;
  color: #fff;
}

input.Eventsearch-btn:hover,
input.Eventsearch-btn:focus,
input.Eventsearch-btn:active {
  outline: none;
  border: none;
}

.card-header-1 {
  padding: 0px;
  display: flex;
  align-items: center;
  border: none;
}

.card-title {
  font-size: 26px;
  font-family: 'helveticaneuebold';
  line-height: 38px;
  margin-bottom: 10px;
}

p.card-text {
  margin-bottom: 20px;
}

.card-date {
  background: #87189D;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 79px;
  width: 79px;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 20px;
}

.card-date span {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Avenir';
}

.card-date small {
  font-family: 'helveticaneueregular';
  font-size: 16px;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
}

.card-date-default {
  font-family: 'helveticaneuemedium';
  font-size: 14px;
  margin-bottom: 10px;
}

.card-thumb {}

.card-thumb img {
  border-radius: 8px;
  width: 100%;
  height: 315px;
  object-fit: cover;
}

.card-by {
  font-family: 'helveticaneueregular';
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.card-by strong {
  font-family: 'helveticaneuemedium';
}

.card-body {
  padding: 25px 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.card {
  box-shadow: 0 10px 50px 0 rgb(0 0 0 / 6%);
  -webkit-transition: all .50s ease-in-out;
  -moz-transition: all .50s ease-in-out;
  -o-transition: all .50s ease-in-out;
  transition: all .50s ease-in-out;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.card:hover {
  /* box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%); */
}

a.card-link {
  font-size: 16px;
}

a.card-link svg {
  margin-left: 15px;
}

.card-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-action a {
  font-size: 16px;
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  opacity: 0.7;
}

.card-action a:hover {
  opacity: 1;
}

.card-action a svg {
  margin-left: 25px;

}

.card-action a:hover svg {
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 0px;
}

.mb-15 {
  margin-bottom: 15px;
}

.link--arrowed {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
}

.link--arrowed .arrow-icon {
  position: relative;
  top: -1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}

.link--arrowed .arrow-icon--circle {
  -webkit-transition: stroke-dashoffset .3s ease;
  transition: stroke-dashoffset .3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.link--arrowed:hover .arrow-icon {
  -webkit-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}

.link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}


.the-arrow {
  width: 16px;
  transition: all 0.2s;
}

.the-arrow.-left {
  position: absolute;
  top: 60%;
  left: 0;
}

.the-arrow.-left>.shaft {
  width: 0;
  background-color: #999;
}

.the-arrow.-left>.shaft:before,
.the-arrow.-left>.shaft:after {
  width: 0;
  background-color: #999;
}

.the-arrow.-left>.shaft:before {
  transform: rotate(0);
}

.the-arrow.-left>.shaft:after {
  transform: rotate(0);
}

.the-arrow.-right {
  top: 2px;
}

.the-arrow.-right>.shaft {
  width: 16px;
  transition-delay: 0.2s;
}

.the-arrow.-right>.shaft:before,
.the-arrow.-right>.shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  transition: all 0.5s;
}

.the-arrow.-right>.shaft:before {
  transform: rotate(40deg);
}

.the-arrow.-right>.shaft:after {
  transform: rotate(-40deg);
}

.the-arrow>.shaft {
  background-color: #000;
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.2s;
  transition-delay: 0;
  will-change: transform;
}

.the-arrow>.shaft:before,
.the-arrow>.shaft:after {
  background-color: #999;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s;
  transition-delay: 0;
}

.the-arrow>.shaft:before {
  transform-origin: top right;
}

.the-arrow>.shaft:after {
  transform-origin: bottom right;
}

.animated-arrow {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}

.animated-arrow:hover {
  color: #a9a9a9;
}

.animated-arrow:hover>.the-arrow.-left>.shaft {
  width: 16px;
  transition-delay: 0.1s;
  background-color: #a9a9a9;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before,
.animated-arrow:hover>.the-arrow.-left>.shaft:after {
  width: 8px;
  transition-delay: 0.1s;
  background-color: #a9a9a9;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before {
  transform: rotate(40deg);
}

.animated-arrow:hover>.the-arrow.-left>.shaft:after {
  transform: rotate(-40deg);
}

.animated-arrow:hover>.main {
  transform: translateX(40px);
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft {
  width: 0;
  transform: translateX(200%);
  transition-delay: 0;
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:before,
.animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
  width: 0;
  transition-delay: 0;
  transition: all 0.1s;
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:before {
  transform: rotate(0);
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
  transform: rotate(0);
}

.animated-arrow>.main {
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.animated-arrow>.main>.text {
  margin: 0 16px 0 0;
  line-height: 1;
}

.animated-arrow>.main>.the-arrow {
  position: relative;
}

.counter_wrapper {
  background: url('/assets/img/counter.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  position: relative;
  margin: 80px 0px;
}

.counter_wrapper::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.57);
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}

.counter_wrapper .counter_number {
  font-size: 50px;
  color: #fff;
  font-family: 'helveticaneuebold';
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.counter_wrapper .counter_title {
  font-family: 'helveticaneueregular';
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

.counter_wrapper .counter_box {
  height: 170px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #fff;
  justify-content: center;
}

.counter_wrapper .counter_box:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 2000px rgb(255 255 255 / 65%);
  filter: blur(10px);
  filter: blur(10px);
  margin: -20px;
}

.about_wrapper {
  margin: 80px 0px 0px 0px;
  overflow: hidden;
}

.purple_block {
  background: #87189D;
}

.green_block {
  /* background: #00C389; */
  background: #234d5d;
}

.fold_right_img .fold_content {
  padding: 90px 80px 90px 0px;
}

.fold_left_img .fold_content {
  padding: 90px 0px 90px 80px;
}

.fold_img {
  display: flex;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0px;
  position: relative;
  background-position: center !important;
}

.extend-right:after {
  position: absolute;
  width: calc(100vw/2);
  height: 100%;
  background: inherit;
  content: '';
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
}

.extend-left:before {
  position: absolute;
  width: calc(100vw/2);
  height: 100%;
  background: inherit;
  content: '';
  display: inline-block;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.about_fold {
  display: flex;
}

.fold_img {
  flex: 1 0 50%;
}

.fold_content {
  flex: 1 0 50%;
  padding: 90px 80px 90px 80px;
}

.about_fold h2 {
  color: #fff;

  margin-bottom: 35px;
  font-size: 42px;
}

.about_fold p {
  color: #fff;
  margin-bottom: 60px;
}

.about_fold a {}

.btn {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 1px;
  padding: 10px 20px;
  min-width: 165px;
}



input::-webkit-input-placeholder {
  /* Edge */
  color: #e0e0e0 !important;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #e0e0e0 !important;
}

input::placeholder {
  color: #e0e0e0 !important;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #e0e0e0 !important;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #e0e0e0 !important;
}

::placeholder {
  color: #e0e0e0 !important;
}


.contact_wrapper {
  background: #f9f9f9;
  padding: 120px 0px 100px 0px;
}

.contact_details span {
  display: block;
  margin-bottom: 20px;
}

.contact_details span strong {
  display: block;
}

.contactForm {
  background: #c5e2ea; /*#eee2f0;*/ /*RMRMRM*/
  padding: 60px 40px 60px 40px;
  border-radius: 10px;
  height: 100%;
}

.contact_details_section {
  padding: 0px 60px 0px 0px;
}

.contact_details {
  padding-left: 9px;
}

.contact_details_section h4 {
  font-size: 17px;
  margin: 0px;
}

.contact_details_section .divider {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact_details_section p {}

.contactForm .form-control {
  border-radius: 8px;
  height: 54px;
  font-size: 14px;
  padding: 0px 25px;
  line-height: 54px;
  border: none;
  box-shadow: 0px 7px 15px #0000001a;
  border: 1px solid #ffffff;
}

.form-group {
  margin-bottom: 15px;
}

.contactForm .form-control:focus,
.contactForm .form-control:hover,
.contactForm .form-control:active {
  border: 1px solid #f5b9ff;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

@-moz-document url-prefix() {
  select {
    border: 1px solid #CCC;
    border-radius: 4px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  select {
    width: 110%;
    background-position: right 30px center !important;
    border: none !important;
  }
}

select {
  width: 100%;
  border-radius: 8px;
  height: 54px;
  font-size: 14px;
  padding: 0px 20px;
  line-height: 54px;
  border: none;
  box-shadow: 0px 7px 15px #0000001a;
  border: 1px solid #ffffff;
  color: #484141;
}



select:focus,
select:hover,
select:active {
  border: 1px solid #f5b9ff;
  outline: none;
}

.contactForm textarea.form-control {
  height: 217px;
  height: 100px; /*RMRMRM*/
  resize: none;
}

.btn-primary {
  background-color: #87189D;
  height: 60px;
  border-radius: 8px;
  font-size: 16px !important;
  font-weight: bold;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
  background-color: #87189D;
}

select {
  position: relative;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: 98%;
}


.main_colunms {
  margin-top: 40px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}


.wlecomeImg {
  padding-right: 15px;
}

.wlecomeImg img {
  border-radius: 6px;
}

section.contact_wrapper.contact_page {
  margin-top: 0px;
}

.row.newsSection {
  margin-bottom: 40px;
}


.inputGroup {
  display: block;
  margin: 10px 0;
  position: relative;
}

.inputGroup label {
  padding: 0px;
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  height: 100%;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 20px;
  top: 30px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked~label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked~label:after {
  background-color: #87189d;
  border-color: #87189d;
}

.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.book-box2 {
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}

.bookfeatured {}

progress {
  display: block;
  width: 100%;
  padding: 0px;
  border: 0 none;
  background: #efe7ff;
  border-radius: 0px;
  height: 20px;
}

progress::-moz-progress-bar {
  background: #e2dafc;
  height: 20px;

}

progress::-webkit-progress-bar {
  background: transparent;
  height: 20px;
}

progress::-webkit-progress-value {
  background: #e2dafc;
  height: 20px;
}

.progwrap {
  position: relative;
}

.progwrap span {
  position: absolute;
  right: 10px;
  top: 0px;
  color: #87189d;
  font-size: 12px;
  font-weight: bold;
}

.orBlock {
  text-align: center;
  top: 40%;
  position: relative;
  font-size: 20px;
  display: block;
}

.carousel-inner .item {
  margin-bottom: 20px;
}

/* .fold_img.extend-left {
  background-position: 0px -200px!important;
} */

.tollfree {
  font-size: 14px;
}

@media screen and (max-width: 1024px) and (min-width: 0px) {

  section.sponsors_section {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .contact_details_section {
    padding: 0px;
  }

  .card-title {
    font-size: 22px;
    line-height: 26px;
  }

  section.card_wrapper {
    padding: 0px 20px;
  }

  section.search_engine {
    padding: 20px 20px 30px 20px;
  }

  section.sponsors_section {
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  .card-list-header {
    padding: 0px 10px 0px 5px;
  }

  .sponsors_section .slick-slide {
    min-height: auto;
  }

  .maintitle {
    font-size: 22px;
  }

  .mx-title-width {
    max-width: 100%;
  }

  .message-wrap {
    margin-top: 20px;
  }

  .welcomeMessage {
    padding: 20px;
  }

  .wlecomeImg {
    padding-left: 0px;
  }

  .message-wrap {
    padding-right: 0;
  }

  .overthumbs h3 {
    border: none;
  }

  .slick-slide img {
    object-fit: contain;
    min-height: 250px;
    position: relative;
  }

  .slick-slide {
    height: 100%;
    min-height: 250px;
  }

  .overthumbs {
    position: relative;
    width: 100%;
    bottom: 0px;
    color: #000;
    left: 0px;
    padding: 0px 20px;
    background: #d4d4d4;
  }

  .product__slider-thmb .slick-slide {
    padding: 0px 15px 0px 0px;
  }

  .slide_content p {
    font-size: 16px;
    max-width: 360px;
  }

  .slide_content h2 {
    font-size: 22px;
    padding-top: 20px;

  }

  .fold_img.extend-right {
    display: none;
  }

  .fold_right_img .fold_content {
    padding: 30px !important;
  }

  .fold_img.extend-left {
    display: none;
  }

  .fold_left_img .fold_content {
    padding: 30px !important;
  }

  .contact_wrapper {
    padding: 30px 30px 30px 30px;
  }

  .maintitle br {
    display: none;
  }

  .contact_details {
    padding-left: 0px;
    margin-top: 40px;
  }

  footer section {
    padding: 15px 30px 0px 30px;
  }

  .counter_wrapper {
    padding: 30px 20px;
    margin: 30px 0px;
  }
}

@media screen and (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}

.if-votted-noCheck .inputGroup label:after,
.if-votted-noCheck .inputGroup label::before {
  display: none;
}

div.not-votted {
  text-align: center !important;
  margin-bottom: 40px;
}

div.if-votted-noCheck .inputGroup label {
  cursor: default;
}

.home_contact {
  display: none;
}

section.sponsors_section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.sponsors_section .carousell {
  width: 90%;
  max-width: 1170px;
  margin: 0px auto;
}

.sponsors_section .slick-slide {
  margin: 10px;
  height: auto;
}

.sponsors_section .slick-slide img {
  width: 100%;
  position: relative;
  height: auto;
}

.sponsors_section .slick-prev,
.sponsors_section .slick-next {
  background: #000;
  border-radius: 15px;
  border-color: transparent;
}

.sponsors_section ul.slick-dots {
  text-align: center;
}

.sponsors_section .slick-dots li {
  display: inline-block;
  margin: 10px 5px;
}

.sponsors_section .slick-dots li button {
  font-size: 0px;
  background: #eee2f0;
  height: 12px;
  width: 12px;
  border: none;
  border-radius: 100px;
  padding: 0px;
}

.sponsors_section .slick-dots li.slick-active button {
  background: #87199d;

}

.sponsors_section .slick-arrow {
  display: none !important;
}

.sponsors_section .slick-list {
  padding: 0 !important;
}


.content-block h3 {
  font-size: 21px;
  color: #234d5d;
}

nav>ul.pagination {
  display: flex;
  justify-content: flex-end;
}

.page-item.disabled .page-link {
  border: 1px solid #e0e0e0 !important;
}

a.page-link.page-link-prev {}

a.page-link.page-link-next {}

a.page-link {
  background: #772d7b;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
}

a.page-link:hover,
a.page-link:active,
a.page-link:focus {
  color: #fff !important;
  background: #009966 !important;
  box-shadow: 0px 11px 36px -14px #009966 !important;
}

.pagination-container>ul.pagination li a {
  padding: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  background: #772d7b;
  color: #fff;
  display: block;
  margin-right: 1px;
}

.pagination-container>ul.pagination li.active a {
  background: #096;
}

.row.content-block {
  margin-bottom: 30px;
}

li.page-item {
  margin-left: 1px;
}

.form-group-cus .form-check {
  padding: 0px 10px;
}

.no-date-now strong {
  display: none;
}

/* online lecture layout */
.new-look-listing h4.media-heading {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.new-look-listing a.btn.btn-trans {
  box-shadow: none;
  min-width: auto;
  background: #234d5d;
  padding: 8px 25px;
  text-decoration: none;
  color: #fff !important;
  font-size: 12px;
  text-transform: none;
}

.new-look-listing .news-dec,
.new-look-listing .latest-news-thumb .news-dec {
  font-size: 14px !important;
}

.new-look-listing .block-end {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 25px;
}

.new-look-listing .no-padding-all {
  padding-left: 7px;
  padding-right: 7px;
}

.no-box-ol{
  display: none;
}

.ma-col{
  padding-left: 10px;
  padding-right: 10px;
}

.br-bttm {
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

#divBook, #category-slide{
  display: none!important;
}
