body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Geist", sans-serif !important;
    position: relative;
}
*{
    box-sizing: border-box;
}
span{
    display: contents;
}
.container{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
}
img{
    margin: 0 auto;
    width: auto;
    height: auto;
}
a{
    color: var(--primary);
    transition: all 0.5s;
    text-decoration: none;
}
a:hover{
    color: var(--secondary);
    transition: all 0.5s;
}
p {
    color: #646666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.889%;
    margin-top: 0px;
    padding-bottom: 10px;
    margin-bottom: 0px;
}
p:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
:root{
    --primary: #DE811F;
    --secondary: #012C5B;
    --title: #071A19;
    --text: #323333;
    --dark: #000;
    --white: #fff; 
}
ul {
    list-style: disc;
    padding-left: 20px;
}
ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}
ol {
    list-style: decimal;
    padding-left: 20px;
}
ol li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}
ul,ol{
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0px;
    margin-bottom: 10px;
}

/* slick-arrow css */
button.slick-arrow {
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.slick-prev:before, .slick-next:before {
    content: "" !important;
    background-image: url(../images/slick-arrow-001.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px;
    height: 30px;
    width: 30px;
}
.slick-prev:before{
    transform: rotate(180deg);
}
.slick-prev:hover:before, .slick-next:hover:before {
    background-image: url(../images/slick-arrow-001-black.svg)
}

::selection{
    background-color: var(--primary);
    color: var(--white);
}
h2 {
    color: var(--title);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    margin-bottom: 35px;
}

.btn-main {
    border-radius: 100px;
    background: var(--primary);
    border: 1px solid var(--primary);
    display: inline-flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.btn-main:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-main.btn-outline{
    background-color: transparent;
    color: var(--primary);
}
.btn-main.btn-outline:hover{
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);    
}
.btn-main.btn-outline-secondary{
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);    
}
.btn-main.btn-outline-secondary:hover{
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);    
}
.btn-main.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-main.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-main img {
    transition: all 0.5s;
    filter: brightness(0) invert(1);
}
.btn-main.btn-secondary img,.btn-main.btn-white img{
    filter: unset;
}
.btn-main.btn-secondary:hover img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}
.btn-main.btn-white {
    background-color: var(--white);
    color: #113D3C;
    border-color: var(--white);
}
.btn-main.btn-white:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-main.btn-white:hover img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}


#header {
    position: relative;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
#header .header-main-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
#header .header-main-wrap .right-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 25px;
}
#header .header-logo {
    margin-bottom: -36px;
    position: relative;
    z-index: 10;
}
#header .header-logo a {
    display: block;
}
#header .header-logo a img {
    width: 280px;
}
#header a.header-mail {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#header a.header-mail:hover {
    color: var(--secondary);
}
#header a.header-call-btn {
    background-color: var(--secondary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 23px;
    justify-content: center;
    text-align: center;
}
#header a.header-call-btn:hover {
    background-color: var(--white);
    color: var(--secondary);
}



.main-banner-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 160px 0px 0px 0px;
}
.main-banner-section .main-banner-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    top: 0;
    height: 100%;
    width: 100%;
}
.main-banner-section .main-banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right bottom;
}
.main-banner-section:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #071726 30.96%, rgba(7, 23, 38, 0.15) 76.17%);
    opacity: 0.97;
    z-index: 1;
}
.main-banner-section .container {
    position: relative;
    z-index: 5;
    height: 100%;
}
.main-banner-section .main-banner-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.main-banner-section .banner-content-wrapper {
    max-width: 910px;
    position: relative;
}
.main-banner-section .banner-content-wrapper h1 {
    color: var(--white);
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 105.882%;
    margin-bottom: 30px;
}
.main-banner-section .banner-content-wrapper .subtitle {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 116.667%;
    margin-bottom: 10px;
}
.main-banner-section .banner-content-wrapper p {
    color: rgba(255, 255, 255, 0.70);
    line-height: 155.556%;
}
.main-banner-section .main-banner-wrapper .btn-wrapper {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.banner-logos-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    height: 110px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}
.banner-logos-wrapper .banner-logo-main-wrapper {
    display: grid;
    gap: 140px;
    grid-template-columns: auto 1000px;
    align-items: center;
    height: 100%;
}
.google-review-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.google-review-wrapper .google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
}
.google-review-wrapper .google-icon img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.google-review-wrapper .wrapper {
    display: flex;
    flex-direction: column;
}
.google-review-wrapper .wrapper p {
    color: var(--white);
    padding-bottom: 0px;
}
.google-review-wrapper .wrapper .wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.google-review-wrapper .wrapper .wrap p.avrage {
    opacity: 0.4;
}
.google-review-wrapper .wrapper .wrap .star-image img {
    filter: brightness(0.2) invert(0.6);
}
.google-review-wrapper .wrapper > p {
    padding-bottom: 5px;
}
#logo-slider{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#logo-slider .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}
#logo-slider .logo img{
    height: auto;
    width: auto;
    object-fit: contain;
}



