/*===========================================================
 Custom Variable
============================================================*/
:root
{
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --header-height: 0;
    /*  */
    --white: #fff;
    --black: #000;
    --blau: #0480ca;
    --yellow: #f8c03a;
    --green: #129664;

    --xl: 45px;
    --lg: 30px;
    --md2: 24px;
    --md: 21px;
    --sm2: 18px;
    --sm: 16px;
    --xs: 14px;
    /* padding */
    --sectionPadding: 100px;
}

/*===========================================================
 Common CSS
============================================================*/

body
{
    font-family: "Lato", sans-serif;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;
}

*
{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul
{
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover
{
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover
{
    text-decoration: none !important;
}

a:hover,
a:focus,
a:active,

button:hover,
button:focus,
button:active {
    transition: all 0.3s ease;
    outline: 2px dotted currentColor !important;
}

*:active,
*:focus
{
    outline: none;
    border: 0;
}

img
{
    max-width: 100%;
    width: 100%;
    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;
} */
h2
{
    font-size: var(--lg);
    font-weight: 600;
}

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

.row
{
    --gutter-x: 30px;
    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: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.col-12
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.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: 1320px;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder
{
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder
{
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder
{
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder
{
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 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
{
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--sm);
    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 #f3f3f3;
    border-top: 3px solid #58b8cb;
    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
    {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

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

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

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

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-top-area
{
    padding: 10px 0;
    border-bottom: 1px dashed var(--green);
}

.header-top-area .bttn {
	line-height: 1 !important;
}

.header-area
{
    padding: 25px 0;
}

.header
{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area ul ul {
  box-shadow: 0px 0px 2px 0px var(--green);
  padding: 0;
}

.header-area ul ul a {
  text-transform: none !important;
}

.menu-left
{}

.menu-left span
{
    font-size: var(--md2);
    font-weight: 600;
    line-height: 1;
    color: var(--yellow);
}

.menu-left a
{
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
}

.menu-nav
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu ul
{
    margin: 0;
}

.menu ul li
{
    list-style: none;
    display: inline-block;
    margin: 0 !important;

    position: relative;
}

.menu ul li a
{
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    color: #000;
    font-size: var(--sm);
    font-weight: normal;
    text-transform: uppercase;
}

.menu ul li a:hover
{
    color: var(--green);
}

.contact
{
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black) !important;
    width: 110px;
    height: 42px;
    padding: 10px 17px;
    background-color: var(--yellow);
    border: 2px solid transparent;
}

.contact:hover
{
    border: 2px solid var(--yellow);
    background: var(--white);
}

.dropdown-menu
{
    margin: 0 !important;
    position: absolute;
    left: -0.7rem;
    z-index: 1000;
    display: none;
    min-width: 240px;
    padding: 0.5rem 0;
    font-size: 1rem;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    background: var(--white);
}

.header-top
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header-top .logo img {
    width: 265px;
}

.header-right
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.search_form
{
    width: 335px;
    position: relative;
}

.search_form input
{
    width: 100%;
    height: 38px;
    padding: 8px 20px;
    border-radius: 30px;
    border: dashed 1px var(--green);
    font-size: var(--sm2);
    font-weight: normal;
    color: var(--green);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 45px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration
{
    display: none;
}

.search_form i
{
    position: absolute;
    font-size: var(--md);
    color: var(--green);
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search_form ::-webkit-input-placeholder
{
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.5;
    color: var(--green);
}

.search_form ::-moz-placeholder
{
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.5;
    color: var(--green);
}

.search_form :-ms-input-placeholder
{
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.5;
    color: var(--green);
}

.search_form :-moz-placeholder
{
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.5;
    color: var(--green);
}

/* =================Search============ */

/*===========================================================
 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(--green);
}

.btn-hamburger
{
    cursor: pointer;
}

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

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

.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 .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover
{
    cursor: pointer;
}

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

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

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

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

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

.hamburger .line
{
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--green);
    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);
    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);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

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

.menu ul li .dropdown-menu li a
{
    padding: 8px 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: currentColor;
}

.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;
}

.row-reverse
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.padding-150
{
    padding: 150px 0;
}

.title h3
{
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.27;
    color: var(--black);
}

/*===========================================================
Banner Area
===========================================================*/
.banner-area
{
    background-color: var(--yellow);
    padding: 50px 0;
    position: relative;
}

.banner-card div
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner-slider .slick-track {
    display: flex;
    align-items: center;
}

.banner-img
{
    max-width: 430px;
    width: 100%;
}

.banner-img img {
	border-radius: 15%;
}

.banner-text
{
    max-width: calc(100% - 500px);
    width: 100%;
}

.banner-text h3
{
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.27;
    color: var(--black);
}

.slick-dots
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px 0;
    margin: 0 !important;
}

.slick-dots li
{
    width: 9px;
    height: 37px;
    margin: 0 !important;
}

.slick-dots li button:before
{
    content: "";
    width: 9px;
    height: 37px;
    border-radius: 15px;
    opacity: 1;
}

.slick-dots li button
{
    width: 9px;
    height: 37px;
    background: var(--white);
    border-radius: 15px;
}

.slick-active button
{
    background: var(--green) !important;
}

/* Progress Bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--green);
    transition: width linear;
}

/* Custom Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    z-index: 10;

    text-align: center;

    width: 30px;
    height: 40px;
}

.slick-arrow:before {
    content: none;
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/*===========================================================
Content Area
===========================================================*/

.contact-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

.contact-left
{
    max-width: 510px;
    width: 100%;
}

.contact-right
{
    max-width: calc(100% - 530px);
    width: 100%;
    background-color: var(--green);
    border-radius: 0 250px 250px 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-right-inner
{
    max-width: 540px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-card
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px dashed var(--white);
}

.contact-card:first-child
{
    border-top: 0;
}

.contact-card i
{
    color: var(--white);
    font-size: var(--xl);
    width: 45px;
}

.contact-card h4
{
    font-size: var(--sm2);
    font-weight: 900;
    line-height: 1.44;
    color: var(--white);
    margin: 0;
}

.contact-card a,
.contact-card p
{
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.44;
    color: var(--white);
    text-decoration: none;
    margin: 0;
}

.contact-left form
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
}

.single-form
{}

.textarea textarea,
.single-form input
{
    width: 100% !important;
    height: 42px !important;
    border-radius: 30px !important;
    border: dashed 1px var(--green) !important;
    padding: 0 20px !important;
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
}

.textarea textarea
{
    resize: none !important;
    height: 127px !important;
    padding: 10px 20px !important;
}

.contact-left ::-webkit-input-placeholder
{
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
}

.contact-left ::-moz-placeholder
{
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
}

.contact-left :-ms-input-placeholder
{
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
}

.contact-left :-moz-placeholder
{
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
}

.contact-left button
{
    width: 129px !important;
    padding: 0 !important;
    cursor: pointer !important;
    -webkit-transition: 0.3s !important;
    -o-transition: 0.3s !important;
    transition: 0.3s !important;
}

.form-group
{
    display: block !important;
}

.form-group input
{
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label a,
.form-group label
{
    position: relative !important;
    cursor: pointer !important;
    font-size: var(--xs) !important;
    font-weight: normal !important;
    line-height: 1.71 !important;
    color: var(--green) !important;
}

.form-group label:before
{
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 17px;
    height: 17px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-radius: 5px;
    border: solid 1px var(--green);
}

.form-group input:checked + label:after
{
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--green);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*===========================================================
Content Area
===========================================================*/
.content-area
{}

.content
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 130px 0;
}

.content-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.content-img,
.content-text
{
    max-width: calc(50% - 20px);
    width: 100%;
}

.content-text h4
{
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.27;
    color: var(--black);
}

.content-text p a,
.content-text p
{
    margin: 0;
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin-top: 10px;
}

/*===========================================================
Committed Area
===========================================================*/

.committed-area
{
    background-color: var(--yellow);
}

.committed-title h3
{
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.27;
    color: var(--black);
}

.committed-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.committed-inner div
{
    max-width: calc(50% - 30px);
    width: 100%;
}

.committed-inner div p
{
    margin: 0;
}

/*===========================================================
News Area
===========================================================*/
.news-area
{
    background-color: var(--yellow);
}

.news-title
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 30px;
}

.news-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-title h3
{
    margin: 0;
}

.news-img
{
    position: relative;
    max-width: 130px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-img:before
{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(29, 29, 29, 0.5);
}

.news-img span
{
    position: absolute;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--white);
    left: 10px;
    top: 10px;
    display: inline-block;
    width: 33px;
}

.news-text
{
    max-width: calc(100% - 130px);
    width: 100%;
    background-color: var(--white);
    border-radius: 0 150px 160px 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-text div
{
    width: 200px;
    padding-left: 30px;
}

.news-card
{
    max-width: calc(33% - 8px);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-text p
{
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--black);
}

.news-text a
{
    font-size: var(--xs);
    font-weight: 900;
    line-height: 1.57;
    color: var(--green);
    text-decoration: none;
}

/*===========================================================
Partner Area
===========================================================*/
.partner-area
{}

.partner-title
{
    margin-bottom: 30px;
}

.partner-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.partner-inner a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*===========================================================
Footer Area
===========================================================*/
.footer-area
{
    background-color: var(--green);
}

.footer-inner
{
    padding: 70px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-left
{
    max-width: 510px;
    width: 100%;
}

.footer-logo a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    text-decoration: none;
    align-items: center;
}

.footer-logo img {
    width: 340px;
}

.footer-logo span
{
    font-size: var(--md2);
    font-weight: bold;
    line-height: 1.4;
    color: var(--white);
    text-transform: none;
}

.footer-left p
{
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-bttm-area
{
    border-top: 1px dashed #fff;
    padding: 20px 0;
    background-color: var(--green);
}

.footer-bttm
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.footer-bttm p
{
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--white);
    margin: 0;
}

.footer-bttm div
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px;
}

.footer-bttm a
{
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--white);
    text-decoration: none;
}

.footer-bttm a:hover
{
    color: var(--yellow);
}

.footer-right .bundesministerium-logo img {
	display: block;
	max-width: 100%;
    width: 450px;
}

.social a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
}

.social
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px 0;
}

.social i
{
    color: var(--white);
    font-size: var(--sm2);
}

.social i:hover
{
    color: var(--yellow);
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px)
{}

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

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

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

@media (max-width: 991px)
{
	.dropdown-menu {
		display: block !important;
	}

    #main
    {
        padding-top: 0;
    }

    .header-area
    {
        display: none;
    }

    .mobile-logo
    {
        width: 140px;
    }

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

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

    .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 a
    {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .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: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: var(--white);
        -webkit-box-shadow: 0px 1px 3px #eee;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
Containers
============================================================*/

@media (min-width: 576px)
{
    .container
    {
        max-width: 540px;
    }
}

@media (min-width: 768px)
{
    .container
    {
        max-width: 720px;
    }
}

@media (min-width: 992px)
{
    .container
    {
        max-width: 960px;
    }
}

@media (min-width: 1200px)
{
    .container
    {
        max-width: 1140px;
    }
}

@media (min-width: 1400px)
{
    .container
    {
        max-width: 1240px !important;
    }
}

@media (max-width: 1399px)
{
    .menu-nav
    {
        gap: 20px;
    }
}

@media (max-width: 1199px)
{
    .banner-img
    {
        max-width: 350px;
        width: 100%;
    }

    .banner-text
    {
        max-width: calc(100% - 370px);
        width: 100%;
        padding: 0 15px;
    }

    .banner-text h3
    {
        font-size: 27px;
    }

    .menu ul li a
    {
        font-size: 14px;
        padding: 10px;
    }

    .menu ul li:hover > a,
    .menu ul li.current-page-ancestor > a,
    .menu ul li.current-menu-ancestor > a,
    .menu ul li.current-menu-parent > a,
    .menu ul li.current_page_parent > a,
    .menu ul li.current_page_ancestor > a,
    .menu ul li.current-menu-item > a,
    .menu ul li.current-menu-item > a,
    body.tribe_events-template-default .menu ul li.veranstaltungen > a,
    body.single-post .menu ul li.nachrichten > a {
      background-color: #fff;
    }

    .timeline-content {
      padding-left: 40px !important;
    }

    .menu-nav
    {
        gap: 15px;
    }

    .news-card
    {
        max-width: calc(50% - 8px);
    }

    .news-inner
    {
        gap: 30px 0;
    }

    .padding-150
    {
        padding: 120px 0;
    }

    .contact-left
    {
        max-width: 45%;
        width: 100%;
    }

    .contact-right
    {
        max-width: calc(55% - 20px);
    }

    .contact-card
    {
        gap: 25px;
    }

    .contact-right-inner
    {
        max-width: 430px;
    }

    .partner-inner a
    {
        padding: 0 40px;
    }

    .footer-right {
      margin-top: 20px;
    }

    .footer-bttm div ul {
      padding-left: 0;
    }

    .footer-bttm {
      align-items: flex-start;
    }

    h1 {
      font-size: var(--md2);
    }

    h2 {
      font-size: var(--md);
    }

    .maincontent .vc_row .vc_row + .vc_row {
      margin-top: 0;
    }

    .wb-map > .col-6:first-child {
      display: none;
    }

    .wb-map > .col-6 {
      width: 100%;
    }

    .wb-map-content-liste-einzeln {
      padding: 0 !important;
    }

    .wb-map-content-liste-einzeln:before {
      content: none !important;
    }

    .wpb_gallery {
      margin-left: -17.5px;
      margin-right: -17.5px;
    }

    .wpb_gallery .wpb_image_grid_ul {
      flex-direction: column !important;
      height: unset !important;
    }

    .wpb_gallery .wpb_image_grid_ul > li:not(:last-child) {
      margin-bottom: 40px;
    }
}

@media (max-width: 991px)
{
    .padding-150
    {
        padding: 100px 0;
    }

    .mobile-none
    {
        display: none;
    }

    .banner-text h3
    {
      font-size: 17px;
      text-align: left;
    }

    .banner-text a {
      text-align: left !important;
    }

    .banner-img
    {
        max-width: 300px;
        width: 100%;
    }

    .banner-text
    {
        max-width: calc(100% - 320px);
    }

    .content-inner
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px 0;
    }

    .content-img,
    .content-text
    {
        max-width: 100%;
        width: 100%;
    }

    .content
    {
        gap: 100px 0;
    }

    .contact-inner
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        gap: 50px 0;
    }

    .contact-left
    {
        max-width: 100%;
        width: 100%;
    }

    .contact-right
    {
        max-width: 100%;
    }

    .committed-inner div
    {
        max-width: 100%;
        width: 100%;
    }

    .committed-inner
    {
        gap: 15px 0;
    }

    .partner-inner a
    {
        padding: 0 30px;
    }

    .footer-logo span
    {
        font-size: 18px;
    }

    .header-right
    {
        width: 100%;
    }

    .search_form
    {
        width: 100%;
        position: relative;
    }

    .header-top-area
    {
        padding: 15px 0;
        border-top: 1px dashed var(--green);
        border-bottom: 0;
    }

    .vc_row.vc_column-gap-35,
    .vc_row {
      margin-left: 0;
      margin-right: 0;
    }

    .vc_row.vc_column-gap-35>.vc_column_container {
      padding: 0;
    }

    .vc_row.vc_inner.vc_row-has-fill {
      margin-left: -17.5px;
      margin-right: -17.5px;
    }

    .vc_row.vc_inner:not(.vc_row-has-fill) > .wpb_column > .vc_column-inner {
      padding-left: 0;
      padding-right: 0;
    }
}

@media (max-width: 767px)
{
    .content
    {
        gap: 60px 0;
    }

    .padding-150
    {
        padding: 80px 0;
    }

    .news-card
    {
        max-width: 100%;
    }

    .partner-inner a
    {
        padding: 0 20px;
    }

    .footer-left
    {
        max-width: 450px;
        width: 100%;
    }

    .banner-card div
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px 0;
    }

    .banner-img
    {
        max-width: 100%;
        width: 100%;
    }

    .banner-text
    {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .banner-img
    {
        max-width: 320px;
        width: 100%;
    }

    .slick-dots
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        margin-top: 50px !important;
        margin: 0 !important;
    }

    .slick-dots li
    {
        width: 9px;
        height: 0;
        margin: 0 !important;
    }

    .slick-dots li button
    {
        width: 30px;
        height: 5px;
        background: #fff;
        border-radius: 15px;
    }

    .slick-dots
    {
        gap: 30px;
    }

    .social i
    {
        color: var(--white);
        font-size: 22px;
    }
}

@media (max-width: 575px)
{
    .header-right
    {
        display: block;
    }

    .col-12
    {
        padding: 0 30px;
    }

    .contact-right
    {
        border-radius: 0;
    }

    .contact-right-inner
    {
        max-width: 100%;
        padding: 0 10px;
    }

    .contact-card
    {
        padding: 35px 0;
    }

    .padding-150
    {
        padding: 70px 0;
    }

    .partner-inner
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 50px 0;
    }

    .partner-inner a
    {}

    .footer-inner
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .social
    {
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        margin-top: 25px;
        gap: 0 15px;
    }

    .footer-logo span
    {
        font-size: 18px;
    }

    .footer-logo a
    {
        gap: 15px;
    }

    .footer-logo img
    {
        width: 80px;
    }

    .footer-inner
    {
        padding: 50px 0;
    }

    .footer-bttm
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px 0;
    }

    .content-text h4
    {
        font-size: 25px;
    }

    .contact-card
    {
        gap: 20px;
    }

    .title h3
    {
        font-size: 27px;
    }

	a.bttn.mobile-none
	{
	  	margin-top: 10px;
	}
}

@media (max-width: 400px)
{
    .news-text
    {
        border-radius: 0;
    }

    .news-text div
    {
        padding: 0 10px;
    }

    .news-text p
    {
        font-size: 17px;
    }

    .footer-logo a
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
