@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --orenge: #f47921;
  --yellow: #ffcc4e;
  --brown: #a95800;
  --lightbrown: #eabc9d;
  --orengelight: #fcdec7;
  --white: #fff;
  --green: #00ba86;
  --blue: #6b74bf;
}

body {
  font-family: "EQHeadline-Regular", sans-serif;
}

้h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "EQHeadline-Regular", sans-serif;
}

.navbar {
  background: var(--orenge);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "EQHeadline-bold", sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #fff;
  padding: 6px 14px;
  z-index: 10;
  transition: all 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
  width: 250px;
}

.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar .logo-details #btn .logo_name {
  color: #4d4c4e;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1em;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.sidebar .logo-details #btn .logo_name span {
  color: var(--orenge);
  font-size: 20px;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details #btn .logo_name {
  opacity: 1;
}

.sidebar .logo-details #btn {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.sidebar .logo-details #btn i {
  font-size: 1em;
  position: absolute;
  right: 0;
}

.colorfbar {
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.colorfbar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

/**/
@media (max-width: 800px) {
  #hero {
    width: 100vw;
  }
}

.yplayer {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.player__poster-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

/**/
.logo {
  width: 40px;
}

.insidesc {
  display: none;
  width: 80px;
}

.insidesc.active,
.sidebar.open .insidesc {
  display: flex !important;
}

.sidebar img.menuicon {
  color: #fff;
  text-align: center;
  width: 40px;
  height: auto;
  margin: 0 auto;
}

.sidebar .nav-list {
  margin-top: 10px;
  padding: 0;
  height: 100%;
  border-top: 1px solid #cacaca;
}

.sidebar li {
  color: var(--orenge);
  position: relative;
  margin: 8px 0;
  list-style: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.sidebar li a,
.dropdown-btn {
  color: var(--orenge);
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  outline: none;
  border: none !important;
}

.sidebar li a:hover,
.dropdown-btn:hover {
  color: var(--orenge);
  background: #fff;
}

.sidebar li .links_name {
  color: var(--orenge);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  /* transition: 0.4s; */
}

.sidebar li .links_name i {
  position: absolute;
  right: 0
}

.sidebar.open .links_name {
  opacity: 1;
  pointer-events: auto;
  width: 100%
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i,
.sidebar li .dropdown-btn:hover .links_name,
.sidebar li .dropdown-btn:hover i {
  color: var(--orenge);
}

.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar li img {
  width: 40px;
  margin-right: 10px;
}

.contentsection {
  position: relative;
  background: #dadada;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 0;
}

.sidebar.open~.contentsection {
  left: 250px;
  width: calc(100% - 250px);
}

@media (max-width: 768px) {
  .sidebar.open~.contentsection {
    left: 0;
    width: 0;
  }

  .contentsection {
    width: 100%;
    left: 0;
    right: 0;
  }

  .floatmenu {
    left: 15px;
    right: 15px;
  }
}

.sidebar li .tooltip {
  font-family: "EQHeadline-bold", sans-serif;
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--orengelight);
}

.sidebar.open li .tooltip {
  display: none;
}

@media (max-width: 420px) {
  .sidebar li .tooltip {
    display: none;
  }
}

.back-to-top,
.back-to-top:focus,
.back-to-top:hover {
  top: auto !important;
  right: 20px !important;
  left: auto !important;
  bottom: 0 !important;
}

.sidebar a,
.dropdown-btn {
  text-decoration: none;
  border: none;
  display: flex;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none !important;
  color: #f1f1f1;
  gap: 10px;
}

/* On mouse-over */
.sidebar a:hover,
.dropdown-btn:hover {
  color: #f1f1f1;
}

.sidebar .dropdownbox {
  display: none;
  padding: 0 8px;
  border-left: 1px solid var(--orengelight);
}

.sidebar.open .dropdownbox.active {
  display: flex !important;
  flex-direction: column !important;
}

.sidebar .dropdownbox a {
  padding: 10px;
  margin: 0;
  white-space: nowrap;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  font-size: 15px;
}

.sidebar .dropdownbox a.active {
  display: flex;
  flex-direction: column;
}

.btnwatchvid {
  font-size: 1.5em;
}

.sidebar .dropdownbox a:hover {
  background: var(--orengelight);
}

/**/
#herobaner1,
#herobaner2 {
  padding: 0;
}

#herobaner1 {
  line-height: 0;
}

