@charset "UTF-8";

/**
  # Project: 	Conference & Event Html Template
  # Version: 	1.2.3
  # Author: 	CodeBoxr
  # Author URI: 	https://www.codeboxr.com
  # Support: 	https://www.codeboxr.com/support
  # License URI: 	http://themeforest.net/licenses/standard
*/

/*--------------------------------------------------------------
  >>> TABLE OF CONTENTS:
  ----------------------------------------------------------------
  # Base
  # Sections
    ## Header
    ## Banner
    ## Footer

  --------------------------------------------------------------*/

/* Fool-proof @font-face */

/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */

html {
  font-size: 62.5%;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }
}

@keyframes slide-down {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }
}

.element {
  width: 100px;
  height: 100px;
  background: black;
  -webkit-animation: slide-down 5s 3;
  animation: slide-down 5s 3;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.zoom {
  -webkit-animation-name: zoom;
  animation-name: zoom;
}

@-webkit-keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.zoom2 {
  -webkit-animation-name: zoom2;
  animation-name: zoom2;
}

@-webkit-keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

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

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

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

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

.zoomBounce {
  -webkit-animation-name: zoomBounce;
  animation-name: zoomBounce;
}

@-webkit-keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }

  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}

@keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }

  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}

@-webkit-keyframes gptFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes gptFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gptFade {
  -webkit-animation-name: gptFade;
  animation-name: gptFade;
}

.gptFadeUp {
  -webkit-animation-name: gptFadeUp;
  animation-name: gptFadeUp;
}

.gptFadeDown {
  -webkit-animation-name: gptFadeDown;
  animation-name: gptFadeDown;
}

.gptFadeLeft {
  -webkit-animation-name: gptFadeLeft;
  animation-name: gptFadeLeft;
}

.gptFadeRight {
  -webkit-animation-name: gptFadeRight;
  animation-name: gptFadeRight;
}

.gptZoomIn {
  -webkit-animation-name: gptZoomIn;
  animation-name: gptZoomIn;
}

.gptBounceIn {
  -webkit-animation-name: gptBounceIn;
  animation-name: gptBounceIn;
}

@-webkit-keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}

@keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}

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

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

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

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

@-webkit-keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}

@-webkit-keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}

@keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}

.gpUpX {
  -webkit-animation-name: gpUpX;
  animation-name: gpUpX;
}

.gpUpSmX {
  -webkit-animation: gpUpX 1s both 1s;
  animation: gpUpX 1s both 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.gpDownX {
  -webkit-animation-name: gpDownX;
  animation-name: gpDownX;
}

@-webkit-keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

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

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

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

@-webkit-keyframes leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@keyframes leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

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

@-webkit-keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

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

@keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

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

@-webkit-keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }

  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }

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

@keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }

  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }

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

@-webkit-keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

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

@keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

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

@-webkit-keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }

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

@keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }

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

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: 400;
  color: #666;
}

.no-scroll {
  overflow: hidden;
}

svg {
  display: block;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 1148px;
}

html {
  font-size: 62.5%;
}

/* rules for body contents */

body {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #fff;
  color: #666;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Exo", sans-serif;
}

h1,
.h1 {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 800;
}

h1 a,
.h1 a {
  font-size: inherit;
  font-weight: inherit;
}

h2,
.h2 {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 700;
}

h2 a,
.h2 a {
  font-size: inherit;
  font-weight: inherit;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 400;
}

h3 a,
.h3 a {
  font-size: inherit;
  font-weight: inherit;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 400;
}

h4 a,
.h4 a {
  font-size: inherit;
  font-weight: inherit;
}

h5,
.h5 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
}

h5 a,
.h5 a {
  font-size: inherit;
  font-weight: inherit;
  color: #343d47;
}

h5 a:hover,
h5 a:active,
h5 a:focus,
.h5 a:hover,
.h5 a:active,
.h5 a:focus {
  text-decoration: none;
}

h5.title {
  font-family: "Cabin", sans-serif;
  margin-bottom: 8px;
}

h5.title a {
  color: #343d47;
}

h5.title a:hover,
h5.title a:active,
h5.title a:focus {
  text-decoration: none;
}

h6,
.h6 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}

h6 a,
.h6 a {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}

.double-list li {
  float: left;
  width: 50%;
}

p {
  margin-bottom: 10px;
}

a,
a:hover,
a:focus {
  color: #3498db;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.img-left {
  padding: 0 2rem 1rem 0;
  float: left;
}

.img-right {
  padding: 0 2rem 1rem 0;
  float: right;
}

.typography-page-wrapper img {
  max-width: 500px;
}

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

