﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot');
    src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/fontawesome-webfont.woff2') format('woff2'),
         url('../fonts/fontawesome-webfont.woff') format('woff'),
         url('../fonts/fontawesome-webfont.ttf') format('truetype'),
         url('../fonts/fontawesome-webfont.svg#fontawesome-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #0080AD;
    --secondary: #399E53;
    --pink: #DB0060;
    --darkblue: #129B98;
    --color: #000000;
    --white: #ffffff;
    --base-font-family: 'DM Sans', sans-serif;
}

body {
    font-size: 16px;
    color: var(--color);
    overflow-x: hidden;
    font-weight: 400;
    font-family: var(--base-font-family);
    background: var(--white);
}

input, select, button {
    font-weight: 400;
    font-family: var(--base-font-family);
}

.material-symbols-outlined.fill {
    font-variation-settings:
    'FILL' 1
}

a {
    transition: all ease .5s;
    text-decoration: none;
    color: var(--color);
    cursor: pointer;
}

.wp-block-embed__wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.wp-block-embed__wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.wp-block-embed__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent linear-gradient(269deg, #DB0060 0%, #8fb40900 30%) 0% 0% no-repeat padding-box;
}

button {
    transition: all ease .5s;
}

button {
    outline: 0 !important;
box-shadow: none;
    border: none;
    padding: 0
}

button:focus {
    box-shadow: none
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--color);
    font-family: var(--base-font-family);
    font-weight: 400;
}

h1, .h1, .display-1 {
    font-size: 65px !important;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 1.5px;
}

