﻿/*#region COLORS */
/*#endregion */
/*#region COLORS */
/*#endregion */
/*#region BASIC SETTINGS */

html {
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #393C46;
}

    body ul {
        margin: 0;
        padding: 0;
    }

a {
    text-decoration: none;
}

li {
    list-style: none;
}

hr {
    border: 1px solid;
}

.centered-xy {
    display: flex;
    align-items: center;
    justify-content: center;
}

.uppercase-title {
    text-transform: uppercase;
}
/*#endregion BASIC SETTINGS */

/*#region FONT SIZE */
/* h1 - only title in the page headers (except homepage!!) */
h1, .h1 {
    text-align: left;
    font: normal normal bold 4.3rem/5.1rem Lato;
    font-weight: bold;
    margin: 1rem 0 2rem;
    font-size: calc(1.5rem + 2.2vw);
    line-height: 1.2;
}

@media (min-width: 1800px) {
    h1, .h1 {
        font-size: 4rem;
    }
}

/* exists only on the homepage - "WICCON" above the title -> h1?   */
.small-h1 {
    text-align: left;
    font-weight: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-size: calc(0.8rem + 1.1vw);
}

@media (min-width: 1800px) {
    .small-h1 {
        font-size: 2rem;
    }
}

h2, .h2 {
    text-align: left;
    font-weight: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-size: calc(0.8rem + 1.1vw);
}

@media (min-width: 1800px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    text-align: left;
    font: normal normal bold 4.3rem/5.1rem Lato;
    font-weight: bold;
    margin: 1rem 0 2rem;
    font-size: calc(1.5rem + 2.2vw);
    line-height: 1.2;
}

@media (min-width: 1800px) {
    h3, .h3 {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    h3, .h3 {
        margin: 0.5rem 0;
    }
}

h4, .h4 {
    font-weight: 900;
    font-size: calc(0.8rem + 0.6vw);
    line-height: 1.2;
    text-align: left;
}

@media (min-width: 1800px) {
    h4, .h4 {
        font-size: 1.5rem;
    }
}

h5, .h5 {
    font-weight: 900;
    font-size: calc(0.8rem + 1.6vw);
    line-height: 1.2;
}

@media (min-width: 1800px) {
    h5, .h5 {
        font-size: 2.625rem;
    }
}

p {
    text-align: left;
    font-size: calc(0.875rem + 0.125vw);
    line-height: 1.2rem;
    letter-spacing: 0px;
}

@media (min-width: 1800px) {
    p {
        font-size: 1.125rem;
    }
}

@media (max-width: 500px) {
    p {
        font-size: 0.875rem;
    }
}

.p-small {
    text-align: left;
    font-size: calc(0.5rem + 0.2vw);
    font-family: Poppins;
    line-height: 1.2rem;
    letter-spacing: 0px;
}

@media (min-width: 1800px) {
    .p-small {
        font-size: 0.75rem;
    }
}

.p-highlight {
    font-weight: 900;
    font-size: calc(1rem + 0.4vw);
    line-height: 1.2;
}

@media (min-width: 1800px) {
    .p-highlight {
        font-size: 1.5rem;
    }
}

li {
    text-align: left;
    font-size: calc(0.875rem + 0.125vw);
    line-height: 1.2rem;
    letter-spacing: 0px;
}

@media (min-width: 1800px) {
    li {
        font-size: 1.125rem;
    }
}

@media (max-width: 500px) {
    li {
        font-size: 0.875rem;
    }
}

@media (max-width: 575px) {
    button {
        width: 150px;
    }
}

button {
    font-size: calc(0.8rem + 0.25vw);
}

@media (min-width: 1800px) {
    button {
        font-size: 1.125rem;
    }
}

.number {
    text-align: center;
    letter-spacing: 0px;
    font-weight: bold;
    font-size: calc(1.5rem + 2.8vw);
    line-height: 1.2;
}

@media (min-width: 1800px) {
    .number {
        font-size: 4.8rem;
    }
}


.link {
    color: black;
    text-align: left;
    font-size: calc(0.875rem + 0.125vw);
    line-height: 1.2rem;
    letter-spacing: 0px;
}

    .link:hover {
        color: #E9A61F;
        cursor: pointer;
    }

@media (min-width: 1800px) {
    .link {
        font-size: 1.125rem;
    }
}
@media (max-width: 500px) {
    .link {
        font-size: 0.875rem;
    }
}

.form-control {
    text-align: left;
    font-size: calc(0.875rem + 0.125vw);
    line-height: 1.2rem;
    letter-spacing: 0px;
}

@media (min-width: 1800px) {
    .form-control {
        font-size: 1.125rem;
    }
}
@media (max-width: 500px) {
    .form-control {
        font-size: 0.875rem;
    }
}
/*#endregion FONT SIZE */


/*#region BASIC: CONTAINER */
/*.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}*/

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 100%;
        padding-right: var(--bs-gutter-x, 1.25rem);
        padding-left: var(--bs-gutter-x, 1.25rem);
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1050px;
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1200px;
    }
}

