:root{
    --blue:#1E4472;
    --orange:#E8782D;
    --orange-light:#EDB38C;
    --text-color:#5B5A5B;
}
body{
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-color);
}
*{
    margin: 0;
}
:is(h1, h2, h3, h4, h5, h6, p){
    margin: 0;
}
/**************************************
TYPOGRAPHY
**************************************/
h1, .h1{
    font-size: 80px;
    font-weight: 300;
    line-height: 1.2;
}
h2, .h2{
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
}
h3, .h3{
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}
h4, .h4{
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}
h5, .h5{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}
h6, .h6{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}
p, .para{
    font-size: 16px;
    line-height: 22px;
}
.heading{
    font-family: "Playfair Display", serif;
    font-weight: 500;
}
*{
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
a:hover{
    color: var(--orange);
}
img{
    display: block;
    max-width: 100%;
}
@media screen and (max-width:1280px) {
    h1, .h1{
        font-size: 60px;
    }
    h2, .h2{
        font-size: 36px;
    }
    h3, .h3{
        font-size: 30px;
    }
    h4, .h4{
        font-size: 26px;
    }
    h5, .h5{
        font-size: 22px;
    }
    h6, .h6{
        font-size: 18px;
    }
    p, .para{
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width:767px) {
    h1, .h1{
        font-size: 40px;
    }
    h2, .h2{
        font-size: 30px;
    }
    h3, .h3{
        font-size: 26px;
    }
    h4, .h4{
        font-size: 24px;
    }
    h5, .h5{
        font-size: 20px;
    }
    h6, .h6{
        font-size: 18px;
    }
    p, .para{
        font-size: 16px;
        line-height: 22px;
    }
}
/**************************************
CONTAINER
**************************************/
:root{
    --container-width: 1630px;
    --container-padding:60px;
    --container: min(calc(100% - var(--container-padding) * 2), var(--container-width));
    --container-spacing: max(calc((100% - var(--container-width)) / 2), var(--container-padding));
    --container-spacing-minus: max(calc((-100% + var(--container-width)) / 2), var(--container-padding));
}
@media screen and (max-width:767px){
     :root{
         --container-padding:30px;
     }
}
.container{
    width: var(--container);
    max-width: unset;
    margin-inline: auto;
    padding-inline: 0;
}
/**************************************
BUTTON
**************************************/
.button{
    padding: 12px 30px;
    display: inline-block;
    background-color: var(--orange);
    font-size: 21px;
    color: #fff;
    transition: all 0.3s;
    border: 0;
    cursor: pointer;
}
.button:hover{
    color: #fff;
    background-color: var(--blue);
}
@media screen and (max-width:1280px) {
    .button{
        font-size: 18px;
    }
}
/**************************************
HEADER
**************************************/
:root{
    --topbar-height:60px;
}
header{
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
}
.header-top-bar{
    min-height: var(--topbar-height);
    background-color: var(--blue);
    color: #fff;
}
.header-contact {
    display: flex;
    justify-content: end;
}
.header-contact a{
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    grid-gap: 15px;
    padding-block: 17px;
    padding-inline: 30px;
    transition: all 0.3s;
}
.header-contact a img{
    width: 17px;
    height: auto;
}
.header-contact a.login{
    background-color: var(--orange);
}
.header-contact a.login:hover{
    background-color: var(--orange-light);
}
.header-contact a.phone:hover{
    color: var(--orange);
}
/*navbar*/
header .navigation .navBar{
    display: flex;
    justify-content: space-between;
}

header .navigation .navBar .logo{
    margin-top: -60px;
}
header .navigation .navBar ul{
    padding: 0;
    list-style: none;
    display: flex;
    grid-gap: 0 30px;
}
header .navigation .navBar ul li{
    padding: 50px 0;
}
header .navigation .navBar ul li a{
    color: #fff;
    transition: all 0.3s;
}
header .navigation .navBar ul li a:hover{
    color: var(--orange);
}
/*toggle*/
header .toggle{
    display: none;
    background-color: var(--orange);
    border: 0;
    margin-top: 10px;
    padding: 10px;
}
header .toggle span{
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
}
header .toggle span:nth-child(2){
    margin-block: 7px;
}
@media screen and (min-width:1081px) {
    header .navBar nav{
        display: block !important;
    }
}
@media screen and (max-width:1080px) {
    header .navigation .navBar{
        align-items: center;
    }
    header .navigation .navBar .logo img{
        max-width: 180px;
    }
    header .navBar nav {
        width: 100%;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        background-color: var(--blue);
        padding-block: 30px;
        z-index: 9;
        display: none;
    }
    header .navigation .navBar ul{
        flex-wrap: wrap;
    }
    header .navigation .navBar ul li{
        width: 100%;
        padding: 0;
    }
    header .navigation .navBar ul li a{
        display: block;
        padding: 10px var(--container-padding);
    }
    header .toggle{
        display: block;
    }
}
@media screen and (max-width:767px) {
    .header-contact a.email{
        display: none;
    }
}
@media screen and (max-width:640px) {
    :root{
        --topbar-height: 44px;
    }
    header .navigation .navBar{
        margin-top:15px;
    }
    header .navigation .navBar .logo img {
        max-width: 180px;
    }
    .header-contact a {
        font-size: 16px;
        padding-block: 10px;
        padding-inline: 15px;
    }
}
@media screen and (max-width:525px) {
    header .navigation .navBar{
        align-items: start;
    }
    header .navigation .navBar .logo {
        margin-top: 0;
    }
    header .navigation .navBar .logo img {
        max-width: 120px;
    }
}
/**************************************
HERO BANNER
**************************************/
.hero-banner {
    margin-top: var(--topbar-height);
    position: relative;
    padding-block: 320px 30px;
}
.hero-banner > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.hero-banner .hero-banner-text{
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-banner .hero-banner-text h1{
    font-family: "Playfair Display", serif;
    font-weight:600;
}
.hero-banner .hero-banner-text h2{
   margin-top:30px;
   font-family: "Playfair Display", serif;
   font-weight: 100;
}
.hero-banner .hero-banner-text .button{
    margin-top:50px;
}
.hero-banner .scroll-wheel{
    margin-top: 120px;
    display: flex;
    justify-content: center;
}
@media screen and (max-width:1080px) {
    .hero-banner {
        padding-block: 130px 30px;
    }
    .hero-banner .scroll-wheel{
        margin-top: 50px;
    }
}
/**************************************
CTA
**************************************/
.cta {
    padding-block: 30px;
    background-color: var(--blue);
    color: #fff;
}
.cta .c-row{
    display:flex;
    justify-content: space-between;
}
.cta a{
    font-size: 20px;
    color:#fff;
    transition: all 0.3s;
}
.cta a :is(img, i){
    margin-right:15px;
}
.cta a:nth-child(1):hover{
    color: var(--orange);
}
.cta a span.text{
    color:var(--orange-light);
    transition: all 0.3s;
}
.cta a span.text:hover{
    color: var(--orange);
}
@media screen and (max-width:1280px) {
    .cta a{
        font-size: 16px;
    }
}
@media screen and (max-width:640px) {
    .cta{
        padding-block: 15px;
    }
    .cta .c-row {
        flex-direction: column;
        grid-gap: 10px;
        align-items: center;
    }
    .cta a{
        text-align: center;
    }
}
@media screen and (max-width:480px) {
    .cta a{
        font-size: 12px;
    }
}
/**************************************
CTA
**************************************/
.get-in-touch{
    padding-block: 70px;
    background-color: #F2EFE9;
}
.get-in-touch h6{
    margin-top: 15px;
}
.get-in-touch p{
    margin-top: 15px;
}
.get-in-touch .button{
    margin-top: 30px;
}
@media screen and (max-width:1280px) {
    .get-in-touch{
        padding-block: 50px;
    }
}
/**************************************
FEATURE BLOCK
**************************************/
.feature-item{
    display: flex;
    flex-wrap: wrap;
}
.feature-item:nth-child(even){
    flex-direction: row-reverse;
}
.feature-item .img-block{
    width: 50%;
}
.feature-item .img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-item .text-block{
    width: 50%;
    padding: 70px 100px;
    display: flex;
    align-items: center;
}
.feature-item .text-block h5{
    margin-top: 15px;
}
.feature-item .text-block :where(p, ul){
    margin-top: 15px;
}
.feature-item .text-block ul{
    padding-left: 17px;
}
.feature-item .text-block .button{
    margin-top: 30px;
}
@media screen and (max-width:1280px) {
    .feature-item .text-block{
        padding: 50px 50px;
    }
}
@media screen and (max-width:991px) {
    .feature-item .img-block{
        width: 100%;
    }
    .feature-item .text-block{
        width: 100%;
        padding-inline: var(--container-padding);
    }
}
/**************************************
TEAM BLOCK
**************************************/
:root{
    --slider-bottom-spacing:270px;
}
.team-block {
    padding-block: 70px calc(var(--slider-bottom-spacing) + 70px);
    background-color: #F2EFE9;
}
.team-block h2{
    margin-bottom:15px;
}
.team-items{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 50px 100px;
}
.team-item{
    flex: 1;
    display:flex;
}
.team-item .img-block{
    width:300px;
}
.team-item .text-block{
    flex:1;
    padding: 15px 30px;
}
.team-item .text-block h6{
    margin-top:10px;
}
.team-item .text-block p{
    margin-top:10px;
}
.team-item .text-block .phone{
    margin-block: 30px 15px;
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    transition: all 0.3s;
}
.team-item .text-block .phone:hover{
    color: var(--orange);
}
@media screen and (max-width:1280px) {
    .team-items{
        grid-gap: 50px 30px;
    }
    .team-item .img-block{
        width: 200px;
    }
    .team-item .text-block{
        padding: 0 30px;
    }
}
@media screen and (max-width:1080px) {
    .team-item{
        flex: 100%;
    }
}
@media screen and (max-width:767px) {
    .team-block {
        padding-block: 50px calc(var(--slider-bottom-spacing) + 50px);
    }
}
@media screen and (max-width:640px) {
    .team-item .img-block{
        width: 140px;
    }
    .team-item .text-block{
        padding-inline: 15px 0;
    }
}
@media screen and (max-width:525px) {
    .team-item{
        flex: 100%;
        flex-wrap: wrap;
    }
    .team-item .img-block {
        width: 100%;
    }
    .team-item .text-block{
        margin-top: 15px;
        flex: 100%;
        padding-inline: 0;
    }
}
/**************************************
TEAM SLIDER
**************************************/
.team-slider-block{
    padding-inline: var(--container-spacing);
}
.team-slider{
    margin-top: calc(var(--slider-bottom-spacing) - var(--slider-bottom-spacing) * 2);
    padding: 50px 130px;
    background-color: #fff;
    position: relative;
}
.team-slide{
    position: relative;   
}
.team-slide > h4{
    margin-top: 15px;
    font-family: "Playfair Display", serif;
    text-align: center;
    color: var(--orange);
}
.team-slide > span{
    margin-top: 5px;
    display: block;
    font-size: 16px;
    text-align: center;
}
.team-slide .team-overlay{
    padding: 50px;
    background-color: rgb(57 91 142 / 90%);
    position: absolute;
    inset: 0;
    color: #fff;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.team-slide:hover .team-overlay{
    opacity: 1;
    visibility: visible;
}
.team-slide .team-overlay-scroll{
    max-width: 300px;
    max-height: 300px;
    overflow-y: auto;
}
.team-slide .team-overlay-scroll > span{
    display: block;
    font-size: 18px;
    margin-block: 10px;
}
.team-slide .team-overlay .phone {
    margin-block: 15px 5px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}
.team-slide .team-overlay .button{
    margin-top: 10px;
}
.team-slider.owl-carousel .owl-nav{
    height: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    left: 0;
    padding-inline: 30px;
}
.team-slider.owl-carousel .owl-nav button i{
    font-size: 57px;
    color: #D3D1CD;
}
.team-slider.owl-carousel .owl-nav button:hover i{
    color: var(--orange);
}
@media screen and (max-width:1366px) {
    .team-slide .team-overlay{
        padding: 15px;
        display: flex;
        align-items: center;
    }
    .team-slide .team-overlay-scroll{
        aspect-ratio: 1/1;
    }
}
@media screen and (max-width:767px) {
    .team-slider-block{
        margin-bottom: 30px;
    }
    .team-slider {
        padding: 50px 70px;
    }
    .team-slider.owl-carousel .owl-nav{
        padding-inline: 15px;
    }
    .team-slider.owl-carousel .owl-nav button i {
        font-size: 40px;
    }
}
@media screen and (max-width:525px) {
    .team-slider {
        padding: 15px 15px;
    }
    .team-slider.owl-carousel .owl-nav{
        margin-top: 15px;
        height: auto;
        position: unset;
    }
}
/**************************************
CONTACT
**************************************/
.contact-block{
    padding-block: 50px;
    padding-inline: var(--container-spacing);
}
.contact-block h2{
    text-align: center;
    color: var(--blue);
}
.contact-block h6{
    margin-top: 30px;
    text-align: center;
}
.contact-block form{
    max-width: 1047px;
    margin-top: 50px;
    margin-inline: auto;
}
.form-field input:is([type="text"], [type="email"], [type="tel"]),
.form-field textarea{
    width: 100%;
    font-size: 20px;
    font-family: inherit;
    padding: 8px 15px;
    color: var(--text-color);
    border: 1px solid #D6D3CE;
}
.form-field input:is([type="text"], [type="email"], [type="tel"]):focus,
.form-field textarea:focus{
    outline: 1px solid var(--orange);
}
.form-field input:is([type="text"], [type="email"], [type="tel"])::placeholder,
.form-field textarea::placeholder{
    color: var(--text-color);
}
.form-field textarea{
    min-height: 150px;
    resize: none;
}
.fieldset{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px 30px;
}
.fieldset .form-field{
    flex: 100%;
}
.fieldset .form-field:nth-child(1),
.fieldset .form-field:nth-child(2){
    flex: 1;
}
.contact-block form .checkbox-btn label{
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 20px;
    color: #969696;
    grid-gap: 0 15px;
    user-select: none;
    position: relative;
}
.contact-block form .checkbox-btn label input{
    /* display: none; */
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
}
.contact-block form .checkbox-btn .checkmark{
    display: flex;
    height: 27px;
    align-items: flex-start;
    cursor: pointer;
}
.contact-block form .checkbox-btn .checkmark::after{
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid #D6D3CE;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}
.contact-block form .checkbox-btn label input:checked ~ .checkmark::after{
    content: '\f00c';
}
.contact-block form .checkbox-btn a{
    color: var(--orange);
}
.contact-block form .checkbox-btn a:hover{
    color: inherit;
}
.contact-block form .form-action {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 15px;
}
/*error*/
form *:not(input).error,
form .checkbox-btn label.error {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: red;
    margin-top: 5px;
}
form .checkbox-btn label.error {
    position: absolute;
    bottom: -30px;
}
.response-message {
    background-color: #00af00;
    color: #fff;
    padding: 15px;
    margin-block: 15px;
}
.response-message.error{
	background-color: #ff0000;
}
@media screen and (max-width:767px) {
    .form-field input:is([type="text"], [type="email"], [type="tel"]), 
    .form-field textarea{
        font-size: 16px;
    }
    .fieldset{
        grid-gap: 15px 15px;
    }
    .fieldset .form-field:nth-child(1), .fieldset .form-field:nth-child(2){
        flex: 100%;
    }
    .contact-block form .checkbox-btn label{
        font-size: 16px;
    }
}
/**************************************
MAP
**************************************/
.address-block{
    display: flex;
    flex-wrap: wrap;
}
.address-block .map{
    width: 50%;
}
.address-block .map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.address-block .address-text{
    width: 50%;
    padding: 50px 100px;
    background-color: #F2EFE9;
    display: flex;
    align-items: center;
}
.address-block .address-text > div{
    width: 100%;
}
.address-block .address-text h4{
    color: var(--blue);
}
.address-block .address-text .c-row{
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}
.address-block .address-text address{
    width: 50%;
    font-style: normal;
}
.address-block .address-text .contact-details{
    width: 50%;
}
.address-block .address-text .contact-details ul{
    padding: 0;
    list-style: none;
}
.address-block .address-text .contact-details ul li a{
    color: inherit;
}
.address-block .address-text .contact-details ul li:not(:first-child){
    margin-top: 10px;
}
.address-block .address-text .contact-details ul li span{
    font-weight: 600;
}
.address-block .address-text .contact-details ul li:last-child a{
    color: var(--orange);
    transition: all 0.3s;
}
.address-block .address-text .contact-details ul li:last-child a:hover{
    color: inherit;
}
.address-block .address-text .button{
    margin-top: 30px;
}
@media screen and (max-width:1280px) {
    .address-block .address-text{
        padding: 50px 50px;
    }
    .address-block .address-text address{
        padding-right: 15px;
    }
}
@media screen and (max-width:991px) {
    .address-block .map{
        width: 100%;
    }
    .address-block .address-text{
        width: 100%;
        padding-block: 30px;
        padding-inline: var(--container-padding);
    }
}
@media screen and (max-width:480px) {
    .address-block .address-text address{
        width: 100%;
        padding-right: 0;
    }
    .address-block .address-text .contact-details{
        margin-top: 30px;
        width: 100%;
    }
}
/**************************************
FOOTER
**************************************/
footer .footer-main{
    padding-block: 70px;
    background-color: #193A5B;
    color: #fff;
}
footer .footer-main .c-row{
    display: flex;
    flex-wrap: wrap;
}
footer .footer-main .c-row .c-col.col-left{
    width: 400px;
}
footer .footer-main .c-row .c-col.col-center{
    flex: 1;
    text-align: center;
}
footer .footer-main .c-row .c-col.col-right{
    width: 300px;
}
footer .footer-main .c-row .c-col.col-center p{
    color: #CCCCCC;
}
footer .footer-main .c-row .c-col.col-center p:not(:first-child){
    margin-top: 15px;
}
footer .footer-main .c-row .c-col.col-right a{
    display: block;
    text-align: right;
    color: #fff;
    transition: all 0.3s;
}
footer .footer-main .c-row .c-col.col-right a:hover{
    color: var(--orange);
}
footer .footer-main .c-row .c-col.col-right a:not(:first-child){
    margin-top: 15px;
}
footer ul.social{
    margin-top: 15px;
    padding: 0;
    display: flex;
    grid-gap: 0 15px;
    flex-wrap: wrap;
    list-style: none;
}
footer ul.social li a{
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--blue);
    transition: all 0.3s;
}
footer ul.social li a:hover{
    background-color: var(--orange);
}
/*copyright*/
footer .copyright{
    padding-block: 19px;
    background-color: #122A3F;
    color: #fff;
}
footer .copyright .c-row{
    display: flex;
    justify-content: space-between;
}
@media screen and (min-width:992px) {
    footer .footer-main .c-row .c-col.col-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}
@media screen and (max-width:1280px) {
    footer .footer-main .c-row .c-col.col-left {
        width: 250px;
    }
    footer .footer-main .c-row .c-col.col-left img{
        max-width: 200px;
    }
    footer .footer-main .c-row .c-col.col-right {
        width: 200px;
    }
}
@media screen and (max-width:991px) {
    footer .footer-main{
        padding-block: 30px;
    }
    footer .footer-main .c-row .c-col.col-left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .footer-main .c-row .c-col.col-center{
        margin-top: 30px;
        flex: 100%;
    }
    footer .footer-main .c-row .c-col.col-right{
        margin-top: 30px;
        width: 100%;
    }
    footer .footer-main .c-row .c-col.col-right a{
        text-align: center;
    }
    footer .copyright .c-row{
        flex-direction: column;
        grid-gap: 10px;
        text-align: center;
    }
}
/**************************************
POPOVER
**************************************/
.popover {
    padding: 15px;
    border-radius: 0;
}
.popover .popover-body {
    padding: 0;
}
.popover .warning-text p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}
.popover .warning-text p:not(:first-child){
    margin-top: 10px;
}
.popover .warning-text a{
    color: var(--orange);
    font-weight: 700;
    transition: all 0.3s;
}
.popover .warning-text a:hover{
    color: inherit;
}
.popover .close-popover {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    user-select: none;
}
/**************************************
INNER BANNER
**************************************/
.inner-banner {
    margin-top: var(--topbar-height);
    position: relative;
    padding-block: 180px 180px;
}
.inner-banner > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.inner-banner .inner-banner-text{
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
.inner-banner .inner-banner-text h1{
    font-family: "Playfair Display", serif;
    font-weight:600;
}
.inner-banner .inner-banner-text h2{
   margin-top:30px;
   font-family: "Playfair Display", serif;
   font-weight: 100;
}
.inner-banner .inner-banner-text .button{
    margin-top:50px;
}
.inner-banner .scroll-wheel{
    margin-top: 120px;
    display: flex;
    justify-content: center;
}
@media screen and (max-width:1080px) {
    .inner-banner {
        padding-block: 130px 30px;
    }
    .inner-banner .scroll-wheel{
        margin-top: 50px;
    }
}
/**************************************
DATA PROTECTION PAGE
**************************************/
.data-protection-container{
    padding-block: 70px;
    /* color: #000; */
}
.data-protection-container form{
    max-width: 1140px;
    margin-inline: auto;
}
.data-protection-container form input{
    accent-color: var(--orange);
}
.data-protection-container form :where(h2,h3,h4,h5,h6,p,ol,ul,li):not(:first-child){
    margin-top: 20px;
}
.data-protection-container form label{
    font-weight: 500;
}
.data-protection-container b{
    font-weight: 600;
}
.check-boxes{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.data-protection-container a{
    color: var(--orange);
}
.data-protection-container a:hover{
    color: var(--blue);
}
.data-protection-container ol{
    margin-top: 20px !important;
}
.data-protection-container ul{
    list-style: disc;
}
.data-protection-container ul li{
    margin-top: 0 !important;
}
.data-protection-container input[type="text"]{
    max-width: 300px;
    border: 1px solid #949494;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 2px 3px #CCCCCC inset;
    color: #5D5D5D;
    font-family: 'calibri';
    font-size: 13px;
    margin: 0;
    padding: 5px;
    width: 94%;
}
.data-protection-container .g-recaptcha{
    margin-top: 20px;
}
.data-protection-container .button{
    margin-top: 20px;
}