@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Barlow', sans-serif; */
/* font-family: 'Heebo', sans-serif; */

:root {
  --darkblue: #265787;
  --darkred: #c1272d;
  --lightblue: #3598db;
  --bubblepurple: #aa74c1;
  --bubbleorange: #e9a854;
  --bubblegreen: #d4de4e;
  --soft-white: #fbf9f5;
  --gold: #e9a854;
  --midnight-black: #171717;
  --white: #fff;
  --black: #000;
  --vista-white: #fbf9f5;
  --title-span-colo: #3eb5f1;
  --elephant: #132d44;
  --darkblue: #1b4a78;
  --white-smoke: #f6f6f6;
  --pink: #8645a2;
  --image-bottom-space: 83px;
}
/* general */
body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
}
.container {
  max-width: calc(1107px + var(--bs-gutter-x, 0.75rem) * 2);
}
.container.large {
  max-width: calc(1280px + var(--bs-gutter-x, 0.75rem) * 2);
}
.default-top {
  padding: 150px 0 0;
  background-color: #050505;
}
.index-page {
  padding: 50px 0;
  min-height: 30vh;
}
.title {
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
  margin-bottom: 30px;
}
.sub-title {
  font-size: 19px;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
}
.bg-darkred {
  background-color: var(--darkred);
}
.bg-light-blue {
  background-color: var(--lightblue);
}
.bg-dark-blue {
  background-color: var(--darkblue);
}
.blue-title {
  color: var(--title-span-colo);
}
.darkred {
  color: var(--darkred);
}
.light-blue {
  color: var(--lightblue);
}
.gold {
  color: var(--bubbleorange);
}
.desktop {
  display: block;
}
.tablet {
  display: none;
}
.mobile {
  display: none;
}
.sticky-button {
  opacity: 0.2;
  position: fixed;
  top: 159px;
  /* left: -23px; */
  display: block;
  writing-mode: vertical-rl;
  transition: 0.5s all ease-in-out;
}
.sticky-button a {
  background-color: #ff3364;
  color: var(--white);
  font-size: 17px;
  /* line-height: 22px; */
  font-weight: 400;
  text-decoration: none;
  padding: 25px 15px;
  transform: rotateX(180deg) rotateY(180deg);
  transition: 0.5s all ease-in-out;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
.sticky-button:hover {
  opacity: 1;
}
.sticky-button:hover a {
  padding-right: 25px;
}
.footer-sticky-button {
  display: none;
}

/* alert-text */

.alert-text {
  padding: 10px 0;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 9999;
}
.alert-text.visibility {
  visibility: hidden;
  /* 	opacity:0; */
  transition: 0.2s all ease-in-out;
}
.alert-text.style-1 {
  background-color: var(--darkred);
}
.alert-text.style-2 {
  background-color: var(--bubblepurple);
}
.alert-text.style-3 {
  background-color: var(--darkblue);
}
.alert-text.style-4 {
  background-color: var(--bubblegreen);
}
.alert-text.style-5 {
  background-color: var(--bubbleorange);
}
.alert-text .inner-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.alert-text p {
  margin-bottom: 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.alert-text.style-5 p,
.alert-text.style-4 p {
  color: var(--darkblue);
}
.alert-text a {
  color: var(--white);
  font-weight: 600;
  margin-left: 24px;
  font-size: 16px;
  line-height: 24px;
}
.alert-text.style-5 a,
.alert-text.style-4 a {
  color: var(--darkblue);
}
.alert-text.style-5 i,
.alert-text.style-4 i {
  color: var(--darkblue);
}
.alert-text i {
  margin-left: 24px;
  cursor: pointer;
  color: var(--white);
}
.mobile-alert-text {
  position: fixed;
  top: 88px;
  transition: 0.3s all;
}
.mobile-alert-text p {
  font-size: 13px;
  list-style: 20px;
}
.mobile-alert-text a {
  font-size: 13px;
}
.mobile-alert-text.active {
  top: 88px;
}

/* alert-text */
/* general */

/* buttons */

.btn-primary {
  font-weight: 500;
  font-size: 15.59px;
  line-height: 18px;
  border: 2px solid var(--lightblue);
  color: var(--vista-white);
  background-color: transparent;
  padding: 1.13rem 2rem;
  border-radius: 0;
  transition: 0.3s all;
}
.btn-primary i {
  margin-left: 10px;
  transition: 0.3s all;
}
.btn-primary:hover i {
  margin-left: 15px;
}
.btn-primary:hover {
  padding-right: 2rem;
  background-color: var(--lightblue);
  border: 2px solid var(--lightblue);
}

/* buttons */

/* site-header */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.site-header.active,
.site-header.background {
  background-color: #050505;
}
.site-header.background .navbar-brand {
  visibility: hidden;
}
.site-header.background .container,
.site-header.active .container {
  border-bottom: 0;
  padding-bottom: 0;
}
.site-header.active .navbar {
  padding: 20px 0;
}
.site-header .navbar {
  padding-top: 32px;
  transition: 0.3s all;
}
.site-header .btn-primary .nav-link {
  padding: 0;
}
.site-header .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 32px;
}
.site-header .navbar-brand img {
  max-width: 120px;
}
.site-header .navbar-nav {
  align-items: center;
}
.site-header .navbar .nav-link {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: var(--soft-white);
}
.site-header .navbar .nav-item:first-child {
  margin-right: 56px;
}
.site-header .navbar .nav-item.btn-primary {
  margin-right: 0;
  background-color: #050505;
}
.site-header .navbar .nav-item.btn-primary:hover {
  padding-right: 2rem;
  background-color: var(--lightblue);
}

.site-header .navbar-search {
  background: none;
  color: var(--white);
  border: none;
  padding: 0;
  font-size: 1.5rem;
  cursor: pointer;
  outline: inherit;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  padding: 10px;
}

.site-header .navbar-search:hover {
  opacity: 0.75;
}

.site-header .navbar-search:focus:not(:active) {
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 0 1pt var(--white);
  outline-color: transparent; /* for high contrast modes */
  transition: 0.1s;
}

.site-header > .navbar > .container {
}

.custom-mega-menu {
  padding: 203px 0 203px 0;
  background-color: #050505;
  top: 0;
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-200%);
  transition: transform 300ms ease-in-out, opacity 200ms, top 300ms;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.custom-mega-menu.active {
  opacity: 1;
  position: fixed;
  transform: translateY(0%);
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.custom-mega-menu .nav-link {
  font-size: 44px;
  line-height: 47px;
  color: var(--soft-white);
  font-weight: 700;
  transition: 0.3s all;
  padding-left: 0;
  text-transform: capitalize;
}
.custom-mega-menu .nav-link:hover {
  opacity: 35%;
}
.custom-mega-menu ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.custom-mega-menu ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.custom-mega-menu .megamenu-top-links {
  margin-bottom: 30px;
  max-width:550px;	
}
.custom-mega-menu .megamenu-bottom-links {
  display: flex;
  flex-direction: row;
}
.custom-mega-menu .megamenu-bottom-links .nav-link {
  padding-right: 20px;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 37px;
  color: var(--soft-white);
  transition: 0.3s all;
}

/* Submenu Dropdowns */

.custom-mega-menu
  #menu-header-menu
  .dropdown.menu-item-has-children
  a.dropdown-toggle::after {
  display: none;
}

.custom-mega-menu #menu-header-menu .dropdown.menu-item-has-children {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.custom-mega-menu
  #menu-header-menu
  .dropdown.menu-item-has-children
  button.dropdown-toggle {
  background: transparent;
  height: 20px;
  width: 20px;
  border: solid var(--soft-white, "#ffffff");
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: -10px;
  transition: 0.6s all;
}

.custom-mega-menu
  #menu-header-menu
  .dropdown.menu-item-has-children
  button.dropdown-toggle.js-expanded {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  margin-top: 0;
}

.custom-mega-menu
  #menu-header-menu
  .dropdown.menu-item-has-children
  button.dropdown-toggle:hover,
.custom-mega-menu
  #menu-header-menu
  .dropdown.menu-item-has-children
  button.dropdown-toggle:focus {
  opacity: 35%;
}

.custom-mega-menu #menu-header-menu a.dropdown-toggle ~ .dropdown-menu {
  position: relative;
  width: 100%;
  background: transparent;
  color: var(--soft-white, "#ffffff");
}

.custom-mega-menu
  #menu-header-menu
  a.dropdown-toggle
  ~ .dropdown-menu
  .dropdown-item {
  color: var(--soft-white, "#ffffff");
  font-weight: 700;
  font-size: 30px;
  transition: 0.3s all;
  white-space:normal; /*AT*/
  line-height:1;	  /*AT*/
}

.custom-mega-menu
  #menu-header-menu
  a.dropdown-toggle
  ~ .dropdown-menu
  .dropdown-item:hover,
.custom-mega-menu
  #menu-header-menu
  a.dropdown-toggle
  ~ .dropdown-menu
  .dropdown-item:focus {
  color: var(--soft-white, "#ffffff");
  background-color: transparent;
  opacity: 35%;
}

.custom-mega-menu
  #menu-header-menu
  a.dropdown-toggle
  ~ .dropdown-menu
  > .nav-item
  + .nav-item {
  margin-top: 1rem;
}

@media only screen and (max-width: 993px) {
  .custom-mega-menu
    #menu-header-menu
    a.dropdown-toggle
    ~ .dropdown-menu
    .dropdown-item {
    font-size: 25px;
  }
}

.custom-mega-menu
  #menu-header-menu
  a.dropdown-toggle[aria-expanded="true"]
  ~ .dropdown-menu {
  display: block;
}

/* Site Header */

.site-header .custom-toggle-menu {
  display: flex;
}
.site-header .custom-toggle-menu .icon {
  margin-left: 12px;
  position: relative;
}
.site-header .custom-toggle-menu .icon .bar {
  width: 28px;
  height: 3px;
  border-radius: 30px;
  background-color: var(--soft-white);
  transition: 0.3s all ease-in-out;
  margin-bottom: 5px;
}
.site-header .custom-toggle-menu.active .bar.middle,
.site-header .custom-toggle-menu .icon.active .bar.middle {
  width: 0;
}
.site-header .custom-toggle-menu.active .bar.first,
.site-header .custom-toggle-menu .icon.active .bar.first {
  transform: rotate(45deg) translate(7px, 7px);
}
.site-header .custom-toggle-menu.active .bar.last,
.site-header .custom-toggle-menu .icon.active .bar.last {
  transform: rotate(-45deg) translate(4px, -5px);
}
.site-header .navbar-brand {
  padding: 0;
}
.site-header .navbar-brand.animate {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}
/* site-header */

/*-------- footer start------- */
/* .site-footer{
    background-color: var(--darkblue);
}
.site-footer .content-row{
    padding-top: 111px;
    padding-bottom: 120px;
}
.site-footer .content-row ul{
    padding-left:0;
}
.site-footer .content-row .first-menu-widget a{
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
    color: var(--gold);
}
.site-footer .content-row .secound-menu-widget a{
    text-decoration: none;
    color: var(--soft-white);
    font-weight: 400;
    font-size: 19px;
    line-height: 23px;
}
.site-footer .content-row .third-menu-widget a{
    text-decoration: none;
    color: var(--soft-white);
    font-weight: 400;
    font-size: 19px;
    line-height: 23px;
}
.site-footer .content-row li{
    margin-bottom: 29px;
    list-style: none;
}
.site-footer .content-row{
    border-bottom: 2px solid rgba(255, 255, 255, 0.21);
}
.site-footer .social-icon-row .left-col .copyright-links{
    display: flex;
    flex-direction: row;
    padding-left: 0;
    list-style: none;
}
.site-footer .social-icon-row  .copyright-links li:first-child {
    margin-right: 43px;
}
.site-footer .social-icon-row  .copyright-links li a{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--soft-white);
    text-decoration: none;
}
.site-footer .social-icon-row .left-col{
    padding-top: 31px;
    padding-bottom: 58px;
}
.site-footer .social-icon-row .right-col .social-icons{
        display: flex;
        flex-direction: row;
        margin-top: 26px;
        justify-content: end;
}
.site-footer .social-icon-row .right-col .social-icons li{
    margin-right: 8px;
    list-style: none;
}

.site-footer .social-icon-row .right-col .social-icons li a {
    display: block;
    line-height: 33px;
    background-color: var(--gold);
    border-radius: 50%;
    width: 29px;
    height: 29px;
    text-align: center;
}
.site-footer .social-icon-row .right-col .social-icons li a i{
    font-size: 17px;
    color: var(--darkblue);
} */

/* .site-footer .social-icon-row .right-col .social-icons li a i{
    font-size: 10px;
} */

.site-footer {
  background-color: #132d44;
  padding: 50px 0 53px 0;
}
.site-footer li {
  list-style: none;
}
.site-footer .first-row {
  border-bottom: 2px solid rgba(255, 255, 255, 0.21);
}
.site-footer .logo {
  margin-bottom: 31px;
}
.site-footer .logo-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--vista-white);
  margin-top: 26px;
}
.site-footer .wrap-vision {
  margin-bottom: 20px;
  max-width: 465px;
}
.site-footer .wrap-vision .gold,
.wrap-mission .gold {
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
}
.site-footer .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--soft-white);
}
.site-footer .wrap-mission {
  max-width: 477px;
  margin-bottom: 75px;
}
.site-footer .secound-col {
  text-align: end;
}
.site-footer .single-slide-btn {
  padding: 0.875rem 1.625rem 0.875rem 1.625rem;
  border: 3px solid #3598db;
  background-color: transparent;
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15.59px;
  line-height: 18px;
}
.site-footer .footer-btn {
  margin-top: 19px;
  margin-bottom: 38px;
}
.site-footer .single-slide-btn:hover {
  border: 3px solid #3598db;
  background-color: var(--lightblue);
  color: var(--white);
}
.site-footer .footer-link {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}