@media (min-width: 1800px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1400px;
    }
}

/*#endregion BASIC: CONTAINER */
/*#region BUTTONS */

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn :hover {
    color: #fff;
}

.btn-lg-yellow {
    border-radius: 10px;
    background-color: #E9A61F;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 232px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-md-yellow {
    border-radius: 10px;
    background-color: #E9A61F;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 167px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-sm-yellow {
    border-radius: 10px;
    background-color: #E9A61F;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-md-blue {
    border-radius: 10px;
    background-color: #5BB5C8;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 167px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-lg-gray {
    border-radius: 10px;
    background-color: #393C46;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 232px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-md-gray {
    border-radius: 10px;
    background-color: #393C46;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 167px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-sm-gray {
    border-radius: 10px;
    background-color: #393C46;
    color: #fff;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.btn-xl-white {
    border-radius: 10px;
    background-color: #fff;
    color: #393C46;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    width: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.5rem 0;
    border: 1px solid #393C46;
}

.btn-lg-yellow:hover, .btn-md-yellow:hover, .btn-sm-yellow:hover, .btn-lg-gray:hover, .btn-md-gray:hover, .btn-sm-gray:hover {
    background-color: #5BB5C8;
    border: none;
    color: white;
}

.btn-md-blue:hover {
    background-color: #5BB5C8;
    border: none;
    color: white;
}

a.btn-md-yellow, span.btn-md-yellow, .btn {
    text-align: left;
    font-size: calc(0.875rem + 0.125vw);
    line-height: 1.2rem;
    letter-spacing: 0px;
}

@media (min-width: 1800px) {
    a.btn-md-yellow, span.btn-md-yellow, .btn {
        font-size: 1.125rem;
    }
}
@media (max-width: 500px) {
    a.btn-md-yellow, span.btn-md-yellow, .btn {
        font-size: 0.875rem;
    }
}

@media (max-width: 575px) {
    .btn-lg-yellow, .btn-md-yellow, .btn-sm-yellow, .btn-lg-gray, .btn-md-gray, .btn-sm-gray {
        width: 150px;
        height: 36px;
        border-radius: 0.3rem;
    }
}

button:focus {
    outline: 0;
}

/*#endregion BUTTONS */
/*#region COLOR THEMES */
.dark-theme {
    background-color: #393C46;
    color: #fff;
}

.gray-theme {
    background-color: #F2F3F4;
    color: #000;
}

/*#endregion COLOR THEMES */
/*#region COLOR-BG & TEXT-COLOR */
.blue-bg {
    background-color: #5BB5C8;
}

.yellow-text {
    color: #E9A61F;
}

.blue-text {
    color: #5BB5C8;
}

