:root {
    --font-family--body: "Work Sans", sans-serif;
    --font-family--headline:"Manrope", sans-serif;
    --color--body: var(--color--black);
    --color--white:#ffffff;
    --color--heading: var(--color--black);
    --color--primary-1: #3e4c79;
    --color--primary-2: #6877A6;
    /*--color--primary-3: #dee657;*/
    --color--primary-3: #befe09;
    --color--primary-4:#918567;
    --color--primary-5:#5A5D66;
    --color--primary-6:#eef1e8;
    /*--color--black: #1e2222;*/
    --color--black: #000000;
    --color--gray-1: #4e5151;
    --color--transparent: #0000;
    --border-radius--form-input: 10px;
    --border-radius--xs: 10px;
    --border-radius--button: 4px;
    --border-radius--lg: 30px;
    --border-radius--xl: 50px;
    --border-radius--sm: 20px;
    --border-radius--button: 100px;
    --transition:all .3s ease-in-out;
}
   
 * {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    padding: 0;
    margin: 0 auto;
}


body {
    margin: 0 auto;
    padding: 0;
    font-optical-sizing: auto;
    background: #f9f9f9;
    scroll-behavior: smooth;
    font-family: var(--font-family--body);
    color: var(--color--body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
}
button {
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
textarea:focus, input:focus{
    outline: none;
}

a{
    text-decoration:none;
}

p strong{
    font-weight:700;
}

p a{
    text-decoration:underline;
    color: var(--color--body);
    font-weight:400;
    transition:var(--transition);
}
p a:hover{
    text-decoration:none;
    transition:var(--transition);
     font-weight:300;
}

.posrel{
    position:relative;
}

#main{
    overflow:hidden;
}
.grid{
    display:grid;
}

.flex{
    display:flex;
}

.posrel{
    position:relative;
}

.mt32{
    margin-top:32px;
}

.mb0{
    margin-bottom:0 !important;
}


ol{
    margin-left:40px;
}

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

.strong{
    font-weight:600;
}

hr{
    margin-bottom: 48px;
    margin-top: 24px;
}

.text-center{
    text-align:center !important;
}

 .darkbg, .tophero-bg {
        background-color: var(--color--primary-5);
        position: relative;
        border-radius: var(--border-radius--lg);
    }
    
    h1{
        color: var(--color--primary-1) !important;
    }
    
    .hero-image {
    border-radius: var(--border-radius--lg);
    object-fit: cover;
    width: 66%;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto;
}

.hero-gradient {
    background-image: linear-gradient(90deg, var(--color--primary-2), var(--color--primary-2) 37%, var(--color--transparent));
    position: absolute;
    inset: 0%;
    border-radius: var(--border-radius--lg);
}
    
    .hero-bg-image,  .hero-bg-image-front {
    z-index: 2;
    position: absolute;
    height: 100%;
}

.hero-bg-image {
    opacity: .9;
    inset: 0% 0% 0% -12%;
}

 .hero-bg-image-front{
    opacity: .6;
    inset: 0% 0% 0% -20%;
}

.topimg_content img{
    border-radius: var(--border-radius--lg);
}

.amountmg{
    margin-top:32px;
}

#donate-form{
    background: rgba(62, 76, 121, 1);
    padding: 48px;
    border-radius: 15px;
}

.donate-frontbox{
    border-radius:12px;
    grid-template-columns:1fr 2fr;
    border:2px solid var(--color--primary-6);
    align-items: center;
}

.donate-imgbox{
    padding:24px;
    background: var(--color--primary-6);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    min-height: 130px;
}

.donate-txtbox{
      padding:24px;
}
.donate-txtbox a{
    text-decoration:underline;
    color:var(--color--body);
}

.iconline{
    display:flex;
    align-items:center;
}

.iconline i{
    margin-right:8px;
}
.donate-img{
    max-width:80px;
}


/* FONTS */

h1, h2, h3, h4, h5, h6{
    letter-spacing: -0.04em;
    font-family:var(--font-family--headline);
}

.hero-sub-title {
        font-size: calc(24px + (38 - 30)*((100vw - 300px) /(1600 - 300)));
    }
    
h1 {
        font-size: calc(36px + (68 - 30)*((100vw - 300px) /(1600 - 300)));
    }
    