#herobaner1 .swiper-slide,
#herobaner2 .swiper-slide {
  width: 100%;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

#herobaner1 .swiper-slide img,
#herobaner2 .swiper-slide img {
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
}

.overbanner {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 5%;
  z-index: 20;
  width: 60%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.overbanner h2 {
  font-size: 3em;
  color: var(--orenge);
  font-weight: 800;
  font-family: "EQHeadline-bold", sans-serif;
  line-height: 1.5em;
}

.overbanner h3 {
  font-size: 1.5em;
  line-height: 1.5em;
  color: var(--orenge);
  font-family: "EQHeadline-Regular", sans-serif;
  display: block;
  margin: 20px 0;
}

.overbanner p {
  font-size: 1.5em;
  line-height: 1.5em;
  width: 80%;
  color: var(--orenge);
  font-family: "EQHeadline-Regular", sans-serif;
  display: block;
  padding: 0;
}

.overbanner a .overbanner a:hover,
.overbanner a:focus {
  border: none;
  outline: none;
  background: transparent;
  width: 150px;
  margin: 20px 0;
  /*play*/
  /* display: flex;
  font-size: 1.5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--white);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  right: 2%;
  bottom: 0;
  opacity: 1; */
}

.overbanner a img {
  width: 150px !important
}

.overbanner a i {
  font-size: 1em;
}

.over-right {
  /*SS1*/
  position: absolute;
  top: 50%;
  left: 60%;
  z-index: 20;
  width: 40%;
  box-sizing: border-box;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.over-right li {
  font-size: 2em;
}

.whobosslogo1 {
  width: 350px !important;
}

@media (max-width: 1200px) {
  .whobosslogo {
    width: 250px !important;
  }

  .whobosslogo1 {
    width: 200px !important;
  }

  .textslide li {
    font-size: 14px !important;
  }

  .btnwatchvid {
    font-size: 15px !important;
  }

  .overbanner p {
    font-size: 1.2em;
    line-height: 1.2em;
  }
}

@media (max-width: 768px) {
  .over-right {
    width: 90%;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
  }

}

.logoconner {
  position: absolute;
  background: url("../img/logoinside_b.webp") no-repeat 0 0;
  background-size: contain;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 80px;
}

@media (max-width: 992px) {
  .overbanner p br{
    display: none !important;
  }
  .logoconner {
    width: 150px;
    top: 30px;
    left: 30px;
  }
}

/**/
.textslide {
  margin: 20px 0 0 0;
}

.textslide li {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1.6em;
}

/**/
.insidescbox {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: var(--orenge);
  /* background:url("../img/ribbon.svg") no-repeat 0 100% var(--orenge);
  background-size:100% auto; */
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.watchtheshows {
  background-color: #efe8e4;
}

.watchtheshows h2 {
  font-size: 2.5em;
  font-family: "EQHeadline-bold", sans-serif;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--orenge);
  -moz-text-decoration-color: var(--orenge);
  text-underline-offset: 12px;
}

.showbox {
  width: 100%;
  /* border-top: 1px solid var(--brown); */
  border-bottom: 1px solid var(--brown);
}

.btninvisible,
.btninvisible:hover,
.btninvisible:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  cursor: pointer;
}

.btninvisible img {
  width: 100% !important;
  height: 100% !important;
}

#teamslider {
  width: 100%;
  padding: 50px 20px 80px 20px;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.boxtext {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.boxtext h1 {
  font-family: "EQHeadline-bold", sans-serif;
  font-size: 6em;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1em;
  white-space: nowrap;
}

.boxtext h2 {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 3em;
  color: var(--yellow);
}

.boxtext p {
  font-family: "EQHeadline-Regular", sans-serif;
  color: var(--white);
  font-size: 1.2em;
  letter-spacing: 0.5px;
  width: 80%;
  text-indent: 20px;
}

.ribbon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.imgfixright {
  /*Perple group smile*/
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  object-fit: cover;
}

.cheesebox {
  /*Yellow shape*/
  position: absolute;
  width: 80px;
  height: auto;
  right: 32%;
  bottom: 15%;
}

.gclose {
  border: none;
  background-color: transparent;
  position: fixed;
  bottom: 5%;
  left: 50%;
  right: auto;
  top: auto;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: var(--orenge);
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.gclose svg {
  filter: invert(100%);
  -webkit-filter: invert(100%);
  width: 15px !important;
  height: 15px !important;
}

.swiper-pagination-bullet {
  background-color: blue;
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--orenge) !important;
  opacity: 1;
}

.swiper-pagination {
  bottom: 20px;
  color: var(--brown);
  z-index: 1;
}

.duopannel {
  display: flex;
}

.groupbtn {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/**/
.btn-perple,
.btn-green {
  font-family: "EQHeadline-Regular", sans-serif;
  border: none !important;
  font-size: 1.3em;
  padding: 10px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  opacity: 0.9;
  white-space: nowrap;
  text-align: center;
}

.btn-perple:hover,
.btn-green:hover {
  color: #fff !important;
  opacity: 1;
}

.btn-perple {
  background-color: #6b74bf;
}

.btn-green {
  background-color: #00cc99;
}

/**/
#ourteam {
  background-color: var(--orengelight);
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: row;
}

.teamcv {
  width: 70%;
  min-height: 100%;
  border-right: 1px solid var(--lightbrown);
  padding: 30px;
}

.headvc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid var(--lightbrown);
  padding: 10px;
}

.headvc h2 {
  color: var(--brown);
  font-size: 2em;
  font-family: "EQHeadline-bold", sans-serif;
}

.headvc i {
  font-size: 1.5em;
  vertical-align: text-top;
  transition: all ease-in-out 0.35s;
  -webkit-transition: all ease-in-out 0.35s;
  -moz-transition: all ease-in-out 0.35s;
  -ms-transition: all ease-in-out 0.35s;
  -o-transition: all ease-in-out 0.35s;
}

.headvc .viewall:hover i {
  margin-left: 10px;
}

.meettheteam {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  min-height: 50vh;
  padding: 80px 300px;
  background-color: #fcdec7;
  position: relative;
}

@media (max-width: 1500px) {
  .meettheteam {
    padding: 80px 100px;
  }
}

/**/
.dflex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start !important;
  width: 100%;
  height: 100%;
}

