/*===========================================================
 Common CSS
============================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 17px;
    font-family: 'Lato', serif;
    font-size: var(--bodyMedium);
    line-height: 1.7;
    font-weight: 400;
    color: var(--black);
    letter-spacing: normal;

    overflow-x: hidden !important;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
ol {
  padding-left: 20px;
}

li,
a,
.btn,
button {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}
a {
    color: currentColor; /*this makes sure that the link always has context color.*/
    text-decoration: none;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
    /*  this allows us to set the link border bottom in content, to show that it is clickable. But in buttons it should not apply, so we may need to overwrite this in buttons if needed*/
}

a:hover,
button:hover,

a:focus,
button:focus,

a:active,
button:active {
    text-decoration: none !important;
    outline: 2px dotted currentColor !important;
}
*:active,
*:focus {
    outline: none;
    border: 0;
}

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

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

#npreOverlay {
    background: var(--preloaderBg);
}

.row {
    --gutter-x: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.col-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 40px;
}
/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--gray);
    font-size: var(--bodySmall);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.3904px;
}

:-moz-placeholder {
    color: var(--gray);
    font-size: var(--bodySmall);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.3904px;
}

::-moz-placeholder {
    color: var(--gray);
    font-size: var(--bodySmall);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.3904px;
}

:-ms-input-placeholder {
    color: var(--gray);
    font-size: var(--bodySmall);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.3904px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--body);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray);
    border-top: 3px solid var(--blue);
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: var(--gray);
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--blue);
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: var(--black);
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--blue);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--gray);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/*===========================================================
 Header
===========================================================*/
.header-area {
    background-color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;

    height: 100px;

    border-bottom: 1px solid #eee;
}
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

body.admin-bar .header-area {
  top: 32px;
}

.header-area ~ section.after-header {
  margin-top: 100px;
}

.header-area ~ #content.after-header {
  padding-top: 100px;
}

.header-area ~ .after-header + .after-header {
  padding-top: 0 !important;
}

.nh-hamburger {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header > * {
    flex: 1;
}

.header > .header-logo {
    text-align: center;
}

.header > .header-btns {
    justify-content: flex-end;
}

.header-logo a {
    border: 0;
}

.header-logo img {
    width: 237px;
}

.nh-hamburger {
    font-family: 'Lexend', serif;

    font-size: var(--bodyBig);
    font-weight: 500;
    line-height: 1.4;
    color: var(--blue);
}
.header-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-search button {
    cursor: pointer;
}
.header-search form button {
  display: none !important;
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search-input-holder {
  position: absolute;
  right: 30px;

  overflow: hidden;
  transition: width 0.3s ease, opacity 0.3s ease;
  width: 0;
  opacity: 0;
}

.header-search.active .search-input-holder {
  width: 200px; /* Adjust as needed */
  opacity: 1;
}

.search-text {
  width: 100%;
  padding: 10px;
  height: 40px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  outline: none;
}

.header .search-text {
  border-radius: 100px 0 0 100px;
  border-right: 0;
}

.search-text,
.search-text::placeholder {
  font-size: 1rem;
}

.search-btn,
.search-btn-inner {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  transition: border-radius 0.3s ease;
}

.header-search.active .search-btn {
  border-radius: 0 100px 100px 0;
}

ul.language-switcher {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

ul.language-switcher li {
  float: left;
  margin-right: 15px;
}

ul.language-switcher li:last-of-type {
  margin-right: 0;
}

ul.language-switcher li a {
    cursor: pointer;
    font-size: var(--body);
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--black);
}
@media only screen and (min-width: 992px) {
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        background-color: rgba(0, 0, 0, 0.25);
        opacity: 0;
        visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
            visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    }
    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/**
 * Modal
 */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    /* background-color: var(--white); */
    max-width: 400px;
    width: 100%;
    /* min-height: 100px; */
    padding: 1rem;
    border-radius: 3px;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateY(0px);
    transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    top: 0;
}
.modal .close-modal {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 15px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
        transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;
}
.close-modal {
    border: none !important;
}
.modal .close-modal i {
    width: auto;
    height: auto;
    color: var(--white);
    color: var(--blue);
}
.modal .modal-content {
    margin-top: 30px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;
    padding: 10px;
    background: var(--white);
}
.modal.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(55px);
}
.modal.active .modal-content {
    opacity: 1;
    max-width: 100%;
    width: 100%;
}
.modal.active .close-modal {
    transform: translateY(10px);
    opacity: 1;
}

