@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');


:root {
    --primaryColor: #181b38;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: "Sora", sans-serif;
    font-weight: 400;    	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input:focus,
select:focus {
    box-shadow: none;
    border: 0;
    outline: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.gap-x-26 {
    row-gap: 26px;
}

.gap-x-15 {
    row-gap: 15px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 999;    
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}



/*======= header-area design =======*/

.header-nav {
    z-index: 999;
    padding: 35px 0;
    transition: all 0.3s ease;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.menu-sticky {
    background: #fff;
    z-index: 999;
    padding: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}


.main-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-menu ul li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #181b38;
    transition: 0.2s;
}

.main-menu ul li a:hover {
    color: #000;
    font-weight: 500;
}

.main-menu ul li:last-child a {
    padding: 10px 30px;
    border: 1px solid #d3d0d4;
    border-radius: 60px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.main-menu ul li:last-child a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primaryColor);
    transition: 0.4s;
    z-index: -1;
}

.main-menu ul li:last-child a:hover::after {
    width: 100%;
}

.main-menu ul li:last-child a:hover {
    font-weight: 400;
    color: var(--whiteColor);
}

.offcanvas-start {
	border-right: none !important;
}

.offcanvas-start .offcanvas-header {
	padding: 28px 24px 20px;
	border-bottom: none;
}

.offcanvas-start .offcanvas-body {
	padding: 12px 24px 32px;
}

.offcanvas-header a {
	padding: 0;
}

.offcanvas-start .btn-close {
	opacity: 0.4;
	transition: opacity 0.2s;
}

.offcanvas-start .btn-close:hover {
	opacity: 1;
}

.offcanvas-start ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.offcanvas-start ul li a {
	display: block;
	width: 100%;
	padding: 14px 16px;
	color: #181b38;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	transition: background 0.2s, color 0.2s;
	border-radius: 12px;
	overflow: hidden;
}

.offcanvas-start ul li a:hover {
	background: #f5f5f7;
}

.offcanvas-start ul li:last-child a {
    margin-top: 20px;
    text-align: center;
    display: block;
    padding: 14px 30px;
    background: #f9dab4;
    border-radius: 60px;
    font-weight: 600;
    color: #181b38;
}

.offcanvas-start ul li:last-child a:hover {
    background: #e7be8b;
}

/* Footer Section Here */
.footer-section {
    padding: 55px 0 70px 0;
    background: #f5f5f7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo span {
    background: rgba(129, 129, 130, 0.2);
    height: 90px;
    width: 2px;
    display: block;
}

.footer-items-first ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-items-first ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: #818282;
}

.footer-items-first ul li a {
    text-decoration: underline;
    transition: 0.2s;
}

.footer-items-first ul li a:hover {
    color: var(--primaryColor);
}