.section-padding {
  padding: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

@media (min-width: 992px) {
  .btn-show-md {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .btn-hide-md {
    display: none !important;
  }
}

/*--------------------------------------------------------------
  ##  Section Heading
  --------------------------------------------------------------*/

.cbx-heading {
  margin: 0 auto;
  margin-bottom: 5rem;
}

.cbx-heading h2,
.cbx-heading .h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 45px;
  font-size: 4.5rem;
  margin-bottom: 5rem;
  color: #343d47;
  z-index: 9;
  text-transform: uppercase;
}

.cbx-heading h2 .heading-serial,
.cbx-heading .h1 .heading-serial {
  position: relative;
}

.cbx-heading h2 .heading-serial .heading-serial-inner,
.cbx-heading .h1 .heading-serial .heading-serial-inner {
  color: #DC4E41;
  font-size: 100px;
  position: absolute;
  z-index: 1;
  opacity: 0.2;
  left: -29px;
  letter-spacing: -2px;
  font-weight: 700;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cbx-heading h2 .title,
.cbx-heading .h1 .title {
  position: relative;
  z-index: 2;
}

.cbx-heading p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 3.2rem;
  max-width: 65%;
  margin: 0 auto;
  text-transform: none;
  letter-spacing: normal;
}

/*--------------------------------------------------------------
  ##  Button
  --------------------------------------------------------------*/

.cbx-btn {
  font-family: "Exo", sans-serif;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background-color: #DC4E41;
  color: #fff;
  border: 1px solid #DC4E41;
  display: inline-block;
}

.cbx-btn.btn-sm {
  padding: 10px 15px !important;
  font-size: 12px;
  line-height: 1;
}

.cbx-btn.btn-block {
  display: block;
  width: 100%;
}

.cbx-btn.btn-lg {
  padding: 12px 35px;
  font-size: 18px;
}

.cbx-btn:hover {
  background-color: transparent;
  color: #DC4E41;
  border-color: #DC4E41;
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/

.site-header {
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.site-header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .site-header.header-transparent {
    background: rgba(255, 255, 255, 0.1);
    padding: 0 15px;
  }
}

.site-header.header-transparent .codeboxr-main-menu > li > a:before {
  display: none;
}

.site-header .cbx-btn {
  line-height: 1;
  padding: 14px 30px;
}

@media (max-width: 991px) {
  .site-header .cbx-btn {
    margin-top: 20px;
    margin-left: 20px;
  }
}

.site-header .site-logo img {
  max-width: 195px;
}

@media (max-width: 991px) {
  .site-header .site-logo img {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .site-header .site-logo img {
    max-width: 120px;
  }
}

.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
}

.site-header .site-logo a {
  font-family: "Exo", sans-serif;
  font-size: 30px;
  font-weight: 800;
  padding: 18px 0;
  display: block;
  color: #fff;
}

.site-header .site-logo a span {
  color: #8ac329;
}

.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.site-header .site-logo .logo-sticky {
  display: none;
}

.site-header .mobile-logo {
  font-family: "Exo", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  color: #343d47;
  font-weight: 900;
}

.site-header .mobile-logo span {
  color: #8ac329;
}

.site-header .burger-menu {
  display: none;
  cursor: pointer;
  margin: 0;
}

@media (max-width: 991px) {
  .site-header .burger-menu {
    display: block;
  }
}

.site-header .burger-menu span {
  background: #fff;
  height: 2px;
  display: block;
  width: 20px;
  margin: 5px 0;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-position .site-header.header-fixed.showed {
  top: 32px;
}

@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo a {
  color: #343d47;
}

.site-header.header-fixed.showed .site-logo h3 {
  color: #343d47;
}

.site-header.header-fixed.showed .add-menu li a {
  color: #343d47;
}

@media (min-width: 1200px) {
  .site-header .site-logo {
    width: 15%;
  }

  .site-header .menu-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .submenu-align-right .site-header {
    width: auto;
  }
}

.site-header .main-nav {
  position: relative;
}

.site-header .codeboxr-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .codeboxr-main-menu > li {
  padding: 27px 0;
}

.site-header .codeboxr-main-menu > li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: #DC4E41;
}

.site-header .codeboxr-main-menu > li.current-menu-item a {
  color: #DC4E41;
}

.site-header .codeboxr-main-menu > li > a {
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 19px;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}

.site-header .codeboxr-main-menu > li > a:hover {
  color: #DC4E41;
}

.site-header .codeboxr-main-menu > li:nth-last-child(-n+2).has-submenu .sub-menu {
  left: auto;
  right: 0;
}

.site-header .codeboxr-main-menu > li:nth-last-child(-n+2).has-submenu .sub-menu li ul {
  right: 100%;
}

.site-header .codeboxr-main-menu > li:not(.mega-menu) {
  position: relative;
}

.menu-light .site-header .codeboxr-main-menu > li > a {
  color: #fff;
}

.site-header .codeboxr-main-menu li {
  display: inline-block;
}

.site-header .codeboxr-main-menu li:not(:last-child) {
  margin-right: 40px;
}

.site-header .codeboxr-main-menu li.has-submenu > a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: calc(50% - 11px);
  right: -17px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  font-size: 14px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu {
  margin: 0;
  padding-left: 0;
  position: absolute;
  top: 115%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 200px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 2222;
  width: 220px;
  padding: 15px 30px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 7px 0;
  display: block;
  line-height: 1.5;
  color: #6c6d6e;
  font-weight: 400;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a:after {
  top: calc(50% - 7px);
  right: 15px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a:hover {
  color: #DC4E41;
  padding-left: 5px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 5px 10px #14303a15;
  box-shadow: 0px 5px 10px #14303a15;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li.current-menu-item a {
  color: #DC4E41;
}

.site-header .codeboxr-main-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.site-header.header-transparent.header-2 .codeboxr-main-menu > li > a {
  color: #fff;
}

.site-header.submenu-align-right .menu-wrapper {
  width: auto;
}

.site-header.submenu-align-right .codeboxr-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
  left: auto;
  right: 0;
}

.site-header.submenu-align-right .codeboxr-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
  right: 100%;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.site-header.header-fixed.showed .header-topbar {
  display: none;
}

.site-header.header-fixed.showed .site-logo a {
  padding: 7px 0;
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}

.site-header.header-fixed.showed .codeboxr-main-menu > li > a {
  color: #343d47;
}

.site-header.header-fixed.showed .burger-menu span {
  background: #343d47;
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#site-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}

.canvas-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 11px 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  display: none;
}

.close-menu {
  height: 40px;
  width: 40px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 41px;
  color: #051441;
  font-size: 15px;
}

.codeboxr-main-menu {
  list-style: none;
}

.codeboxr-main-menu ul {
  list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

@media (max-width: 991px) {
  .site-header .burger-menu {
    display: block;
  }

  .site-header .canvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .site-header .site-logo .logo-sticky {
    display: none;
  }

  .site-header .mobile-offcanvas-logo img {
    max-width: 150px;
  }

  .site-header.header-fixed.showed .site-logo a {
    padding: 11px 0;
  }

  .site-header.header-fixed.showed .logo-sticky {
    display: block;
  }

  .site-header .site-logo a {
    padding: 13px 0;
  }

  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 320px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding-bottom: 80px;
    left: -100px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: block;
  }

  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}

@media (max-width: 991px) and (max-width: 780px) {
  .header-position .site-header .main-nav-container {
    top: 46px;
  }
}

@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav-container.open-menu {
    opacity: 1;
    left: 0;
    visibility: visible;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav-container li {
    display: block;
    padding: 0 !important;
    margin-right: 0 !important;
  }

  .site-header .main-nav-container li:before {
    display: none;
  }

  .site-header .main-nav-container li a {
    font-size: 16px;
    color: #343d47;
    position: relative;
    z-index: 1;
    padding: 8px 25px;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 600;
    border-left: 2px solid transparent;
  }

  .site-header .main-nav-container li.has-submenu {
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    min-height: 100%;
  }

  .site-header .main-nav-container li.has-submenu i {
    position: absolute;
    top: 6px;
    right: 20px;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    z-index: 222;
  }

  .site-header .main-nav-container li.has-submenu > a {
    position: relative;
  }

  .site-header .main-nav-container li.has-submenu > a:after {
    display: none;
  }

  .site-header .main-nav-container li.has-submenu > a.active:after {
    content: "";
  }

  .site-header .main-nav-container li.has-submenu li a {
    font-size: 16px;
  }

  .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
  }

  .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu li ul.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .site-header .main-nav-container li.has-submenu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .site-header.header-main .codeboxr-burger-menu {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .header-position .site-header.header-fixed.showed .main-nav-container {
    top: 0;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav {
    position: relative;
    z-index: 3333;
    line-height: 1.2;
  }

  .site-header .main-nav .codeboxr-main-menu {
    padding-left: 0;
  }

  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }

  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }

  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }

  .site-header .main-nav .sub-menu li.active a.active .ti-plus {
    color: #DC4E41;
  }

  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #DC4E41;
    background: #f8f9fa;
    border-color: #DC4E41;
  }

  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }

  .site-header .main-nav .site-logo a {
    font-size: 40px;
    font-size: 4rem;
  }

  .site-header .main-nav.hidden {
    display: none;
  }
}