.site-footer .address {
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: var(--soft-white);
  max-width: 258px;
  margin-left: auto;
  margin-bottom: 60px;
}
.site-footer .social-icon-row a {
  text-decoration: none;
}
.site-footer .social-icon-row .left-col .copyright-links {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  column-gap: 2rem;
}
.site-footer .social-icon-row .copyright-links li:first-child {
  /* margin-right: 43px; */
}
.site-footer .social-icon-row .copyright-links li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--soft-white);
}
.site-footer .social-icon-row .left-col {
  padding-top: 31px;
}
.site-footer .social-icon-row .right-col .social-icons {
  display: flex;
  flex-direction: row;
  margin-top: 26px;
  justify-content: end;
}
.site-footer .social-icon-row .right-col .social-icons li {
  margin-right: 8px;
}

.site-footer .social-icon-row .right-col .social-icons li a {
  display: block;
  color: var(--darkblue);
  font-size: 18px;
  line-height: 29px;
  background-color: var(--gold);
  /* border: 1px solid var(--white);  */
  border-radius: 50%;
  width: 29px;
  height: 29px;
  text-align: center;
  font-weight: bold;
}

.site-footer .social-icon-row .right-col {
  flex-grow: 0;
  width: auto;
}

@media screen and (max-width: 992px) {
  .site-footer .social-icon-row {
    flex-direction: column;
  }

  .site-footer .social-icon-row .right-col .social-icons {
    justify-content: start;
    padding-left: 0;
    margin-top: 0;
  }

  .site-footer .social-icon-row .left-col .copyright-links {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .site-footer .social-icon-row .right-col .social-icons {
    justify-content: start;
    padding-left: 0;
  }

  .site-footer .social-icon-row .left-col .copyright-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/*-------- footer end------- */

/* section-hero-banner-block */

.section-hero-banner-block {
  padding: 236px 0 176px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
}
.section-hero-banner-block .row {
  position: relative;
  z-index: 20;
}
.section-hero-banner-block .video-block {
  position: absolute;
  top: 0;
  /*     width: 100%; */
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  pointer-events: none;
}

.section-hero-banner-block .video-block .plyr__video-wrapper {
  height: 910px;
}
.section-hero-banner-block .video-block #myVideo {
  width: auto;
  height: 100%;
}

.section-hero-banner-block .top-part,
.section-hero-banner-block .top-part .date,
.section-hero-banner-block .top-part .calender {
  display: flex;
  align-items: center;
}
.section-hero-banner-block .top-part .date {
  margin-right: 19px;
}
.section-hero-banner-block .top-part .calender {
  margin-top: 10px;
}
.section-hero-banner-block .top-part {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  flex-direction: column;
  align-items: flex-start;
}
.section-hero-banner-block .top-part p {
  margin-bottom: 0;
}
@media screen and (min-width: 994px) {
  .section-hero-banner-block .top-part {
    flex-direction: row;
    align-items: center;
  }
  .section-hero-banner-block .top-part .calender {
    margin-top: 0;
  }
}

.section-hero-banner-block .top-part img {
  margin-right: 12px;
}
.section-hero-banner-block .midle-part .title {
  color: var(--white);
  font-size: 81px;
  line-height: 96px;
  font-weight: 500;
}
.section-hero-banner-block .midle-part .title span {
  color: var(--lightblue);
}
.section-hero-banner-block .bottom-part {
  display: flex;
  align-items: center;
}
/* section-hero-banner-block */

/* ------- section-faq-block start ------- */

.section-faq-block {
  padding-top: 82px;
  padding-bottom: 122px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
.section-faq-block.style-1 {
  background-image: url(../images/faq\ x.png);
  background-color: var(--darkblue);
}
.section-faq-block.style-2 {
  background-image: url("../images/faq-2.png");
  background-color: var(--darkblue);
}
.section-faq-block.style-3 {
  background-image: url("../images/faq-3.png");
  background-color: var(--pink);
}
.section-faq-block.style-4 {
  background-image: url("../images/faq-4.png");
  background-size: cover;
}
.section-faq-block.style-5 {
  background-image: url("../images/faq-5.png");
  background-color: var(--soft-white);
}

.section-faq-block .title {
  color: var(--soft-white);
}
.section-faq-block.style-5 .title {
  color: var(--darkblue);
}
.section-faq-block .text {
  color: var(--soft-white);
  font-size: 13.45px;
  max-width: 517px;
  margin-bottom: 58px;
}
.section-faq-block.style-5 .text {
  color: var(--darkblue);
}
.section-faq-block .accordion {
  max-width: 840px;
  padding-left: 140px;
}
.section-faq-block .accordion-item {
  border: unset;
  background-color: transparent;
  color: var(--soft-white);
}
.section-faq-block.style-5 .accordion-item {
  color: var(--darkblue);
}
.section-faq-block .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--soft-white);
  box-shadow: unset;
}
.section-faq-block .accordion-button {
  background-color: transparent;
  color: var(--soft-white);
}
.section-faq-block.style-5 .accordion-button {
  color: var(--darkblue);
}
.section-faq-block .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border: unset;
  border-color: transparent;
  box-shadow: unset;
}
.section-faq-block .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  padding-left: 0;
  padding-right: 0;
}
.section-faq-block .accordion-item .accordion-body {
  font-size: 13.45px;
  line-height: 21px;
  padding-left: 0;
  padding-right: 0;
}
.section-faq-block .accordion-button::after {
  position: absolute;
  left: -73px;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg");
  transform: unset;
  transition: 0.3s all ease-in-out;
}
.section-faq-block.style-3 .accordion-button:not(.collapsed)::after {
  background-image: url("../images/white-minus.svg");
}
.section-faq-block.style-3 .accordion-button::after {
  background-image: url("../images/white-plus.svg");
  transition: 0.3s all ease-in-out;
}
.section-faq-block.style-5 .accordion-button:not(.collapsed)::after {
  background-image: url("../images/blue-minus.svg");
}
.section-faq-block.style-4 .accordion-button:not(.collapsed)::after {
  background-image: url("../images/white-minus.svg");
}
.section-faq-block.style-4 .accordion-button::after {
  background-image: url("../images/orange-plus.svg");
  transition: 0.3s all ease-in-out;
}
.accordion-button::after {
  background-image: url("../images/plus.svg");
  transition: 0.3s all ease-in-out;
}
/* ------- section-faq-block end ------- */

/* section-intro-block */

.section-intro-block {
  background-color: var(--midnight-black);
}
.section-intro-block .bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 220px 0 220px 0;
}

.section-intro-block .title {
  line-height: 55px;
  color: var(--soft-white);
  max-width: 750px;
  text-align: center;
  margin: auto;
}
.section-intro-block .title .color-text {
  color: var(--lightblue);
}
.section-intro-block.style-1 .title span {
  color: var(--lightblue);
}
.section-intro-block.style-2 .title span {
  color: var(--bubblepurple);
}
.section-intro-block.style-3 .title span {
  color: var(--bubblegreen);
}
.section-intro-block.style-4 .title span,
.section-intro-block.style-5 .title span {
  color: var(--bubbleorange);
}

