/* Aslak Ab */

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

    /* 	Colors */
    --primary-color: 24, 126, 122;
    --primary-light-color: 236, 243, 249;
    --primary-dark-color: 0, 45, 91;
    
    --secondary-color: 10,39,86;
    --secondary-light-color: 233,243,242;
    --secondary-dark-color: 0, 45, 91;

    --light-blue-color: 60, 130, 188;
    --light-pink-color: 209, 131, 201;
    --light-gren-color: 24, 126, 122;
    --accent-blue-color: 60, 130, 188;


    --black-color: 0, 15, 31;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1150;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: rgb(var(--black-color));
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

.section-block-wrapper {
    max-width: var(--section-width);
}

/* Paddings */
.p-0 .section-block,
.p-0:not(.section-wrapper) {
    padding: 0;
}

.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.pt-3 .section-block,
.pt-3:not(.section-wrapper) {
    padding-top: 3rem;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pr-2 .section-block,
.pr-2:not(.section-wrapper) {
    padding-right: 2rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pb-1 .section-block,
.pb-1:not(.section-wrapper) {
    padding-bottom: 1rem;
}

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}

.pb-4 .section-block,
.pb-4:not(.section-wrapper) {
    padding-bottom: 4rem;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}
.pl-2 .section-block,
.pl-2:not(.section-wrapper) {
    padding-left: 2rem;
}


/* Margins */
.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-10 {
    margin-top: 10rem;
}

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Gantari', sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: .5em;
    color: rgb(var(--primary-dark-color));
}