/* Search Bar */

#showSearchBar {
  border-bottom: 1px dashed #ddd;
}

.searchbar-wrapper input {
  width: 100%;
  border: 0px solid;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  height: 60px;
}

.searchbar-wrapper input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/

.banner {
  background: url("../images/Home.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 250px 0 150px;
}

@media (max-width: 991px) {
  .banner {
    padding: 160px 30px 100px;
  }
}

.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(62, 84, 132, 0.9)), color-stop(200%, rgba(153, 16, 31, 0.8)));
  background: -o-linear-gradient(left, rgba(62, 84, 132, 0.9) 0, rgba(153, 16, 31, 0.8) 200%);
  background: linear-gradient(to right, rgba(62, 84, 132, 0.9) 0, rgba(153, 16, 31, 0.8) 200%);
}

.banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner__subtitle {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .banner__subtitle {
    font-size: 30px;
    font-size: 3rem;
  }
}

.banner__title {
  color: #fff;
  font-size: 70px;
  font-size: 7rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .banner__title {
    font-size: 50px;
    font-size: 5rem;
  }
}

.banner__title--sub {
  color: #aece72;
}

.banner__event-date {
  font-weight: 600;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.banner .cbx-countdown-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner .cbx-countdown-inner {
  position: relative;
}

.banner .cbx-countdown-countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.banner .cbx-countdown-countdown-container > div {
  height: 215px !important;
  width: 215px;
  border-radius: 50%;
  height: 0;
  position: relative;
}

@media (max-width: 1200px) {
  .banner .cbx-countdown-countdown-container > div {
    height: 150px !important;
    width: 150px;
  }
}

.banner .cbx-countdown-countdown-container .cbx-countdown-val {
  font-weight: 800;
  color: #fff;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
}

@media (max-width: 1200px) {
  .banner .cbx-countdown-countdown-container .cbx-countdown-val {
    font-size: 40px;
    font-size: 4rem;
    margin: 0;
  }
}

.banner .cbx-countdown-countdown-container .cbx-countdown-type-time {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .banner .cbx-countdown-countdown-container .cbx-countdown-type-time {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.cbx-countdown-clock-canvas {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  height: 215px;
  width: 215px;
}

@media (max-width: 1200px) {
  .cbx-countdown-clock-canvas {
    height: 150px;
    width: 150px;
  }
}

/*--------------------------------------------------------------
  ##  Speakers
  --------------------------------------------------------------*/

#cbx-speakers {
  padding: 110px 0 70px;
  background-color: #f1f1f1;
}

#cbx-speakers .sp-single-are {
  margin: 0 auto;
  max-width: 400px;
}

#cbx-speakers figure {
  margin: 0;
}

#cbx-speakers .cbx-name-info {
  margin: 15px 0 40px 0;
  text-align: center;
}

#cbx-speakers .cbx-name-info h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

#cbx-speakers .cbx-name-info h3 a {
  color: #343d47;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-speakers .cbx-name-info h3 a:hover {
  color: #DC4E41;
}

#cbx-speakers .cbx-name-info h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

#cbx-speakers .sp-social-icon a {
  color: #fff;
  background: rgba(220, 78, 65, 0.8);
  height: 40px;
  width: 40px;
  border-radius: 4px;
  display: inline-block;
  line-height: 44px;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.9s linear;
  -o-transition: all 0.9s linear;
  transition: all 0.9s linear;
}

#cbx-speakers .sp-social-icon .sp-tw:hover {
  background: #55acee;
}

#cbx-speakers .sp-social-icon .sp-fb:hover {
  background: #3b5999;
}

#cbx-speakers .sp-social-icon .sp-google:hover {
  background: #DC4E41;
}

#cbx-speakers .sp-social-icon .sp-insta:hover {
  background: #3f729b;
}

#cbx-speakers .sp-social-icon .sp-in:hover {
  background: #0077B5;
}

.cbx-view {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.cbx-view .cbx-hover-link {
  display: table;
  height: 100%;
  width: 100%;
}

.cbx-view .cbx-hover-link .cbx-vertical {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.cbx-view .cbx-figcaption,
.cbx-view .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.cbx-view img {
  display: block;
  position: relative;
}

.cbx-view .cbx-effect-one {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  margin: 20px 0 0 0;
}

.cbx-view p {
  font-size: 12px;
  position: relative;
  color: #fff;
  padding: 10px 20px 20px;
  text-align: center;
}

.cbx-view a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  background: #8ac329;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
}

.cbx-view a.info:hover {
  background: #DC4E41;
}

.cbx-view-inner img {
  -webkit-transition: all 0.4s ease-in-out 0.5s;
  -o-transition: all 0.4s ease-in-out 0.5s;
  transition: all 0.4s ease-in-out 0.5s;
}

.cbx-view-inner .cbx-figcaption {
  background-color: rgba(138, 195, 41, 0.5);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in 0.4s;
  -o-transition: all 0.3s ease-in 0.4s;
  transition: all 0.3s ease-in 0.4s;
}

.cbx-view-inner .cbx-effect-one {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  background: transparent;
  margin: 20px 40px 0px 40px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  -o-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
}

.cbx-view-inner p {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  -o-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
}

.cbx-view-inner a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  -o-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
}

.cbx-view-inner:hover .cbx-figcaption {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.cbx-view-inner:hover img {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.cbx-view-inner:hover .cbx-effect-one {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.cbx-view-inner:hover p {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.cbx-view-inner:hover a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.cbx-singlespeaker {
  padding: 100px 70px;
}

#cbx-singlespeaker .speaker-img figure {
  position: relative;
}

#cbx-singlespeaker .speaker-img figure figcaption {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-singlespeaker .speaker-img:hover figcaption {
  background-color: #8ac329;
  opacity: 1;
}

#cbx-singlespeaker .sp-title {
  margin-top: 2rem;
}

#cbx-singlespeaker .sp-title h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
}

#cbx-singlespeaker .sp-title h2 {
  color: #DC4E41;
  margin-bottom: 10px;
}

#cbx-singlespeaker .sp-title .speaker-details-heading {
  font-size: 36px;
  font-size: 3.6rem;
  color: #343d47;
}

#cbx-singlespeaker .sp-title h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
}

#cbx-singlespeaker .sp-title ul {
  margin-bottom: 50px;
}

#cbx-singlespeaker .sp-title ul li {
  display: inline-block;
}

#cbx-singlespeaker .sp-title ul li a {
  background: #DC4E41;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin-top: 15px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 16px;
  font-size: 1.6rem;
}

#cbx-singlespeaker .sp-title ul li a:hover {
  background: #8ac329;
}

#cbx-singlespeaker .sp-title p {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  font-size: 1.7rem;
  color: #666;
  line-height: 3rem;
  letter-spacing: normal;
}

#cbx-singlespeaker .sp-details {
  margin-top: 50px;
}