.bossbox {
  width: calc(100% / 3);
}

@media (max-width: 992px) {
  .bossbox {
    width: 100%;
  }

  .vidbox {
    width: 100%;
  }
}

/**/
.rollcorner {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: 3;
}

.meettheteam h2 {
  font-size: 4.5em;
  line-height: 0.9em;
  font-family: "EQHeadline-bold", sans-serif;
  color: #de7c3a;
  text-align: center;
}

.meettheteam h4 {
  font-size: 1.5em;
  line-height: 1.5em;
  font-family: "EQHeadline-bold", sans-serif;
  color: #b57d57;
  text-align: center;
}

.meettheteam h3 {
  font-family: "EQHeadline-bold", sans-serif;
  font-size: 2em;
  line-height: 1.5em;
  color: #db6b00;
  text-align: center;
}

/**/

#cvteam {
  margin-top: 30px;
  padding: 20px 0;
}

.btnOpenCV,
.btnOpenCV:hover,
.btnOpenCV:focus {
  border: none !important;
  background-color: transparent !important;
  outline: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.explan {
  background-color: #eaeaea;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  cursor: pointer;
}

/* .thumbimg {
  height: 450px;
  overflow: hidden;
} */
.thumbimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: all ease-in-out 0.35s;
  -webkit-transition: all ease-in-out 0.35s;
  -moz-transition: all ease-in-out 0.35s;
  -ms-transition: all ease-in-out 0.35s;
  -o-transition: all ease-in-out 0.35s;
  /* filter: grayscale(100%);
  -webkit-filter: grayscale(100%); */
  transition: all ease-in-out 0.35s;
}