h1{
    color: var(--color--black);
    margin-bottom: 30px;
    line-height: 1.1em;
    font-weight:600;
}

.headline h1{
    color: var(--color--primary-1);
    z-index:2;
    position: relative;
    margin-bottom:0;
    font-family:var(--font-family--headline);
}

h2.headline, .headline-small {
    font-family:var(--font-family--headline);
    color: var(--color--body);
    margin-top: 0;
    margin-bottom: 48px;
    font-size: calc(36px + (48 - 36) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 600;
    line-height: 1.3em;
}

h2.headline strong, h3 strong {
    color: var(--color--primary-1);
}

h3{
    font-family:var(--font-family--headline);
    color: var(--color--heading);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: calc(30px + (48 - 48)*((100vw - 300px) /(1600 - 300)));
    font-weight: 600;
    line-height: 1.3em;
}

.txt-headline{
   font-size: calc(28px + (48 - 48)*((100vw - 300px) /(1600 - 300)));  
}



h1 strong{
   color: var(--color--primary-3);
   font-weight: 800;
}

.col-box-headline{
    font-size:26px;
    font-weight:600;
    margin-bottom:24px;
}
.green-colred{
    color:var(--color--primary-3) !important;
}

.white-colored{
    color:var(--color--white) !important;
}

.blue-colred{
    color:var(--color--primary-1) !important;

}



/* LOADING */
.loading:not(:required) {
    font: 0 / 0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading {
    position: fixed;
    z-index: 99999999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}



.full_overlay {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    overflow-y: initial !important;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    background: rgba(38, 44, 43, 0.6);
}

.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(40, 65, 106, 1) 1.5em 0 0 0, rgba(40, 65, 106, 1) 1.1em 1.1em 0 0, rgba(40, 65, 106, 1) 0 1.5em 0 0, rgba(40, 65, 106, 1) -1.1em 1.1em 0 0, rgba(40, 65, 106, 1) -1.5em 0 0 0, rgba(40, 65, 106, 1) -1.1em -1.1em 0 0, rgba(40, 65, 106, 1) 0 -1.5em 0 0, rgba(40, 65, 106, 1) 1.1em -1.1em 0 0;
    box-shadow: rgba(40, 65, 106, 1) 1.5em 0 0 0, rgba(40, 65, 106, 1) 1.1em 1.1em 0 0, rgba(40, 65, 106, 1) 0 1.5em 0 0, rgba(40, 65, 106, 1) -1.1em 1.1em 0 0, rgba(40, 65, 106, 1) -1.5em 0 0 0, rgba(40, 65, 106, 1) -1.1em -1.1em 0 0, rgba(40, 65, 106, 1) 0 -1.5em 0 0, rgba(40, 65, 106, 1) 1.1em -1.1em 0 0;
}




/* MODAL VIEW */

.modal {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

    .modal.active {
        z-index: 10;
        opacity: 1;
        visibility: visible;
    }

    .modal:before {
        background: rgba(38, 44, 43, 0.6);
        content: '';
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .modal .modal-content {
        backface-visibility: hidden;
        position: fixed;
        z-index: 9;
        top: 50%;
        left: 50%;
        max-height: 100%;
        border: none;
        transform: translate3d(-50%, -50%, 0);
        -webkit-transform: translate3d(-50%, -50%, 0);
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        max-height: 95%;
        height: auto;
        width: 992px;
        max-width:95%;
        overflow-y: auto;
        overflow-x: hidden;
    }


    .modal .modal-content_offer {
        backface-visibility: hidden;
        position: fixed;
        z-index: 2;
        top: 50%;
        left: 50%;
        max-height: 100%;
        border: none;
        transform: translate3d(-50%, -50%, 0);
        -webkit-transform: translate3d(-50%, -50%, 0);
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        max-height: 95%;
        height: auto;
        width: auto;       
        /*max-width: 95%;*/
        overflow-y: auto;
        overflow-x: hidden;
    }

.modal-grid {
    grid-column: 4 / span 6;
}

.modal .modal-content .modal-close-cross {
    cursor: pointer;
    position: absolute;    
    transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    top: 1em;
    right: 1em;
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    text-align: center;
    line-height: 39px;
    
}

    .modal .modal-content .modal-close-cross:hover {
        background:var(--color1);
        color:var(--color6);
        transition:0.5s;
    }

    .modal .modal-content .modal-close-cross:before {
        content: '\00D7';
        font-size: 30px;
         transition:0.1s;
    }
    
/* DESKTOP MENU */
.menuline{
        display:grid;
        justify-content:center;
    
}


ul#main-menu {
        list-style: none;
        display: flex;
        gap: 60px;
        height: 100%;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        margin-left: 0;
        align-items: center;
    }
        li.main-menu-item {
        transition: var(--transition);
        display: flex;
        border-bottom:2px solid transparent;
    }
    
     li.main-menu-item:hover {
        transition: var(--transition);
        border-bottom:2px solid var(--color--primary-3);
    }
    
    .main-menu-item  a.active{
        border-bottom:2px solid var(--color--primary-3);
    }
    
    
        li.main-menu-item a {
        color: var(--color--black);
        text-underline-offset: 7px;
        padding: 0;
        font-weight: 300;
       
        transition: var(--transition);
        text-decoration-color: var(--color--transparent);
    }
    
        li.main-menu-item a.active {
        text-decoration-color: var(--color--primary-3);
        transition: var(--transition);
        cursor: pointer;
        color: var(--color1);
    }
    
    li.main-menu-item a:hover{
        text-decoration-color: var(--color--primary-3);
        transition: var(--transition);
    }
    
    ul.submenu {
        display:none;
        list-style: none;
        position: absolute;
        top: 40px;
        background: var(--color--primary-3);
        border-radius: 20px;
        padding: 15px 30px;
        min-width: 260px;
        z-index: 9;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }
    
    .submenu li{
        margin:15px 0;
    }


.open_sub {
    display: block !important;
}


    
/* MOBMENU */
.menu_btn {
        width: 32px;
        right: 24px;
        z-index:4;
        cursor:pointer;
    }
    
    .menu_btn:before, .menu_btn:after, .menu_btn div {
        background: var(--color1);
        content: "";
        display: block;
        height: 3px;
        border-radius: 3px;
        margin: 7px 0;
        transition: 0.5s;
    }
    .menu_btn.open:before {
        transform: translateY(10px) rotate(135deg);
    }
    .menu_btn.open div {
        transform: scale(0);
    }
    .menu_btn.open:after {
        transform: translateY(-10px) rotate(-135deg);
    }
   
    
    .mob-menu {
        display: none;
        float: left;
        margin: 0;
        padding: 0;
        margin-top: 32px;
        background: var(--bg);
        padding: 18px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        height: 100vh;
        font-size: 18px;
    }
    .mob-menu_open {
        display: block;
    }
    .mob-menu_open li {
        float: left;
        width: 100%;
        margin: 12px 0;
        padding: 0 24px;
        
    }
    .mob-menu_open li a{
        color:var(--color5); 
        text-transform:uppercase;
        font-weight:var(--w600);
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    
    .mob-menu_open li a i, #logoutbutton i{
        margin-right:8px;
    }
    .mob_menu_bottom {
        margin-top:24px;
        margin-left:16px;
    }
    
    .drop-mobmenu.open_mob_sub {
    display: grid;
    list-style: none;
   background-color: var(--color--white);
    border-radius: var(--radiusnormal);
    padding: 20px;
    font-size: 16px;
    margin-top: 12px;
    margin-left: 0;
    border-radius: 12px;
}
.drop-mobmenu {
    display: none;
}
    
/* BTN */
.btn{
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    max-width: 100%;
    transition:var(--transition);
    justify-content: center;
}

.btn-outline{
    border:1px solid #000000;
    border-radius: var(--border-radius--button);
    padding: 14px 25px;
    line-height: 1.3em;
    color: var(--color--primary-1);
}

.btn-outline:hover{
    border:1px solid var(--color--primary-1);
    background:var(--color--primary-1);
    color: white;
    transition:var(--transition);
}

.btn-dark{
    border-radius: var(--border-radius--button);
    padding: 14px 25px;
    line-height: 1.3em;
    background: var(--color--primary-1);
    color:var(--color--white) !important;
    text-decoration: none !important;
    transition: all 0.5s linear;
}
.btn-dark:hover{
    background: transparent;
    color:var(--color--primary-1) !important;
}


.btn-light{
    border:0;
    border-radius: var(--border-radius--button);
    padding: 14px 25px;
    line-height: 1.3em;
    background: var(--color--primary-3);
    color:var(--color--black) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-light:hover{
    background:var(--color--primary-1);
    color:var(--color--primary-1) !important;
     color:var(--color--white) !important;
}

.btn-submit{
    border:0;
    border-radius: 4px;
    padding: 14px 25px;
    line-height: 1.3em;
    background: var(--color--primary-3);
    color:var(--color--black) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 24px;
}

.btn-submit:hover{
    background:var(--color--primary-2);
     color:var(--color--white) !important;
}

.flex-end {
    align-items: center;
    display: flex;
    justify-self: self-start;
    justify-content: flex-end;
    margin-left: auto;
}

.btn i{
    margin-left:8px;
}

#submit{
    width:100%;
    cursor:pointer;
    font-weight:700;
}

.hero-lg-title {
    z-index: 99;
    opacity: .65;
    font-family: var(--font-family--heading);
    color: var(--color--white);
    text-align: center;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffffff14, #ffffff0d);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: -20px;
    font-weight: 600;
    line-height: 110px;
    position: relative;
}

#hightopline{
    justify-content: flex-end;
    font-size:14px;
    padding: 5px 0;
   
}

#hightopline a{
    color: var(--color--body);
    font-weight:500;
    margin:0 16px;
}