/* section-intro-block */

/* ----------section-intro-block start---------- */
.section-intro-block-2 {
  background-color: var(--midnight-black);
  padding: 220px 0 220px 0;
  position: relative;
}
.section-intro-block-2 .bg-1 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.section-intro-block-2 .bg-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.section-intro-block-2.style-1 .bg-1 {
  background-image: url(../images/i-2-1.png);
}
.section-intro-block-2.style-2 .bg-1 {
  background-image: url(../images/i-2-2.png);
}
.section-intro-block-2.style-3 .bg-1 {
  background-image: url(../images/i-3-3.png);
}
.section-intro-block-2.style-4 .bg-1 {
  background-image: url(../images/i-4-4.png);
}
.section-intro-block-2.style-5 .bg-1 {
  background-image: url(../images/i-5-5.png);
}
.section-intro-block-2 .title {
  line-height: 55px;
  color: var(--soft-white);
  max-width: 500px;
  position: relative;
  z-index: 20;
}
.section-intro-block-2.style-1 .title span {
  color: var(--lightblue);
}
.section-intro-block-2.style-2 .title span {
  color: var(--bubblepurple);
}
.section-intro-block-2.style-3 .title span {
  color: var(--bubblegreen);
}
.section-intro-block-2.style-4 .title span,
.section-intro-block-2.style-5 .title span {
  color: var(--bubbleorange);
}

/* ----------section-intro-block end---------- */

/* ----------section-speakers-block---------- */

.section-speakers-block {
  padding-top: 96px;
  padding-bottom: 194px;
  overflow: hidden;
}
.section-speakers-block .single-team-item .image {
  background-image: url(images/speaker6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  max-width: 230px;
  height: 230px;
  margin: auto;
  margin-bottom: 13px;
}

.section-speakers-block .single-team-item .image-content .name {
  font-family: "Barlow";
  font-weight: 700;
  font-size: 24.3147px;
  line-height: 29px;
  text-align: center;
  color: var(--darkred);
  margin-bottom: 13px;
}
.section-speakers-block .single-team-item .image-content .text {
  color: var(--darkblue);
  font-family: "Barlow";
  font-weight: 600;
  font-size: 14.31px;
  line-height: 17px;
  text-align: center;
}
.section-speakers-block .section-heading {
  text-align: center;
}
.section-speakers-block .section-heading .title {
  margin: auto;
  max-width: 507px;
  max-height: 133px;
  color: var(--darkblue);
  font-weight: 700;
  font-size: 37.3027px;
  line-height: 44px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  margin-bottom: 70px;
  margin-top: 21px;
}
.section-speakers-block .section-heading .sub-title {
  font-family: "Barlow";
  color: var(--darkred);
}

/* ----------section-speakers-block---------- */

/* section-speakers-list-block */

.section-speakers-list-block {
  padding: 105px 0 177px 0;
  background-color: var(--elephant);
}
.loading {
  display: none;
}
.section-speakers-list-block .spinner-border {
  border: 0.25em solid var(--white);
  border-right-color: transparent;
}
.section-speakers-list-block .section-heading {
  max-width: 541px;
  margin: auto;
  margin-bottom: 67px;
  text-align: center;
}
.section-speakers-list-block .section-heading .sub-title {
  color: var(--lightblue);
}
.section-speakers-list-block .section-heading .title {
  color: var(--soft-white);
}
.section-speakers-list-block .section-heading .text {
  color: var(--soft-white);
  font-size: 1.1rem;
}
.tab-nav .tab-link {
  display: flex;
  flex-direction: row;
  max-width: 800px;
  margin: auto;
  padding-left: 0;
}
.tab-nav .tab-link li {
  flex: 1 0 0%;
  text-align: center;
  padding-bottom: 21px;
  list-style: none;
}
.tab-nav .tab-link li a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--lightblue);
  text-decoration: none;
}
.tab-nav .tab-link li.active a {
  color: var(--soft-white);
  padding-bottom: 13px;
  border-bottom: 3px solid var(--lightblue);
}
.section-speakers-list-block .speakers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 26px;
  grid-row-gap: 52px;
  margin-top: 75px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-speakers-list-block .speakers--kol {
  grid-template-columns: repeat(5, 1fr);
}
.section-speakers-list-block .speakers .item {
  padding: 7px 7px 12px 7px;
  background-color: var(--white);
  position: relative;
}
.section-speakers-list-block .speakers .item .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.section-speakers-list-block .speakers .item .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 248px;
  margin-bottom: 14px;
}
.section-speakers-list-block .speakers .item .info .name {
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
  color: var(--darkblue);
  margin-bottom: 5px;
}
.section-speakers-list-block .speakers .item .info .designation {
  font-weight: 500;
  font-size: 14.0873px;
  line-height: 17px;
  color: var(--lightblue);
  margin-bottom: 0px;
}
.section-speakers-list-block .speakers .item .info .company {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkblue);
  margin-bottom: 22px;
  margin-top: 8px;
}
.section-speakers-list-block .speakers .item .social-icons {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 20;
}
.section-speakers-list-block .speakers .item .social-icons li {
  list-style: none;
}
.section-speakers-list-block .speakers .item .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: var(--darkblue);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
}
.section-speakers-list-block .speakers .item .social-icons li i {
  color: var(--white);
  line-height: 23px;
}
.section-speakers-list-block .speakers .item .social-icons li {
  margin-right: 6px;
}

/* section-speakers-list-block */

/* ---------section-information start---------- */
.section-information {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-information .content {
  max-width: 510px;
}
.section-information .content.right-content {
  margin-left: auto;
}
.section-information .content .sub-title {
  color: var(--bubblepurple);
  line-height: 23px;
  margin-bottom: 23px;
}
.section-information .content .title {
  max-width: 541px;
  font-weight: 600;
  line-height: 57px;
  color: #1b4a78;
  margin-bottom: 49px;
}
.section-information .content .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1b4a78;
  max-width: 541px;
  margin-bottom: 49px;
}

.section-information .content.max-content,
.section-information .content.max-content .title,
.section-information .content.max-content .text {
  max-width: 100%;
}

.section-information .content .btn-primary {
  color: var(--darkblue);
}
.section-information .content .btn-primary:hover {
  color: var(--white);
}
.section-information .image {
  text-align: end;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-information .bottom-image {
  display: none;
}
.section-information.style-1 .image {
  clip-path: unset;
}
.section-information.style-2 .image {
  clip-path: polygon(
    36% 0,
    13% 0,
    36% 50%,
    11% 100%,
    35% 100%,
    50% 69%,
    68% 100%,
    91% 100%,
    63% 49%,
    89% 0,
    67% 0,
    50% 30%
  );
}
.section-information.style-3 .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -39%;
  width: 100%;
  height: 100%;
  clip-path: polygon(
    36% 0,
    13% 0,
    36% 50%,
    11% 100%,
    35% 100%,
    50% 69%,
    68% 100%,
    91% 100%,
    63% 49%,
    90% 0,
    67% 0,
    50% 30%
  );
  background-color: var(--soft-white);
  opacity: 0.8;
}
/* ---------section-information end---------- */

/* section-sponsors-block */

.section-sponsors-block {
  padding: 159px 0 179px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.section-sponsors-block .section-heading {
  margin-bottom: 82px;
  text-align: center;
}
.section-sponsors-block .section-heading .title span {
  color: var(--lightblue);
}
.section-sponsors-block .content {
  margin-bottom: 100px;
}
.section-sponsors-block .content:last-child {
  margin-bottom: 0;
}
.section-sponsors-block .title-wrapper .title {
  font-weight: 600;
  color: var(--darkred);
  text-align: center;
  margin-bottom: 40px;
}
.section-sponsors-block .logos {
  display: grid;
  grid-template-columns: repeat(var(--grid-rows), 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 52px;
  margin-top: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  list-style: none;
  padding-left: 0;
  text-align: center;
}
.section-sponsors-block .logos li {
  position: relative;
}
.section-sponsors-block .logos .whole-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-sponsors-block .mobile-logos {
  padding-left: 0;
}

/* section-sponsors-block */

/* ----------section-cta-block start-------- */
.section-cta-block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 146px 0 114px 0;
}

.section-cta-block .content {
  text-align: center;
}
.section-cta-block .content .sub-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.section-cta-block.style-4 .content .sub-title {
  color: var(--darkblue);
}
.section-cta-block .content .title {
  line-height: 57px;
  color: var(--white);
  margin-bottom: 23px;
}
.section-cta-block.style-4 .content .title {
  color: var(--darkblue);
}
.section-cta-block .content .text {
  line-height: 24px;
  max-width: 644px;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: auto;
  margin-bottom: 40px;
}
.section-cta-block.style-4 .content .text {
  color: var(--darkblue);
}
.section-cta-block .content .btn-primary {
  border: 2px solid var(--white);
}
.section-cta-block.style-4 .content .btn-primary {
  border: 2px solid var(--lightblue);
  color: var(--darkblue);
}
.section-cta-block .inline-gap {
  display: inline-block;
  padding: 10px;
}
/* ----------section-cta-block end-------- */

/* section-cta-2 */

.section-cta-block-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 83px 0 66px 0;
}
.section-cta-block-2.inner-section {
  /* max-width: 1300px; */
  margin: auto;
  transform: translateY(50%);
  margin-top: -237px;
  margin-left: 100px;
  margin-right: 100px;
}
.section-cta-block-2.style-1 {
  background-image: url("../images/cta-2.png");
}
.section-cta-block-2.style-2 {
  background-image: url("../images/cta-style-2.png");
}
.section-cta-block-2.style-3 {
  background-image: url("../images/cta-style-3.png");
}
.section-cta-block-2.style-4 {
  background-image: url("../images/cta-style-4.png");
}
.section-cta-block-2.style-5 {
  background-image: url("../images/cta-style-5.png");
}
.section-cta-block-2.style-6 {
  background-image: url("../images/cta-style-6.png");
}
.section-cta-block-2 .content {
  max-width: 505px;
}
.section-cta-block-2.inner-section .content {
  padding-left: 109px;
  max-width: 620px;
}
.section-cta-block-2.inner-section .content .title {
  max-width: unset;
}
.section-cta-block-2 .content .sub-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 23px;
}
.section-cta-block-2.style-5 .content .sub-title,
.section-cta-block-2.style-6 .content .sub-title {
  color: var(--darkblue);
}
.section-cta-block-2 .content .title {
  line-height: 57px;
  color: var(--white);
  margin-bottom: 45px;
}
.section-cta-block-2.style-5 .content .title,
.section-cta-block-2.style-6 .content .title {
  color: var(--darkblue);
}