.why-hire-electrician-section {
    position: relative;
    padding: 120px 0px 120px 0px;
}
.why-hire-electrician-section .title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}
.why-hire-electrician-section .title-wrapper h2 {
    margin-bottom: 25px;
}
.why-hire-electrician-section .title-wrapper p {
    color: #323333;
}
ul.service-listing {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    position: relative;
    list-style: none;
    padding-left: 0px;
}
ul.service-listing li.service-box {
    position: relative;
    background-color: var(--white);
    border: 1px solid rgba(204, 204, 204, 0.80);
    border-radius: 20px;
    padding: 30px 35px 40px 30px;
    transition: all 0.5s;
    cursor: pointer;
}
ul.service-listing li.service-box:hover {
    transition: all 0.5s;
    box-shadow: -4px -4px 0px 0px var(--primary) inset;
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.14));
    border-color: transparent;
}
ul.service-listing li.service-box .top-wrap {
    margin-bottom: 30px;
}
ul.service-listing li.service-box .icon {
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
ul.service-listing li.service-box .icon img {
    height: auto;
    width: auto;
    object-fit: contain;
}
ul.service-listing li.service-box .blue-icon.icon {
    display: none;
    transition: all 0.5s;
}
ul.service-listing li.service-box:hover .blue-icon.icon {
    display: flex;
    transition: all 0.5s;
}
ul.service-listing li.service-box:hover .simple-icon.icon {
    display: none;
    transition: all 0.5s;
}
ul.service-listing li.service-box .bottom-wrap p.title {
    color: var(--title);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: auto;
    padding-bottom: 0px;
}



.trust-us-section {
    padding: 120px 0px;
    position: relative;
    background-color: #011B33;
}
.trust-us-section .title-wrapper {
    margin-bottom: 50px;
    text-align: center;
}
.trust-us-section .title-wrapper h2 {
    color: var(--white);
    margin-bottom: 0px;
}
ul.trust-us-listing {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    list-style: none;
    padding-left: 0px;
}
ul.trust-us-listing li.trust-us-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 35px 40px 30px;
    transition: all 0.5s;
    cursor: pointer;
    text-align: center;
}
ul.trust-us-listing li.trust-us-box:hover {
    transition: all 0.5s;
    box-shadow: -4px -4px 0px 0px var(--primary) inset;
    background-color: var(--white);
}
ul.trust-us-listing li.trust-us-box .top-wrap {
    margin-bottom: 30px;
}
ul.trust-us-listing li.trust-us-box .icon {
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    margin: 0 auto;
}
ul.trust-us-listing li.trust-us-box .icon img {
    height: auto;
    width: auto;
    object-fit: contain;
}
ul.trust-us-listing li.trust-us-box .blue-icon.icon {
    display: none;
    transition: all 0.5s;
}
ul.trust-us-listing li.trust-us-box:hover .blue-icon.icon {
    display: flex;
    transition: all 0.5s;
}
ul.trust-us-listing li.trust-us-box:hover .simple-icon.icon {
    display: none;
    transition: all 0.5s;
}
ul.trust-us-listing li.trust-us-box .bottom-wrap p.title {
    color: var(--white);
    cursor: auto;
    padding-bottom: 15px;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all 0.5s;
}
ul.trust-us-listing li.trust-us-box .bottom-wrap p {
    color: rgba(255, 255, 255, 0.60);
    transition: all 0.5s;
    cursor: auto;
}
ul.trust-us-listing li.trust-us-box:hover .bottom-wrap p.title {
    color: var(--title);
    transition: all 0.5s;
}
ul.trust-us-listing li.trust-us-box:hover .bottom-wrap p {
    color: #646666;
    transition: all 0.5s;
}