.toplinks{
     border-bottom:1px solid rgba(104, 119, 166, 0.2);
}

.formgroup {
    display: inline-grid;
    width: 100%;
    margin-bottom: 16px;
}
.formgroup label {
    display: flex !important;
    width: 100%;
    margin-bottom: 12px !important;
    align-items: center;
    cursor: pointer;
    flex-wrap: wrap;
    color:var(--color--white);
}

.checkbox input[type="checkbox"] {
    display: none;
}

checkbox, .radio {
    display: grid;
    margin-top: 9px;
    z-index: 1;
    position: relative;
}

.formgroup span {
    font-size: 12px;
    font-weight: var(--w600);
}

.checkbox label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 0;
    margin: 0 5px 0 5px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #DAD9D9;
    background-color: var(--color--primary-6);
    float: none;
}

.checkbox label input[type="checkbox"]:checked + span:after {
    content: "\2713";
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 23px;
    color: var(--color--primary-1);
    display: block;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 21px;
}

/* Checkbox styling */

/* The container */
.label-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight:500;
}

/* Hide the browser's default radio button */
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: var(--color--primary-2);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.label-container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}




#paymentform label{
    color:var(--color-primary-1);
}

.tabbed {
	overflow-x: hidden; /* so we could easily hide the radio inputs */
	padding-bottom: 16px;
	}