.section-cta-block-2.style-5 .content .btn-primary,
.section-cta-block-2.style-6 .content .btn-primary {
  color: var(--darkblue);
}

/* section-cta-2 */

/* section-resources-block */

.section-resources-block {
  padding: 114px 0 74px 0;
  background-color: var(--white-smoke);
}
.section-resources-block .section-heading {
  color: var(--darkblue);
  margin-bottom: 57px;
}
.section-resources-block .filter {
  display: flex;
  position: relative;
}
.section-resources-block .filter:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
  left: 0;
  bottom: -30px;
}
.section-resources-block .filter .label,
.section-resources-block .filter .resource-catagory li a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--darkblue);
  text-decoration: none;
}
.section-resources-block .filter .resource-catagory {
  display: flex;
  list-style: none;
  padding-left: 50px;
  margin-bottom: 0;
}
.section-resources-block .filter .resource-catagory li {
  margin-right: 34px;
}
.section-resources-block .filter .resource-catagory li.active a {
  border-bottom: 3px solid var(--lightblue);
  padding-bottom: 28px;
}
.section-resources-block .resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 30px;
  margin-top: 74px;
}
.section-resources-block .resource-list .item .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 185px;
}
.section-resources-block .resource-list .item .info {
  padding: 30px 22px 23px 22px;
  background-color: var(--white);
}
.section-resources-block .resource-list .item .title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--darkblue);
}
.section-resources-block .resource-list .item .text {
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--darkblue);
}
.section-resources-block .resource-list .item .btn-primary {
  color: var(--darkblue);
}
.section-resources-block .filter.mobile {
  display: none;
}
/* section-resources-block */

/* ----------section-content start-------- */
.section-content-block {
  padding-top: 85px;
  padding-bottom: 55px;
}
.section-content-block .section-heading {
  margin-bottom: 83px;
}
.section-content-block .section-heading .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
  color: var(--darkblue);
}
.section-content-block .section-heading-2 .title {
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: var(--darkblue);
  margin-bottom: 17px;
}
.section-content-block .section-heading-2 .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 41px;
  color: var(--darkblue);
}
.section-content-block .sub-heading {
  margin-bottom: 83px;
}
.section-content-block .sub-heading .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--darkblue);
  margin-bottom: 20px;
}
.section-content-block .sub-heading .text {
  color: var(--darkblue);
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
}
.section-content-block ol {
  padding-left: 20px;
}
.section-content-block li {
  margin-bottom: 17px;
  padding-left: 22px;
}
.section-content-block li::marker {
  font-weight: 600;
  color: var(--lightblue);
}
.section-content-block .full-image .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-content-block .full-image .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgba(27, 74, 120, 0.5);
  margin-top: 28px;
  margin-bottom: 28px;
}
.section-content-block .sub-heading-2 .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 19px;
  color: var(--darkblue);
}
.section-content-block .sub-heading-2 .text {
  color: var(--darkblue);
  margin-bottom: 70px;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
}
.section-content-block .bottom-part-image img {
  width: 100%;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  background: linear-gradient(180deg, #e9a854 0%, #a06415 100%);
}
/* ----------section-content end-------- */

/* section-timer-block */

.section-timer-block {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 70px 0;
}
.section-timer-block .timer-content {
  color: var(--white);
  text-align: center;
}
.section-timer-block .timer-content .title {
  margin-bottom: 23px;
}
.section-timer-block .timer-content .text {
  max-width: 551px;
  margin: auto;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 69px;
}
.timer-banner .psgTimer_numbers > div,
.psgTimer_labels > div {
  width: 148px;
}
.timer-banner .psgTimer_numbers > div > div {
  border-radius: 0;
  background-color: transparent;
  border: 3px solid var(--white);
  color: var(--white);
  width: 87px;
  height: 139px;
  padding: 45px 0;
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
}
.timer-banner .psgTimer_numbers > div:after {
  display: none;
}
.timer-banner .psgTimer_labels > div {
  color: var(--white);
  font-size: 19px;
  line-height: 23px;
  font-weight: 500;
  margin-top: 13px;
  letter-spacing: unset;
}
.timer-banner.transparent .psgTimer_numbers > div > div {
  border: 0;
  box-shadow: unset;
}
.timer-banner.transparent .psgTimer_numbers > div:after {
  display: block;
  color: var(--white);
  top: -10px;
}
.timer-banner.transparent .psgTimer_numbers > div,
.psgTimer_labels > div {
  width: 90px;
  text-align: center;
}
.timer-banner.transparent .psgTimer_labels > div {
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 13px;
  letter-spacing: unset;
  margin-top: 15px;
  padding-top: 0 !important;
  text-align: center;
}
.timer-banner.transparent .psgTimer_numbers > div > div {
  height: unset;
  padding: 0;
  font-size: 35px;
  line-height: 42px;
}
.timer-banner.transparent .psgTimer {
  margin-bottom: 0;
}
.timer-banner.transparent .seconds {
  display: none;
}
.timer-banner.transparent .minutes:after {
  display: none !important;
}

/* section-timer-block */

/* section-slider-block */

.section-slider-block {
  padding: 150px 0;
  background-color: #183c54;
}
.section-slider-block .content {
  padding-left: 210px;
  color: var(--white);
}
.section-slider-block .content .sub-title {
  font-size: 17px;
  line-height: 21px;
}
.section-slider-block .content .title {
  font-size: 37px;
  line-height: 44px;
  max-width: 471px;
}
.section-slider-block .content .text {
  font-size: 16px;
  line-height: 24px;
  max-width: 471px;
}
.section-slider-block .slider-card {
  margin-right: 30px;
}
.section-slider-block .slider-card .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-slider-block .slider-card .info {
  color: var(--white);
  padding-top: 38px;
}
.section-slider-block .slider-card .info .name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-slider-block .slider-card .info .designation,
.section-slider-block .slider-card .info .company {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 0;
}
.section-slider-block .slider-wrapper {
  position: relative;
  padding-left: 84px;
}
.slider-buttons {
  left: 0;
  top: 0;
  position: absolute;
  list-style: none;
  padding-left: 0;
}
.slider-buttons li.slick-disabled {
  background-color: var(--white);
}
.slider-buttons li.slick-disabled i {
  color: var(--darkblue);
}
.slider-buttons li {
  color: var(--grey);
  width: 50px;
  height: 50px;
  border-radius: 25px;
  z-index: 20;
  position: relative;
  cursor: pointer;
  margin-bottom: 18px;
  background-color: transparent;
  border: 1px solid var(--white);
}
.slider-buttons li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: var(--white);
}
/* section-slider-block */

/*----------section-featured-slider-block START----------  */

.section-featured-slider-block.style-1 {
  background-color: var(--darkblue);
}