.thumbimg:hover img {
  /* filter: grayscale(0);
  -webkit-filter: grayscale(0); */
  transform: scale(1.2) rotate(-2deg);
  -webkit-transform: scale(1.2) rotate(-2deg);
  -moz-transform: scale(1.2) rotate(-2deg);
  -ms-transform: scale(1.2) rotate(-2deg);
  -o-transform: scale(1.2) rotate(-2deg);
}

.caption2 {
  background-color: #fff;
  padding: 20px 10px;
  text-align: center;
}

/* .swiper-scrollbar-drag {
  width: 20px !important;
} */
.caption2 h3 {
  font-family: "EQHeadline-bold", sans-serif;
  font-size: 1.8em;
  white-space: nowrap;
  margin: 0 0 10px 0;
  padding: 0;
}

.caption2 p {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1.3em;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
}

/**/
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute !important;
  background: #e8c5af;
  bottom: 0;
  height: 10px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.sideroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 0;
  padding-top: 50%;
  background: url("../img/sideroll.svg") no-repeat 0 0;
  background-size: 100% 100%;
  z-index: 1;
}

.sideroll2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 0;
  padding-top: 50%;
  background: url("../img/sideroll2.svg") no-repeat 0 0;
  background-size: 100% 100%;
  z-index: 1;
}

.swiper-scrollbar-drag {
  background-color: var(--orenge);
  cursor: pointer;
}

@media (max-width: 992px) {
  .duopannel .cvpannel {
    box-sizing: border-box;
    width: auto;
    height: 100%;
    margin: 10px;
    overflow-y: auto;
  }

  .btnclosepop {
    right: auto;
    top: auto;
    left: 10px;
    bottom: 10px;
  }
}

/**/
.swiper-wrapper img {
  width: 100%;
}

.thumbimg {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.thumbimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.meettheteam .thumbimg img {
  object-position: center top;
}

#podcast .thumbimg {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#podcast {
  padding: 0 0 50px 0;
}

.watchtheshows .thumbimg {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/**/
@media (max-width: 992px) {
  .watchtheshows .thumbimg {
    aspect-ratio: auto;
  }
}

.tdprogram {
  background-color: var(--white);
  padding: 80px 20px;
}

.title {
  font-size: 2.5em;
  font-family: "EQHeadline-bold", sans-serif;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
}

.title span.orengetxt {
  color: var(--orenge);
}

.title span.underorenge {
  text-decoration: underline;
  text-decoration-color: var(--orenge);
  -moz-text-decoration-color: var(--orenge);
}

.tdprogram h4 {
  font-family: "EQHeadline-bold", sans-serif;
  text-align: center;
  color: var(--blue);
  font-size: 1.8em;
  margin: 2px 0 50px 0;
}

.thumbnail2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--lightbrown);
  padding-right: 30px;
}

.borderframe {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.thumbnail2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.35s;
  -webkit-transition: all ease-in-out 0.35s;
  -moz-transition: all ease-in-out 0.35s;
  -ms-transition: all ease-in-out 0.35s;
  -o-transition: all ease-in-out 0.35s;
  opacity: 1;
}