#cbx-singlespeaker .sp-details h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 2rem;
  color: #343d47;
}

#cbx-singlespeaker .sp-details p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 2.8rem;
  letter-spacing: normal;
}

#cbx-singlespeaker .sp-details .sp-quotation {
  font-family: "Open Sans", sans-serif;
  color: #666;
  background: #fff;
  padding: 15px 10px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
}

#cbx-singlespeaker .sp-details .sp-quotation i {
  font-size: 20px;
  font-size: 2rem;
  color: #DC4E41;
}

#cbx-singlespeaker .sp-details h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 2rem;
  color: #343d47;
  text-transform: uppercase;
}

#cbx-singlespeaker .sp-details blockquote {
  font-family: "Open Sans", sans-serif;
  color: #666;
  background: #fff;
  padding: 15px 10px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
}

#cbx-singlespeaker .sp-details blockquote i {
  font-size: 20px;
  font-size: 2rem;
  color: #DC4E41;
}

.cbx-memoris-single {
  background: #f1f1f1;
}

/*--------------------------------------------------------------
  ##  Venue
  --------------------------------------------------------------*/

#cbx-venueinner {
  background: url("../images/Home.png") center center no-repeat fixed;
  background-size: cover;
  color: #ffffff;
}

#cbx-venueinner .modal-header {
  border-bottom: medium none;
  padding: 16px 16px 3px;
}

#cbx-venueinner .modal-header .close {
  margin-top: -16px;
  margin-right: -15px;
}

#cbx-venueinner .modal-header .close img {
  max-width: 90%;
}

#cbx-venueinner .modal-dialog {
  margin: 15% auto 30px;
}

#cbx-venueinner .cbx-inner {
  background: rgba(138, 195, 41, 0.5);
  padding: 15% 0;
}

#cbx-venueinner .modal-body {
  padding: 0 15px 15px;
}

#cbx-venueinner #cbx-modal-body p {
  padding-top: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: lowercase;
  line-height: 26px;
  color: #fff;
}

#cbx-venueinner .cbx-venue-content .video-play {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: rgba(220, 78, 65, 0.7);
  border-radius: 50%;
  display: inline-block;
  height: 110px;
  width: 110px;
  border: 8px solid rgba(255, 255, 255, 0.3);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

#cbx-venueinner .cbx-venue-content .video-play i {
  font-size: 30px;
  line-height: 97px;
  padding-left: 10px;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-venueinner .cbx-venue-content .video-play:hover {
  color: #fff;
  background: rgba(220, 78, 65, 0.9);
  border: 8px solid rgba(255, 255, 255, 0.7);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

#cbx-venueinner .cbx-modal-header a {
  background: none !important;
  border: none !important;
}

/*COMMON STYLE START*/

.venue-bottomcontent {
  background: rgba(220, 78, 65, 0.7);
  font-weight: 700;
  padding: 16px 20px;
  font-size: 20px;
  font-size: 2rem;
}

.venue-bottomcontent .modal {
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.venue-bottomcontent h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #343d47;
  border-right: 2px solid #343d47;
  margin-top: 9px;
  padding-right: 34px;
}

.venue-bottomcontent .address {
  padding-left: 20px;
}

.venue-bottomcontent .address i {
  padding-right: 10px;
  font-size: 30px;
  font-size: 3rem;
}

.venue-bottomcontent .address span {
  color: #343d47;
}

.venue-bottomcontent button {
  margin-top: 23px;
  border: 2px solid #343d47;
  border-radius: 30px;
  color: #fff;
  outline: none;
  padding: 9px 34px;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.venue-bottomcontent button:hover,
.venue-bottomcontent button:focus {
  outline: none;
  background: #fff;
}

.venue-bottomcontent li:first-child {
  font-size: 40px;
  font-size: 4rem;
  color: #343d47;
  border-right: 1px solid #343d47;
}

/*.modal-dialog {
  width: 40% !important;
}*/

/*COMMON STYLE END*/

/*--------------------------------------------------------------
  ##  Schedule
  --------------------------------------------------------------*/

.schedule-area {
  background: #f1f1f1;
  padding: 110px 0;
}

.schedule-area .cbx-tab .nav-pills > li.active > a,
.schedule-area .cbx-tab .nav-pills > li.active > a:focus,
.schedule-area .cbx-tab .nav-pills > li.active > a:hover {
  background-color: #f1f1f1;
  color: #343d47;
  border-radius: 0;
  padding: 1rem 3.5rem;
}

.schedule-area .cbx-tab .nav-pills > li > a {
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.schedule-area .cbx-tab .nav-pills > li > a span {
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}

.schedule-area .cbx-tab .nav-pills > li > a:hover {
  color: #343d47;
  padding: 1rem 3.5rem;
}

.schedule-area .cbx-tab ul {
  background: #343d47;
  border-radius: 8px;
}

.schedule-area .cbx-tab ul li {
  display: inline-block;
  float: none;
}

.schedule-area .cbx-tab .cbx-tab-content:active {
  display: inline-block;
  float: none;
}

.schedule-area .event-tabs {
  background: #343d47;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.schedule-area .event-tabs button {
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0.9rem 3rem;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: transparent;
}

.schedule-area .event-tabs button span {
  display: block;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}

.schedule-area .event-tabs button.active {
  background-color: #f1f1f1;
  color: #343d47;
  border-radius: 0;
  padding: 1rem 3.5rem;
}

.schedule-area .cbx-single-tab {
  margin-top: 1rem;
  background: rgba(52, 61, 71, 0.8);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .schedule-area .cbx-single-tab {
    padding: 0 15px;
    text-align: center;
  }
}

.schedule-area .cbx-single-tab .cbx-info {
  padding-top: 4rem;
  padding-right: 15px;
}

.schedule-area .cbx-single-tab span {
  padding-right: 20px;
  text-transform: uppercase;
}

.schedule-area .cbx-single-tab span a {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ddd;
}

.schedule-area .cbx-single-tab span i {
  color: #8ac329;
}

.schedule-area .cbx-single-tab h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
}

.schedule-area .cbx-single-tab h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding-bottom: 2rem;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

.schedule-area .cbx-single-tab p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: normal;
  padding-bottom: 24px;
  color: #f9f9f9;
}

.schedule-area .cbx-single-tab:hover {
  background-color: #343d47;
}

.schedule-area .more span {
  position: relative;
  background: #DC4E41;
  color: #f1f1f1;
  padding: 10px 25px 10px 25px;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  border-radius: 4px;
  text-transform: capitalize;
}

.schedule-area .more span i {
  margin-left: 5px;
  color: #fff;
}

.schedule-area .more span:hover {
  background: #8ac329;
}

.schedule-area .more span:hover i {
  right: 5px;
}

/*--------------------------------------------------------------
  ##  Sponsor
  --------------------------------------------------------------*/

.cbx-sponsored {
  padding-top: 110px;
}

#cbx-sponsored .cbx-inner {
  background: #fff;
  padding-bottom: 3rem;
}