.section-featured-slider-block.style-2 {
  background: linear-gradient(180deg, #e9a854 0%, #a06415 100%);
}
.section-featured-slider-block.style-2 .slider-buttons li.slick-disabled i {
  color: var(--bubbleorange);
}
.section-featured-slider-block .inner-container {
  padding-left: 202px;
  padding-top: 93px;
  padding-bottom: 200px;
  overflow: hidden;
}
.section-featured-slider-block .sub-title {
  color: var(--soft-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  margin-bottom: 23px;
}
.section-featured-slider-block .title {
  font-weight: 600;
  font-size: 48px;
  line-height: 57px;
  color: var(--soft-white);
  max-width: 477px;
  margin-bottom: 42px;
}
.section-featured-slider-block .text {
  font-size: 16px;
  line-height: 34px;
  max-width: 541px;
  color: var(--soft-white);
  text-align: center;
}
.section-featured-slider-block .single-team-item {
  display: flex;
  margin-right: 15px;
  opacity: 0.2;
  position: relative;
  transition: 0.5s all ease-in-out;
}
.section-featured-slider-block .single-team-item .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.section-featured-slider-block .single-team-item .image-outer {
  width: 305px;
}
.section-featured-slider-block .single-team-item .image-outer .logo {
  background-color: var(--white);
  padding: 13px;
}
.section-featured-slider-block .single-team-item .image-outer .logo img {
  margin: auto;
  height: 61px;
}

.section-featured-slider-block .single-team-item .image-content-outer {
  /* max-width: 0; */

  transition: 0.2s all ease-in-out;
  overflow: hidden;
  width: calc(100%-305px);
}
.section-featured-slider-block .single-team-item .image-content {
  margin-left: 39px;
  opacity: 0;
  transition: all 0.2s;

  width: 320px;
}
.section-featured-slider-block
  .single-team-item.slick-changed-to-current
  .image-content-outer {
  /* max-width: 1000px; */
}
.section-featured-slider-block
  .single-team-item.slick-changed-to-current
  .image-content {
  opacity: 1;
  transform: translateY(-15px);
}
.section-featured-slider-block .single-team-item {
  align-items: center;
}
.section-featured-slider-block .single-team-item.slick-changed-to-current {
  /*min-width: 730px !important;*/
  opacity: 1;
  align-items: center;
}
.section-featured-slider-block .single-team-item .image-content .name {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 37.66px;
  line-height: 45px;
  color: var(--soft-white);
  margin-top: 34px;
}
.section-featured-slider-block .single-team-item .image-content .designation {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 20px;
  color: var(--soft-white);
}
.section-featured-slider-block .single-team-item .image-content .text {
  font-size: 20px;
  line-height: 29px;
  color: var(--soft-white);
  max-width: 320px;
  text-align: left;
  margin-bottom: 20px;
}
.section-featured-slider-block .single-team-item .image-content .time,
.place {
  font-family: "Helvetica";
  display: flex;
  color: var(--soft-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 0;
}
.section-featured-slider-block .single-team-item .image-content .time p,
.place p {
  margin-top: revert;
  margin-left: 7px;
}
.section-featured-slider-block .single-team-item .image-content .social-icons {
  margin-top: 18px;
  display: flex;
  list-style: none;
  text-align: start;
  padding: unset;
}
.section-featured-slider-block
  .single-team-item
  .image-content
  .social-icons
  li {
  background-color: var(--gold);
  padding: 2px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
}
.section-featured-slider-block.style-2
  .single-team-item
  .image-content
  .social-icons
  li {
  background-color: var(--white);
}
.section-featured-slider-block.style-2
  .single-team-item
  .image-content
  .social-icons
  i {
  color: var(--bubbleorange);
}
.section-featured-slider-block
  .single-team-item
  .image-content
  .social-icons
  i {
  color: var(--darkblue);
}
.section-featured-slider-block
  .single-team-item
  .image-content
  .social-icons
  li:first-child {
  margin-right: 7px;
}
.section-featured-slider-block .single-team-item .image {
  border: 4px solid white;
  margin-top: 27px;
}
.section-featured-slider-block .single-team-item .image .image-speaker {
  margin-bottom: -27px;
  transform: translateY(-27px);
}
.section-featured-slider-block .single-team-item .image .image-speaker img {
  width: 305px;
}
.section-featured-slider-block .single-team-item .image .logo {
  background-color: var(--white);
  padding: 13px 11px;
}
.section-featured-slider-block .single-team-item .image .logo img {
  margin: auto;
}
.section-featured-slider-block .slider-buttons {
  display: flex;
  top: 25px;
}
.section-featured-slider-block .slider-buttons li {
  margin-right: 20px;
}
.section-featured-slider-block .slick-dots {
  bottom: -57px;
  text-align: end;
  padding-right: 240px;
}
.section-featured-slider-block .slick-dots li {
  margin: 0 10px;
}
.section-featured-slider-block .slick-dots li button:before {
  content: "";
  background-color: rgb(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 30px;
  height: 5px;
  border-radius: 100px;
}
.slick-dots li.slick-active button:before {
  background-color: var(--white);
}
.section-featured-slider-block .super-start {
  padding-left: 175px;
}
.section-featured-slider-block .slider-buttons li:hover {
  background-color: var(--white);
}
.section-featured-slider-block .slider-buttons li:hover i {
  color: var(--darkblue);
}

/*----------- section-featured-slider-block---------- */

/* ----------section-speakers-block -2start---------- */
.section-speakers-block-2 {
  padding-top: 96px;
  padding-bottom: 194px;
}
.section-speakers-block-2 .single-team-item .image {
  background-image: url(images/speaker\ in\ slider-2.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 21px;
  margin-right: 19px;
}

.section-speakers-block-2 .single-team-item .image-content .name {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  color: var(--black);
  margin-bottom: 4px;
}
.section-speakers-block-2 .single-team-item .image-content .text {
  color: var(--darkblue);
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 23px;
  line-height: 27px;
  text-align: center;
}
.section-speakers-block-2 .section-heading {
  margin-bottom: 90px;
}
.section-speakers-block-2 .section-heading .title {
  margin: auto;
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 41px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 70px;
  max-width: 546px;
  color: var(--black);
}
.section-speakers-block-2 .section-heading .sub-title {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: var(--darkblue);
  text-align: center;
  margin-bottom: 21px;
}

.section-speakers-block-2 .slick-dots {
  bottom: -56px;
}
.section-speakers-block-2 .slick-dots li.slick-active button:before {
  color: #d24a43;
}
.section-speakers-block-2 .slick-dots li button:before {
  font-size: 10px;
  color: rgba(210, 74, 67, 0.7);
  opacity: 1;
}
.section-speakers-block-2 .slick-dots li {
  margin: 0;
}
/* ----------section-speakers-block-2 END---------- */

/* section-speaker-class-block */

.section-speaker-class-block {
  padding: 96px 0 194px 0;
}
.section-speaker-class-block .section-heading {
  margin-bottom: 90px;
}
.section-speaker-class-block .section-heading .sub-title {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: var(--darkblue);
  text-align: center;
  margin-bottom: 21px;
}
.section-speaker-class-block .section-heading .title {
  margin: auto;
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 41px;
  line-height: 48px;
  text-align: center;
  max-width: 546px;
  color: var(--black);
  margin-bottom: 45px;
}
.section-speaker-class-block .class-card {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.section-speaker-class-block .class-card .top-part {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 30px 30px 30px;
}
.section-speaker-class-block .class-card .top-part .time {
  display: flex;
  align-items: center;
}
.section-speaker-class-block .class-card .top-part .time p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
  margin-left: 6px;
  color: var(--white);
}
.section-speaker-class-block .class-card .inner-images {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.section-speaker-class-block .class-card .inner-images .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 6px;
}
.section-speaker-class-block .class-card .bottom-part {
  padding: 33px 19px 37px 19px;
  background-color: var(--white);
}
.section-speaker-class-block .class-card .bottom-part .title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 24px;
}
.section-speaker-class-block .class-card .bottom-part .date {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #d24a43;
  margin-bottom: 16px;
}
.section-speaker-class-block .class-card .bottom-part .text {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-speaker-class-block .class-card .bottom-part a {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400px;
  text-decoration: none;
  color: var(--black);
}
/* section-speaker-class-block */

/* section-day-block */

.section-agenda-list.style-2 {
  background-color: #132d44;
  padding: 86px 0 86px 0;
}
.section-agenda-list.style-2 .section-heading {
  text-align: center;
  margin-bottom: 75px;
}
.section-agenda-list.style-2 .section-heading .title {
  color: var(--soft-white);
}
.section-agenda-list.style-2 .section-heading .sub-title {
  color: var(--lightblue);
}

.section-agenda-list.style-2 .container {
  max-width: calc(1108px + var(--bs-gutter-x, 0.75rem) * 2);
}
.section-agenda-list.style-2 .tab-link {
  justify-content: space-between;
  column-gap: 15px;
}
.section-agenda-list.style-2 .tab-link li {
  padding: 25px 0;
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}
.section-agenda-list.style-2 .tab-link li .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.section-agenda-list.style-2 .tab-link li.active .day {
  color: var(--white);
}
.section-agenda-list.style-2 .tab-link li .day {
  color: var(--darkblue);
  margin-bottom: 0;
}
.section-agenda-list.style-2 .tab-link li.active {
  background: linear-gradient(310.82deg, #265787 -0.74%, #3eb5f1 100%);
}
.section-agenda-list.style-2 .tab-nav .tab-link li span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--darkblue);
}
.section-agenda-list.style-2 .tab-nav .tab-link li.active span {
  color: var(--white);
  border-bottom: 0;
  padding-bottom: 0;
}
.section-agenda-list.style-2 .tab-link li:after {
  content: "";
  background-image: url("../images/Vector\ 87.png");
  background-repeat: no-repeat;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  height: 25px;
  width: 25px;
  position: absolute;
  color: var(--lightblue);
  bottom: -25px;
  display: none;
}
.section-agenda-list.style-2 .tab-link li.active:after {
  display: block;
}
.section-agenda-list.style-2 .bottom-button {
  text-align: center;
  margin-top: 47px;
}
.section-agenda-list.style-2 .sideline-text {
  opacity: 0;
  height: 1px;
}
.section-agenda-list .event-information-block {
  margin-bottom: 0;
}
.section-agenda-list .new-col-9 {
  /* display: none; */
}
.section-agenda-list.style-2 .new-col-3 {
  display: none;
}
.section-agenda-list.style-2 .new-col-9 {
  display: block;
  width: 100%;
}
.section-agenda-list .new-col-9.tab-col {
  display: none;
}
.section-agenda-list.style-2 .new-col-9.tab-col {
  display: block;
  padding: 0;
}
.section-agenda-list .wpem-event-listings.wpem-event-listing-box-view {
  margin-top: -128px;
}
.section-agenda-list.style-2 .wpem-event-listings.wpem-event-listing-box-view {
  margin-top: 0;
}
.section-agenda-list .tab-nav .filter-label {
  color: var(--darkblue);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.section-agenda-list .showing_applied_filters.showing-applied-filters {
  display: none !important;
}

/*----------section-programs-at-a-glance-block START----------  */
.section-programs-at-a-glance.style-2 {
  background: linear-gradient(180deg, #e9a854 0%, #a06415 100%);
}

.section-programs-at-a-glance.style-2 .section-heading .sub-title {
  color: var(--darkblue);
}

.event-listing-mode-paag .event-information-block p.text,
.event-listing-mode-paag .event-information-block .sub-text,
.event-listing-mode-paag .event-information-block .col-lg-6:last-child,
.event-listing-mode-paag .event-information-block .title.title-link,
.event-information-block .title.title-no-link {
  display: none;
}

.event-listing-mode-paag .event-information-block .col-lg-6:first-child {
  width: 100%;
}

.event-listing-mode-paag
  .event-information-block
  .col-lg-6:first-child
  .left-content {
  max-width: 80%;
}

.event-listing-mode-paag .event-information-block .title.title-no-link {
  display: block;
  color: var(--darkblue);
  text-decoration: none;
  font-weight: 700;
}

/* section-programs-at-a-glance-block */
/* section-day-block */

/* event-information-block */
.section-agenda-list {
  background: rgba(53, 152, 219, 0.03);
  padding: 103px 0 0 0;
  overflow: hidden;
}
.section-agenda-list .search-form-container .wpem-row {
  display: none;
}
.section-agenda-list .container > .event_listings:first-child {
  max-width: unset;
  padding-top: 44px;
  padding-bottom: 60px;
}
.section-agenda-list .wpem-main.wpem-event-listings-header {
  display: none;
}
.section-agenda-list .showing_applied_filters.showing-applied-filters {
  display: none;
}
.section-agenda-list
  .wpem-event-listings.wpem-event-listing-box-view
  .wpem-event-box-col {
  box-shadow: none;
  overflow: visible;
}
.section-agenda-list
  .wpem-event-listings.wpem-event-listing-box-view
  .wpem-event-layout-wrapper:hover {
  box-shadow: none;
}
.section-agenda-list
  .wpem-event-listings
  .wpem-event-layout-wrapper
  .event_featured {
  background-color: transparent;
}
.section-agenda-list
  .wpem-event-listings.wpem-event-listing-box-view
  .wpem-event-layout-wrapper {
  border: 0;
  overflow: visible;
}
.section-agenda-list .container {
  max-width: calc(1365px + var(--bs-gutter-x, 0.75rem) * 2);
}

.section-agenda-list .categories ul {
  padding-left: 0;
  margin-bottom: 0;
}
.section-agenda-list .categories ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 26px;
}
.section-agenda-list .categories ul li input {
  width: 10%;
  height: 22px;
  margin-right: 23px;
  opacity: 0;
  position: absolute;
  z-index: 99;
}
.section-agenda-list .categories ul li label {
  font-size: 14px;
  line-height: 21px;
  color: var(--darkblue);
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 35px;
}
.section-agenda-list .categories .top-label {
  font-weight: 500;
  margin-bottom: 38px;
  color: var(--darkblue);
}
.section-agenda-list .categories .clear-cat-filter {
  color: var(--darkblue);
  font-size: 14px;
  line-height: 21px;
  text-decoration: underline;
  font-weight: 500;
}
.section-agenda-list .categories .clear-cat-filter i {
  border: 1.5px solid var(--black);
  border-radius: 6px;
  padding: 2px 4px;
  margin-right: 22px;
}
.section-agenda-list .categories ul li span {
  position: relative;
}
.section-agenda-list .categories ul li span:before {
  content: "";
  background-image: url(../images/blue-check.png);
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
}
.section-agenda-list .categories ul li span:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: transparent;
  border: 2px solid var(--lightblue);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-agenda-list
  .categories
  ul
  li
  input[type="checkbox"]:checked
  + span:before {
  display: block;
}
.section-agenda-list .categories .c-title {
  font-size: 14px;
  line-height: 21px;
  color: #0d0d0d;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 38px;
}
.section-agenda-list .top-content {
  font-family: "Poppins", sans-serif;
  /* margin-top: 32px; */
  margin-bottom: 20px;
}
.section-agenda-list .top-content .top-inner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.section-agenda-list .top-content .top-inner-content .i-content {
  margin-left: 14px;
  font-weight: 500;
}
.section-agenda-list .top-content .top-inner-content p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 0;
  margin-left: 14px;
}
.section-agenda-list .top-content span {
  /*     margin-left: 14px; */
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 25px;
  vertical-align: middle;
  text-transform: uppercase;
}
.section-agenda-list .top-content .date svg path {
  fill: #3598db;
  margin-right: 0;
}
.event-information-block {
  background-image: url("../images/event-bg.png") !important;
  padding: 35px 0 35px 24px;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  position: relative;
  margin-bottom: 67px;
}
.event-information-block .left-button {
  position: absolute;
  left: -46px;
  top: 0;
  writing-mode: vertical-rl;
}
.event-information-block .left-button a {
  font-size: 13px;
  line-height: 24px;
  padding: 100px 10px;
  background-color: var(--blue);
  transform: rotateX(180deg) rotateY(180deg);
  color: var(--white);
  margin-top: 0;
}
.event-information-block .left-content .title {
  font-size: 21px;
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 22px;
  font-family: "Poppins", sans-serif;
  color: var(--tab-link);
}
.event-information-block .left-content .title a {
  color: var(--darkblue);
  text-decoration: none;
  font-weight: 700;
}
.event-information-block .left-content .title a:hover {
  color: var(--orange);
}
.event-information-block .left-content {
  max-width: 480px;
}
.event-information-block .left-content .text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--lightblue);
  font-family: "Poppins", sans-serif;
}
.event-information-block .left-content a {
  color: var(--darkblue);
  text-decoration: underline;
  font-weight: 700;
}
.event-information-block .left-content .logos a {
  text-decoration: none;
}
.event-information-block .left-content .logos {
  margin-top: 30px;
}
.event-information-block .left-content .logos .logo-image {
  position: relative;
}
.event-information-block .left-content .logos .logo-image .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.event-information-block .left-content .logos .logo-image img {
  margin-bottom: 5px;
}
.event-information-block .left-content .sub-text,
.event-information-block .left-content .sub-text p {
  color: var(--darkblue);
  font-size: 14px;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
}

.read-more-show-text .more-text {
  display: none;
}

.event-information-block .slider-wrapper {
  position: relative;
  padding-left: 55px;
}
.event-information-block .labels {
  text-align: right;
  margin-bottom: 25px;
  padding-right: 25px;
}
.event-information-block .labels .btn-grey {
  padding: 0.2rem 0.38rem;
  line-height: 21px;
  margin-left: 18px;
}

.event-information-block .slider-wrapper .labels .btn-grey:first-child {
  margin-left: 0;
}
.event-information-block .slider-buttons {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
}

.without-event-speaker-slider {
  display: flex;
}
.without-event-speaker-slider .slick-list {
  width: 100%;
}
.without-event-speaker-slider .slider-card {
  max-width: 156px;
}

.event-information-block .slider-buttons li {
  list-style: none;
  background-color: var(--blue);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 25px;
  z-index: 20;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
  border: 1px solid var(--darkblue);
}
.event-information-block .slider-buttons li.slick-disabled {
  background-color: var(--darkblue);
}
.event-information-block .slider-buttons li.slick-disabled i {
  color: var(--white);
}
.event-information-block .slider-buttons li:last-child {
  margin-bottom: 0;
}
.event-information-block .slider-buttons li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--darkblue);
}
.event-information-block .slider-card {
  padding: 6px 5px 3px 5px;
  background-color: var(--white);
  /*     margin-right: 6px; */
  /* 	margin-bottom:6px; */
  margin: 6px;
  height: inherit;
}
.event-information-block .slider-card .item {
  position: relative;
  cursor: pointer;
}
.event-information-block .slider-card .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.event-information-block .slider-card .item .card-content {
  padding: 15px 0;
}
.event-information-block .logos,
.section-event-information .logos {
  display: flex;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.event-information-block .logos .logo-image,
.section-event-information .logos .logo-image {
  display: block;
  flex: 1 0 0%;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.event-information-block .slider-card .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 4px;
  height: 124px;
}
.event-information-block .slider-card .title {
  font-size: 13px;
  line-height: 16px;
  color: var(--darkblue);
  font-weight: 500;
  margin-bottom: 4px;
  word-break: break-word;
}
.event-information-block .slider-card .designation {
  font-size: 8px;
  line-height: 10px;
  font-weight: 500;
  color: var(--darkblue);
  opacity: 0.65;
  margin-bottom: 0;
}
.event-information-block .slider-card .company {
  color: var(--darkblue);
  font-size: 8px;
  line-height: 10px;
  font-weight: 500;
  opacity: 0.65;
  margin-bottom: 0;
}

/* event-cta */

.event-cta {
  background-color: var(--grey);
  padding: 48px 38px 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 33px;
}
.event-cta .cta-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.event-cta .cta-content .title {
  color: var(--orange);
  font-size: 29px;
  letter-spacing: -0.01em;
  line-height: 43px;
  font-weight: 600;
  margin-bottom: 0;
}
.event-cta .cta-content .title span {
  color: var(--storm);
}
.event-cta .cta-content .btn-orange {
  color: var(--storm);
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  background-color: var(--orange);
  padding: 8px 50px;
  border-radius: 0;
}
.event-cta .cta-content .btn-orange:hover {
  background-color: var(--white);
  color: var(--orange);
}
/* event-cta */

/* sideline-text */
.sideline-text .title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--darkblue);
  position: relative;
  margin-bottom: 0;
  padding: 30px 0;
  font-family: "Poppins", sans-serif;
}
.sideline-text .title:after {
  position: absolute;
  content: "";
  width: -webkit-fill-available;
  height: 1.5px;
  background-color: var(--blue);
  opacity: 0.47;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.wpem-event-listings.wpem-event-listing-box-view {
  display: block;
}

/* sideline-text */

.section-agenda-events .categories ul {
  padding-left: 0;
  margin-bottom: 0;
}
.section-agenda-events .categories ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section-agenda-events .categories ul li input {
  width: 10%;
  height: 22px;
  margin-right: 23px;
  opacity: 0;
  position: absolute;
  z-index: 99;
}
.section-agenda-events .categories ul li label {
  font-size: 14px;
  line-height: 21px;
  color: #0d0d0d;
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 47px;
}
.section-agenda-events .categories ul li span {
  position: relative;
}
.section-agenda-events .categories ul li span:before {
  content: "";
  background-image: url(../images/Vector.png);
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
}
.section-agenda-events .categories ul li span:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #707070;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-agenda-events
  .categories
  ul
  li
  input[type="checkbox"]:checked
  + span:before {
  display: block;
}
.section-agenda-events .categories .c-title {
  font-size: 14px;
  line-height: 21px;
  color: #0d0d0d;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 38px;
}
.event-speaker-slider .slick-track {
  /*		display:flex;*/
}

.section-agenda-list .tab-nav .tab-link {
  max-width: unset;
  margin-bottom: 49px;
}
.section-agenda-list .tab-nav .tab-link li a {
  font-size: 14px;
  line-height: 21px;
  color: var(--darkblue);
}
.event-speaker-slider .item.moderator .cts-ribbon {
  /*    transform: scale(0.4);*/
  /*    right: -6px;*/
  /*    top: -9px;*/
}
.event-speaker-slider .item.moderator .cts-ribbon span {
  font-size: 17px;
}

/* event-information-block */

/* select-2 */

.section-agenda-list .select2-container--default .select2-selection--single {
  height: 46px;
  padding: 15px 30px;
  line-height: unset;
  border: 2px solid var(--lightblue);
  border-radius: 4.37161px;
  background-color: transparent;
  text-align: center;
}
.section-agenda-list
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--darkblue);
  text-align: left;
  padding: 0;
}
.section-agenda-list
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 9px;
  right: 24px;
}
.section-agenda-list
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  background-image: url("../images/select-bottom-arrow.png");
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  border: unset;
}
.custom-select2-container .select2-container {
  width: 81% !important;
}