.footer-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-items > div {
    min-height: 90px;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-section {
    background: linear-gradient(
        178deg,
        #ffffff 0%,
        #F5F5F7 100%
    );
}

.banner-area {
    max-width: 1360px;
    width: calc(100% - 32px);
    padding: 130px 0 50px 0;
    border-radius: 60px;
    margin: 140px auto 0;
    background: url(images/banner-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content {
    max-width: 450px;
}

.banner-content h1,
.banner-content h2 {
    font-weight: 400;
    font-size: 54px;
    line-height: 111%;
    letter-spacing: -0.04em;
    color: #181b38;
}

.banner-content p {
    margin-top: 50px;
    font-weight: 300;
    font-size: 28px;
    line-height: 154%;
    color: #181b38;
}


.banner-bottom .custom-select {
    position: relative;
    width: 100%;
}

.banner-bottom .custom-select span {
    width: 100%;
    font-weight: 300;
    font-size: 16px;
    line-height: 225%;
    color: #181b38;
    border: none;
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    max-width: 380px;
}

.hero-custom-select {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-bottom .select-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.banner-bottom {
    margin-top: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-bottom button {
    display: block;
    padding: 20px 32px;
    background: #f9dab4;
    border-radius: 60px;
    font-weight: 600;
    font-size: 28px;
    line-height: 107%;
    color: #181b38;
    white-space: nowrap;
    transition: 0.2s;
}

.banner-bottom button:hover {
    background: #e7be8b;
}

.banner-bottom-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.banner-bottom-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.banner-bottom-right div {
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.banner-pop .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181b38;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.banner-pop.is-open .overlay {
    opacity: 0.5;
    visibility: visible;
}

.banner-pop .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f5f5f7;
    max-width: 640px;
    width: 100%;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    padding: 30px 40px 50px;
}

.banner-pop.is-open .popup {
    opacity: 1;
    visibility: visible;
}

.banner-popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-popup-top h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 159%;
    text-align: center;
    color: #181b38;
    position: relative;
    display: inline-block;
}

.banner-popup-top h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: url(images/popup-line.png) no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.banner-pop .popup p {
    padding-top: 20px;
    font-weight: 300;
    font-size: 20px;
    line-height: 170%;
    color: #181b38;
}

.banner-popup-bottom {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-top: 36px;
}

.banner-popup-bottom-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-popup-bottom-form label {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 20px;
    color: #181b38;
}

.banner-popup-bottom-form select,
.banner-popup-bottom-form input {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 90px;
    padding: 12px 20px;
    color: #181b38;
    outline: none;
    border: 1px solid transparent;
}

.banner-popup-bottom-form input:focus {
    border-color: var(--primaryColor);
}

.banner-popup-bottom-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-popup-bottom-submit p {
    font-weight: 400;
    font-size: 20px;
    color: rgba(24, 27, 56, 0.5);
}

.banner-popup-bottom-submit button {
	display: block;
	padding: 18px 32px;
	background: #f9dab4;
	border-radius: 60px;
	font-weight: 600;
	font-size: 24px;
	line-height: 107%;
	color: #181b38;
	white-space: nowrap;
	transition: 0.2s;
}

.banner-popup-bottom-submit button:hover {
    background: #e7be8b;
}

/* Oplichter Section Here */
.oplichter-section {
    padding-top: 90px;
    padding-bottom: 190px;
    position: relative;
    background: #F5F5F7;
}

.oplichter-area h2 {
    font-weight: 600;
    font-size: 56px;
    line-height: 79%;
    color: #181b38;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.oplichter-area h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: url(images/oplichter-line.png) no-repeat center;
    background-size: 100% 100%;
    pointer-events: none;
}

.oplichter-area {
    text-align: center;
    max-width: 970px;
    margin: 0 auto;
}

.oplichter-area p {
    padding-top: 22px;
    font-weight: 300;
    font-size: 34px;
    line-height: 159%;
    text-align: center;
    color: #181b38;
}

.oplichter-area svg {
    margin: 20px 0;
}

.oplichter-area-bottom {
    text-align: center;
}

.oplichter-area-bottom h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 159%;
    color: #181b38;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.oplichter-area-bottom h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: url(images/popup-line.png) no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.oplichter-area-bottom button {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    transform: rotate(-2deg);
    border-radius: 100px;
    padding: 20px 28px;
    font-weight: 400;
    font-size: 18px;
    line-height: 128%;
    color: #000;
    margin: 0 auto;
    margin-top: 30px;
    transition: 0.2s;
}

.oplichter-area-bottom button:hover {
    text-shadow: 0px 6px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.oplichter-area-bottom button svg {
    margin: 0;
}

.oplichter-area-icon svg {
    margin: 0;
    position: absolute;
    right: 50%;
    bottom: 0;
}

/* Herkenbaar Section Here */
.herkenbaar-section {
    padding-bottom: 120px;
    background: #fff;
}

.herkenbaar-top {
    text-align: center;
}

.herkenbaar-top-number {
    height: 88px;
    width: 88px;
    line-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181b38;
    border-radius: 50%;
    margin: 0 auto;
    border: 30px solid #F5F5F7;
    box-sizing: content-box;
}

.herkenbaar-top-number h4 {
    font-weight: 800;
    font-size: 34px;
    line-height: 159%;
    text-align: center;
    color: #fff;
}

.herkenbaar-top p {
    padding-top: 40px;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    color: #000;
}

.herkenbaar-top {
    margin-top: -75px;
    position: relative;
    z-index: 2;
}

.herkenbaar-bottom {
    padding-top: 120px;
}

.herkenbaar-bottom h3 {
    font-weight: 600;
    font-size: 52px;
    line-height: 104%;
    text-align: center;
    color: #000;
}

.herkenbaar-bottom ul {
    max-width: 840px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.herkenbaar-bottom ul li {
    padding: 8px 20px;
    background: #f5f5f7;
    border-radius: 230px;
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 24px;
    line-height: 225%;
    text-align: center;
    color: #000;
}

.herkenbaar-bottom ul li:nth-child(2) {
    transform: rotate(-2deg);
}

/* Helder Section Here */
.helder-section {
    padding-top: 170px;
    background: linear-gradient(180deg, #181b38 0%, #191e4c 100%);
    position: relative;
}

.helder-top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
}

.helder-box {
    padding-top: 60px;
    background: #2d315b;
    border-radius: 20px 20px 0 0;
}

.helder-box-button {
    text-align: center;
    padding: 0 50px;
}

.helder-box-button button {
    padding: 15px 40px;
    font-size: 30px;
    border-radius: 60px;
    background: #181b3a;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.helder-box-heading h2 {
    margin-top: 90px;
    font-weight: 700;
    font-size: 56px;
    line-height: 54%;
    text-align: center;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.helder-box-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: url(images/helder-line.png) no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.helder-box-heading {
    text-align: center;
    padding: 0 50px;
}

.helder-box-items {
    padding: 90px 70px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.helder-box-single-items {
    display: flex;
    align-items: center;
    gap: 24px;
}

.helder-box-single-items span {
    height: 100px;
    width: 10px;
    background: #F9DAB4;
    display: block;
    border-radius: 20px;
}

.helder-box-single-items h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #fff;
}

.helder-box-single-items p {
    margin-top: 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 125%;
    color: #fff;
}

.helder-box-image {
    padding-top: 54px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Overstappen Section Here */
.overstappen-section {
    padding: 120px 0;
    background: #F5F5F7;
    position: relative;
}

.overstappen-top {
    text-align: center;
}

.overstappen-top h2 {
    font-weight: 600;
    font-size: 56px;
    line-height: 79%;
    color: #181b38;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.overstappen-top h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: url(images/overstappen-line.png) no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.overstappen-list {
    max-width: 740px;
    margin: 0 auto;
    margin-top: 90px;
}

.overstappen-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overstappen-list ul li {
    padding: 20px 50px;
    background: #fff;
    font-size: 28px;
    font-weight: 300;
    color: #000;
    border-radius: 120px;
    width: 100%;
}

.overstappen-bottom {
    max-width: 740px;
    padding: 24px;
    width: 100%;
    background: #fff;
    border-radius: 60px;
    margin: 0 auto;
    margin-top: 90px;
}

.overstappen-bottom button {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #f9dab4;
    border-radius: 36px;
    font-weight: 600;
    font-size: 28px;
    line-height: 107%;
    color: #181b38;
    transition: 0.2s;
}

.overstappen-bottom button:hover {
    background: #E7BE8B;
}

.overstappen-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
}


/* spreekt Section Here */
.spreekt-section {
    padding-top: 230px;
    padding-bottom: 110px;
    background: #fff;
}

.spreekt-image {
    text-align: center;
}

.spreekt-content {
    text-align: center;
    padding-top: 30px;
}

.spreekt-content h2 {
    font-weight: 600;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    color: #181b38;
}

.spreekt-content h2 span {
    position: relative;
    display: inline-block;
}

.spreekt-content h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: url(images/spreekt-line01.png) no-repeat center;
    background-size: 100% 100%;
}

.spreekt-content h2 .spreekt-underline {
    position: relative;
    display: inline-block;
}

.spreekt-content h2 .spreekt-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: url(images/spreekt-line02.png) no-repeat center;
    background-size: 100% 100%;
}

.spreekt-content p {
    font-weight: 200;
    font-size: 28px;
    padding-top: 8px;
    text-align: center;
    color: #181b38;
}

.spreekt-button {
    text-align: center;
}

.spreekt-button button {
    margin-top: 120px;
    font-size: 30px;
    padding: 15px 35px;
    border-radius: 60px;
    background: #181b3a;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: #fff;
    transition: 0.2s;
}

.spreekt-button button:hover {
    background: #191a27;
}

.overlay-secondary {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181b38;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.spreekt-popup.is-open .overlay-secondary {
    opacity: 0.5;
    visibility: visible;
}

.popup-secondary {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f5f5f7;
    padding: 30px 40px 50px;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    max-width: 640px;
    width: 100%;
}

.spreekt-popup.is-open .popup-secondary {
    opacity: 1;
    visibility: visible;
}

.spreekt-popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spreekt-popup-top h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 159%;
    text-align: center;
    color: #181b38;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.spreekt-popup-top h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: url(images/pop-up-line.png) no-repeat center;
    background-size: 100% 100%;
    pointer-events: none;
}

.spreekt-popup-bottom {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spreekt-popup-bottom p {
    font-weight: 300;
    font-size: 20px;
    line-height: 170%;
    color: #181b38;
}

.spreekt-popup-bottom p strong {
    font-weight: 600;
}

.spreekt-popup-bottom button {
    padding: 15px 35px;
    border: 1px solid #d8d6d9;
    border-radius: 60px;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #181b38;
}

/* FAQ Section Here */
.faq-section {
    padding-bottom: 90px;
}

.faq-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.faq-area-left-items {
    padding-left: calc((100vw - 1220px) / 2);
    border-top: 2px solid #f5f5f7;
    border-right: 1px solid #f5f5f7;
}

.faq-area-right-items {
    padding-right: calc((100vw - 1220px) / 2);
    border-top: 2px solid #f5f5f7;
    border-left: 1px solid #f5f5f7;
}

.faq-area-left-items:last-child {
    border-bottom: 2px solid #f5f5f7;
}

.faq-area-right-items:last-child {
    border-bottom: 2px solid #f5f5f7;
}

.faq-area-items {
    max-width: 550px;
    min-height: 300px;
    padding: 50px 0;
}

.faq-area-items-right {
    padding-left: 50px;
}

.faq-area-items h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 175%;
    color: #000;
}

.faq-area-items p {
    padding-top: 6px;
    font-weight: 300;
    font-size: 22px;
    line-height: 160%;
    color: #000;
}

.footer-copyright {
    padding-top: 40px;
}

.footer-copyright p {
    font-weight: 400;
    font-size: 12px;
    line-height: 250%;
    color: #818182;
}
.humberger-menu {
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    border-radius: 10px;
    transition: background 0.2s;
}

.humberger-menu:hover {
    background: rgba(24, 27, 56, 0.06);
}

.logo-area img {
    transform: translateY(3.5px);
}