#cbx-sponsored .sponsored-heading h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  color: #666;
  padding-bottom: 10px;
}

#cbx-sponsored .single-sponsored {
  margin-top: 20px;
  margin-bottom: 90px;
}

#cbx-sponsored .cbx-heading p {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
##  Blog
--------------------------------------------------------------*/

#cbx-travelinfo {
  padding: 100px 0;
  background: #f1f1f1;
}

@media (max-width: 767px) {
  #cbx-travelinfo {
    padding: 75px 15px;
  }
}

#cbx-travelinfo .single-hotleinfo {
  margin-bottom: 40px;
}

#cbx-travelinfo .single-service {
  margin-bottom: 40px;
}

#cbx-travelinfo .single-service figure {
  margin-bottom: 0;
}

#cbx-travelinfo .single-service figure img {
  min-height: 230px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#cbx-travelinfo .single-service h3 {
  margin-bottom: 15px;
}

#cbx-travelinfo .single-service h3 a {
  color: #343d47;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 2rem;
}

#cbx-travelinfo .single-service h3 a i {
  color: #ddd;
  margin-right: 10px;
  font-size: 25px;
  font-size: 2.5rem;
}

#cbx-travelinfo .single-service p {
  color: #343d47;
  margin-top: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.4rem;
}

#cbx-travelinfo .single-service .more-info {
  color: #DC4E41;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.9s linear;
  -o-transition: all 0.9s linear;
  transition: all 0.9s linear;
}

#cbx-travelinfo .single-service .more-info:hover {
  color: #8ac329;
}

/*--------------------------------------------------------------
##  Register
--------------------------------------------------------------*/

#cbx-register {
  background: url("../images/Home.png") center center no-repeat fixed;
  background-size: cover;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

#cbx-register::after {
  content: "";
  background-color: rgba(52, 61, 71, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cbx-register .cbx-inner {
  position: relative;
  z-index: 1;
}

#cbx-register .cbx-heading {
  margin-bottom: 60px;
}

#cbx-register .cbx-heading h2,
#cbx-register .cbx-heading .h1 {
  color: #fff;
}

#cbx-register .cbx-heading h2 .heading-serial .heading-serial-inner,
#cbx-register .cbx-heading .h1 .heading-serial .heading-serial-inner {
  color: #DC4E41;
}

#cbx-register .cbx-heading p {
  color: #f9f9f9;
}

#cbx-register .recommended-area {
  position: relative;
  top: -48px;
}

#cbx-register .recommended-area .recommended {
  background: #343d47;
  color: #ffffff;
  position: relative;
  top: -30px;
  left: 0;
  display: block;
  font-family: open sans;
  font-size: 20px;
  font-weight: 900;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-register .recommended-area:hover .recommended {
  top: -15px;
  background: transparent;
  color: #343d47;
}

#cbx-register .cbx-single-pricing {
  margin-top: 3rem;
  padding: 30px 0;
  background-color: rgba(52, 61, 71, 0.6);
  color: #666;
  float: left;
  width: 33.3333%;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-register .cbx-single-pricing h4 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 0;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-register .cbx-single-pricing .price-list {
  margin: 30px 0;
}

#cbx-register .cbx-single-pricing .price-list li {
  font-family: "Open Sans", sans-serif;
  padding: 10px 0;
  color: #f9f9f9;
  letter-spacing: 0.05rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-register .cbx-single-pricing .price {
  font-size: 50px;
  font-size: 5rem;
  color: #fff;
  font-weight: 900;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  line-height: 1.4;
}

#cbx-register .cbx-single-pricing .price span {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  display: block;
  line-height: 1rem;
}

#cbx-register .cbx-single-pricing .buy-btn {
  margin: 30px 0;
}

#cbx-register .cbx-single-pricing .buy-btn a {
  font-size: 16px;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 8px 20px;
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cbx-register .cbx-single-pricing:hover {
  background: #8ac329;
}

#cbx-register .cbx-single-pricing:hover h4 {
  color: #fff;
  background-color: rgba(52, 61, 71, 0.2);
}

#cbx-register .cbx-single-pricing:hover .price-list li {
  color: #fff;
}

#cbx-register .cbx-single-pricing:hover .buy-btn {
  margin: 30px 0;
}

#cbx-register .cbx-single-pricing:hover .buy-btn a {
  background-color: #343d47;
  border: 1px solid #343d47;
}

#cbx-register .cbx-single-pricing:hover .buy-btn a:hover {
  background-color: #DC4E41;
  border: 1px solid #DC4E41;
}

#cbx-register .cbx-single-center {
  background-color: #DC4E41;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*--------------------------------------------------------------
##  Memories
--------------------------------------------------------------*/

.cbx-memoris {
  padding-top: 70px;
}

.cbx-memoris .cbx-inner {
  padding-bottom: 0;
}

.cbx-memoris .cbx-single-memoris {
  padding: 0;
}

.cbx-memoris .single-memoris {
  background: #DC4E41;
  float: left;
  margin: 0 auto;
  width: 25%;
}

.cbx-memoris .single-memoris figure .cbx-vertical a {
  color: #fff;
  font-size: 50px;
  font-size: 5rem;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cbx-memoris .single-memoris figure .cbx-vertical a:hover {
  color: #DC4E41;
}

.cbx-memoris .fig-content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.cbx-memoris .fig-content span {
  display: block;
  clear: both;
}

.cbx-memoris .fig-content span i {
  color: #DC4E41;
}

.memories-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.memories-items figure {
  margin: 0;
}

.memories-items .cbx-view {
  width: 25%;
  padding: 0;
}

/*--------------------------------------------------------------
##  Testimonial
--------------------------------------------------------------*/

#cbx-testimonials {
  background: #f1f1f1;
  padding: 90px 0;
  /* Carousel */
}

@media (max-width: 767px) {
  #cbx-testimonials {
    padding: 75px 15px;
  }
}

#cbx-testimonials .cbx-single-people {
  font-size: 25px;
  font-size: 2.5rem;
}

#cbx-testimonials .cbx-single-people p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.8rem;
}

#cbx-testimonials i:hover {
  color: #DC4E41;
}

#cbx-testimonials .cbx-single-people p {
  font-size: 17px;
  font-size: 1.7rem;
  font-style: normal;
  line-height: 2.8rem;
}

#cbx-testimonials .cbx-single-people small {
  color: #DC4E41;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
}

#cbx-testimonials #quote-carousel {
  padding: 0 10px 0px 10px;
  margin-top: 30px;
}

#cbx-testimonials #quote-carousel:hover .carousel-control {
  display: block;
}

#cbx-testimonials #quote-carousel .carousel-control {
  background: none;
  color: #cacaca;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
  display: none;
}

#cbx-testimonials #quote-carousel .carousel-control.left {
  left: -60px;
}

#cbx-testimonials #quote-carousel .carousel-control.right {
  right: -60px;
}