/**
 * Mobile styling
 */

@media only screen and (max-width: 991px) {
    .modal {
        display: none;
        /* position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        transform: scale(1.1);
        padding: 0 !important; */
    }

    .close-modal {
        right: 20px !important;
    }
}

@media (max-width: 1500px) and (orientation: portrait) {
	/* Content wrapper for posts and pages */
	.wb_content_wrapper {
		padding: 0 .5rem!important;
		margin-top: 1rem;
	}

	/* Download links */
	.wb_download_block_kurz {
		max-width: 100%!important;
	}

	/* Anmeldung Form */
	.wb-custom-form {
		padding: 0!important;
	}

	/* Header feature image */
	.featured-header {
		height: 10rem!important;
	}

	/* Partner cards */
	.partner-description {
		margin-left: 0!important;
	}
}
.modal-content input {
    width: 100%;
    border: 1px solid var(--gray);
    padding: 10px;
}

.banner-area {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner-image {
    position: relative;
    width: 100%;
}

.banner-image img {
    width: 100%;
    display: block;
}
.banner-area:before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    z-index: 1;
    background: linear-gradient(to right, rgba(37, 37, 37, 0.6) 0%, rgba(37, 37, 37, 0.4) 60%, rgba(37, 37, 37, 0) 100%);
    pointer-events: none;
}
.banner-area.no-content:before {
    content: none !important;
}
.banner-area .container {
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    z-index: 2;
}
.banner-inner {
    position: relative;
}
.banner-text {
    max-width: 700px;
    width: 100%;
}
.banner-text h1 {
    color: var(--white);
    margin-bottom: 15px;
}
.banner-text p {
    color: var(--white);
    margin-bottom: 20px;
}
.banner-text .buttons-holder a {
    margin-right: 10px;
    margin-bottom: 10px;
}

body.has-mobile-thumbnail .banner-area .banner-image > img {
    display: block;
}

.banner-area .banner-image .mobile-banner-image {
  display: none;

  height: 100%;
}

.banner-social {
    background-color: var(--whitegray);
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 1000;
    padding: 25px 5px 26px 15px;
    border-radius: 70px 0 0 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: translateX(100px);
}
.banner-social.active {
    transform: translateX(0);
    transition: 0.5s;
    opacity: 1;
    visibility: visible;
}
.banner-social a {
    display: block;
    text-decoration: none;
    border: 0;
}
.banner-social a i {
    font-size: var(--md2);
    color: var(--blue);
}

/*===========================================================
 Css
===========================================================*/
.info-area {
    padding: 150px 0;
}
.info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}
.info-title h2 {
    margin: 0;
    color: var(--black);
}
.info-title a {
    color: var(--blue);
    text-decoration: none;
    border: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: var(--body);
    font-weight: bold;
}