.thumbnail2 img:hover {
  transform: scale(1.5) rotate(-5deg);
  -webkit-transform: scale(1.5) rotate(-5deg);
  -moz-transform: scale(1.5) rotate(-5deg);
  -ms-transform: scale(1.5) rotate(-5deg);
  -o-transform: scale(1.5) rotate(-5deg);
  opacity: 0.8;
}

.caption {
  padding: 10px;
  text-align: center;
  height: auto;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.caption h3 {
  font-family: "EQHeadline-bold", sans-serif;
  font-size: 1.5em;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.caption p {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1em;
  line-height: 1.2em;
  color: #333;
  white-space: normal;
}

.glightbox-closing .gclose {
  opacity: 1 !important;
}

.caption2 {
  padding: 20px 10px;
  background-color: transparent;
  text-align: left;
  width: 100%;
  overflow: hidden;
}

.caption2 .head {
  font-size: 1.3em;
  color: #000;
  white-space: normal;
  margin-bottom: 10px;
}

.caption2 .head span {
  color: #666;
}

.caption2 p {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1.2em;
  line-height: 1.2em;
  color: #333;
  white-space: normal;
}

/**/
.blog {
  background-color: var(--blue);
  padding: 80px 20px;
}

.headertop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.headertop h2 {
  font-size: 3em;
  color: var(--white);
  font-family: "EQHeadline-bold", sans-serif;
  font-weight: 900;
}

.headertop .viewall,
.headertop .viewall:hover {
  font-family: "EQHeadline-Regular", sans-serif;
  color: var(--white);
  font-size: 1.2em;
}

.blognail {
  width: 100%;
}

.blogframe {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blogframe img {
  width: 100%;
  height: auto;
}

.greentag {
  font-family: "EQHeadline-Regular", sans-serif;
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.5px;
  padding: 2px 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: var(--white);
  background-color: var(--green);
  margin: 20px 0;
}

.blognail h4 {
  color: var(--white);

  font-weight: 600;
  font-size: 1.4em;
  letter-spacing: 0.5px;
}

.readmore,
.readmore:hover {
  color: var(--white);
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
}

/**/
.footer {
  position: relative;
  background-color: var(--orenge);
  min-height: 10vh;
  width: 100%;
  padding: 80px 20px 130px 20px;
  display: flex;
  flex-direction: column;
}

.footer h3 {
  font-family: "EQHeadline-bold", sans-serif;
  color: var(--white);
  font-size: 1.8em;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.floatmenu {
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: fixed;
  opacity: 0;
  bottom: 20px;
  right: 20px;
  border-radius: 20px;
  width: auto;
  max-width: 420px;
  padding: 40px 30px 30px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 9999999;
}

.floatmenu h2 {
  text-align: center;
  margin-bottom: 20px;
}

.credit .namebox p b {
  font-family: "EQHeadline-Regular", sans-serif;
  font-weight: normal !important;
}

.floatmenu .swap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.floatmenu .swap a {
  width: 50%;
  font-size: 18px;
  line-height: 1em;
  white-space: nowrap;
  text-align: center;
  outline: none !important;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  opacity: 1;
}

.floatmenu .swap a:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .floatmenu {
    width: initial;
  }

  .floatmenu h2 br {
    display: none;
  }

  .floatmenu .swap {
    display: flex;
    flex-direction: column;
  }

  .floatmenu .swap a {
    width: 100%;
  }

  .watchshow {
    padding: 20px !important;
    font-size: 1em;
  }
}

.closebox,
.closebox:hover {
  position: absolute;
  color: #333;
  top: 0px;
  right: 0px;
  border: none;
  padding: 20px;
  width: 30px;
  height: 30px;
  outline: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  z-index: 999999;
}

/**/
.nopad {
  padding: 0 !important;
}

.joinus {
  width: 100%;
  min-height: 40vh;
  background-color: #de7c3a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dflex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.w7 {
  width: 70%;
  height: 100%;
}

.w5 {
  width: 30%;
  height: 100%;
}

.jointxt {
  padding: 50px;
}

.jointxt h2 {
  font-size: 3em;
  font-family: "EQHeadline-bold", sans-serif;
  color: var(--white);
}

.jointxt h1 {
  font-size: 4em;
  font-family: "EQHeadline-bold", sans-serif;
  color: var(--white);
  line-height: 1em;
}

.jointxt h4 {
  font-size: 1.5em;
  font-family: "EQHeadline-bold", sans-serif;
  color: var(--yellow);
}

.listedbtn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.btnWhite,
.btnWhite:hover,
.btnYellow,
.btnYellow:hover {
  width: 100%;
  font-size: 1.3em;
  line-height: 1.3em;
  max-width: 350px;
  text-align: center;
  border: none;
  outline: none;
  background-color: #fff;
  color: var(--orenge);
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  white-space: normal;
  text-overflow: inherit;
}

.btnYellow,
.btnYellow:hover {
  background-color: var(--yellow);
}

/**/
.social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.social li {
  display: inline-block;
  width: calc(100% / 8);
  max-width: 50px;
  margin: 0;
  padding: 0;
}

.social li img {
  width: 100%;
}

.footerbg {
  /*vector bar*/
  position: absolute;
  z-index: 90;
  width: 100%;
  height: 50px;
  left: 0;
  bottom: 0;
}

.footerbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watchshow {
  padding: 40px 50px 0 50px;
  border-top: 2px solid var(--brown);
}

.whobosslogo {
  width: 250px !important;
}

.whobosslogo2 {
  width: 200px;
}

@media (min-width: 1500px) {
  .whobosslogo {
    width: 450px !important;
  }

  .whobosslogo2 {
    width: 150px;
  }

  .overbanner p {
    font-size: 2em;
  }
}

.wbg {
  background-color: var(--white);
}

/**/
#teamslider {
  position: relative;
}

.slidercontrol {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  height: 50px;
  width: 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.prevcustom,
.nextcustom {
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: flex;
  z-index: 9;
}

.swiper-button-next.nextcustom:after,
.swiper-button-prev.prevcustom:after,
.swiper-button-next.nextcustom:after,
.swiper-rtl .swiper-button-prev.prevcustom:after {
  font-size: 16px !important;
  color: var(--brown);
  font-family: "FontAwesome" !important;
}

.swiper-button-next.nextcustom:after {
  content: "\f054";
}

.swiper-button-prev.prevcustom:after {
  content: "\f053";
}

.slidercontrol2 {
  position: relative;
  height: 80px;
  width: 120px;
  margin: 0 auto;
  display: none;
}

@media (max-width: 992px) {
  .slidercontrol2 {
    display: block !important;
  }

  /* .overbanner p{
    font-size: 1em !important;
  } */
  #herobaner1 {
    padding: 0 !important;
  }
}

.fraction {
  position: relative;
  font-size: 1.3em;
  color: var(--brown);
  text-align: center;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  bottom: 8px;
}

.credit .namebox .textb {
  width: fit-content;
}

@media (max-width: 768px) {

  #herobaner1,
  #herobaner2 {
    padding: 0;
  }

  #herobaner1 .swiper-slide,
  #herobaner2 .swiper-slide {
    min-height: 70vh;
  }

  .sidebar {
    position: fixed;
  }

  #herobaner1 .swiper-slide {
    margin-top: 70px !important;
  }

  .overbanner {
    width: 100%;
    height: auto;
    top: 5%;
    transform: none;
    padding: 0 10px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  .overbanner h2 {
    font-size: 2em;
    line-height: 1em;
    width: 90% !important;
  }

  .caption2 {
    height: auto;
  }

  .overbanner h3 {
    font-size: 1.1em;
  }

  /* .thumbimg {
    height: 350px;
  } */
  .thumbimg img {
    filter: none !important;
    -webkit-filter: none !important;
  }

  .watchtheshows .thumbimg {
    aspect-ratio: inherit !important;
    width: 100% !important;
    height: auto !important;
  }

  .overbanner p {
    font-size: 1.2em;
    width: 90%;
    /* border-left: 2px solid var(--yellow); */
    margin: 0;
  }

  .overbanner a,
  .overbanner a:hover,
  .overbanner a:focus {
    position: relative;
    margin: 20px 0 !important;
    left: 0 !important;
    right: auto !important;
    float: left !important;
  }

  /**/
  .social {
    justify-content: center;
  }

  .btnWhite,
  .btnWhite:hover,
  .btnYellow,
  .btnYellow:hover {
    font-size: 1.2em;
  }

  .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    width: 100%;
    margin: 30px 0;
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social li {
    width: calc(100% / 3);
  }

  .footer {
    padding: 80px 0 130px 0;
  }

  .footer h3 {
    white-space: normal;
    font-size: 2em;
    line-height: 1em;
  }

  .watchtheshows h2 {
    white-space: nowrap;
    font-size: 2em;
  }

  .boxtext {
    width: 100%;
  }

  .imgfixright {
    display: none;
  }

  .boxtext h1 {
    font-size: 3em;
  }

  .boxtext h2 {
    font-size: 2.5em;
  }

  .boxtext p {
    font-size: 1em;
    width: 100%;
    margin-top: 30px;
  }

  .sidebar.open {
    width: 100%;
  }

  .groupbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .groupbtn a {
    width: 100% !important;
    text-align: center;
    opacity: 1;
  }

  .cheesebox {
    display: none;
  }

  .meettheteam {
    padding: 0;
  }

  .meettheteam h2 {
    font-size: 3em;
  }

  .meettheteam p {
    width: 100%;
    font-size: 1.2em;
    line-height: 1em;
    white-space: normal !important;
  }

  .caption h3 {
    font-size: 1.5em;
    margin: 0;
  }

  #ourteam {
    flex-direction: column;
  }

  .teamcv,
  .meettheteam {
    padding: 20px;
    border: none;
    width: 100%;
    border-bottom: 1px solid var(--lightbrown);
  }

  .jointxt {
    padding: 20px;
  }

  .jointxt h1 {
    font-size: 3em;
  }

  .jointxt h2 {
    font-size: 2em;
  }

  .jointxt h4 {
    font-size: 1.1em;
  }

  .p50 {
    padding: 20px !important;
  }

  .caption2 .head {
    line-height: 1.1em;
  }

  .dflex {
    flex-direction: column;
  }

  .listedbtn {
    margin-bottom: 50px;
  }

  .w7,
  .w5 {
    width: 100%;
  }

  .overbanner a,
  .overbanner a:hover,
  .overbanner a:focus {
    position: relative;
    margin: 20px;
    left: auto;
    right: 10px;
    float: right;
  }
}