#cbx-testimonials #quote-carousel .carousel-indicators {
  right: 50%;
  top: -67px;
  bottom: 0px;
  margin-right: -19px;
}

#cbx-testimonials #quote-carousel .carousel-indicators li {
  width: 50px;
  height: 50px;
  margin: 2px;
  cursor: pointer;
  border: 4px solid #ccc;
  border-radius: 50px;
  opacity: 0.4;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

#cbx-testimonials #quote-carousel .carousel-indicators li img {
  border-radius: 50px;
}

#cbx-testimonials #quote-carousel .carousel-indicators .active {
  background: #333333;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  border-color: #DC4E41;
  opacity: 1;
  overflow: hidden;
}

#cbx-testimonials .item blockquote {
  border-left: none;
  margin: 0;
}

#cbx-testimonials .review-content:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #DC4E41;
  font-size: 30px;
  left: 19px;
  margin-right: 0;
  opacity: 0.4;
  position: relative;
  top: 7px;
}

#cbx-testimonials #quote-carousel .carousel-indicators .active {
  height: 50px;
  width: 50px;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slider .testimonia-slider-item {
  text-align: center;
}

.testimonial-slider .author-name {
  position: relative;
  color: #dc4e41;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-style: normal;
  padding-left: 25px;
  display: inline-block;
  margin: 0;
}

.testimonial-slider .author-name:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #dc4e41;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.testimonial-slider-nav {
  max-width: 200px;
  margin: 0 auto 30px;
}

.testimonial-slider-nav > div {
  padding: 0 !important;
}

.testimonial-slider-nav .slider-nav-item {
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  border: 4px solid #fff;
  padding: 0;
  overflow: hidden;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

.testimonial-slider-nav .slider-nav-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

.testimonial-slider-nav .slider-nav-item.slick-current {
  border-color: #DC4E41;
  opacity: 1;
}

/*--------------------------------------------------------------
##  Contact
--------------------------------------------------------------*/

#cbx-contact {
  padding: 100px 0;
}

#cbx-contact .cbx-contact-form input {
  height: 45px;
  border-radius: 0;
  background: #f1f1f1;
  border: 1px solid #dddddd;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
  border-radius: 4px;
  font-size: 14px;
}

#cbx-contact .cbx-contact-form input.error {
  border-color: #e74c3c;
}

#cbx-contact .cbx-contact-form input:hover,
#cbx-contact .cbx-contact-form input:focus {
  background: #fff;
  border-color: #8ac329;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#cbx-contact .cbx-contact-form label {
  display: none;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
}

#cbx-contact .cbx-contact-form textarea {
  height: 200px;
  border-radius: 0;
  background: #f1f1f1;
  border: 1px solid #dddddd;
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
  border-radius: 4px;
  font-size: 14px;
}

#cbx-contact .cbx-contact-form textarea.error {
  margin-top: 0;
  border-color: #e74c3c;
}

#cbx-contact .cbx-contact-form textarea:hover,
#cbx-contact .cbx-contact-form textarea:focus {
  background: #fff;
  border-color: #8ac329;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#cbx-contact .cbx-send-button {
  margin-top: 20px;
}

#cbx-contact .cbx-send-button button {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  background: #DC4E41;
  color: #fff;
  padding: 10px 30px;
  border: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  border-radius: 4px;
}

#cbx-contact .cbx-send-button button:hover {
  background: #8ac329;
}

#cbx-contact #cbx-formalert {
  margin-top: 10px;
}

.location-bottomcontent {
  font-weight: 700;
  padding: 16px 20px;
  font-size: 20px;
  font-size: 2rem;
}

.location-bottomcontent .modal {
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.location-bottomcontent h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #343d47;
  border-right: 2px solid #343d47;
  margin-top: 9px;
  padding-right: 34px;
}

.location-bottomcontent .address {
  padding-left: 20px;
}

.location-bottomcontent .address i {
  color: #f1f1f1;
  padding-right: 10px;
  font-size: 30px;
  font-size: 3rem;
}

.location-bottomcontent .address span {
  color: #343d47;
}

.location-bottomcontent button {
  margin-top: 23px;
  background: #b02c20;
  border: 2px solid #343d47;
  border-radius: 30px;
  color: #fff;
  outline: none;
  padding: 9px 34px;
  -webkit-transition: all 0.3 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.location-bottomcontent button:hover,
.location-bottomcontent button:focus {
  outline: none;
  background: #fff;
  color: #DC4E41;
  border: 2px solid #8ac329;
}

.location-bottomcontent li:first-child {
  font-size: 40px;
  font-size: 4rem;
  color: #343d47;
  border-right: 1px solid #343d47;
}

/*--------------------------------------------------------------
##  Page Banner
--------------------------------------------------------------*/

.page-banner {
  padding: 130px 0 80px;
  background: url("../images/Home.png") no-repeat center center;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(62, 84, 132, 0.9)), color-stop(200%, rgba(153, 16, 31, 0.8)));
  background: -o-linear-gradient(left, rgba(62, 84, 132, 0.9) 0, rgba(153, 16, 31, 0.8) 200%);
  background: linear-gradient(to right, rgba(62, 84, 132, 0.9) 0, rgba(153, 16, 31, 0.8) 200%);
}