.electrician-works-section {
    position: relative;
    padding: 120px 0px;
}
.electrician-works-section .title-wrapper {
    text-align: center;
    margin-bottom: 105px;
}
.electrician-works-section .title-wrapper h2 {
    margin-bottom: 0px;
}
ul.electrician-works-listing {
    display: flex;
    gap: 95px 30px;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding-left: 0px;
}
ul.electrician-works-listing li.electrician-work-box {
    background: var(--white);
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.04));
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
    padding: 0px 35px 35px 35px;
    cursor: pointer;
    width: 31.33%;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.06));
}
ul.electrician-works-listing li.electrician-work-box:hover {
    transition: all 0.5s;
    box-shadow: -4px -4px 0px 0px var(--primary) inset;
    filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.20));
}
ul.electrician-works-listing li.electrician-work-box .icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    margin: 0 auto;
    margin-top: -45px;
    margin-bottom: 30px;
}
ul.electrician-works-listing li.electrician-work-box .icon img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
ul.electrician-works-listing li.electrician-work-box p.title {
    color: var(--title);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
    padding-bottom: 0px;    
    cursor: auto;
}
ul.electrician-works-listing li.electrician-work-box p {
    cursor: auto;
}




.service-section {
    position: relative;
    padding: 120px 0px;
    background-color: rgba(222, 129, 31, 0.10);
}
.service-section .row-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px;
    position: relative;
}
.service-section .service-image {
    height: 620px;
    width: 100%;
}
.service-section .service-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.service-section .row-wrapper .right-col h2 {
    margin-bottom: 20px;
}
.service-section .row-wrapper .right-col p {
    color: #323333;
}
.service-section .row-wrapper .right-col ul.check-listing {
    margin-top: 25px;
}
.service-section .row-wrapper .right-col .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}
ul.check-listing {
    margin: 10px 0px;
    position: relative;
    list-style: none;
    padding-left: 0px;
}
ul.check-listing li {
    color: #222;
    font-size: 18px;
    font-weight: 500;
    line-height: 138.889%;
    margin-bottom: 11px;
    padding-left: 37px;
    background-image: url(../images/chack-icon.svg);
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 22px;
}
ul.check-listing li:last-child {
    margin-bottom: 0px;
}




.electrician-help-section {
    position: relative;
    padding: 120px 0px;
}
.electrician-help-section .row-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px;
    position: relative;
}
.electrician-help-section .electrician-help-image {
    height: 660px;
    width: 100%;
}
.electrician-help-section .electrician-help-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.electrician-help-section .row-wrapper .left-col h2 {
    margin-bottom: 20px;
}
.electrician-help-section .row-wrapper .left-col p {
    color: #323333;
}
.electrician-help-section .row-wrapper .left-col ul.check-listing {
    margin-top: 25px;
}
.electrician-help-section .row-wrapper .left-col .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}




.testimonial-section {
    padding: 120px 0px 120px 0px;
    position: relative;
    background: rgba(222, 129, 31, 0.10);
}
.testimonial-section .title-wrap {
    text-align: center;
    margin-bottom: 30px;
}
.testimonial-section .title-wrap h2{
    margin-bottom: 0px;
}
.testimonial-listing .testimonial-box {
    background-color: var(--white);
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.04));
    position: relative;
    padding: 40px 30px 60px 30px;
    border-radius: 20px;
    cursor: pointer;
    margin: 25px 15px;
    height: inherit;
}
.testimonial-listing .testimonial-box p.user-name {
    color: var(--title);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}
.testimonial-listing .testimonial-box .start-img {
    margin-bottom: 20px;
}
.testimonial-listing .testimonial-box .start-img img {
    margin: 0;
}
.testimonial-listing .testimonial-box p {
    color: #222;
    line-height: 150%;
}
#testimonial-slider .slick-prev {
    left: -60px;
}
#testimonial-slider .slick-next {
    right: -60px;
}
#testimonial-slider .slick-list {
    height: inherit !important;
}
#testimonial-slider .slick-track {
    display: flex !important;
}