.btnpopclose,
.btnpopclose:hover,
.btnpopclose:focus {
  width: 40px !important;
  height: 40px !important;
  cursor: pointer !important;
}

.credit {
  gap: 30px !important;
}

.credit .namebox .avata {
  width: 80px;
  height: auto;
}

/* @media (max-width: 480px) {
  .thumbimg {
    height: 400px;
  }
 .btnpopclose {
    position: fixed;
    top: auto
    right: auto;
    left:50%;
        bottom:20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}	
      }
} */

/**/
.mobilenav {
  position: fixed;
  white-space: nowrap;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mobilenav a {
  display: flex;
  gap: 0;
}

.mobilenav .logomb {
  width: 45px;
}

.mobilenav .insidescmb {
  width: 80px;
}

.credit br {
  display: block !important;
}

.credit .namebox .textb p {
  font-family: "EQHeadline-Regular", sans-serif;
  font-size: 1.3em;
  color: #fff;
  font-weight: normal !important;
  letter-spacing: 1px;
}

.credit .namebox {
  padding: 30px;
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
}

.creditthanks>h3 {
  font-family: "EQHeadline-Regular", sans-serif;
  width: 90% !important;
  margin: 30px auto !important;
}

#hamberger {
  /*button*/
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

#hamberger i {
  font-size: 2em !important;
  color: #333;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 999999;
}