.page-banner .page-banner-title {
  font-size: 40pxpx;
  font-size: 4pxrem;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.cbx-footer {
  background-color: #343d47;
}

.cbx-site-footer {
  background: #343d47;
  padding-top: 100px;
}

@media (max-width: 576px) {
  .cbx-site-footer {
    padding: 70px 15px 0;
  }
}

.cbx-site-footer .cbx-top-inner {
  position: relative;
}

.cbx-site-footer .cbx-top-inner .cbx-top {
  font-weight: 700;
  padding: 3px 16px;
  position: absolute;
  right: 10px;
  bottom: 0;
  background: #DC4E41;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cbx-site-footer .cbx-top-inner .cbx-top a i {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

.cbx-site-footer .cbx-top-inner .cbx-top a p {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 2rem;
}

.cbx-site-footer .cbx-top-inner .cbx-top:hover {
  background: #8ac329;
}

.cbx-site-footer .footer-content {
  padding-top: 15px;
}

.cbx-site-footer .footer-content .cbx-copy-symbol {
  font-size: 18px;
  font-size: 1.8rem;
}

.cbx-site-footer .footer-content p {
  color: #666;
  text-align: center;
  text-transform: uppercase;
}

.cbx-site-footer .footer-content p a {
  color: #DC4E41;
}

.cbx-site-footer .footer-content p a:hover {
  color: #8ac329;
}

.cbx-site-footer .footer-social {
  margin: 3rem 0;
}

.cbx-site-footer .footer-social ul li {
  display: inline-block;
  margin: 0 3px;
}

.cbx-site-footer .footer-social ul li a {
  border: 1px solid #444;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
  border-style: double;
  border-width: thick;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #f1f3f5;
}

.cbx-site-footer .footer-social ul li a i {
  font-size: 16px;
  line-height: 38px;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cbx-site-footer .footer-social ul li a:hover {
  border-color: #8ac329;
  background-color: #fff;
  color: #343d47;
}

.cbx-site-footer .footer-social ul li .sp-tw:hover {
  color: #55acee;
  border-color: #55acee;
}

.cbx-site-footer .footer-social ul li .sp-fb:hover {
  color: #3b5999;
  border-color: #3b5999;
}

.cbx-site-footer .footer-social ul li .sp-google:hover {
  color: #dc4e41;
  border-color: #dc4e41;
}

.cbx-site-footer .footer-social ul li .sp-insta:hover {
  color: #3f729b;
  border-color: #3f729b;
}

.cbx-site-footer .footer-social ul li .sp-in:hover {
  color: #0077b5;
  border-color: #0077b5;
}

h2.footer-title {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.subscribe-form {
  max-width: 550px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subscribe-form .form-control {
  border: 1px solid #828283;
  background: #666;
  height: 45px;
  border-radius: 4px;
  color: #fff !important;
  max-width: 70%;
  margin: 0 auto;
  font-size: 14px;
  padding: 0 15px;
}

.subscribe-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form-control:focus {
  border-color: #8ac329;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.subscribe-form .form-control.error {
  border-color: #e74c3c;
}

.subscribe-form button {
  background: #DC4E41;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  padding: 8px 32px;
  border-radius: 4px;
  -webkit-transition: all 0.2 ease;
  -webkit-transition: all 0.9s linear;
  -o-transition: all 0.9s linear;
  transition: all 0.9s linear;
}

.cbx-switcher-area {
  position: fixed;
  top: 35%;
  right: 0;
  max-width: 300px;
  z-index: 891;
}

.cbx-switcher-inner {
  position: relative;
}

.cbx-switcher-btn {
  padding: 5px 8px;
  font-weight: bold;
  background: #DC4E41;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 892;
  border-radius: 4px;
}

.cbx-switcher-btn:hover,
.cbx-switcher-btn:active,
.cbx-switcher-btn:focus {
  color: #ffffff;
}

.cbx-switcher-body {
  background: rgba(230, 230, 230, 0.93);
  padding: 10px;
  width: 260px;
  position: absolute;
  top: 0;
  right: -280px;
  border-radius: 4px;
}

.cbx-switcher-list li {
  height: 30px;
  width: 30px;
  float: left;
  display: inline-block;
  margin: 10px;
}

.cbx-switcher-list li a {
  width: 100%;
  height: 100%;
  display: block;
}

.cbx-list-default {
  background: #02ab8d;
}

.cbx-list-red {
  background: #e74c3c;
}

.cbx-list-green {
  background: #2ec887;
}

.cbx-list-blue {
  background: #3498db;
}

.cbx-list-olive {
  background: #559137;
}

.cbx-list-violet {
  background: #9933cc;
}

.cbx-list-pink {
  background: #ff69b4;
}

.cbx-list-navy {
  background: #3b5998;
}

.cbx-list-orange {
  background: #f5740a;
}

.cbx-list-yellow {
  background: #e67e22;
}

.cbx-switcher-text {
  margin-left: 50px;
}

.error {
  color: #ff0000;
  margin-top: 10px;
}

/*--------------------------------------------------------------
  ##  Responsive
  --------------------------------------------------------------*/

/* Wide Screens */

@media only screen and (min-width: 1900px) {
  .cbx-regiter-common a,
  .cbx-regiter-common button {
    border: 2px solid #ffffff;
    padding: 13px 48px;
    text-transform: uppercase;
  }
}

@media (min-width: 1280px) and (max-width: 1400px) {
  #cbx-header .cbx-header-content {
    margin-top: 7rem;
  }

  #cbx-header .cbx-header-content h4 {
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 6rem;
    margin-bottom: 0;
  }

  #cbx-header .cbx-header-content h1 {
    font-size: 60px;
    font-size: 6rem;
    letter-spacing: 3px;
  }

  #cbx-header .cbx-header-content h5 {
    font-size: 27px;
    font-size: 2.7rem;
    margin-top: 0;
  }

  .lz-countdown-main {
    margin: 5rem 0;
  }
}

/* Wide Screens */

/* Large Devices */

@media only screen and (max-width: 1200px) {
  #cbx-header .cbx-nav-right li a {
    font-size: 13px;
    font-size: 1.3rem;
  }

  #cbx-speakers .sp-social-icon a {
    height: 32px;
    line-height: 30px;
    width: 32px;
  }

  #cbx-memoris .single-memoris figure .cbx-vertical a {
    font-size: 2.8rem;
  }
}

/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
  html {
    font-size: 50%;
  }

  /* Sets up the Base 10 stuff */

  #cbx-header .cbx-nav-right li a {
    font-size: 15px;
    font-size: 1.5rem;
  }

  #cbx-speakers .sp-social-icon a {
    height: 40px;
    line-height: 36px;
    width: 40px;
  }

  #cbx-memoris .single-memoris figure .cbx-vertical a {
    font-size: 5rem;
  }

  .location-bottomcontent h2,
  .venue-bottomcontent h2 {
    border-right: none;
  }

  /*TESTIMONIALS*/

  #cbx-header .cbx-nav-right li a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 3px;
    margin: 0 2px;
  }

  #cbx-register .cbx-single-pricing {
    width: 32%;
  }

  #cbx-memoris .single-memoris {
    width: 33.3333%;
  }

  #cbx-header .cbx-nav-right li a {
    line-height: 3.1rem;
  }

  #cbx-header .cbx-navbar .event-ticket {
    margin-top: 2px;
  }

  /*HEADER SECTION*/

  #cbx-header .cbx-header-content h1 {
    font-size: 60px;
    font-size: 6rem;
    letter-spacing: 3px;
    line-height: 7rem;
  }

  #cbx-header .cbx-header-content h4 {
    font-size: 45px;
    font-size: 4.5rem;
  }

  #cbx-header .cbx-header-content h5 {
    font-size: 30px;
    font-size: 3rem;
  }

  #cbx-header .cbx-header-content {
    margin-top: 10rem;
  }

  #cbx-header .cbx-header-inner {
    padding-bottom: 7rem;
  }

  /*HEADER SECTION*/

  /*Speaker SECTION*/

  #cbx-speakers .cbx-name-info {
    margin: 10px 0 35px;
  }

  #cbx-speakers .cbx-name-info h4 {
    font-size: 14px;
  }

  #cbx-speakers .cbx-name-info h3 {
    font-size: 18px;
  }

  /*Speaker SECTION*/

  /*SCHEDULE SECTION*/

  .cbx-schedule .cbx-single-tab p {
    font-size: 14px;
  }

  /*SCHEDULE SECTION*/

  /*TRAVEL INFO*/

  #cbx-travelinfo .single-service p {
    font-size: 14px;
    line-height: 2.8rem;
    margin-top: 10px;
  }

  #cbx-travelinfo .single-service .more-info {
    font-size: 14px;
  }

  /*TRAVEL INFO*/

  /*TESTIMONIALS SECTION*/

  #cbx-testimonials .cbx-single-people p {
    font-size: 15px;
  }

  /*TESTIMONIALS SECTION*/

  #cbx-singlespeaker .sp-details p {
    font-size: 14px;
    line-height: 3rem;
  }

  p {
    font-size: 14px;
    line-height: 3rem;
  }

  blockquote {
    font-size: 14px;
    line-height: 3rem;
  }

  #cbx-singlespeaker .sp-title p {
    font-size: 15px;
    line-height: 3.2rem;
  }

  /*SECTION HEADING*/

  .cbx-heading p {
    font-size: 16px;
    max-width: 70%;
  }

  /*SECTION HEADING*/
}