.small-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: .7em;
    color: rgb(var(--primary-dark-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

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

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-wrapper.center {
    justify-content: center;
}

/* Knappar */
.btn,
.ContactSubmit,
.ContactForm .guide-step-next,
.btn .guide-step-next {
    min-width: 20rem;
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-small {
    min-width: unset;
    padding: 1rem 1.5rem;
}

/*.btn::before {
    content: ' \f061';
    display: inline-block;
    margin-right: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}*/

.btn:hover::before {
    transform: translateX(5px);
    transition: transform .4s ease;
}

.btn-primary-filled,
.ContactSubmit,
.ContactForm .guide-step-next,
.btn .guide-step-nex {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus,
.ContactForm .guide-step-next:hover,
.btn .guide-step-nex:hover {
    border: 1px solid rgb(var(--primary-color), .7);
    background-color: rgb(var(--primary-color), .7) !important;
    
}

.btn-blue-filled,
.ContactForm .guide-step-prev {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-blue-color));
    background-color: rgb(var(--accent-blue-color));
}
.ContactForm .guide-step-next{
    width: 100% !important;
}

.btn-blue-filled:hover,
.ContactForm .guide-step-prev:hover {
    border: 1px solid rgb(var(--accent-blue-color), .7);
    background-color: rgb(var(--accent-blue-color), .7);
    
}

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-light {
    background-color: rgb(var(--primary-light-color));
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-secondary-light {
    background-color: rgb(var(--secondary-dark-color), .1);
}

.bg-secondary-dark {
    background-color: rgb(var(--secondary-dark-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-light-blue-color{
    background-color: rgb(var(--light-blue-color));
}
.bg-light-pink-color{
    background-color: rgb(var(--light-pink-color));
}
.bg-light-gren-color{
    background-color: rgb(var(--light-gren-color));
}


/* Overlays */


/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-primary-dark {
    color: rgb(var(--primary-dark-color));
}

.text-white {
    color: rgb(var(--white-color));
}

.text-light-blue{
   color: rgb(var(--light-blue-color));
}
.text-light-pink{
    color: rgb(var(--light-pink-color));
}
.text-light-gren{
    color: rgb(var(--light-gren-color));
}

/* Grafiska element
========================================================================== */
.of-wrapper img.op-30-50 {
    object-position: 30% 50%;
}

.of-wrapper img.op-70 {
    object-position: 70%;
}

.border-bottom-primary {
    border-bottom: 2px solid rgb(var(--primary-color));
}
.border-bottom-white {
    border-bottom: 2px solid rgb(var(--white-color));
}


/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 40rem;
    background-image: linear-gradient(to right, rgb(var(--secondary-dark-color), .8) 55%);
}

/* Bilder */
.parallax-erfarenhet {
    background-image: url('/assets/images/aslak-2000px.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}


/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

/* Specifika bredder */
.cards-wrapper.w-20 .card-item {
    width: calc((100% / 5) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
} 

@media only screen and (max-width: 1350px) {
    .cards-wrapper.w-20 .card-item {
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-20 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }

    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    /* Bredder */
    .cards-wrapper.w-20 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 2rem;
}

.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 9rem;
    height: 9rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
}

.card-2-2.block .card-item {
    display: flex;
}

.card-2-2.block .card-body {
    margin-left:2rem;
    display: flex;
    align-items: center;
}

.card-2-2.block .card-header {
    width: 20rem;
    height: 7rem;
    margin-bottom: 0rem;
}

.card-2-2.block .small-title {
    padding-bottom: 0;
}

@media only screen and (max-width: 580px) {
    .card-2-2.block .card-item {
        padding: 1rem 0 0;
    }
}

.card-2-2 .card-header img {
    width: 100%;
}

.card-2-2 .card-footer {
    padding-top: 2rem;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    align-items: center;
    border-radius: 2rem;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 3rem;
}

@media only screen and (max-width: 480px) {
    .card-2-4 .card-item {
        flex-direction: column;
    }

    .card-2-4 .card-header {
        width: 4.5rem;
        height: 4.5rem;
    }

    .card-2-4 .card-header i {
        font-size: 2.3rem;
    }

    .card-2-4 .card-body {
        padding: 1rem 0 0 0;
    }
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}

.card-2-5 .card-header i {
    font-size: 2.7rem;
}

.card-2-5 .card-body {
    padding: 0 2rem;
}

.card-2-5 .card-item .small-title {
    transition: .3s ease;
}
  
.card-2-5 .card-item:hover .small-title {
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 480px) {
    .card-2-5 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-5 .card-header {
        width: 4.5rem;
        height: 4.5rem;
    }

    .card-2-5 .card-header i {
        font-size: 2.3rem;
    }

    .card-2-5 .card-body {
        padding: 1rem 0 0 0;
    }
}

/* Card 3-2 */
.card-3-2 .image-wrapper {
    display: inline-block;
}

.card-3-2 .card-item,
.card-3-2 .contact-item {
    display: flex;
    flex-direction: column;
}

.card-3-2 .contact-item i {
    margin-right: 5px;
    font-size: 1.5rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Speciella margins */
.split-wrapper.mr--18rem .split-image {
    width: calc(50% + 18rem);
}

.split-wrapper.mr--18rem .split-content {
    z-index: 1;
    position: relative;
    margin-right: -18rem;
}

.split-wrapper.ml--18rem .split-image {
    width: calc(50% + 18rem);
}

.split-wrapper.ml--18rem .split-content {
    z-index: 1;
    position: relative;
    margin-left: -18rem;
} 

@media screen and (max-width: 1000px) {
    .split-wrapper, 
    .split-wrapper .split-content {
        background: transparent;
    }

    .split-content {
        width: 100%;
        padding: 0 0 3rem;
    }

    .split-image,
    .split-wrapper.mr--18rem .split-image,
    .split-wrapper.ml--18rem .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Speciella margins */
    .split-wrapper.mr--18rem .split-content {
        margin-right: 0;
    }

    .split-wrapper.ml--18rem .split-content {
        margin-left: 0;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
    padding: 0 5rem;
}

header .container {
    max-width: var(--section-width);
    padding: 0;
    margin: 0 auto;
}

/* Top header */
.top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    padding: .5rem 0;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

.top-header p {
    padding: 0 5px 0 0;
    font-size: 1.4rem;
}

.top-header a {
    display: flex;
    align-items: center;
    margin: 0 8px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
}

.top-header a:hover {
    color: rgb(var(--primary-color));
}

.top-header div {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
    
}

/* Nav */
.TemplateMenu a {
    font-size: 1.8rem;
    color: rgb(var(--black-color));
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 2rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

/* Mobilmeny */
.mobile-menu {
    height: unset;
}

.mobile-menu .container {
    height: var(--mobile-menu-height);
}

.mobile-menu .hamburger {
    margin: 0 -1rem 0 1rem;
}

@media only screen and (max-width: 1024px) {
    header {
        padding: 0 3rem;
    }

    .header-logo {
        max-width: 10rem;
    }
}

@media only screen and (max-width: 580px) {
    header {
        padding: 0 2rem;
    }

    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    align-items: flex-end;
    min-height: 80vh;
    background-image: linear-gradient(to right, rgb(var(--secondary-dark-color), .8) 55%);
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .text-block {
    max-width: 55%;
}

.top-section .section-title {
    font-size: 7rem;
    font-weight: 700;
}

.top-section .section-title-2 {
    font-size: 4rem;
    font-weight: 700;
}

.top-section p {
    max-width: 60rem;
}

.top-section .sigill-wrapper{
background: white;
position: absolute;
right: 0;
bottom: 0;
margin-bottom: -1rem;
max-width: 20rem;
border-top-left-radius: 2rem;
}

.top-section .col-1{
    background: rgb(var(--white-color));
    padding: 5rem;
    border-radius: 2rem;
}

/*Formular steps*/
.ContactForm.div{
    padding-bottom: 0 !important;
}


.value-form .ContactForm>div.guide-step-field,
.value-form .ContactForm>div#submit-placeholder {
    margin: 0;
}

.value-form .ContactForm .guide-step-navigation {
    padding-top: 0;
    margin-top: 0;
}

.value-form .ContactForm p,
.value-form .ContactForm .radio-option label,
.value-form .ContactForm .checkbox-option label {
    font-size: 1.6rem;
    color: rgb(var(--white-color));
}


/* Knappar */
.ContactForm .guide-step-next,
.ContactForm .guide-step-prev {
    margin-right: 0;
}

.ContactForm .guide-step-next:hover {
    color: rgb(var(--primary-color));
    background: transparent;
}

.ContactForm .guide-step-prev:hover,
.ContactForm .guide-step-next:hover {
    color: rgb(var(--white-color));
    background: transparent;
    border-color: rgb(var(--white-color));
}

.guide-step-navigation .btn::after {
    display: none;
}

.ContactForm input[type="text"]:not(.illegal), .ContactForm textarea:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal){
    background: rgb(233, 233, 233) !important;
    border: none !important;
    border-radius: 2rem !important;
    margin-top: 1rem;
}

@media only screen and (max-width: 1200px) {
    .top-section .section-block {
        background: rgb(var(--secondary-dark-color), .8);
    }

    .top-section .text-block {
        max-width: 60rem;
    }

    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
    .top-section .text-block {
      margin-bottom: 10rem;
    }
    .top-section .sigill-wrapper{
        max-width: 15rem;

        }
}
/* Sektion Sa gar det till
========================================================================== */
.how-wrapper {
    display: flex;
    align-items: center; 
    gap: 1rem; 
  }

 .box-1{
    background-color: rgb(236, 243, 250)
  }
.box-2{
    background-color: rgb(246, 229, 244 )
  }
.box-3{
    background-color: rgb(231, 242, 241);
  }
.how-wrapper .section-title{
    font-size: 9rem;
    margin-right: 1rem;
}
.how-wrapper .small-title{
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}


/* Sektion CTA
========================================================================== */
.cta-wrapper {
    /*background-image: linear-gradient(to right, rgb(var(--primary-dark-color), .5), rgb(var(--black-color), .3)), url(/assets/images/snabb-bil-1500px.jpg);
    background-size: cover;
    background-position: center 60%;*/
    /*padding: 10rem 4rem 4rem;*/
    border-radius: 2rem;
}

@media screen and (max-width: 580px) {
    .cta-wrapper {
        padding: 10rem 2rem 2rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
    text-align: center;
    background-color: rgb(var(--black-color), .6);
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */

/* Formular
========================================================================== */
.ContactForm p {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: rgb(var(--primary-dark-color));
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 3px;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    border-radius: 3px;
    background-color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .ContactForm {
        padding-top: 3rem;
    }
}

/* Medarbetare
========================================================================== */
.flags {
    position: absolute;
    top: 1;
    z-index: 2;
}

.flag {
    z-index: 2;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    margin: 1rem;
}

.coworker-wrapper .small-title {
    font-size: 2rem;
}

/* ==========================================================================
Undersida: b2b
========================================================================== */
.EditMode .section-steps-b2b .split-wrapper {
    margin-bottom: 5rem;
}

.section-b2b .text-block-center {
    max-width: 85rem; 
}

.section-steps-b2b .card-2-4 .card-item {
    padding: 2rem;
}

@media screen and (max-width: 1000px) {
    .section-steps-b2b .section-block {
        padding: 0;
    }

    .section-steps-b2b .split-wrapper.mt-10 {
        margin-top: 0;
    }

    .section-steps-b2b .split-wrapper.mr--18rem {
        flex-direction: column-reverse;
    }

    .section-steps-b2b .split-wrapper.mr--18rem .split-content {
        padding-top: 2rem;
        padding-bottom: 0;
    }

    .section-steps-b2b .split-wrapper.mr--18rem .split-content,
    .section-steps-b2b .split-wrapper.ml--18rem .split-content {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .section-steps-b2b .split-wrapper.mr--18rem .split-image,
    .section-steps-b2b .split-wrapper.ml--18rem .split-image {
        max-height: 30rem;
    }
}

/*salj din bil
========================================================================== */
.section-contact .col-0{
 padding-top:2rem;
}


.section-contact .ContactForm{
    margin-top: 3rem;
    padding: 3rem;
    position: relative;
    background-color: rgb(var(--white-color));
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    border-radius: 2rem;
}

.asterisk p:after {
    content: "*";
    font-size: 1.5rem;
    margin-left: 6px;
    color: red;
}

@media screen and (max-width: 1000px) {
    .section-contact .ContactForm{
        margin-top:5rem;
        padding: 3rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--gray-dark-color));
    padding: 0 5rem;
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 10rem;
    padding-bottom: 0;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}
.footer-menu-small {
    width: 14%;
}

.footer .text-label {
    color: rgb(var(--white-color));
    padding: 0 0 1rem;
    line-height: 1;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--white-color), .6);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--white-color));
}
.sigill-wrapper{
    width: 22rem;
    margin-bottom: 3rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color), .6);
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
    opacity: .6;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    .footer-top {
        padding: 5rem 0;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }
    .sigill-wrapper{
        margin-left:0rem;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}