.overlay-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-content ul {
  list-style: none;
}

.overlay-content ul li {
  margin-bottom: 10px;
}

.overlay a {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2em;
  color: var(--orenge);
  transition: 0.3s;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
}

.overlay li a {
  gap: 10px;
}

.submenu {
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2em;
  color: var(--orenge);
  transition: 0.3s;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  gap: 10px;
}

.submenu .links_name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topmbmenu {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13px 20px !important;
  display: flex;
  gap: 0;
}

.topmbmenu .logomb {
  width: 45px;
}

.topmbmenu .insidescmb {
  width: 80px;
}

.collapse {
  flex-direction: column !important;
}

#dropdownboxmb.collapse.show {
  display: flex;
}

#dropdownboxmb.collapse a {
  padding: 20px;
}

.overlay a:hover,
.overlay a:focus,
.submenu:hover,
.submenu:focus {
  color: var(--orenge);
  outline: none !important;
}

.closebtn,
.closebtn:hover,
.closebtn:focus {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background-color: transparent;
  border: none;
  outline: none;
}

.closebtn i {
  color: var(--orenge);
}

#dropdownboxmb {
  width: 100%;
  border-left: 3px solid var(--lightbrown);

  padding: 0 0 0 20px;
  margin: 0 0 0 20px;
}