/* Small Devices, Tablets */

/* Medium Devices, Desktops */

@media only screen and (max-width: 980px) {
  #cbx-header .cbx-nav-right li a {
    padding: 10px 3px;
    margin: 0 2px;
  }
}

@media only screen and (max-width: 800px) {
  #cbx-header .cbx-nav-right li a {
    padding: 10px 3px;
    margin: 0 2px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 48%;
  }

  /* Sets up the Base 10 stuff */

  .xs-text-center {
    text-align: center;
  }

  .location-bottomcontent h2,
  .venue-bottomcontent h2 {
    border-right: none;
  }

  .location-bottomcontent,
  .venue-bottomcontent {
    text-align: center;
  }

  #cbx-register .cbx-single-pricing {
    margin: 0 auto 25px;
    max-width: 60%;
    margin-bottom: 25px;
  }

  #cbx-memorisinner .single-memoris img {
    margin: 0 auto;
  }

  .cbx-selectpicker {
    margin-bottom: 20px;
  }

  /*TESTIMONIALS*/

  #cbx-header .cbx-nav-right li a {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 5px;
    display: block;
    margin: 5px;
  }

  #cbx-header .cbx-nav-right li a:hover,
  #cbx-header .cbx-nav-right li a:active {
    color: #DC4E41;
  }

  #cbx-register .cbx-single-pricing {
    max-width: 400px;
    width: 100%;
    float: none;
  }

  #cbx-memoris .single-memoris {
    width: 50%;
  }

  .lz-circular-text .lz-circular-val {
    font-size: 30px;
    font-weight: 900;
  }

  /*TYPHO PAGE*/

  #cbx-header .cbx-header-inner {
    padding-bottom: 20px;
  }

  .cbx-heading {
    margin: 0 auto 40px;
  }

  .cbx-heading p {
    max-width: 100%;
  }

  /*TYPHO PAGE*/

  #cbx-testimonials #quote-carousel .carousel-indicators {
    bottom: 0;
    margin-right: -19px;
    right: 50%;
    top: -36px;
  }

  /*HEADER*/

  #cbx-header .cbx-header-content {
    margin-top: 3rem;
  }

  #cbx-header .cbx-header-content h1 {
    font-size: 4rem;
    line-height: 5.25rem;
  }

  #cbx-header .cbx-header-content h4 {
    font-size: 2.5rem;
    line-height: 7rem;
    margin-bottom: 0rem;
  }

  #cbx-header .cbx-header-content h5 {
    font-size: 2rem;
    line-height: 3rem;
    margin-top: 1.5rem;
  }

  .lz-countdown-main {
    margin: 7rem 0 4rem 0;
  }

  .navbar-toggle {
    margin-top: 0px;
  }

  .navbar-default .navbar-toggle {
    border-color: #DC4E41;
  }

  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background-color: #DC4E41;
  }

  .lz-countdown-main {
    margin: 3rem 0 4rem;
  }

  /*HEADER*/

  #cbx-footer .cbx-top-inner .cbx-top {
    display: none;
  }

  .cbx-schedule .cbx-single-tab .cbx-info {
    padding-right: 15px;
    padding-left: 15px;
  }

  /*HEADING*/

  .cbx-heading .h1 .heading-serial,
  .cbx-heading h2 .heading-serial {
    display: none;
  }

  .cbx-heading .h1,
  .cbx-heading h2 {
    margin-bottom: 10px;
  }

  .cbx-heading .h1,
  .cbx-heading h2 {
    font-size: 32px;
  }

  /*HEADING*/

  /*TRAVEL INFO*/

  #cbx-travelinfo .single-hotleinfo,
  #cbx-travelinfo #cbx-travelinfo .single-service {
    margin-bottom: 20px;
  }

  /*TRAVEL INFO*/

  /*SPONSORED SECTION*/

  #cbx-sponsored .cbx-heading {
    margin: 0 auto 1rem;
  }

  #cbx-sponsored .single-sponsored {
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
  }

  #cbx-sponsored .sponsored-heading {
    margin-top: 3rem;
  }

  #cbx-sponsored .cbx-inner {
    padding-bottom: 60px;
  }

  /*SPONSORED SECTION*/

  #cbx-travelinfo .single-hotleinfo,
  #cbx-travelinfo .single-service {
    margin-bottom: 3rem;
  }

  /*SPEAKER SECTION*/

  #cbx-speakers .cbx-inner {
    padding-bottom: 40px;
  }

  /*SPEAKER SECTION*/

  #cbx-register .cbx-single-pricing .price-list li {
    font-size: 15px;
  }

  #cbx-register .cbx-heading {
    margin-bottom: 5rem;
  }

  #cbx-register .recommended-area {
    top: 0;
  }

  #cbx-header .cbx-navbar .event-ticket {
    float: none !important;
    text-align: center;
  }

  #cbx-singlespeaker .sp-title ul {
    margin-bottom: 30px;
  }

  #cbx-singlespeaker .sp-details {
    margin-top: 30px;
  }

  #cbx-footer .footer-social {
    margin-top: 0;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
  .cbx-heading .h1,
  .cbx-heading h2 {
    font-size: 28px;
  }

  .cbres-center {
    text-align: center;
  }

  /*HEADER*/

  #cbx-header .cbx-header-content h4 {
    margin-top: 27px;
  }

  #cbx-header .cbx-header-content p {
    margin-top: 42px;
  }

  .lz-countdown-main {
    margin: 6rem 0 4rem;
  }

  /*HEADER*/

  #cbx-speakers .cbx-name-info h4 {
    font-size: 13px;
  }

  #cbx-memoris .single-memoris figure .cbx-vertical a {
    font-size: 2.8rem;
  }

  #cbx-footer .footer-social ul li {
    padding-left: 1px;
    padding-right: 1px;
  }

  #cbx-footer .footer-social ul li a {
    height: 40px;
    width: 40px;
  }

  #cbx-footer .footer-social ul li a i {
    line-height: 31px;
  }
}

/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
  #cbx-speakers .sp-social-icon a {
    height: 32px;
    line-height: 30px;
    width: 32px;
  }
}