/* select-2 */

/* photo-gallery-block */

.section-photo-gallery-block {
  padding: 105px 0;
}
.section-photo-gallery-block .mobile-item {
  display: none;
}
.section-photo-gallery-block .section-heading {
  max-width: 540px;
  margin-bottom: 65px;
}
.section-photo-gallery-block .section-heading .sub-title {
  color: var(--lightblue);
}
.section-photo-gallery-block .section-heading .title {
  color: var(--darkblue);
}
.section-photo-gallery-block .gallery-filter ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  width: fit-content;
}
.section-photo-gallery-block .gallery-filter ul:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
  left: 0;
  bottom: -32px;
}
.section-photo-gallery-block .gallery-filter ul li {
  margin-right: 33px;
}
.section-photo-gallery-block .gallery-filter ul li a {
  font-size: 18px;
  line-height: 22px;
  color: var(--darkblue);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 30px;
}
.section-photo-gallery-block .gallery-filter {
  margin-bottom: 80px;
}
.section-photo-gallery-block .gallery-filter ul li.active a {
  border-bottom: 3px solid var(--lightblue);
}
.section-photo-gallery-block .gallery-items .item {
  margin-bottom: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 360px;
}

.section-photo-gallery-block .gallery-items .item > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-photo-gallery-block .bottom-part {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-photo-gallery-block .bottom-part .see-more {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: var(--darkblue);
  text-decoration: none;
}
.section-photo-gallery-block .bottom-part .see-more i {
  margin-left: 10px;
}
.section-photo-gallery-block .bottom-part .cat-slider {
  display: flex;
  list-style: none;
}
.section-photo-gallery-block .bottom-part .cat-slider li {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  z-index: 20;
  position: relative;
  cursor: pointer;
  margin-bottom: 18px;
  background-color: transparent;
  border: 2px solid var(--darkblue);
}
.section-photo-gallery-block .bottom-part .cat-slider li:first-child {
  margin-right: 20px;
}
.section-photo-gallery-block .bottom-part .cat-slider li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.section-photo-gallery-block .slider-buttons {
  position: unset;
  display: flex;
  justify-content: center;
  margin-top: 43px;
}
.section-photo-gallery-block .slider-buttons li:first-child {
  margin-right: 20px;
}
.section-photo-gallery-block .slider-buttons li i {
  color: var(--darkblue);
  font-size: 15px;
}
.section-photo-gallery-block .slider-buttons li {
  border: 2px solid var(--darkblue);
  width: 40px;
  height: 40px;
}
.section-photo-gallery-block .slider-buttons li.slick-disabled {
  background-color: var(--darkblue);
}
.section-photo-gallery-block .slider-buttons li.slick-disabled i {
  color: var(--white);
}

/* photo-gallery-block */

/* section-twitter-feed-block */

.section-twitter-feed-block {
  background-color: var(--white-smoke);
  padding: 144px 0;
}
.section-twitter-feed-block .section-heading {
  margin-bottom: 57px;
}
.section-twitter-feed-block .section-heading .title {
  color: var(--darkblue);
}
.section-twitter-feed-block .ctf-header,
.section-twitter-feed-block .ctf-out-of-tweets,
.section-twitter-feed-block #ctf .ctf-tweet-actions {
  display: none !important;
}
.section-twitter-feed-block .ctf-tweets,
.section-twitter-feed-block .ctf-tweet-items {
  /*     display: grid; */
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.section-twitter-feed-block .ctf-item {
  /*     margin-bottom: 0 !important; */
}
.section-twitter-feed-block #ctf .ctf-author-avatar img {
  border-radius: 50%;
}
.section-twitter-feed-block #ctf.ctf-boxed-style .ctf-item {
  padding: 22px;
}
.section-twitter-feed-block #ctf .ctf-tweet-content {
  margin-left: 0;
  margin-top: 25px;
}
.section-twitter-feed-block #ctf .ctf-author-name,
.section-twitter-feed-block #ctf.ctf-styles .ctf-author-screenname,
.section-twitter-feed-block .ctf-feed-1 .ctf-tweet-meta a,
.section-twitter-feed-block .ctf-feed-1 .ctf-tweet-text a {
  text-decoration: none;
}
.section-twitter-feed-block #ctf .ctf-author-name {
  display: block;
}
.section-twitter-feed-block #ctf.ctf-super-narrow .ctf-author-box {
  float: unset;
}
/* section-twitter-feed-block */