h2, .h2, .display-2 {
    font-size: 50px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

h3, .h3, .display-3 {
    font-size: 30px !important;
    font-weight: 400;
    line-height: 1.3;
}

h4, .h4, .display-4 {
    font-size: 24px !important;
    font-weight: 400;
    line-height: 1.3;
}

h5, .h5, .display-5 {
    font-size: 21px !important;
    font-weight: 400;
    line-height: 1.5;
}

h6, .h6, .display-6 {
    font-size: 21px !important;
    line-height: 1.5;
}

p {
    color: var(--color);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: var(--base-font-family);
}

p.big {
    font-size: 24px;
    line-height: 1.8em;
}

p.bigger {
    font-size: 28px;
    line-height: 1.8;
}

p.small {
    font-size: 18px;
    line-height: 1.5;
}

p.smaller {
    font-size: 16px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}
.buttons{
    display: flex;
    flex-flow: row wrap;
    gap: 10px 20px;
}

.btn {
    display: inline-block;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    line-height: 50px;
    padding: 0px 5px;
    border-radius: 5px;
    border: none;
    background: transparent linear-gradient(90deg, #DB0060 0%, #C1001B 100%) 0% 0% no-repeat padding-box;
    min-width: 190px;
    text-align: center;
    box-shadow: 0px 0px 20px #C1001B40;
    transition: all .3s;
}

.btn-swap span + span {
    display: none;
}

.btn-swap:hover span {
    display: none;
}

.btn-swap:hover span + span {
    display: inline-block;
}

.btn img {
    max-height: 10px;
    margin-left: 10px;
    position: relative;
    transition: all .3s;
    left: 0;
}

.btn img.left {
    max-height: 10px;
    margin-left: 0px;
    margin-right: 10px;
    transform: rotate(-180deg);
    transition: all .3s;
    right: 0;
    left: auto;
}

.btn:hover img.left {
    left: auto;
    right: 10px !important;
}

.btn:hover img {
    left: 10px;
}

.btn-default {
    background: transparent linear-gradient(90deg, #DB0060 0%, #C1001B 50%, #DB0060 100%) 0% 0% no-repeat padding-box;
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: all .5s ease-in-out;
    padding: 0px 25px;
}

.btn-default:hover,
.btn-default.active {
    color: var(--white);
    background-position: 100% 0%;
    box-shadow: 0px 0px 20px #DB006040;
}

.btn-primary {
    background: transparent linear-gradient(90deg, #0080AD 0%, #399E53 50%, #0080AD 100%) 0% 0% no-repeat padding-box;
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: var(--white);
    padding: 0px 25px;
    box-shadow: 0px 0px 20px #0080AD40;
    transition: all .5s ease-in-out;
}

.btn-primary:hover {
    box-shadow: 0px 0px 20px #90B40940;
    background-position: 100% 0%;
    color: var(--white);
}

.btn-primary:hover i {
    margin-left: 25px;
}

.btn-secondary {
    border-color: #7AABBC;
    background: #7AABBC;
    color: var(--white);
}

.btn-secondary:hover {
    border-color: #1F748F;
    background: #1F748F;
    color: var(--white);
}

.section-title h2 {
    margin-bottom: 30px;
}

.section-title.white h2,
.section-title.white p {
}

.section-title h3{
    font-size: 1.3rem !important;
    font-weight: 700;
    margin-bottom: .5rem;
    margin-top: 1.5rem;
}

.section-title ul,
.accordion-item ul,
ul.list {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    color: var(--color);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}
.section-title ul li,
.accordion-item ul li,
ul.list li {
    margin-bottom: 5px;
    position: relative;
}
.section-title ul li::marker,
.accordion-item ul li::marker,
ul.list li::marker {
    font-size: 18px;
    color: #399E53;
}
p + ul{
    margin-top: -10px !important;
}
.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
}
}

.wave-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

/*** HEADER ***/
header {
    width: 100%;
    padding: 20px 0px;
    transition: .3s;
    position: relative;
    z-index: 99;
}

header:after {
    content: '';
    background: transparent linear-gradient(90deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    pointer-events: none;
}

header.fixed {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: var(--white);
    transition: .3s;
    transform: translateY(0%);
}
header.fixed .navbar-brand img{
    height: 75px;
    margin-bottom: -5px;
}
body.customize-support header.fixed{
    top: 32px;
}
header.header-up {
    transform: translateY(-100%);
}
header.header-down {
    transform: translateY(0%);
}

header .navbar {
    padding: 0px 15px;
}

header .navbar-brand {
    margin: 0;
}

header .navbar-brand img {
    height: 120px;
    transition: .3s;
}

.navbar-light .navbar-nav>.nav-item {
    margin-left: 30px;
	display:inline-block;
    vertical-align: top;
	position:relative;
}

header .navbar-nav>.nav-item>.nav-link {
    color: var(--color);
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 0px;
    line-height: 50px;
}

header .navbar-nav>.nav-item.active>.nav-link:before,
header .navbar-nav>.nav-item:hover>.nav-link:before {
    content: '';
    background: #0080AD;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50% , 0%);
}

.navbar-nav li.dropdown:hover ul.sub-menu {
	display:block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

header .navbar-nav>.nav-item:hover>.nav-link,
header .navbar-nav>.nav-item.active>.nav-link,
.navbar-light .navbar-nav>.nav-item.menu-item-has-children:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.menu-item-has-children.active>.nav-link {
	color:#0080AD!important;
}

ul.sub-menu {
    min-width:255px;
    width: 100%;
    border: none;
    text-align: left;
    margin: auto;
    background: none;
    margin: 0;
    margin-top: -5px;
    display: block;
    list-style: none;
    background: 0 0;
    padding: 0;
    position: absolute;
    left: 0px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 0px 0px 20px 20px !important;
    box-shadow: 0px 3px 60px #129B9830;
    border-top: 2px solid #0080AD;
    background-color: var(--white);
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li:last-child>a {
    border-radius: 0px 0px 20px 20px !important;
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li {
	width:100%;
    position: relative;
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li a.nav-link {
    transition: all .3s;
    display: inline-block;
    clear: both;
    margin: 0px;
	width:100%;
	position:relative;
    line-height: 50px;
    padding: 0px 25px !important;
    font-size: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--color)!important;
    border: none;
    white-space: break-spaces;
    font-family: var(--base-font-family);
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li:hover>a,
.navbar-light .navbar-nav>.nav-item>ul.sub-menu li.active>a {
	color:var(--white)!important;
    background: #0080AD !important;
}

.navbar-collapse {
    padding: 15px 0px;
}

/*** MAIN SIDEMENU ***/
.main-sidemenu-btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    min-width: 40px;
}

.main-sidemenu-btn:hover {
    color: var(--white);
}

.main-sidemenu-btn span {
    height: 2px;
    width: 100%;
	background:var(--color);
    display: inline-block;
    margin: 3px auto;
    float: right;
    transition: all .3s;
}

.main-sidemenu-btn div {
    display: inline-block;
    min-width: 30px;
}

.main-sidemenu {
	position:fixed;
	top:0px;
    left: -150%;
    min-width: 370px;
    max-width: 370px;
	-webkit-transition: all 0.45s;
    transition: all 0.45s;
	height:100%;
	z-index: 9999999;
	overflow:hidden;
	overflow-y:auto;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 30px 10px;
    color: var(--color);
    background: var(--white);
}

.main-sidemenu.intro {
	left:0px;
}

.main-sidemenu .logo img {
    height: 35px;
}

.main-sidemenu-overlay {
    background: transparent;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .45s ease-in-out;
    z-index: 9999;
}

.main-sidemenu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(65, 65, 65, 0.6);
}

.main-sidemenu a.CloseBtn {
    color: var(--color);
    font-size: 20px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    top: 15px;
    right: 0;
    border-radius: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 60px;
    float: right;
}

.main-sidemenu a.CloseBtn:before,
.main-sidemenu a.CloseBtn:after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

.main-sidemenu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.main-sidemenu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.main-sidemenu ul.main-menu ul {
	padding: 0;
}

.main-sidemenu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
}

.main-sidemenu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
}

.main-sidemenu ul.main-menu>li>a {
    display: inline-block;
    width: 100%;
    letter-spacing: 0.1em;
    color: var(--color);
    font-size: 15px;
    line-height: 32px;
    padding: 10px 0px;
    font-weight: 600;
}

.main-sidemenu ul.main-menu li:hover>a,
.main-sidemenu ul.main-menu li.active>a {
	background:none;
    color: #0080AD;
}

.main-sidemenu ul.main-menu li.menu-item-has-children {
    cursor: pointer;
}

.main-sidemenu ul.main-menu li.menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.main-sidemenu ul.main-menu li.menu-item-has-children:hover>a {
    color: #0080AD !important;
}

.main-sidemenu ul.main-menu li.menu-item-has-children>a:after {
    content: '';
    display: inline-block;
    border-top-width: 1px;
    border-top-style: solid;
    border-left-width: 1px;
    border-left-style: solid;
    transform: translate(-50%, -50%) rotate(135deg);
    opacity: .8;
    transition: all .3s ease;
    background: none !important;
    position: absolute;
    top: 50%;
    right: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    visibility: visible;
    border-radius: 0;
    color: inherit;
    border-top-width: 3px;
    border-left-width: 3px;
}

.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: none;
    padding: 0 0 0 0px !important;
    display: none !important;
    top: 0 !important;
}

.main-sidemenu ul.main-menu li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li {
    margin: 0;
}

.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li>a {
    display: inline-block;
    font-size: 15px;
    line-height: 32px;
    padding: 10px 20px;
    color: var(--color);
    font-weight: 600;
    position: relative;
    letter-spacing: 0.1em;
    width: 100%;
}


.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li:hover>a,
.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li.current_page_item>a,
.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li.active>a {
    background: #0080AD !important;
    color: var(--white) !important;
}

.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li>a:hover:before,
.main-sidemenu ul.main-menu li.menu-item-has-children ul.sub-menu li.active>a:before {
    opacity: 1;
    margin-left: 0;
}

header .btn-default {
    margin-left: 35px;
}

/*** BANNER ***/
.banner {
    padding-top: 0px;
    background: var(--white);
}

.banner .bg {
    background: #ccc;
    border-radius: 20px;
    padding: 100px 100px 60px 100px;
    position: relative;
    overflow: hidden;
}

.banner .bg:after {
    content: '';
    background: transparent linear-gradient(90deg, #0080AD 0%, #90B40900 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    pointer-events: none;
    z-index: 1;
}

.banner .bg * {
    position: relative;
    z-index: 2;
}

.banner video {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0 !important;
}

.banner .row {
    position: relative;
    z-index: 2;
}

.banner .display-6 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    margin: 0px;
}

.banner .display-1 {
    color: var(--white);
    font-size: 90px;
    line-height: 1;
    font-weight: 700;
    margin-top: 15px;
    margin: 0px;
}

.banner p {
    color: var(--white);
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.banner .art {
    margin-top: -90px;
}

/***** text-center *****/

.text-center .buttons{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/*** JOINING ***/
.joining {
    padding: 60px 0px 70px 0px;
}

.joining p {
    margin: 30px 0px 40px 0px;
}

.joining .btn {
    margin: 10px 7px;
}


/*** NEWS ***/
.news {
    padding: 60px 0px 70px 0px;
    position: relative;
}

.news:after {
    content: '';
    background: url(../images/wave-pink.svg) top left no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .1;
}

.wave-pink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

.news .row {
    position: relative;
    z-index: 2;
}

.news h2 {
    margin-bottom: 50px;
}

.news .btn {
    margin-top: 30px;
}

.newsbox {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    border-radius: 20px;
}

.news .newsbox .text{
    cursor: pointer;
}

.newsbox.top {
    margin-top: 50px;
}

.newsbox:hover .text {
    background: transparent linear-gradient(90deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 60px #129B9830;
}

.newsbox:hover .text p {
    color: var(--white);
}

.newsbox .img {
    display: inline-block;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    background: #ccc;
}

.newsbox .img img {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / .7;
    border-radius: 20px 20px 0px 0px;
    object-fit: cover;
}

.newsbox .text {
    display: inline-block;
    width: 100%;
    padding: 0px 40px 40px 40px;
    box-shadow: 0px 3px 60px #129B9830;
    border-radius: 0px 0px 20px 20px;
    background: var(--white);
}

.newsbox .text .label {
    display: inline-block;
    background: #0080AD;
    line-height: 24px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    border-radius: 99px;
    padding: 0px 15px;
    margin-bottom: 20px;
    top: -12px;
    position: relative;
}

.newsbox .text p {
    color: var(--color);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.newsbox:hover .small-link {
    color: var(--white);
}

.small-link {
    color: #0080AD;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.small-link img {
    margin-left: 10px;
    max-height: 10px;
}
.small-link.left img {
    margin-left: 0px;
    margin-right: 10px;
    transform: rotate(-180deg);
}

.small-link span {
    position: relative;
    display: inline-block;
}

.small-link span:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transition: all .3s;
}

.small-link:hover span:before {
    width: 100%;
}

.newsbox:hover .small-link img {
    filter: invert(1) brightness(5);
}

/*** WANT VOLUNTEER ***/
.want-volunteer {
    padding: 60px 0px 60px 0px;
}

.want-volunteer p a {
    color: #0080AD;
    font-weight: 600;
    position: relative;
}
.want-volunteer .display-1 {
    font-size: 50px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.want-volunteer p a:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transition: all .3s;
}

.want-volunteer p a:hover:before {
    width: 100%;
}
.want-volunteer + .want-volunteer {
    padding-top: 0;
}

.imgstyle {
    position: relative;
    display: inline-block;
    width: 100%;
    /* height: calc(100% - 0px); */
    /* margin-bottom: 20px; */
    aspect-ratio: 5/4;
    border-radius: 20px;
    overflow: hidden;
}

.imgstyle>img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / .8;
}


/*** IMAGES SECTION ***/
.images-section {
    padding: 40px 0px 40px 0px;
    position: relative;
}

.images-section:after {
    content: '';
    background: url(../images/wave-blue.svg) top left no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .1;
}

.images-section .art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

.images-section .row {
    position: relative;
    z-index: 2;
}

.images-section .align-1 {
    height: 138px;
    margin-top: -20px;
    margin-bottom: -20px;
    margin-left: 60px;
    z-index: 2;
    position: relative;
}

.images-section .align-2 {
    height: 185px;
    margin-top: -20px;
    left: 90px;
    float: right;
    z-index: 2;
    position: relative;
}

.images-section .align-3 {
    height: 155px;
    margin-bottom: -55px;
    left: 10px;
    z-index: 2;
    position: relative;
}

.images-section .align-4 {
    height: 124px;
    top: 50px;
    left: 30px;
    z-index: 2;
    position: relative;
}

.imgbox {
    position: relative;
    border-radius: 20px;
}

.imgbox.box1 {
    position: relative;
    left: 20%;
    width: 120%;
    z-index: 1;
}

.imgbox>.mainimg {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio: 1 / 1.3;
    object-fit: center;
    border-radius: 20px;
}

.imgbox.box2 {
    margin-top: -50px;
    width: 80%;
    left: 6%;
}

.imgbox.box2>.mainimg {
    aspect-ratio: 1 / .8;
    object-fit: center;
}

.imgbox.box3 {
    width: 80%;
    left: 20%;
    margin-top: 30px;
}

.imgbox.box3>.mainimg {
    aspect-ratio: 1 / .6;
    object-fit: center;
}

.imgbox.box4 {
    position: relative;
    left: -80px;
    width: 100%;
    z-index: 1;
    margin-top: 30px;
}

.imgbox.box4>.mainimg {
    aspect-ratio: 1 / 1.2;
    object-fit: center;
}

/*** FAQ ***/
.faq {
    padding: 30px 0px;   
}

.faq h2 {
    margin-bottom: 50px;
}

.faq h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
}

.faq .accordion-header {
    margin-bottom: 0px;
}

.faq .btn {
    margin-top: 20px;
}


.accordion {
    border: none !important;
    border-radius: 0px !important;
    background: none !important;
    margin-bottom: 40px;
}

.accordion-item {
    border: none !important;
    border-radius: 0px !important;
    background: none !important;
}

.accordion-item:first-child .accordion-button {
    border-top: 1px solid rgba(0, 142, 157, .1) !important;
}

.accordion-button {
    padding: 30px 50px 30px 40px;
    color: var(--color);
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 142, 157, .1) !important;
    box-shadow: none !important;
    background: none;
    outline: none !important;
}

.accordion-button:not(.collapsed) {
    padding: 35px 50px 15px 40px;
    color: var(--white);
    background: transparent linear-gradient(90deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
    border:none!important;
    border-radius: 6px 6px 0px 0px;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068";
    background: var(--white);
    color: #0080AD;
    background-size: 15px auto;
    top: 30px;
    text-align: center;
}

.accordion-button::after {
    content: "\f067";
    font: normal normal normal 14px / 1 FontAwesome;
    background: #0080AD;
    color: var(--white);
    font-size: 13px;
    background-size: 15px auto;
    width: 27px;
    height: 28px;
    border-radius: 50%;
    right: 20px;
    position: relative;
    transform: none !important;
    position: absolute;
    top: 30px;
    text-align: center;
    line-height: 29px;
    padding-left: 1px;
}

.accordion-body {
    padding: 20px 40px 40px 40px;
    background: transparent linear-gradient(90deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 6px 6px;
}

.accordion-body p, 
.accordion-body ul {
    color: var(--white);
    width: 90%;
}
.accordion-item .accordion-body ul li::marker {
    color: var(--white);
}

/*** CTA ***/
.cta {
    padding: 60px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.cta:after {
    content: '';
    background: url(../images/wave-green.svg) top left no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .1;
}

.cta .art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

.cta .row {
    position: relative;
    z-index: 2;
}

.cta .bg-img {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta .bg-img:after {
    content: '';
    background: transparent linear-gradient(270deg, #DB0060 0%, #90B40900 30%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .65;
}

.cta .bg {
    display: inline-block;
    width: 120%;
    position: relative;
    left: -20%;
    background: var(--white);
    box-shadow: 0px 3px 60px #129B9830;
    padding: 35px 60px 50px 60px;
    z-index: 2;
    border-radius: 20px;
}

.cta .bg h2 {
    color: #DB0060;
}

.cta .bg p {
    margin: 15px 0px 30px 0px;
}


/*** FOOTER ***/
.footer {
    padding: 50px 0px 50px 0px;
    background: transparent linear-gradient(90deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
}

.footer .logo {
    margin-right: 50px;
}

.footer .logo img {
    max-height: 110px;
}

.footer .logo-kwbn img {
    max-height: 80px;
}

.footer p {
    color: var(--white);
    font-size: 18px;
    margin: 10px 0px;
}

.footer ul {
    padding: 0px;
    margin: 0px;
}

.footer ul li {
    list-style: none;
    display: inline-block;
}

.footer ul li a {
    color: var(--white);
    font-size: 15px;
    position: relative;
}

.footer .social a {
    display: inline-block;
    color: var(--white);
    position: relative;
    border: 2px solid var(--white);
    font-size: 16px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 50%;
    margin-left: 12px;
}

.footer .social a:hover {
    color: #0D939D;
    background: var(--white);
}

.footer ul li a:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transition: all .3s;
}

.footer ul li a:hover:before {
    width: 100%;
}

.footer ul li a:hover {
    color: var(--white);
}

.footer .copy ul li {
    padding-left: 40px;
}

.footer .copy p {
    font-size: 18px;
}

.footer .copy ul li a {
    color: var(--white);
    font-size: 18px;
}

.footer .copy p a {
    color: var(--white);
    position: relative;
}

.footer .copy p a:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transition: all .3s;
}

.footer .copy p a:hover:before {
    width: 100%;
}

.footer .copy p a:hover {
    color: var(--white);
}



/*** PAGE BANNER ***/
.page-banner {
    padding: 40px 0px;
}
.page-banner .buttons{
    justify-content: center;
    margin-top: 1.5rem;
}

.breadcrumb {
    padding: 25px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color);
    font-size: 17px;
    margin-bottom: 40px;
}

.breadcrumb a {
    color: #0080AD;
}

.breadcrumb-item.active {
    color: var(--color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color);
    padding: 0px 12px 0px 6px;
}

.page-banner h1 {
    color: var(--color);
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 25px;
}

.page-banner p:not(.breadcrumbs) {
    color: var(--color);
    font-size: 1.2rem;
    font-weight: bold;
}

.want-volunteer .bottom {
    margin-bottom: 120px;
}


/*** INFO ***/
.info {
    padding: 40px 0px 40px 0px;
}

.info h2 {
    text-align: center;
}

.info p a {
    position: relative;
    color: #0080AD;
    font-weight: 600;
}
    
.info p a:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transition: all .3s;
}

.info p a:hover:before {
    width: 100%;
}

.info .btn {
    margin-top: 20px;
    margin-right: 15px;
}

/*** PHOTOS INFO ***/
.photos-info {
    padding: 100px 0px;
}

.photos-info .section-title h2 {
    margin-bottom: 10px;
}

.photos-info .section-title {
    margin-bottom: 30px;
}

.photo-box {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.photo-box .icon {
    position: absolute;
    background: #0080AD;
    color: var(--white);
    font-size: 13px;
    background-size: 15px auto;
    top: 10px;
    right: 10px;
    width: 27px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 29px;
    padding-left: 1px;
}

.photo-box .mainimg {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}


/*** VIDEO SECTION ***/
.video-section {
    padding: 100px 0px;
}

.video-section .section-title h2 {
    margin-bottom: 10px;
}

.video-section .section-title {
    margin-bottom: 20px;
}

.video-section .ratio {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.video-section .ratio:after {
    content: '';
    background: transparent linear-gradient(269deg, #DB0060 0%, #90B4094F 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.video-section .ratio video {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-section .ratio .playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto !important;
    height: auto !important;
}

/*** NEWS INNER ***/
.news.inner {

}


.news.inner .top {
    height: inherit;
    padding-top: 50px;
}

.news.inner .newsbox {
    height: inherit;
    margin-bottom: 45px;
}

.news.inner::after {
    display: none;
}

.news.inner .tops {
    margin-top: 120px;
}

.pagination {
    border: none;
    border-radius: 0px;
    color: var(--color) !important;
    background: none !important;
    font-weight: 400 !important;
    font-size: 17px;
}

.pagination .page-item a.page-link {
    border: none !important;
    border-radius: 0px !important;
    color: #0080AD !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    background: none !important;
}

.pagination .active a.page-link,
.pagination li:hover > a.page-link {
    color: var(--color) !important;
    background: none !important;
    font-weight: 400 !important;
}

.small-link.left img {
    transform: rotate(-180deg);
    margin-right: 10px;
    margin-left: 0px;
}

/*** NEWS DETAILS ***/
.news-details {
    padding: 60px 0px 80px 0px;
}

.news-details .display-2 {
    margin-bottom: 40px;
    margin-top: 20px;
}

.news-details p {
    margin-bottom: 30px;
}

.news-details h3 {
    color: var(--color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 20px;
}

.news-details .label {
    display: inline-block;
    background: #0080AD;
    line-height: 24px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    border-radius: 99px;
    padding: 0px 15px;
    margin-bottom: 0px;
    top: 0px;
    position: relative;
}

.news-details .ratio {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.news-details .ratio::before {
    padding-top: 70%;
}

.news-details .ratio:after {
    content: '';
    background: transparent linear-gradient(269deg, #DB0060 0%, #90B4094F 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-details .ratio video {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.news-details .ratio .playbtn2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto !important;
    height: auto !important;
}

.news-details .ratio .playbtn2 img {
    max-height: 42px;
}

.newsbox-img {
    margin-bottom: 50px;
}

.newsbox-img img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1 / .7;
    object-fit: cover;
}

.news-details .bg {
    box-shadow: 0px 3px 60px #129B9830;
    border-radius: 20px;
    background: var(--white);
    padding: 45px 50px;
}

.news-details .bg .text + .text {
    padding-top: 80px;
}

.news-details .bg .text.last {
    padding-bottom: 0px;
}

.news-details .bg h3 {
    color: var(--color);
    font-size: 30px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 30px;
}

.news-details .bg p {
    color: var(--color);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}


/*** SPONSORS ***/
.sponsors {
    padding: 150px 0px 0px 0px;
}

.sponsors .section-title h2 {
    margin-bottom: 10px;
}

.sponsors .section-title {
    margin-bottom: 30px;
}

.logo-box:hover {
    transform: scale(1.1);
}

.logo-box {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 3px 60px #129B981A;
    background: var(--white);
    border-radius: 10px;
    height: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / .8;
    transition: all .3s;
}

.logo-box .icon {
    position: absolute;
    background: #0080AD;
    color: var(--white);
    font-size: 13px;
    background-size: 15px auto;
    top: 10px;
    right: 10px;
    width: 27px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 29px;
    padding-left: 1px;
}

.logo-box .mainimg {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

/*** CONTACT FORM ***/
.contact-form {
    padding: 130px 0px 30px 0px;
}

.contact-form .bg {
    background: transparent linear-gradient(89deg, #0080AD 0%, #129B98 100%) 0% 0% no-repeat padding-box;
    padding: 65px 78px 75px 78px;
    border-radius: 20px;
}

.contact-form #live-price {
    padding-top: 20px;
    color: var(--white) !important;
}

.contact-form .gform_validation_errors h2 {
    font-size: 20px !important;
}

.contact-form .section-title h2,
.contact-form h3 {
    margin-bottom: 10px;
    color: var(--white) !important;
}

.contact-form .section-title {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.contact-form p {
    color: var(--white);
}

.contact-form .form-check {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    padding-left: 35px;
}

.contact-form .gfield_label {
    color: var(--white) !important;
    font-weight: 400;
    margin-bottom: 0px;
}
.contact-form .gfield_description {
    color: var(--white) !important;
}

.form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -35px;
    border: 4px solid var(--white) !important;
    margin-top: 2px;
}

.form-check .form-check-input:checked {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
    background: #0080AD;
}

.contact-form .form-check label {
    color: var(--white) !important;
    font-weight: 400;
}

.contact-form label {
    color: rgba(255,255,255,0.7) !important;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form .form-control {
    color: var(--color) !important;
    font-size: 17px;
    font-family: var(--base-font-family);
    font-weight: 400;
    height: 50px;
    padding: 0px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.55) !important;
}

.contact-form select.form-control {
    margin-bottom: 20px;
    appearance: none;
    background: var(--white) url(../images/select-arrow.png) 97% 50% no-repeat;
}

.contact-form .align-1 {
    height: 113px;
    margin-top: -20px;
    margin-bottom: -50px;
    margin-left: -100px;
    z-index: 2;
    position: relative;
}

.contact-form .align-2 {
    height: 130px;
    margin-top: -60px;
    left: -80px;
    float: right;
    z-index: 2;
    position: relative;
}

.contact-form .imgbox.box1 {
    left: -85%;
    width: 160%;
}

.contact-form .imgbox.box1>.mainimg {
    aspect-ratio: 1 / 1;
}

/* SINGLE FIX */

.page:not(.home) .page-banner { padding: 0px 0px;}
.page:not(.home) .want-volunteer { padding: 100px 0px 100px 0px;}
.page:not(.home) .news { padding: 0px;}