.faq-section {
    padding: 110px 0px;
    position: relative;
}
.faq-section .title-wrapper {
    margin-bottom: 45px;
    text-align: center;
}
.faq-section .title-wrapper h2{
    margin-bottom: 0px;
}
.faq-list-wrapper {
    max-width: 1000px;
    margin: auto;
}
.faq-item {
    background-color: rgba(7, 23, 38, 0.10);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 7px 7px 7px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 30px;
    color: var(--title);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.faq-answer {
    padding: 10px 30px 30px 30px;
    display: none;
    color: #323333;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}
.toggle-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #071726;
    color: white;
    font-size: 35px;
    border-radius: 5px;
    display: flex;
    line-height: normal;
    font-weight: 200;
    user-select: none;
    align-items: center;
    justify-content: center;
}
.active .faq-answer {
    display: block;
}
.active .toggle-btn::after {
    content: '−';
}
.active .toggle-btn {
    background-color: var(--primary);
}
.toggle-btn::after {
    content: '+';
    font-family: 'slick';
}





footer.footer-section {
    position: relative;
}
footer.footer-section::before {
    content: "";
    display: block;
    height: 74%;
    width: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #011B33;
}    
footer.footer-section .contact-form-box {
    position: relative;
    border-radius: 30px;
    padding: 90px;
    background: linear-gradient(90deg, #DE811F -16.67%, #663B0E 111.11%);
}
footer.footer-section .contact-form-box .row-wrapper {
    display: grid;
    grid-template-columns: auto 555px;
    gap: 53px;
    position: relative;
}
footer.footer-section .contact-form-box h2 {
    color: var(--white);
}
footer.footer-section .contact-form-box p {
    color: var(--white);
}
footer.footer-section .contact-form-box p.subtitle {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 8px;
}
footer.footer-section .contact-form-box .info-wrapper {
    margin-top: 15px;
    flex-wrap: wrap;
    display: flex;
    gap: 40px;
}
footer.footer-section .contact-form-box .info-wrapper p {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 0px;
}
footer.footer-section .contact-form-box .info-wrapper p.call a {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
}
footer.footer-section .contact-form-box .info-wrapper p.call a:hover {
    color: var(--secondary);
}
footer.footer-section .contact-form-box .info-wrapper p.mail a {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}
footer.footer-section .contact-form-box .info-wrapper p.mail a:hover {
    color: var(--secondary);
}
footer.footer-section .footer-top {
    padding: 100px 0px 60px 0px;
    position: relative;
    text-align: center;
}
footer.footer-section .footer-top p {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
}


ul.social-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding-left: 0px;
}
ul.social-link li a {
    height: 46px;
    width: 46px;
    display: flex;
    padding: 5px;
    border-radius: 100%;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
}
ul.social-link li a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
footer.footer-section .footer-top ul.social-link {
    margin-top: 25px;
}
.footer-bottom {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 35px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
p.copyright {
    color: rgba(255, 255, 255, 0.40);
    font-size: 16px;
    line-height: 168.75%;
}
ul.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    list-style: none;
    padding-left: 0px;
}
ul.footer-links li a {
    color: rgba(255, 255, 255, 0.40);
    font-size: 16px;
    font-weight: 400;
    line-height: 168.75%;
}
ul.footer-links li a:hover {
    color: var(--primary);
}


form.contact-form {
    position: relative;
}
form.contact-form .field-wrapper {
    margin-bottom: 15px;
    width: 100%;
}
form.contact-form .field-wrapper:last-child {
    margin-bottom: 0px;
}
form.contact-form .field-wrapper.two-field {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}
html form.contact-form input,html form.contact-form textarea {
    line-height: normal;
    background-color: rgba(255, 255, 255, 0.20);
    padding: 15px 25px;
    width: 100%;
    box-shadow: unset !important;
    color: #fff;
    outline: unset !important;
    height: 60px;
    border-radius: 5px;
    font-size: 18px;
    border: unset;
}
form.contact-form input::placeholder,html form.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.40);
    font-weight: 400;
    font-size: 18px;
    font-family: "Geist", sans-serif;
}
html form.contact-form textarea {
    height: 100px;
    resize: none;
}
html form.contact-form input[type="submit"] {
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: var(--white);
    border-radius: 100px;
    color: #113D3C;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s;
    font-family: "Geist", sans-serif !important;
}
html form.contact-form input[type="submit"]:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: all 0.5s;
}
form.contact-form .btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