/*#endregion COLOR-BG & TEXT-COLOR */
/*#region COLUMNS, CONTENT SPECIFICS */
@media (max-width: 767px) {
    .padding-x-axis {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    .padding-x-axis {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 992px) {
    .padding-x-axis {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

.padding-y-axis {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.vertically-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .padding-y-axis {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .padding-y-axis {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .padding-y-axis-reduced-bottom {
        padding-bottom: 0rem;
    }

    .padding-y-axis-reduced-top {
        padding-top: 0rem;
    }
}

.left-col-inside-full-width-container, .right-col-inside-full-width-container {
    max-width: 100%;
}

@media (max-width: 767px) {
    .left-col-inside-full-width-container, .right-col-inside-full-width-container {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
}

@media (min-width: 768px) {
    .left-col-inside-full-width-container {
        margin-left: 2.25rem;
    }

    .right-col-inside-full-width-container {
        margin-right: 2.25rem;
    }
}

@media (min-width: 992px) {
    .left-col-inside-full-width-container, .right-col-inside-full-width-container {
        max-width: 450px;
    }
}

@media (min-width: 1200px) {
    .left-col-inside-full-width-container, .right-col-inside-full-width-container {
        max-width: 525px;
    }
}

@media (min-width: 1400px) {
    .left-col-inside-full-width-container, .right-col-inside-full-width-container {
        max-width: 600px;
    }
}

@media (min-width: 1800px) {
    .left-col-inside-full-width-container, .right-col-inside-full-width-container {
        max-width: 700px;
    }
}

.content-box-left {
    max-width: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.content-box-right {
    max-width: auto;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 768px) {
    .content-box-right, .content-box-left {
        max-width: 410px;
    }
}

@media (min-width: 992px) {
    .content-box-right, .content-box-left {
        max-width: 430px;
    }
}

@media (min-width: 1200px) {
    .content-box-right, .content-box-left {
        max-width: 525px;
    }
}

@media (min-width: 1400px) {
    .content-box-right, .content-box-left {
        max-width: 600px;
    }
}

@media (min-width: 1800px) {
    .content-box-right, .content-box-left {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .content-box-right > *, .content-box-left > * {
        text-align: center;
    }
}

.left-col-content {
    margin-right: 20px;
}

.right-col-content {
    margin-left: 20px;
}

@media (max-width: 767px) {
    .left-col-content, .right-col-content {
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media (min-width: 992px) {
    .left-col-content {
        margin-right: 70px;
    }

    .right-col-content {
        margin-left: 70px;
    }
}

@media (min-width: 1200px) {
    .left-col-content {
        margin-right: 70px;
    }

    .right-col-content {
        margin-left: 70px;
    }
}

@media (min-width: 1800px) {
    .left-col-content {
        margin-right: 100px;
    }

    .right-col-content {
        margin-left: 100px;
    }
}

@media (max-width: 767px) {
    .center-all-content > * {
        text-align: center;
    }
}

/*#endregion COLUMNS, CONTENT SPECIFICS */
/*#region NAVBAR */
.navbar {
    height: 125px;
    padding: 0 100px;
}

    .navbar li a {
        text-align: left;
        font: normal normal 900 1.1rem/1.4rem Lato;
        letter-spacing: 0px;
        text-transform: uppercase;
        margin: 0 15px;
        font-size: calc(0.875rem + 0.125vw);
    }

        .navbar li a.nav-contact-btn {
            text-align: left;
            font: normal normal 700 calc(0.8rem + 0.2vw)/1.4rem Lato;
            letter-spacing: 0px;
            text-transform: uppercase;
            margin: 0 15px;
            font-size: calc(0.875rem + 0.125vw);
        }

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #5BB5C8;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
    color: #5BB5C8;
}

.navbar-change-color {
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    background: transparent;
}

    .navbar-change-color.active {
        background: white;
        -webkit-box-shadow: 0px 1px 10px grey;
        box-shadow: 0px 1px 10px grey;
    }


.mobile-nav {
    top: 0px;
}

/*.mobile-nav--open {
    background: white;
}*/

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.navbar-logo {
    height: 40px;
}

@media (max-width: 1399px) {
    .navbar {
        padding: 0 1rem;
    }

        .navbar li a {
            font-size: calc(0.875rem + 0.125vw);
            margin: 0 0.5rem;
        }
}

@media (max-width: 1199px) {
    .navbar {
        padding: 0 1rem;
    }

        .navbar li a {
            font-size: calc(0.875rem + 0.125vw);
            margin: 0 0.4rem;
        }

    .btn-md-gray {
        width: 120px;
    }
}

@media (max-width: 991px) {

    .navbar {
        padding: 0;
    }

    .navbar-change-color {
        -webkit-transition: 500ms ease;
        transition: 500ms ease;
        background: transparent;
    }

        .navbar-change-color.active {
            background: white;
        }



    .navbar-nav {
        background: rgba(255, 255, 255, 0.8);
    }

    .mobile-nav-icon {
        width:20px;
    }

    .mobile-nav {
        position: absolute !important;
        z-index: -1;
    }

        .mobile-nav ul {
            height: 100vh;
            width: 100vw;
            background-color: #fff;
            left: 0;
            right: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            overflow-y: auto;
        }

    button.navbar-toggler {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .navbar {
        height: 98px;
    }

    .nav-link {
        padding: 0.7rem 1rem;
    }

    .navbar-nav {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .navbar-toggler {
        width: 50px !important;
    }
}

@media (max-width: 575px) {
    .nav-contact-btn {
        width: 115px;
        height: 33px;
    }

    .navbar li a {
        font-size: calc(0.875rem + 0.125vw);
    }

    .navbar-toggler {
        padding: .25rem .75rem .25rem 0;
    }

    .navbar-logo {
        height: 30px;
    }
}

/*#endregion NAVBAR */


/*#region SECTION: Why choose us*/
.col-with-img-bg {
    background-image: url("../images/austin-distel-_S7-KX8geL0-unsplash.jpg");
    background-position: right 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .col-with-img-bg {
        background-position: center bottom;
        background-size: content;
        height: 300px;
    }
}

.why-choose-us {
    min-height: 800px;
}

    .why-choose-us .btn-xl-white:hover {
        background-color: #5BB5C8;
        color: white;
        border: none;
    }

@media (max-width: 992px) {
    .why-choose-us {
        min-height: auto;
    }

        .why-choose-us .btn-xl-white {
            min-width: 200px;
            max-width: 250px;
            width: auto;
        }
}

/*#endregion SECTION: Why choose us*/
/*#region SECTION: Numbers*/
.number-card {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.number-text {
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/*#endregion SECTION: Numbers*/
/*#region SECTION: What we do*/
#section-what-we-do-2 .row-what-we-do .col-full-width-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 166, 31, 0.85)), to(rgba(233, 166, 31, 0.85))), url("../images/austin-distel-_S7-KX8geL0-unsplash.jpg");
    background: linear-gradient(rgba(233, 166, 31, 0.85), rgba(233, 166, 31, 0.85)), url("../images/austin-distel-_S7-KX8geL0-unsplash.jpg");
    background-position: right 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-icon-1 {
    background: url("../images/1.svg");
    background-position: right 25%;
    background-repeat: no-repeat;
    background-size: 65%;
}

.bg-icon-2 {
    background: url("../images/2.svg");
    background-position: right 25%;
    background-repeat: no-repeat;
    background-size: 65%;
}

.bg-icon-3 {
    background: url("../images/3.svg");
    background-position: right 25%;
    background-repeat: no-repeat;
    background-size: 65%;
}

@media (max-width: 767px) {
    #section-what-we-do-2 .space-at-bottom {
        padding-bottom: 1rem;
    }

    .bg-icon-1, .bg-icon-2, .bg-icon-3 {
        background-size: contain;
    }
}

@media (max-width: 565px) {
    .btn-lg-gray {
        width: 170px;
    }

    #section-what-we-do-2 .space-at-bottom {
        padding-bottom: 1rem;
    }
}

.row-what-we-do .col-md-6 {
    min-height: 300px;
}

@media (min-width: 1200px) {
    .row-what-we-do .col-md-6 {
        min-height: 800px;
    }

    .space-at-bottom {
        padding-bottom: 6rem;
    }
}

@media (max-width: 1199px) {
    .row-what-we-do .col-md-6 {
        min-height: 700px;
    }
}

@media (max-width: 991px) {
    .bg-icon-1, .bg-icon-2, .bg-icon-3 {
        background-size: 65%;
    }

    .row-what-we-do .col-md-6 {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    #section-what-we-do-2 .space-at-bottom {
        padding-bottom: 1rem;
    }

    .bg-icon-1, .bg-icon-2, .bg-icon-3 {
        background-size: 50%;
    }

    .row-what-we-do .col-md-6 {
        min-height: 500px;
    }

    .space-at-bottom {
        padding-bottom: 2rem;
    }
}

@media (max-width: 567px) {
    .row-what-we-do .col-md-6 {
        min-height: 350px;
    }
}

/*#endregion SECTION: What we do*/
/*#region SECTION: Unicorn*/
.unicorn-photo-bg {
    background-image: url("../images/unicorn dummy.png");
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

.col-linear-gradient-bg {
    background: -webkit-gradient(linear, left top, right top, from(#5BB5C8), to(#5BB5C800));
    background: linear-gradient(90deg, #5BB5C8 0%, #5BB5C800 100%);
}

/*#endregion SECTION: Unicorn*/
/*#region SECTION: Clients*/
.logo-col {
    padding: 2rem 1.8rem;
}

    .logo-col img {
        max-height: 60px;
    }

@media(max-width: 767px) {
    .logo-col {
        padding: 1rem 1.5rem;
    }
}
/*#endregion SECTION: Clients*/


/*#region SECTION: Contact - questions*/
#section-contact-questions {
    background-image: url("../images/austin-distel-_S7-KX8geL0-unsplash.jpg");
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

/*#endregion SECTION: Contact - questions*/
/*#region SECTION Contact Career - Join our team*/
/*#endregion SECTION Contact Career - Join our team*/
/*#region FOOTER*/
footer .logo-img {
    max-width: 150px;
}

footer a {
    color: #F0F0F3;
}

    footer a:hover {
        color: #E9A61F;
    }

footer i {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

footer .social-links .fab {
    border: 1px solid #F0F0F3;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding-top: 0.4rem;
    text-align: center;
}

    footer .social-links .fab:hover {
        color: #E9A61F;
        border: 1px solid #E9A61F;
    }

footer ul {
    padding-top: 1rem;
}

footer li {
    padding-bottom: 0.5rem;
}

    footer li a {
        color: #F0F0F3;
        text-decoration: none;
    }

        footer li a:hover {
            color: #E9A61F;
        }

@media (max-width: 991px) {
    footer .footer-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .logo-img {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    footer .logo-social-media-col > * {
        text-align: center;
    }
}

@media (max-width: 767px) {
    footer .footer-col {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        footer .footer-col > * {
            text-align: center;
        }

            footer .footer-col > * li {
                text-align: center;
                padding-bottom: 0.2rem;
            }
}

/*#endregion FOOTER*/
/*#region SECTION: ABOUT - HEADER */
.section-header-sm {
    /*    background-image: url("../images/austin-distel-_S7-KX8geL0-unsplash.jpg");*/
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-header-content {
    height: 691px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .section-header-content .section-header-description {
        text-align: left;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 0px;
    }

@media (max-width: 991px) {
    .section-header-content {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .section-header-content {
        height: 300px;
    }
}

/*#endregion SECTION: ABOUT - HEADER */
/*#region SECTION: ABOUT - INTRO */
.intro-icon {
    margin-bottom: 1rem;
    height: 80px;
}

/*#endregion SECTION: ABOUT - INTRO */
/*#region SECTION: ABOUT - TEAM */
.card-body .h2 {
    text-transform: none;
}

.card-body p {
    margin-bottom: 0;
}

.social-media-icons i {
    margin-right: 0.3rem;
    margin-left: -8px;
}

.social-media-icons .fab {
    height: 30px;
    width: 30px;
    padding-top: 0.4rem;
    text-align: center;
    color: #393C46;
}

    .social-media-icons .fab:hover {
        color: #E9A61F;
    }

/*#endregion SECTION: ABOUT - TEAM */
/*#region SECTION: ABOUT - UNICORN-WORK */

.both-columns {
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

.left-column, .right-column {
    background-position: center; /* x-axis, y-axis */
    background-repeat: no-repeat;
    background-size: cover;
}

.col-blue-overlay {
    background: rgba(91, 181, 200, 0.85);
}
/*#endregion SECTION: ABOUT - UNICORN */
/*#region SECTION: DIARY masonry */
@media (max-width: 767px) {
    #diary .gy-5 {
        --bs-gutter-y: 2rem;
    }
}

.card-diary {
    background-color: #F2F3F4;
    border: none;
}

    .card-diary .card-body {
        padding: 3rem;
    }

    .card-diary a {
        color: #393C46;
    }

        .card-diary a:hover {
            color: #E9A61F;
        }

/*#endregion SECTION: DIARY masonry */
/*#region SECTION: DIARY-ARTICLE */

.article-tag {
    background-color: #E7E7E8;
    padding: 0.2rem 0.4rem;
    margin: 0.2rem;
    border-radius: 3px;
    display: inline;
    line-height: calc(10px + 2.5vh);
}

    .article-tag:hover {
        background-color: #E9A61F;
        color: white;
    }

@media (max-width: 767px) {
    .article-tag {
        line-height: calc(10px + 1vh);
    }
}
/*Diary article - latest Articles image*/
.square-image-holder {
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 1rem;
}

.bkg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(max-width: 1399px) {
    .square-image-holder {
        width: 70px;
        height: 70px;
    }
}
/*#endregion SECTION: DIARY-ARTICLE */
/*#region SECTION: WHAT-WE-DO */
.expert-areas-list {
    padding-left: 0;
}

    .expert-areas-list li {
        padding-bottom: 1rem;
        text-transform: uppercase;
    }

.expert-area-icon {
    max-height: 400px;
    max-width: 400px;
}

.expert-area {
    height: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.bg-img-icon {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 300px;
}

@media(max-width: 767px) {
    .bg-img-icon {
        min-height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(min-width: 768px) {
    .expert-area {
        padding-left: 0;
        padding-right: 0;
        padding-top: 6rem;
    }
}

@media(min-width: 1800px) {
    .expert-area {
        padding-top: 3rem;
    }
}
/*#endregion SECTION: WHAT-WE-DO */

/*#region SECTION: Contact  */


.contact-dark-block, .contact-dark-block-career {
    background: #393C46;
}

.padding-contact {
    padding-bottom: 15rem;
}

.btn-contact-form:hover {
    color: #fff;
}

#googleMap {
    filter: grayscale(100%);
    width: 100%;
    height: 691px;
}

.contact-logo-img {
    max-height: 80px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 480px) {
    .contactForm .btn-lg-yellow {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .padding-contact {
        padding-bottom: 1rem;
    }

    #googleMap {
        height: 450px;
    }

    .contact-logo-img {
        max-height: 60px;
        max-width: 150px;
    }

    .contactForm button {
        width: 100%;
    }
}

@media(max-width: 991px) {
    .contact-outer-right, .contact-outer-right-career {
        background-color: #393C46;
    }

    .contact-box-right {
        width: 100% !important;
    }

    .contact-dark-block, .contact-dark-block-career {
        position: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .padding-contact {
        padding-bottom: 2rem;
    }

    .contact-inside-wrapper, .address-text p {
        text-align: center;
    }
}

@media(min-width: 992px) {
    .contact-dark-block {
        position: absolute;
        top: 0px;
        right: 0%;
        left: 10%;
        z-index: 2;
    }

    .contact-dark-block-career {
        position: static;
        top: 0px;
        right: 0%;
        left: 10%;
        z-index: 2;
    }

    .contact-outer-right {
        position: relative;
    }

    .contact-outer-right-career {
        position: static;
    }
}

@media(min-width: 1200px) {
    .contact-dark-block, .contact-dark-block-career {
        right: 10%;
    }
}

@media(min-width: 1400px) {
    .contact-dark-block, .contact-dark-block-career {
        right: 20%;
    }
}

/* contact content boxes in left & right columns */
.contact-box-left {
    max-width: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.contact-box-right {
    max-width: auto;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 992px) {
    .contact-box-right,
    .contact-box-left {
        max-width: 430px;
    }
}

@media (min-width: 1200px) {
    .contact-box-right,
    .contact-box-left {
        max-width: 525px;
    }
}

@media (min-width: 1400px) {
    .contact-box-right,
    .contact-box-left {
        max-width: 600px;
    }
}

@media (min-width: 1800px) {
    .contact-box-right,
    .contact-box-left {
        max-width: 800px;
    }
}


/*#endregion SECTION: Contact  */

/*#region SECTION: Works  */
.portfolio-item {
    max-height: 600px;
    height: calc(200px + 20vw);
    position: relative;
    border-radius: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 159px;
    background-color: #393C46;
    border-radius: 6px;
    opacity: 0.7;
    color: white;
}

.show-more-link:hover {
    color: #5BB5C8;
}

/*#endregion SECTION: Works  */
/*#region SECTION: Portfolio  */
#section-portfolio-gallery {
    margin-top: 5rem;
}

.portfolio-subtitle {
    text-transform: uppercase;
}

.section-portfolio-gallery .row .portfolio-row {
    padding-left: -12px !important;
    width: calc(100% + 12px);
}

    .section-portfolio-gallery .row .portfolio-row .col-md-3, .section-portfolio-gallery .row .portfolio-row .col-md-6 {
        max-height: calc(95vh - 139px);
    }

.portfolio-images-col {
    padding-left: 0;
}

.scroll-screen {
    width: 100%;
}

    .scroll-screen img {
        width: 100%;
    }

@media(min-width: 992px) {
    .scroll-screen {
        width: 100%;
        height: calc(80vh - 139px);
        min-height: 980px;
        overflow: auto;
    }
}
/*#endregion SECTION: Portfolio  */
/*#region SECTION: Career  */
.career-feature-title {
    text-transform: uppercase;
}

#section-career-company-features {
    padding-bottom: 5rem;
}

.x-axis-gutters {
    --bs-gutter-x: 3rem;
}

.img-gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(200px, 2fr) 8fr minmax(200px, 2fr);
    grid-template-columns: minmax(200px, 2fr) 8fr minmax(200px, 2fr);
    grid-auto-rows: calc(300px + 20vw);
    gap: 20px;
}

@media (max-width: 767px) {
    .img-gallery {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.single-img {
    background-size: cover;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.single-img-1 {
    background-image: url("/images/Landscape-Color hor.jpg");
}

.single-img-2 {
    background-image: url("/images/austin-distel-_S7-KX8geL0-unsplash.jpg");
}

.single-img-3 {
    background-image: url("/images/austin-distel-_S7-KX8geL0-unsplash.jpg");
}

#section-career-join .container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.position-card {
    box-shadow: 0px 3px 6px #00000029;
    background-color: #F2F3F4;
}
/*#endregion SECTION: Career  */

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*# sourceMappingURL=styleSASS.css.map */





/* GRID layour settings */
.row {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0;
    margin-left: 0;
    --bs-gutter-x: 0 !important;
}




/*#region HOME HEADER - blue section */

.blue-col-2 {
    height: 45px;
}

.header-text-box {
    letter-spacing: 0px;
    /*padding: calc(1rem + 2.4vw);*/
    padding: calc(1rem + 2vw);
    line-height: 1.3;
    /*font-size: calc(1rem + 0.6vw);*/
    font-size: calc(1rem + 0.5vw);
    padding: 3rem;
}

.blue-bg-section .row {
    --bs-gutter-x: 0rem;
}

.blue-bg-section-col2 {
    height: 45px;
    background-color: #5BB5C8;
}

@media (min-width: 567px) {
    .header-text-box {
        padding: 4rem;
    }
}

@media (min-width: 768px) {
    .header-text-box {
        padding: 5rem 8rem;
    }

    .blue-col-2 {
        height: 150px;
    }
}

@media (min-width: 992px) {
    .blue-bg-section {
        height: 225px;
    }

        .blue-bg-section .row {
            --bs-gutter-x: 0rem;
        }

    .blue-bg-col1 {
        position: relative;
    }

    .header-text-box {
        max-width: 100%;
        position: absolute;
        z-index: 6;
        top: 0;
        right: 0;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        padding: calc(1rem + 2.4vw);
    }
}

@media (min-width: 1200px) {
    .header-text-box {
        width: 60%;
        min-width: 496px;
        max-width: 694px;
    }
}

/*#endregion HOME HEADER - blue section */


/*#region HEADER: HOME HEADER */
.bottom-layer {
    z-index: 100;
}

    .bottom-layer .row {
        margin-right: 0px;
    }


.HBG {
    /*background-image: url('~/Content/images/austin-distel-_S7-KX8geL0-unsplash.jpg');*/
    background-position: left 75%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
}

.col-W-bg {
    /*background-image: url(/Content/images/W_wiccon4_crop2.png);*/
    background-position: right 100%;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    right: 0;
    height: 350px;
    position: absolute;
    z-index: 6;
    opacity: 0.5;
}

.header-upper-text {
    z-index: 5;
}

@media (max-width: 450px) {
    .col-W-bg {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        top: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: 6;
    }
}

@media (max-width: 992px) {
    .header-title-content {
        width: 100%;
        max-width: 900px;
    }
}

@media (min-width: 762px) {
    .col-W-bg {
        background-position: right 100%;
        background-repeat: no-repeat;
        background-size: contain;
        top: 0;
        bottom: 0;
        right: 0;
        height: 400px;
        position: absolute;
        z-index: 6;
    }

    .header-col-right {
        height: 400px;
    }

    .HBG {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .HBG {
        height: 700px;
    }

    .header-col-right {
        height: 700px;
    }

    .upper-layer {
        top: 0;
        bottom: 0;
        right: 12px;
        left: 0;
        z-index: 99;
        height: 936px;
        position: absolute;
    }

    .col-W-bg {
        background-repeat: no-repeat;
        top: 0;
        bottom: 0;
        position: absolute;
        background-size: auto 100% !important;
        height: 700px;
        background-position: right;
    }
}

@media (min-width: 1300px) {
    .header-col-right {
        height: 936px;
    }

    .HBG {
        height: 936px;
    }

    .col-W-bg {
        background-position: right 100%;
        background-repeat: no-repeat;
        background-size: cover;
        top: 0;
        bottom: 0;
        right: 0;
        height: 936px;
        position: absolute;
    }
}
/*#endregion HEADER: HOME HEADER */





/*#region ERROR PAGE */

#error {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#error-content {
    margin: 0;
    padding: 0;
}

/*#endregion ERROR PAGE */



@media (max-width: 767px) {
    .col-with-img {
        min-height: 300px;
    }
}




/*#region SWIPER */

/*.swiper-container {
    width: 100%;
    height: 600px;
}*/

.swiper-wrapper {
    height: 600px;
}

.swiper-slide {
    height: 100%;
}

.bg-img-swiper {
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper-pagination-bullet {
    FONT-WEIGHT: 600;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .3;
}

    .swiper-pagination-bullet-active, .swiper-pagination-bullet:active, .swiper-pagination-bullet:focus, .swiper-pagination-bullet:focus-visible {
        background: #E9A61F;
        opacity: 1;
    }


@media (max-width: 767px) {
    .swiper-div {
        height: 50%;
    }

    .bg-img-swiper {
        background-position: center bottom;
        background-size: cover;
        height: 300px;
    }
}


/*#endregion SWIPER */