/*****section-speaker-intro*****/
.section-speaker-intro.no-image {
  padding-bottom: 62px;
}
.section-speaker-intro {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 140px;
  margin-bottom: var(--image-bottom-space);
  /* margin-top: var(--variable-top-spacing-fix-neg); */
}
.single.single-event_listing {
  --variable-top-spacing-fix: 160px;
  --variable-top-spacing-fix-neg: -160px;
}
.section-speaker-intro .image-wrapper .image {
  background-size: cover;
  background-position: center;
  width: 372px;
  height: 444px;
}

.section-speaker-intro .container {
  position: relative;
}

.section-speaker-intro .content {
  /* padding-bottom:180px; */
  padding-left: 38px;
  margin-top: 98px;
}

.section-speaker-intro.event-post .image-wrapper .image {
  width: 372px;
  height: 444px;
}

.section-speaker-intro.event-post .navigation {
  top: 30px;
}
.section-speaker-intro.event-post .back-to-listing {
  color: var(--storm);
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  position: absolute;
  top: 4px;
  z-index: 100;
}
.section-speaker-intro.event-post .back-to-listing i {
  margin-right: 22px;
}
.section-speaker-intro .right-col {
  position: relative;
}

.section-speaker-intro .image-wrapper {
  position: relative;
  float: left;
}

.section-speaker-intro .image {
  max-width: 389px;
  position: relative;
  transform: translateY(var(--image-bottom-space));
}
.section-speaker-intro.event-post .image {
  max-width: unset;
}
.section-speaker-intro .image:after {
  content: "";
  position: absolute;
  width: calc(100% + 21px);
  height: calc(100% + 40px);
  background: transparent;
  top: -22px;
  left: 0;
  border: 1px solid var(--dark-grey);
}
.section-speaker-intro .sub-title {
  color: var(--soft-white);
}

.section-speaker-intro .title {
  font-weight: 600;
  font-size: 48px;
  line-height: 57px;
  color: var(--soft-white);
  margin-bottom: 11px;
}
.section-speaker-intro.event-post .title {
  line-height: 39px;
}
.section-speaker-intro.event-post .bottom-content .date-time {
  margin-bottom: 47px;
}
.section-speaker-intro.event-post .bottom-content .date-time p {
  color: var(--white);
  font-size: 17px;
  font-family: "Poppins", sans-serif;
}
.section-speaker-intro.event-post .bottom-content .wpem-heading-text {
  color: var(--white);
  font-size: 17px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
}
.section-speaker-intro .designation,
.section-speaker-intro .company-name {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 17px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}
.section-speaker-intro .designation + .company-name {
  margin-top: 11px;
}

.section-speaker-intro .g-text {
  color: var(--orange);
}
.section-speaker-intro .top-content {
  margin-top: 62px;
  margin-bottom: 30px;
}
.section-speaker-intro.event-post .top-content {
  margin-bottom: 0;
}
/* .section-speaker-intro .navigation{
    position:absolute;
	left:60px;
	z-index:50;
	top:95px;
} */

.section-speaker-intro .navigation ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-left: 0;
}

.section-speaker-intro .navigation a {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid var(--white);
}
.section-speaker-intro .navigation a:hover {
  background-color: var(--white);
  color: var(--grey);
}

.section-speaker-intro .navigation ul > li {
  margin-right: 13px;
}

.section-speaker-intro .social-links {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  list-style: none;
}
.section-speaker-intro .social-links > li {
  padding-right: 13px;
}
.section-speaker-intro .social-links > li:last-child {
  padding-right: 0;
}
.section-speaker-intro .social-links > li a {
  color: var(--white);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-size: 12px;
  text-decoration: none;
}

.section-speaker-intro .social-links > li a:hover {
  color: var(--grey);
  background-color: var(--white);
}
/*****section-speaker-intro*****/

/* event-post */