.tabbed [type="radio"] {
	/* hiding the inputs */
	display: none;
}

.tabs {
	display: flex;
	align-items: stretch;
	list-style: none;
	padding: 0;
	justify-content: space-evenly;
}
.tab{
    width:100%;
}
.tab > label {
	display: block;
	margin-bottom: -1px;
	padding: 12px 15px;

	background: var(--color--white);
	color: #666;
	font-size: 12px; 
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;	
	transition: all 0.3s;
	justify-content: center;
	color:var(--color--black);
}
.tab:hover label {
	
}

.tab-content {
	display: none;
	color: #777;
}

.tabfirst, .amountpicker-first:hover{
    border-top-left-radius: 4px;
     border-bottom-left-radius: 4px;
}

.tabsecond, .amountpicker-last:hover{
     border-top-right-radius: 4px;
     border-bottom-right-radius: 4px;
}

 As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit 
.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label {
		background: var(--color--primary-2);
	    color: var(--color--white);
}




.active-label{
    	background: var(--color--primary-2) !important;
	    color: var(--color--white) !important;
}


.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label:hover,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label:hover {
	background:#dddddd;
	
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2)
 {
	display: block;
}

.formheadline{
    font-weight:500;
    font-size:18px;
    color:var(--color--white);
    margin-bottom:8px;
    letter-spacing: -0.04em;
}