.info-title a:hover {
    border: 0;
    text-decoration: none;
}
.info-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-card,
.vc_video-aspect-ratio-916 {
    position: relative;
    display: block;
}
.info-card img {
  width: 100%;
  display: block;
}
.info-card:hover .info-text h4 {
    background-color: var(--blue);
    transition: 0.3s;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(21, 103, 179, 0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
    border-radius: 10px 10px 0 0;
}

.info-card .wb-image-and-content-holder {
    position: relative;
}

.info-card:hover .img-overlay {
    height: 100%;
}

.text {
    position: absolute;
    padding: 35px 30px;
    color: var(--white);
    font-weight: bold;
    font-size: var(--body);
    font-weight: normal;
    line-height: 1.6;
    color: var(--white);

    height: 100%;
}
.text span {
    font-weight: 300;
}
.text * {
	color: var(--white) !important;
}

/* ignore the code below */

.link-area {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 40px;
    background: tomato;
}
.link-area a {
    text-decoration: none;
    color: var(--white);
    font-size: 25px;
}
.info-card,
.vc_video-aspect-ratio-916 {
  border-radius: 10px;
  overflow: hidden !important;
}

.vc_video-aspect-ratio-916 iframe {
  border-radius: 10px 10px 0 0;
  overflow: hidden !important;
}

.wpb_video_widget.vc_video-aspect-ratio-916 .wpb_video_wrapper {
  padding: 0 !important;
  aspect-ratio: 9/16 !important;
}

.brlbs-cmpnt-cb-youtube .brlbs-cmpnt-cb-btn {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

.info-img {
    display: flex;
    position: relative;
}
.info-text,
.vc_video-aspect-ratio-916 .wpb_video_heading {
    position: relative;
    width: 100%;
    z-index: 1;

    padding: 20px 30px;
    background-color: var(--blue);
}
.info-text h3,
.vc_video-aspect-ratio-916 .wpb_video_heading h3 {
    line-height: 1.36;
    color: var(--white);
    margin: 0;
}
.register-inner {
    border-radius: 15px;
    background-image: linear-gradient(to right, var(--gradientblue) 0%, var(--blue));
    padding: 100px 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}
.register-inner a {
    position: relative;
    z-index: 10;
}
.register-inner h2 {
    font-family: 'Lexend', serif;
    font-size: var(--h1);
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 10;
}
.register-inner .button-holders {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.register-inner .button-holders {
  width: fit-content;
}
.reg-img {
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
}
.reg-img img {
    height: 100%;
    width: auto;
    display: block;
}
.event-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
}
.event-inner p {
    max-width: 700px;
    margin: 0;
    color: var(--black);
}
.event-inner h2 {
    margin: 0;
    color: var(--black);
}
.press-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.press-inner > .press-card {
  flex: 1;
}

.press-text {
    padding: 30px 20px;
    border-radius: 10px;
    height: 100%;

    background-color: var(--whitegray);
}
.press-text h6 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.press-text h6:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    background-color: var(--blue);
    bottom: 0;
}
.press-text p {
    max-width: 357px;
}
.body-small {
    font-size: var(--bodySmall);
    font-weight: bold;
    line-height: 1.29;
    color: var(--black);
}
.body-medium {
    font-size: var(--bodyMedium);
    font-weight: bold;
    line-height: 1.44;
    color: var(--blue);
}
.register-inner .vc_general.vc_btn3.vc_btn3-color-grey {
    background: transparent !important;
    border: 1px solid var(--white) !important;
    border-radius: 5px !important;
}
.register-inner .vc_general.vc_btn3.vc_btn3-color-grey:hover {
    color: var(--blue) !important;
    background: var(--white) !important;
}
/* ==================Video============= */
.video-area {
    position: relative;
}

.video-img img {
    width: 100%;
}
.our-member-area {
    padding: 150px 0;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* ====================Footer ARea=============== */

.footer-area {
    position: relative;
    padding-top: 100px;
}
.footer-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 54px;
    background-color: var(--blue);
    left: 0;
    top: 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 45px;
}
.footer-card {
    max-width: calc(25% - 30px);
    width: 100%;
}
.footer-card ul {
    padding: 0;
}
.footer-card .footer-logo img {
	width: 95%;
}
.footer-logo a {
    border: 0;
    display: flex;
}
.footer-bttm {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: var(--bodySmall);
    font-weight: normal;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Lexend', serif;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 20px;
}
.footer-bttm p {
    margin: 0;
}
.footer-bttm div {
    display: flex;
    gap: 10px;
}
.footer-bttm a {
    text-decoration: none;
    border: 0;
}
.footer-text {
    margin: 10px 0;
}
.footer-text p {
    font-family: 'Lexend', serif;
    font-size: var(--body);
    line-height: 1.38;
    color: rgba(0, 0, 0, 0.7);
}
.footer-address {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-address i {
    font-size: var(--md2);
}
.footer-address a,
.footer-address address {
    font-family: 'Lexend', serif;
    font-size: var(--body);
    line-height: 1.38;
    color: rgba(0, 0, 0, 0.7);
    font-style: normal;
    display: block;
    border: 0;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.social-icon {
    display: flex;
    gap: 30px;
}
.social-icon a {
    color: var(--blue);
    border: 0;
}
.footer-card h2 {
    font-size: var(--bodyBig);
    font-weight: 600;
    color: var(--blue);
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 12px;
}
.footer-card h2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    bottom: 0;
}
.footer-card ul {
    margin: 0 !important;
}
.footer-card ul li {
    list-style: none;
    margin: 0 !important;
    margin-top: 5px !important;
}
.footer-card ul li a {
    font-size: var(--body);
    font-weight: normal;
    color: var(--black);
    border: 0;
    opacity: 0.7;
}
.footer-card a {
    display: block;
    position: relative;
}
.footer-card .menu-toggle {
    position: absolute;
    right: 0;
}
.footer-card .menu-item-has-children ul {
    display: none;
    padding-left: 10px;
}
.menu-toggle.active i {
    transform: rotate(180deg);
    transition: 0.5s;
}
.footer-card .mt-45 {
    margin-top: 45px;
}
/*===========================================================
 Responsive Menu
===========================================================*/
@media (max-width: 1400px) {
  .container {
    padding: 0 25px;
  }
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    body.has-mobile-thumbnail .banner-area .banner-image > img {
        display: none;
    }

    .banner-area .banner-image .mobile-banner-image {
      display: block;
    }

    .banner-area .banner-image .mobile-banner-image img {
      object-position: center;
    }

    #main {
        padding-top: 0;
    }

    body.admin-bar .header-area {
        top: 46px;
    }

    .mobile-logo a {
        border: none !important;
    }
    .mobile-logo {
        width: 250px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px var(--whitegray);
        padding: 0 15px;
    }
}

/*===========================================================
 Responsive
============================================================*/
@media (max-width: 1399px) {
    .info-text h3 {
        padding: 10px 30px;
    }
    .press-card {
        max-width: calc(33.33% - 10px);
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .event-inner h2 {
        max-width: 350px;
        width: 100%;
    }
    .event-inner p {
        max-width: calc(100% - 350px);
        width: 100%;
    }
}

@media (max-width: 991px) {
    :root {
        --h1: 40px;
        --h1Small: 36px;
        --md: 28px;
        --md2: 22px;
        --bodyBig: 20px;
        --bodyMedium: 18px;
        --body: 16px;
        --bodySmall: 14px;
    }

    .btn-hamburger {
        position: relative;
        top: 0;
    }
    .info-inner {
        gap: 15px 0;
    }
    .play-btn {
        width: 100px;
    }
    .event-inner h2 {
        max-width: 280px;
        width: 100%;
    }
    .event-inner p {
        max-width: calc(100% - 280px);
        width: 100%;
    }
    .register-inner {
        padding: 100px 25px;
    }
    .footer-card {
        max-width: calc(50% - 5px);
        width: 100%;
        margin-bottom: 25px;
    }
    .footer-inner {
        padding-bottom: 20px;
    }
    .footer-bttm {
        flex-direction: column;
        align-items: flex-start;
    }

    .press-inner > .press-card {
        flex: 1 1 100%;
    }

    .header-area {
        display: flex;
        align-items: center;
    }

    .header > .header-btns {
      display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --h1: 38px;
        --h1Small: 35px;
        --md: 27px;
        --md2: 22px;
        --bodyBig: 20px;
        --bodyMedium: 18px;
        --body: 16px;
        --bodySmall: 14px;
    }
    .info-inner {
        gap: 20px 0;
    }
    .info-text h3 {
        padding: 5px 30px;
    }
    .event-inner h2 {
        max-width: 230px;
        width: 100%;
    }
    .event-inner p {
        max-width: calc(100% - 230px);
        width: 100%;
    }
    .register-inner {
        flex-direction: column;
    }
    .register-inner {
        padding: 48px 25px;
    }

    .press-inner {
        gap: 10px 0;
    }
    .press-card {
        max-width: calc(50% - 5px);
        width: 100%;
    }
    .footer-card {
        max-width: 100%;
        width: 100%;
    }
    .footer-inner {
        flex-direction: column;
        gap: 25px 0;
    }
    .info-area {
        padding: 100px 0;
    }
    .our-member-area {
        padding: 100px 0;
    }
}

@media (max-width: 575px) {
    :root {
        --h1: 38px;
        --h1Small: 35px;
        --md: 27px;
        --md2: 20px;
        --bodyBig: 20px;
        --bodyMedium: 18px;
        --body: 16px;
        --bodySmall: 14px;
    }
    .event-inner {
        flex-direction: column;
    }
    .event-inner {
        gap: 15px 0;
    }
    .event-inner h2 {
        max-width: 100%;
        width: 100%;
    }
    .event-inner p {
        max-width: 100%;
        width: 100%;
    }
    .press-card {
        max-width: 100%;
        width: 100%;
    }
    .info-card {
        max-width: 100%;
        width: 100%;
    }
    .info-text h3 {
        padding: 15px 30px;
    }
    .play-btn {
        width: 70px;
    }
    .info-area {
        padding: 60px 0;
    }
    .our-member-area {
        padding: 60px 0;
    }
    .info-text h3 {
        padding: 10px 30px;
    }
    .register-inner {
        gap: 40px;
    }
}

@media (max-width: 400px) {
    :root {
        --h1: 32px;
        --h1Small: 35px;
        --md: 27px;
        --md2: 20px;
        --bodyBig: 20px;
        --bodyMedium: 18px;
        --body: 16px;
        --bodySmall: 14px;
    }
}