.section-speaker-intro.event-post {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-speaker-intro.event-post .title {
  font-size: 48px;
  line-height: 57px;
  font-weight: 600;
  color: var(--soft-white);
  margin-bottom: 11px;
}
.section-speaker-intro.event-post .bottom-content .date-time p {
  color: var(--soft-white);
  font-size: 14px;
  line-height: 17px;
}
.section-speaker-intro.event-post .bottom-content .date-time {
  margin-bottom: 34px;
}
/* event-post */

/* section-speaker-content */

.section-speaker-content-block {
  padding: 52px 0 77px 0;
}
.section-speaker-content-block .left-col .title {
  font-weight: 600;
  font-size: 18.19px;
  line-height: 22px;
  color: var(--darkblue);
  margin-bottom: 17px;
}

.section-speaker-content-block .left-col .title.title-moderation {
  color: var(--darkblue) !important;
}

.section-speaker-content-block .left-col .text {
  margin-bottom: 21px;
}
.section-speaker-content-block .left-col .text a {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  max-width: 341px;
  color: var(--lightblue);
  text-decoration: none;
}
.section-speaker-content-block .left-col .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.section-speaker-content-block .left-col .logos .logo-image {
  position: relative;
  margin-right: 10px;
}
.section-speaker-content-block .left-col .logos .logo-image img {
  max-width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section-speaker-content-block .left-col .logos .whole-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-speaker-content-block .left-col .events-part {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 18px;
}
.section-speaker-content-block .left-col .time {
  font-weight: 500;
  font-size: 13.45px;
  line-height: 16px;
  color: var(--darkblue);
  margin-bottom: 18px;
}
.section-speaker-content-block .right-col .content {
  padding-left: 38px;
}
.section-speaker-content-block .right-col .title {
  font-weight: 600;
  font-size: 18.19px;
  line-height: 22px;
  color: var(--darkblue);
  text-transform: capitalize;
  margin-bottom: 17px;
}
.section-speaker-content-block .right-col .text {
  font-size: 16px;
  line-height: 22px;
  color: var(--darkblue);
  margin-bottom: 47px;
}

/* section-speaker-content */

/* section-event-information */

.section-event-information {
  padding: 52px 0 74px 0;
}
.section-event-information .speaker-wrap,
.section-event-information .moderator-wrap {
  margin-bottom: 22px;
}
.section-event-information .wrap .title,
.section-event-information .sponsor .title {
  font-weight: 600;
  font-size: 18.19px;
  line-height: 22px;
  color: #1a315a;
  margin-bottom: 23px;
}

.section-event-information .wrap .image-cont {
  display: flex;
  margin-bottom: 11px;
  align-items: center;
  position: relative;
}
.section-event-information .wrap .image-cont .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.section-event-information .wrap .image-cont .image {
  margin-right: 17px;
}
.section-event-information .wrap .image-cont .image img {
  width: 89px;
  height: 91px;
}
.section-event-information .wrap .text-wrap .name {
  font-weight: 500;
  font-size: 15.26px;
  line-height: 18px;
  color: #1b4a78;
  margin-bottom: 4px;
}
.section-event-information .wrap .text-wrap .cname {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1b4a78;
}
.section-event-information .wrap .text-wrap .post {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #3598db;
  margin-bottom: 8px;
}
.section-event-information .sponsor {
  font-weight: 600;
  font-size: 18.19px;
  line-height: 22px;
  color: #1a315a;
}
.section-event-information .top-part {
  display: flex;
  margin: auto;
  display: inline-flex;
  margin-bottom: 34px;
}
.section-event-information .top-part .date,
.calendor {
  /* display: flex; */
  display: inline;
}
.section-event-information .top-part img {
  margin-right: 10px;
}
.section-event-information .top-part .text {
  font-weight: 500;
}
.section-event-information .top-part .location {
  margin-right: 24px;
}
.section-event-information.top-part p {
  margin-top: revert;
}
.section-event-information .right-col .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 17px;
  color: var(--darkblue);
}
.section-event-information .right-col .text {
  font-size: 16px;
  line-height: 22px;
  color: var(--darkblue);
}

.section-event-information .right-col .content {
  padding-left: 38px;
}
.section-event-information .right-col .button {
  margin-top: 34px;
}
.section-event-information .right-col .button .btn-primary {
  color: var(--darkblue);
}
.section-event-information .right-col .button .btn-primary:hover {
  color: var(--white);
}
.section-event-information .sponsor .logo-image {
  position: relative;
  margin-right: 10px;
}
.section-event-information .sponsor .logo-image img {
  max-width: 150px;
}
.section-event-information .sponsor .logo-image .whole-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* section-event-information */

/* section-google-add-block */

.section-google-add-block {
  padding: 30px 0;
  background-color: var(--soft-white);
}
.section-google-add-block.style-1 {
  background-color: var(--lightblue);
}
.section-google-add-block.style-2 {
  background-color: var(--bubblepurple);
}
.section-google-add-block.style-3 {
  background-color: var(--bubblegreen);
}
.section-google-add-block.style-4 {
  background-color: var(--bubbleorange);
}
.section-google-add-block.style-5 {
  background-color: var(--darkred);
}
.section-google-add-block.style-6 {
  background-color: var(--darkblue);
}
.section-google-add-block.style-7 {
  background-color: var(--white);
}
.section-google-add-block.style-8 {
  background-color: transparent;
}
.section-google-add-block .content {
  text-align: center;
}

/* section-google-add-block */

/* section-custom-wbd */

.section-custom-wbd.video-wbd {
  text-align: center;
}

.section-custom-wbd {
  padding: 50px 0;
}
.section-custom-wbd h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
  color: var(--darkblue);
  margin-bottom: 35px;
}
.section-custom-wbd h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: var(--darkblue);
  margin-bottom: 17px;
}
.section-custom-wbd h4,
.section-custom-wbd h5,
.section-custom-wbd h6 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--darkblue);
  margin-bottom: 19px;
}
.section-custom-wbd p {
  color: var(--darkblue);
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
}
.section-custom-wbd ul,
.section-custom-wbd ol {
  color: var(--darkblue);
  padding-left: 20px;
  margin-bottom: 30px;
}
.section-custom-wbd li::marker {
  color: var(--lightblue);
  font-weight: 600;
}
.section-custom-wbd li {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 17px;
  padding-left: 22px;
}
.section-custom-wbd a {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: var(--lightblue);
}
.section-custom-wbd .wp-element-caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(27, 74, 120, 0.5);
  text-align: center;
}

/* section-custom-wbd */

@media only screen and (min-width: 1920px) {
  /*     .container{
        max-width: calc(1700px + var(--bs-gutter-x, .75rem)*2);
    } */
  /*     .container.large{
        max-width: calc(1700px + var(--bs-gutter-x, .75rem)*2);
    } */

  /* sticky-button */

  .sticky-button {
    top: 146px;
  }

  /* sticky-button */

  .section-featured-slider-block .inner-container {
    padding-left: 407px;
  }

  .section-faq-block .accordion {
    max-width: unset;
  }

  /* section-speakers-list-block */
  .section-speakers-list-block .speakers .item .image {
    height: 380px;
  }
  .section-speakers-list-block .speakers {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-speakers-list-block .speakers--kol .item .image {
    height: 248px;
  }
  .section-speakers-list-block .speakers--kol {
    grid-template-columns: repeat(5, 1fr);
  }
  /* section-speakers-list-block */

  /* section-resources-block */
  .section-resources-block .resource-list .item .image {
    height: 260px;
  }
  /* section-resources-block */

  /* section-agenda-list */
  .section-agenda-list .container {
    /*         max-width: calc(1107px + var(--bs-gutter-x, .75rem)*2); */
  }
  /* section-agenda-list */
}

/* Hero Background Video */

.hero-background-video-wrapper {
  height: 910px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: auto;
}

.hero-background-video-wrapper-inner {
  transform: translateY(-38.2776%);
  padding-bottom: 240%;
  position: relative;
}

.hero-background-video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Buttons Wrapper */

.buttons-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

@media only screen and (max-width: 993px) {
}

@media only screen and (max-width: 500px) {
  .buttons-wrapper {
    flex-direction: column;
  }
}

/* Buttons - Theme Style */

.wp-block-button.is-style-theme > .wp-element-button {
  color: var(--darkblue);
  font-weight: 500;
  font-size: 15.59px;
  line-height: 18px;
  border: 2px solid var(--lightblue);
  background-color: transparent;
  padding: 1.13rem 2rem;
  border-radius: 0;
  transition: 0.3s all;
  margin: 5px 0;
}

.wp-block-button.is-style-theme > .wp-element-button:hover,
.wp-block-button.is-style-theme > .wp-element-button:focus {
  padding-right: 2.3rem;
  background-color: var(--lightblue);
  border: 2px solid var(--lightblue);
  color: var(--white);
}

/* Simply Gallery */
.section-custom-wbd
  .pgcsimplygalleryblock-grid-collection
  .pgcsimplygalleryblock-grid-content,
.pgcsimplygalleryblock-grid-collection .pgcsimplygalleryblock-grid-content {
  padding: 0 !important;
}

.section-custom-wbd .pgc-sgb-cb.wp-block-pgcsimplygalleryblock-grid,
.pgc-sgb-cb.wp-block-pgcsimplygalleryblock-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.section-custom-wbd div[data-gallery-id] .pgcsimplygalleryblock-grid-main-wrap,
div[data-gallery-id] .pgcsimplygalleryblock-grid-main-wrap {
  padding: 12px;
}

/* Tabs Block */
.wp-block-atbs-tabs {
  border: none !important;
}

.section-custom-wbd .atbs__tab-labels,
.atbs__tab-labels {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  column-gap: 33px;
}

.section-custom-wbd .atbs__tab-label,
.atbs__tab-label {
  border-bottom: none;
  border-right: none !important;
  font-size: 18px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-decoration: none;
  padding-left: 0 !important;
  padding-bottom: 15px !important;
}

.section-custom-wbd .atbs__tab-label[aria-selected="true"],
.atbs__tab-label[aria-selected="true"],
.wp-block-atbs-tabs
  .atbs__tab-labels
  .atbs__tab-label:last-child[aria-selected="true"],
.section-custom-wbd
  .wp-block-atbs-tabs
  .atbs__tab-labels
  .atbs__tab-label:last-child[aria-selected="true"] {
  color: var(--darkblue) !important;
  border-bottom: 3px solid var(--lightblue) !important;
}

.section-custom-wbd .atbs__tab-content,
.atbs__tab-content {
  padding: 40px 0 0 !important;
}

@media screen and (min-width: 768px) {
  .section-custom-wbd .atbs__tab-labels,
  .atbs__tab-labels {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    column-gap: 33px;
  }
}

@media screen and (max-width: 767px) {
  .section-custom-wbd .atbs__tab-label,
  .atbs__tab-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  }
}

/* Search Form */
#dialog-search {
  border: none;
  pointer-events: none;
}

#dialog-search,
#dialog-search:modal {
  justify-content: center;
  align-items: center;
  border: none;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
}

#dialog-search[open],
#dialog-search[open]:modal {
  display: flex;
  pointer-events: inherit;
  animation: fadeInDialog 0.2s ease normal;
}

@keyframes fadeInDialog {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

form#searchform,
#dialog-search form {
  display: flex;
  gap: 20px;
}

#dialog-search form .form-control {
  min-width: 0;
  font-size: 1rem;
}

#dialog-search form #searchsubmit {
  background-color: var(--lightblue);
  border-radius: 4px;
}

#dialog-search #dialog-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1rem;
  background: none;
  color: var(--white);
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
}

#dialog-search #dialog-close:focus {
  outline: 1px solid var(--white);
  outline-offset: 0.5rem;
}

#dialog-search form #searchsubmit .fa.fa-search {
  margin: 0;
}

.bg-search {
  background-color: var(--elephant);
}

.container-search-results {
  padding-top: 108px;
  padding-bottom: 2rem;
}

.search-result + .search-result {
  margin-top: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}

.search-result-header {
  font-size: 20px;
}

@media screen and (min-width: 640px) {
  #dialog-search form .form-control {
    font-size: 2rem;
    min-width: 600px;
    padding: 1rem 2rem;
  }

  #dialog-search form #searchsubmit {
    font-size: 3rem;
  }

  #dialog-search #dialog-close {
    font-size: 2rem;
  }

  .bg-search {
    min-height: 180px;
    margin-bottom: 2rem;
  }

  .container-search-results {
    padding-top: 0;
  }
}

/* Accordion Block */
.section-accordion-block {
  padding: 1.5rem 0;
}

.section-accordion-block.vertical-padding {
  padding: 105px 0 177px 0;
}

.accordion-block {
  display: grid;
  gap: 1rem;
}

.accordion__content {
  display: none;
  padding: 10px 16px;
}

.accordion__heading {
  margin-bottom: 0;
}

.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-bottom: 3px solid #aaabac;
  text-align: left;
  background-color: transparent;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.accordion__trigger__arrow {
  fill: var(--darkblue);
  flex-shrink: 0;
  flex-grow: 0;
  width: 30px;
  height: auto;
  transition: transform 0.2s linear;
}

.accordion__trigger[aria-expanded="true"] .accordion__trigger__arrow {
  transform: rotate(180deg);
}

.accordion__content {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .section-accordion-block.vertical-padding {
    padding: 80px 0 90px 0;
  }
  .accordion__trigger {
    font-size: 1.15rem;
  }
}