.bigformheadline{
    font-weight:500;
    font-size:24px;
    color:var(--color--white);
    margin-bottom:24px;
    letter-spacing: -0.04em;
    line-height:1.3;
}

.bigformheadline-mob{
    color:var(--color--black);
    margin-top:48px;
}

.amountpicker{
    grid-template-columns:repeat(4, 1fr);
    text-align: center;
    background:var(--color--white);
    border-radius:4px;
    font-size:16px;
    font-weight: 600;
    color:var(--color--black);
}
.amountpicker div{
    padding: 12px 15px;
    
}
.amountpicker div:hover{
    background: #dddddd;
    cursor:pointer;
    
}
.picked{
   background: var(--color--primary-2);
    cursor:pointer;
    color:var(--color--white);
}

.amoutdivider{
    border-left:1px solid #dddddd;
     border-right:1px solid #dddddd;
}
.amoutdividerhalf{
     border-right:1px solid #dddddd;
}

.brodtxt{
    line-height:1.7;
}

footer{
    background: var(--color--primary-1);
    padding: 32px 0;
    color:var(--color--white);
}

.footerheadline{
    font-weight:600;
}
.footerlogo{
    max-width:200px;
}

.footerbox{
    line-height:1.7rem
}

.footerbox ul{
    list-style:none;
}

.footerbox a, .footerlowline a{
    color: var(--color--white);
    transition:var(--transition);
}

.footerbox a:hover, .footerlowline a:hover{
    color: var(--color--primary-3);
     transition:var(--transition);
}

.footerlowline{
    border-top:1px solid var(--color--white);
    margin-top:32px;
    padding-top:32px;
    font-size:14px;
    gap:40px;
}

.left-img{
    border-radius: var(--border-radius--lg);
}

.private-col, .company-col{
     border-radius:12px;
    padding:32px;
    color:var(--color--white);
}

.private-col a, .company-col a{
       color:var(--color--white);
       justify-content:flex-end;
       margin-top:32px;
       font-weight:500;
}
.private-col a i, .company-col a i{
       margin-left:8px;
}
.private-col{
   background: rgba(62, 76, 121, 0.6);
}

.company-col{
    background:var(--color--primary-1);
}

a.faqspm {
    text-decoration: none !important;
}
.faqspm {
    font-size: 18px;
    font-weight: var(--w200);
    color: var(--color1);
    font-family: "Literata", serif;
    font-optical-sizing: auto;
    font-style: normal;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faqspm-active {
    font-weight: 500;
}
.faqline{
    background: var(--color--primary-6);
    padding: 16px 24px;
    border-radius: var(--border-radius--lg);
    margin-bottom:12px;
}
.faqsvar {
    margin-top: 12px;
    background: #ffff;
    border-radius: 12px;
    padding: 12px 24px;
}
#portfolio{
    margin-top:48px;
}

.cardline {
        flex-wrap: unset;
        display: flex;
        margin-top: 18px;
        font-size: 14px;
        align-items:center;
    }
    
.cardline img {
    margin-right: 10px;
    border-radius: 4px;
    height:22px;
}

.statementbox{
    padding:48px;
    border-radius:12px;
    border:1px solid var(--color--primary-1);
}

.currency{
    position: absolute;
    right: 16px;
    top: 52px;
    color:green;
    font-weight:400;
}

.tax-reduction-txt{
    font-size:16px;
    margin-bottom:12px;
    font-style:italic;
    font-weight:400;
    display: flex;
}

.tax-reduction-txt i{
    margin-right:8px;
}


.payment-info-wrapper{
    background:var(--color--primary-1);
    border-top-left-radius:var(--border-radius--lg);
    border-bottom-left-radius:var(--border-radius--lg);
}

.paymentwrapper{
    background: var(--color--primary-6);
    border-top-right-radius:var(--border-radius--lg);
    border-bottom-right-radius:var(--border-radius--lg);
}

.payment-info-wrapper, .paymentwrapper{
    padding:72px;
}

.donate-info{
    padding: 24px;
    border-radius: 6px;
    background: var(--color--primary-6);
    display: flex;
    flex-wrap: wrap;
}

.strong-donate-line{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 32px;
    font-weight: 600;
}

.pricing-price-wrap{
  grid-column-gap: 3px;
    grid-row-gap: 3px;
    align-items: flex-end;
    display: flex;  
    border-bottom: 1px solid;
    padding-bottom: 32px;
    margin-bottom:32px;
}