#dropdownboxmb .dropdown-btn {
  display: flex;
  flex-direction: column;
}

.menuiconmb {
  /* icon menu */
  width: 40px !important;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/**/
.footerbox {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
}

@media (max-width: 992px) {
  .footerbox {
    flex-direction: column;
  }

  .footer {
    padding: 20px 20px 130px 20px !important;
  }

  .footerbox {
    padding: 0;
  }
}

.sclogo {
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
  width: 250px;
}

.sclogo img {
  width: 100%;
}

.social {
  display: flex;
  flex-direction: row;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 20px;
  gap: 10px;
}

.social li {
  display: inline-block;
  width: calc(100% / 8);
  max-width: 50px;
  margin: 0;
  padding: 0;
}

#pdpa {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #333;
  position: fixed;
  bottom: 20px;
  left: 50%;
  right: 0px;
  top: auto;
  width: 80%;
  height: auto;
  overflow: hidden;
  display: block;
  padding: 30px;
  z-index: 99;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  /* box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.fRight {
  float: right !important;
}

.fLeft {
  float: left !important;
}

@media (max-width: 992px) {
  #pdpa {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  #watchtheshows .thumbimg {
    height: 300px;
  }

  .fRight,
  .fLeft {
    float: none !important;
  }
}

#podcast .thumbimg {
  height: auto !important;
}

@media (max-width: 820px) {

  /* iPad */
  #herobaner1,
  #herobaner2 {
    padding: 0;
  }

  .whobosslogo {
    width: 200px !important;
  }

  .overbanner p {
    font-size: 1.1em !important;
  }

  .whobosslogo1 {
    width: 300px !important;
  }

  .textslide li {
    font-size: 1.5em !important;
  }

  .textslide {
    min-height: 120px;
  }

  .watchtheshows h2 {
    font-size: 2em !important;
  }

  .meettheteam h2 {
    font-size: 2.5em !important;
  }

  .meettheteam h3 {
    font-size: 1.5em !important;
  }

  .meettheteam h4 {
    font-size: 1.5em !important;
    line-height: 1.5em;
  }

  .p50 {
    padding: 30px !important;
  }
}

@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) {
  .btnclosepop {
    position: fixed;
    bottom: 20px;
    left: 100px;
    right: auto;
    top: auto;
    width: 50px;
    height: 50px;
  }
}


/**/
.subcate ul {

  list-style: none !important;

}

.subcate ul li {
  margin: 10px 0 10px 50px !important;
}