#form-message {
    font-weight: 500;
}

.mobile-image{
    display: none;
}







/* common-inner-banner-section */

.common-inner-banner-section {
    padding: 140px 0px 60px 0px;
    position: relative;
    background: var(--title);
    color: var(--white);
    text-align: center;
}
.common-inner-banner-section h1 {
    color: var(--white);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 106.25%;
    text-transform: uppercase;
    margin-bottom: 0px;
    word-break: break-all;
}
.common-content-section {
    padding: 50px 0px 50px 0px;
    position: relative;
}
/* .common-content-section .common-content-wrapper table th, .common-content-section .common-content-wrapper table td {
    border: 1px solid #cbc3c3;
}
.common-content-section .common-content-wrapper table th {
    background: #edebeb;
}
.common-content-section .common-content-wrapper table td {
    background: #ffffff;
} */
.common-content-section .common-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}
.common-content-section .common-content-wrapper h1,.common-content-section .common-content-wrapper h2,.common-content-section .common-content-wrapper h3,.common-content-section .common-content-wrapper h4,.common-content-section .common-content-wrapper h5,.common-content-section .common-content-wrapper h6{
    margin: 10px 0px;
    line-height: 130%;
}
.common-content-section .common-content-wrapper ul.check-list {
    margin: 15px 0px;
}
/* .common-content-section .common-content-wrapper ul.check-list > li {
    position: relative;
    background-image: url(../images/check-list-icon.svg);
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: top 10px left;
    margin-bottom: 20px;
    background-size: 15px;
    color: #221F1F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
} */
.common-content-section .common-content-wrapper ul.check-list > li:before {
    display: none !important;
}
.common-content-section .common-content-wrapper .bg-color-box {
    background: #EEE;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    margin: 20px 0px;
}
.common-content-section .common-content-wrapper ol {
    margin: 15px 0px;
}
/* .common-content-section .common-content-wrapper ol > li {
    color: #221F1F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 15px;
    list-style: decimal !important;
} */
.common-content-section .common-content-wrapper .bg-color-box ol {
    margin: 0;
}
.common-content-section .common-content-wrapper .bg-color-box ol li:last-child{
    margin-bottom: 0;
}
.common-content-section .common-content-wrapper .dot {
    padding-left: 20px;
    position: relative;
}
.common-content-section .common-content-wrapper .dot:before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    background: #000;
    border-radius: 50px;
    position: absolute;
    left: 0px;
    top: 13px;
}
.common-content-section .common-content-wrapper ul {
    position: relative;
    margin: 20px 0px;
}
/* .common-content-section .common-content-wrapper ul > li {
    position: relative;
    color: #221F1F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 15px;
    padding-left: 20px;
}
.common-content-section .common-content-wrapper ul > li::before {
    content: "";
    height: 7px;
    width: 7px;
    display: block;
    position: absolute;
    left: 0px;
    top: 9px;
    border-radius: 50px;
    background: #000;
} */
.common-content-section .common-content-wrapper h1{
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h2{
    color: #000;
    font-size: 37px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h3 {
    color: #000;
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h4 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h5 {
    color: #221F1F;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.common-content-section .common-content-wrapper h6 {
    color: #221F1F;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
}
body.privacy-policy footer.footer-section,.impressum footer.footer-section{
    background-color: #fff;
}



.jump-link {
    display: block;
    width: 100%;
    padding-top: 50px;
    margin-top: -50px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




ul.white li {
    color: #fff;
}
ul.white li a:hover{
    color: #fff;
}
ol.white li {
    color: #fff;
}
ol.white li a:hover{
    color: #fff;
}




.btn-main.sticky-contact-btn {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 999;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}