.pricing-price{
        font-size: 48px;
        font-weight:600;
}
.pricing-price-sub {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
    position:relative;
    top:10px;
}
.resume-box{
    max-width:50%;
    margin-bottom:32px;
}

/* RESPONSIVE START */

/* -------------------------------#320#------------------------------- */
@media (min-width: 320px) {
    
    .container-full{
         padding-left:16px;
        padding-right:16px;
    }
    
    .container {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-left:30px;
        padding-right:30px;
    }
    
    .hidden-xs{
        display:none;
    }
    
    
     .visible-xs{
        display:grid;
    }
    
    #topline{
       padding: 30px 0 50px 0;
        grid-template-columns:1fr 1fr;
        align-items:center;
    }
    
    .totop-link{
        width: 40px;
        height: 40px;
        display: flex;
        border-radius: 50%;
        background: var(--color--primary-3);
        line-height: 40px;
        justify-content: center;
        color: var(--color--black);
        margin-left: auto;
        margin-right: 32px;
        position: absolute;
        z-index: 2;
        bottom: 50px;
        right: 0;
    }
    
     section{
        padding:32px 0;
    }
    
    .firstsection{
        padding:0 ;
    }
    
    .donatenow-mob-btn{
        margin-top:32px;
    }
    
    .mob_main_menu {
        display: flex;
        justify-content: flex-end;
    }
    
      .menu_btn {
       width: 32px;
        cursor: pointer;
        margin-left: auto;
    }
    
    .menu_btn:before, .menu_btn:after, .menu_btn div {
        background: var(--color--black);
        content: "";
        display: block;
        height: 3px;
        border-radius: 3px;
        margin: 4px 0;
        transition: 0.5s;
        width: 32px;
    }
    .menu_btn.open:before {
        transform: translateY(8px) rotate(135deg);
    }
    .menu_btn.open div {
        transform: scale(0);
    }
    .menu_btn.open:after {
        transform: translateY(-13px) rotate(-135deg);
    }
    
    .menu_middle_line {
        width: 60% !important;
    }
    ul.mob-menu {
        margin: 0;
        list-style: none;
        padding-top: 32px;
        padding-left: 16px;
        margin-left: 16px;
        border-radius: var(--border-radius--lg);
    }
    
    .mob-menu {
        display: none;
        float: left;
        margin: 0;
        padding: 0;
        margin-top: 32px;
        background: var(--color--primary-2);
        padding: 18px 0;
        position: absolute;
        top: 108px;
        left: 0;
        width: calc(100% - 30px);
        z-index: 999;
        height: 100vh;
        font-size: 18px;
        color: var(--color--white);
    }
    .mob-menu_open {
        display: block;
    }
    .mob-menu_open li {
        float: left;
        width: 100%;
        margin: 12px 0;
        padding: 0 24px;
        
    }
    .mob-menu_open li a{
        color:var(--color5); 
        text-transform:uppercase;
        font-weight:var(--w600);
        display: flex;
        align-items: center;
        font-size: 18px;
        text-decoration:none;
    }
    
    .mob-menu_open li a i{
        margin-left:8px;
    }
    
     li.main-menu-item a {
        margin: 0;
        display:flex;
    }
     li.main-menu-item a i{
        margin-left: 8px;
        
    }
    .inner_mob_menu{
        display: grid;
        padding: 24px;
    }
    .mob_menu_bottom {
        margin-top:16px;
        margin-left:16px;
        display: inline-grid;
        padding-top: 24px;
        width: calc(100% - 32px);
    }
    
    .divider {
        background-color: var(--color--gray-2);
        width: calc(100% - 32px);
        height: 1px;
        margin-left: 16px;
        display: grid;
        margin-top: 24px;
        float: left;
    }
    
    .drop-mobmenu li a{
        color: var(--color--heading);
    }
    
    .open_mob_sub li{
        padding:0;
    }
    
    .open_mob_sub li a{
        font-size:16px;
    }
    
    .hero-wrapper {
        padding-top: 70px;
        padding-bottom: 0;
        padding-left: 40px;
        padding-right: 40px;
        position: relative;
        overflow: hidden;
        grid-column-gap: 0;
        grid-row-gap: 0;
        grid-template-columns: 1fr;
        position: relative;
        z-index: 3;
       /* align-items: center;*/
    }
    .hero-txt {
        color: var(--color--white);
        margin-bottom: 0;
        max-width: 100%;
        font-size: 18px;
    }
    
    .hero-h1 {
        font-size: 24px;
    }
    
    .hero-lg-title {
        font-size: 40px;
    }
    
    .formbrodtxt{
        margin-bottom:48px;
        color:var(--color--white);
    }
    
    .f_input {
        background: var(--color--white) !important;
        color: var(--color--heading);
        line-height: 1.65rem;
        border: 1px solid #DAD9D9 !important;
        border-radius: 4px;
        padding: 12px 15px;
        outline: 0;
        font-size: 16px;
        width: 100%;
        height: 48px;
    }
    
     .txtwrapper{
        max-width:100%;
    }
    
    .donateoptions-line{
        grid-template-columns:1fr;
        grid-column-gap:0;
        grid-row-gap:32px;
        margin-top: 32px;
    }
    
    .two-cols, .inner-footer{
        grid-template-columns:1fr;
        grid-column-gap:0;
        grid-row-gap:32px;
    }
    
}


/* -------------------------------#1024#------------------------------- */

@media (min-width: 1024px) {
    .container {
        max-width: 1360px;
        padding-left:60px;
        padding-right:60px;
    }
    .container-full {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hidden-xs{
        display:flex;
    }
    
     .visible-xs{
        display:none;
    }
    
    #topline{
        grid-template-columns:1.5fr 5fr 1fr;
    }
    
    .deskmenu{
         justify-self: center;
    }
    
    .totop-link{
        right: 64px;
    }
    
  
    section{
     padding-top:72px;
    }
    
    .middelsection{
        padding-bottom:0;
    }
    
     .lastsection{
        padding:120px 0;
    }
    
    .faq-headline{
        font-size:20px;
    }
    
    .txt-wrapper{
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .formbrodtxt{
        margin-bottom:0;
    }
    
    footer{
        padding-top: 115px;
        padding-bottom: 50px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1.6fr 1fr;
        padding-top: 100px;
        padding-bottom: 0;
        padding-left: 100px;
        padding-right: 100px;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        align-items: center;
    }
    .hero-width {
        max-width: 80%;
    }
    
    .hero-lg-title {
        margin-bottom: -10px;
        font-size: 120px;
    }
    
    .two-cols-form{
       grid-template-columns: 1fr 1fr; 
        grid-column-gap: 0;
        grid-row-gap: 30px;
    }
    
    .txtwrapper{
        max-width:920px;
        margin-left:auto;
        margin-right:auto;
    }
    
    .formbrodtxt{
        color:var(--color--white);
        margin-bottom:32px;
    }
    
    .donateoptions-line{
        grid-template-columns:repeat(3, 1fr);
        grid-column-gap:48px;
        grid-row-gap:0;
        margin-top: 48px;
    }
    
    .inner-footer{
        grid-template-columns:repeat(3, 1fr);
        grid-column-gap:32px;
        grid-row-gap:0;
    }
    
    .two-cols{
        grid-template-columns:1fr 1fr;
        grid-column-gap:48px;
        grid-row-gap:0;
    }
    
    .inner-footer{
        grid-column-gap:48px;
        grid-row-gap:0;
    }
   
}


 /* -------------------------------#1200#------------------------------- */

@media (min-width: 1200px) {
    
}


/* -------------------------------#1400#------------------------------- */

@media (min-width: 1400px) {
    
}


/* -------------------------------#1920#------------------------------- */

@media (min-width: 1920px) {
    .container-full {
        padding-left: 100px;
        padding-right: 100px;
    }
    .container{
        padding-left:30px;
        padding-right:30px;
    }
    
        .darkbg {
            background-position: 50%;
            padding-top: 155px;
            padding-left: 210px;
            padding-right: 210px;
        }
        
    .hero-wrapper {
        padding: 0;
    }
}

@media (min-width: 2500px) {
    h1 {
        font-size: calc(36px + (70 - 30)*((100vw - 300px) /(1600 - 300)));
    }
}




/* ANIMATION */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
