/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Resets
1.0 Typography
2.0 Basic
3.0 Forms
4.0 Basic layout
	4.1 Header
	4.2 Content
	4.3 Footer
5.0 Navigation
	5.1 Top Navigation
	5.2 Main Navigation
	5.3 Social Navigation
	5.4 Footer Navigation
	etc.
6.0 Homepage
7.0 Overview page
8.0 Article page
9.0 Custom pages
	9.1 Custom page X
	9.2 Custom page Y
	9.3 Custom page Z
	etc.
10.0 Media Queries
	10.1 Large desktop
	10.2 Portrait tablet to landscape and desktop
	10.3 Landscape phone to portrait tablet
	10.4 Landscape phones and down	
--------------------------------------------------------------*/
@import url("all.min.css");

/*--------------------------------------------------------------
0.0 Resets
--------------------------------------------------------------*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
    --main-color: #414658;
    --main-text: #4b4b4b;
    --main-alt: #9094c9;
    --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
}

body {
    font-family: "Biryani";
    font-weight: 300;
    color: var(--main-text);
}

a {
    text-decoration: none;
    color: var(--main-color);
    display: inline-block;
    transition: all 0.3s;
}

a:hover {
    color: var(--main-alt);
}

.btn {
    font-weight: 300;
    color: #fff;
    padding: 12px 15px 10px 15px;
    background: var(--main-alt);
    border-radius: 0;
    border: none;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--main-color);
    color: #fff;
    opacity: 1;
}

.btn:after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    margin-left: 20px;
}

.btn i {
    margin-left: 8px;
}

.btn.white {
    background: #fff;
    color: var(--main-color);
}

.btn.white:hover {
    background: #eedee4;
}

.btn.line {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background: none;
}

.btn.line:hover {
    background: var(--main-color);
    color: #fff;
}

.btn.line.white {
    color: #fff;
    border: 1px solid #fff;
}

.btn.line.white:hover {
    background: #fff;
    color: var(--main-color);
}

.btn.small {
    background: none;
    padding: 0;
    color: var(--main-alt);
}

.btn.small:hover {
    opacity: 0.7;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--main-color);
}

h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    width: fit-content;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--main-color);
}

p {
    line-height: 28px;
}

strong {
    font-weight: 700;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-title {
    padding-bottom: 30px;
}

.section-title p {
    margin-bottom: 0;
}

.form-control {
    border-radius: 0;
}

.form-control:focus {
    color: var(--main-color);
    border-color: var(--main-alt);
    box-shadow: none;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 4px;
}

.form-control {
    padding: 15px 12px;
}

.form-check-input:focus {
    border-color: unset;
    box-shadow: none;
}

/* .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--main-color);
} */

/*--------------------------------------------------------------
4.0 Basic layout
--------------------------------------------------------------*/

/* Basis lay-out, toepasbaar op alle pagina's. Uitzonderingen in bijv. content komen later in het document. */

/*------------------------------
4.1 Header
------------------------------*/
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-x: clip;
    width: 100%;
}

header.sticky {
    position: fixed;
    animation-name: stickyHeader;
    animation-duration: 0.5s;
    background: var(--main-color);
    padding: 15px 0;
    transition: all 0.3s;
    border-bottom: 1px solid #fff;
    box-shadow: 0px 2px 20px rgba(14, 7, 15, 0.35);
}

@keyframes stickyHeader {
    0% {
        top: -140px;
    }
    100% {
        top: 0;
    }
}

header .top {
    padding: 18px 0 0;
}

header.sticky .top {
    display: none;
}

header .top .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

header .top a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

header .search-trigger {
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

header .search {
    position: absolute;
    transform: translate(-42px, 50px);
    z-index: 5;
    display: none;
}

header .search.active {
    display: block;
}

header .search .input-group {
    flex-wrap: nowrap;
}

header .search input {
    border-right: none;
}

header .search #search-button {
    background: var(--main-alt);
    color: #fff;
    border-radius: 0;
    padding: 0 20px;
    border: none;
}

header .dropdown.language button {
    background: none;
    outline: none;
    border: none;
    color: #fff;
    font-size: 15px;
}

header .dropdown.language button:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right: none;
    margin-left: 0;
    font-size: 13px;
}

header .dropdown.language .dropdown-menu {
    border-color: var(--main-alt);
}

header .dropdown.language .dropdown-item {
    color: var(--main-color);
}

header .dropdown.language .dropdown-item:hover {
    background: rgba(232, 25, 70, 0.3);
    opacity: 1;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

header.sticky nav {
    align-items: center;
}

header nav .logo {
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    gap: 20px;
}

header nav .logo .img {
    position: relative;
}

header nav .logo .img:before {
    content: "";
    position: absolute;
    width: 5000px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 225, 255, 0.75);
    right: 135px;
}

header nav .logo .img:after {
    content: "";
    position: absolute;
    width: 5000px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 225, 255, 0.75);
    left: 135px;
}

header.sticky nav .logo .img:before,
header.sticky nav .logo .img:after {
    display: none;
}

header nav .logo img {
    width: 115px;
}

header.sticky nav .logo img {
    width: 70px;
}

header.sticky nav .logo span {
    display: none;
}

header nav .menu {
    display: flex;
    gap: 50px;
}

header nav .menu li a {
    color: #fff;
    white-space: nowrap;
    display: block;
}

header nav .menu > li > a {
    position: relative;
}

header nav .menu > li > a:before {
    content: "";
    width: 0;
    height: 3px;
    background: var(--main-alt);
    left: 50%;
    transform: translateX(-50%);
    top: -21.5px;
    position: absolute;
    transition: all 0.3s;
    transform-origin: center;
}

header.sticky nav .menu > li > a:before {
    top: unset;
    bottom: -11.5px;
}

header nav .menu > li:hover a:before {
    width: calc(100% + 20px);
}

header nav .menu li.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

header nav .menu li.dropdown .arrow-down {
    color: var(--main-alt);
    display: none;
}

header nav .menu li.dropdown .drop-menu {
    position: absolute;
    left: -15px;
    top: 40px;
    background: #fff;
    box-shadow: var(--box-shadow);
    min-width: 300px;
    padding: 15px 25px;
    display: none;
}

header nav .menu li.dropdown .drop-menu:before {
    content: "";
    height: 24px;
    width: 100%;
    left: 0;
    top: -24px;
    background: transparent;
    position: absolute;
}

header nav .menu li.dropdown .drop-menu a {
    padding: 10px 0;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    color: var(--main-color);
}

header nav .menu li.dropdown .drop-menu a:after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    color: var(--main-alt);
    font-weight: 300;
}

header nav .menu li.dropdown .drop-menu li:not(:last-of-type) a {
    border-bottom: 1px solid var(--main-alt);
}

header nav .menu li.dropdown .drop-menu a:hover {
    color: var(--main-alt);
}

header nav .menu li.dropdown.active > .drop-menu {
    display: block;
    animation-name: dropAnimIn;
    animation-duration: 0.5s;
}

@keyframes dropAnimIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header .mobile-menu-toggle {
    display: none;
}

/*------------------------------
4.2 Content 
------------------------------*/

/*------------------------------
4.3 Footer 
------------------------------*/
footer {
    background: var(--main-color);
    color: #fff;
    position: relative;
    margin-top: 135px;
}

footer .footer-edge svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 130px;
    width: 820px;
    max-width: 820px;
    top: -130px;
}

footer .footer-top {
    padding: 90px 0;
    background-image:
        linear-gradient(
            to bottom,
            rgba(49, 44, 63, 0.9),
            rgba(49, 44, 63, 0.9)
        ),
        url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: center -40px;
}

footer .col-lg-2 a {
    font-weight: 800;
    font-size: 20px;
}

footer .logo {
    max-width: 100px;
    margin-bottom: 30px;
}

footer h4 {
    margin-bottom: 15px;
    color: #fff;
}

footer li {
    padding: 5px 0;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #fff;
}

footer i {
    margin-right: 8px;
    width: 16px;
}

footer .addresses .title {
    font-weight: 700;
    margin-bottom: 7px;
}

footer .addresses div,
footer .addresses a {
    margin: 3px 0;
}

footer .footer-bottom {
    padding: 25px 0;
}

footer .footer-bottom .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

footer .footer-bottom ul {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

footer .footer-bottom .copyright,
footer .footer-bottom ul a {
    font-size: 14px;
}

footer .footer-bottom .logos {
    width: 110px;
}

.route-planner {
    border: 0;
    background: transparent;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.loc .route-planner {
    color: inherit;
    opacity: 1;
}

.loc .route-planner:hover {
    opacity: 0.8;
}

#route-1.hidden,
#route-2.hidden {
    display: none;
}

#route-1.show,
#route-2.show {
    display: block;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
    padding: 0;
    position: relative;
}

#slider .swiper-wrapper {
    padding: 0;
}

#slider .img {
    height: 100%;
    position: relative;
}

#slider .img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#slider img {
    height: 100%;
    object-fit: cover;
}

#slider .content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

#slider p {
    font-size: 20px;
    margin-bottom: 35px;
}

#slider .swiper-button-next {
    bottom: 0;
    top: unset;
}

#slider .swiper-button-prev {
    bottom: 0;
    top: unset;
    right: 45px;
    left: unset;
}

#slider .swiper-pagination {
    bottom: 1.5% !important;
}

#slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

#related .row {
    --bs-gutter-y: 1.5rem;
}

#related a {
    position: relative;
}

#related .img {
    overflow: hidden;
}

#related a:hover {
    opacity: 1;
}

#related .img img {
    transition: all 0.5s ease-out;
}

#related a:hover img {
    scale: 1.1;
}

#related .title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 50px 15px 15px 15px;
    text-align: center;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}

#usps {
    text-align: center;
}

#usps .top {
    margin-bottom: 60px;
}

#usps .usp {
    box-shadow: var(--box-shadow);
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#usps .usp i {
    height: 70px;
    width: 70px;
    background: var(--main-alt);
    color: #fff;
    display: grid;
    place-content: center;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 45px;
    transform: translateY(-35px);
}

#usps .usp h5 {
    margin-top: -15px;
}

#usps .usp .btn {
    margin-top: auto;
    align-self: center;
}

#banner {
    position: relative;
    padding: 300px 0 100px;
}

#banner .img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#banner .img:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(65, 70, 88, 0.65);
}

#banner h1 {
    margin-bottom: 0;
    color: #fff;
}

#banner .img img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

#banner .content {
    padding: 0 12px;
    text-align: center;
    color: #fff;
    max-width: 950px;
    margin: 0 auto;
}

#banner.home {
    padding-bottom: 0;
}

#banner.home .img {
    height: calc(100% - 80px);
}

#banner p {
    margin-top: 16px;
    margin-bottom: 0;
}

#banner .btn {
    margin-top: 16px;
}

#banner.home .usps {
    margin-top: 130px;
}

#banner.home .usps .col-lg-4 {
    background: #fff;
    border: 1px solid var(--main-alt);
}

#banner.home .usps .row .col-lg-4:nth-of-type(2) {
    background: var(--main-color);
    transform: translateY(-30px);
    border: none;
}

#banner.home .usps .usp {
    text-align: center;
    color: var(--main-color);
    padding: 35px;
}

#banner.home .usps .row .col-lg-4:nth-of-type(2) .usp {
    color: #fff;
}

#banner.home .usps .row .col-lg-4:nth-of-type(2) .usp h3,
#banner.home .usps .row .col-lg-4:nth-of-type(2) .usp p {
    color: #fff;
}

#banner.home .usps .usp img {
    height: 65px;
    width: auto;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(6%) saturate(1982%)
        hue-rotate(198deg) brightness(95%) contrast(99%);
}

#banner.home .usps .row .col-lg-4:nth-of-type(2) .usp img {
    filter: unset;
}

#banner.home .usps .row .col-lg-4:nth-of-type(2) .btn {
    color: #fff;
    border-color: #fff;
}

#banner.home .usps .usp h5,
#banner.home .usps .usp p {
    margin-bottom: 20px;
}

#banner.home .usps .usp p {
    font-size: 16px;
    color: var(--main-text);
}

#home-about {
    padding: 0;
    margin-top: 160px;
    position: relative;
}

#home-about .row {
    align-items: center;
    margin: 0;
}

#home-about .row .col-lg-6:first-of-type {
    padding-left: 0;
}

#home-about .container-fluid {
    padding: 0;
    max-width: 1920px;
    position: relative;
}

#home-about .text {
    max-width: 650px;
    padding-left: 50px;
    padding: 80px 0 80px 50px;
}

#home-about h2 {
    padding-right: 50px;
}

#home-about h3 {
    margin-top: 30px;
    font-weight: 800;
}

#home-about ul {
    margin: 30px 0;
}

#home-about ul li {
    margin: 7px 0;
    display: flex;
}

#home-about ul li:before {
    content: "\f058";
    margin-right: 16px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
}

#home-about .contact {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#home-about .contact .tel {
    font-weight: 700;
}

#home-about .contact .tel i {
    margin-right: 8px;
}

#home-app {
    padding: 200px 0;
    background: linear-gradient(
        to right,
        rgba(204, 204, 206, 1) 1%,
        rgba(204, 204, 206, 1) 55%,
        rgba(65, 70, 88, 1) 55%,
        rgba(65, 70, 88, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

#home-app .app {
    position: relative;
    z-index: 2;
}

#home-app .app h2 {
    padding-right: 100px;
}

#home-app .usps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#home-app .usps .usp {
    display: flex;
    gap: 25px;
    align-items: center;
}

#home-app .usps .usp .icon {
    flex: 0 0 75px;
}

#home-app .usps .usp img {
    height: auto;
    width: 75px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(6%) saturate(1982%)
        hue-rotate(198deg) brightness(95%) contrast(99%);
}

#home-app .usps .usp:nth-of-type(2) img {
    width: 55px;
}

#home-app .usps .usp:nth-of-type(3) img {
    width: 60px;
}

#home-app .usps .usp h4 {
    margin-bottom: 0;
    color: var(--main-text);
}

#home-app .btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#home-app .btns .btn {
    white-space: nowrap;
    width: 75%;
}

#home-app .newsletter {
    text-align: right;
    color: #fff;
    position: relative;
    z-index: 2;
}

#home-app .newsletter h2 {
    padding-left: 100px;
    margin-left: auto;
    width: 100%;
    color: #fff;
}

#home-app .newsletter h2:after {
    background: #fff;
}

#home-app .newsletter form {
    margin-top: 50px;
}

#home-app .newsletter form .form-check {
    display: flex;
    align-items: center;
    gap: 20px;
}

#home-app .newsletter form .form-check input {
    border-radius: 50%;
    background-color: transparent;
    width: 24px;
    height: 24px;
    transform: translateY(-5px);
    border: 2px solid #fff;
}

#home-app .newsletter form .form-check label {
    text-align: left;
    color: #dbdbdb;
    font-size: 14px;
    margin-bottom: 0;
}

#home-app .newsletter form .form-check label a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

#home-app .edge {
    position: absolute;
    right: 45%;
    top: 0;
    width: 230px;
    height: 100%;
}

#home-app .shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

#news {
    padding-top: 135px;
}

#news h2 {
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto 40px;
}

.article {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--main-alt);
    height: 100%;
}

.article .img {
    position: relative;
}

.article .img:after {
    content: "";
    background: rgba(49, 44, 63, 0.45);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article .content {
    padding: 30px;
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.article .date {
    font-size: 13px;
    margin-bottom: 14px;
    color: var(--main-text);
    min-height: 20px;
}

.article h3 {
    margin-bottom: 12px;
}

.article .btn {
    margin-top: 14px;
    color: var(--main-color);
    margin-top: auto;
}

#news .btn-wrapper {
    text-align: right;
    margin-top: 30px;
}

#articles .row .col-lg-4 {
    margin-bottom: 24px;
}

#sticky-ctas {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 5%;
    display: flex;
    flex-direction: column;
}

#sticky-ctas a {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    box-shadow: 0px 2px 20px rgba(14, 7, 15, 0.35);
    padding: 12px 20px 10px 20px;
    align-items: center;
}

#sticky-ctas .newsletter {
    background: var(--main-color);
}

#sticky-ctas .newsletter:after {
    content: "\f0e0";
    font-weight: 300;
    font-size: 18px;
}

#sticky-ctas .contact:after {
    content: "\f086";
    font-weight: 300;
    font-size: 18px;
}

#sticky-ctas .newsletter:hover {
    background: var(--main-alt);
}

/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/

/*--------------------------------------------------------------
8.0 Article page
--------------------------------------------------------------*/
#breadcrumbs {
    padding: 30px 0;
}

#breadcrumbs ul {
    display: flex;
}

#breadcrumbs ul li {
    position: relative;
    padding-right: 30px;
    font-size: 14px;
}

#breadcrumbs ul li:not(:last-child):after {
    content: "|";
    font-weight: 400;
    right: 12px;
    top: 0px;
    position: absolute;
    font-size: 14px;
}

#breadcrumbs ul li:last-of-type {
    font-weight: 700;
}

#breadcrumbs ul li a {
    color: var(--main-color);
}

.content {
    padding: 50px 0;
}

#text-image .row,
#text-video .row,
#text-slider .row {
    align-items: center;
    --bs-gutter-x: 3rem;
}

#text-image .text > *:last-child,
#text-video .text > *:last-child,
#text-slider .text > *:last-child {
    margin-bottom: 0;
}

#text-image.img-right .row,
#text-video.right .row,
#text-slider.right .row {
    flex-direction: row-reverse;
}

#text-image.img-top .row,
#text-image.img-bottom .row,
#text-video.top .row,
#text-video.bottom .row,
#text-slider.top .row,
#text-slider.bottom .row {
    flex-direction: column;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 3rem;
}

#text-image.img-top .col-lg-6,
#text-image.img-bottom .col-lg-6,
#text-video.top .col-lg-6,
#text-video.bottom .col-lg-6,
#text-slider.top .col-lg-6,
#text-slider.bottom .col-lg-6 {
    width: 100%;
}

#text-image.img-bottom .row,
#text-video.bottom .row,
#text-slider.bottom .row {
    flex-direction: column-reverse;
}

#text-image.img-right,
#text-image.img-left {
  position: relative;
  padding: 120px 0;
  max-width: 1920px;
  margin: 40px auto;
  min-height: 600px;
  display: flex;
  align-items: center;
}

#text-image.img-right .img img,
#text-image.img-left .img img {
  position: absolute;
  right: 0;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  object-fit: cover;
}

#text-image.img-left .img img {
    right: unset;
    left: 0;
}

.swiper-wrapper {
    padding: 25px 0;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--main-color);
    color: #fff;
    height: 45px;
    width: 45px;
    font-size: 22px;
    display: grid;
    place-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--main-alt);
    width: 11px;
    height: 11px;
}

#gallery .row .col-12:not(:last-of-type) {
    margin-bottom: 24px;
}

#carousel .swiper-wrapper,
#carousel .swiper-slide {
    height: fit-content;
}

.content ul {
    margin-bottom: 16px;
}

.content ul li {
    position: relative;
    padding-left: 30px;
}

.content ul li:not(:last-child) {
    margin-bottom: 5px;
}

.content ul li:after {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

#cta {
    background: #ffe1ee;
    text-align: center;
}

#cta .btns {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#team .member {
    border: 1px solid var(--main-alt);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#team .member .details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#team .member .role {
    font-size: 14px;
    margin-bottom: 14px;
}

#team .member .name {
    font-weight: 700;
    margin-bottom: 14px;
}

#team .member .desc {
    font-size: 14px;
    margin-bottom: 20px;
}

#team .member .desc a {
    font-weight: 700;
    text-decoration: underline;
    color: var(--main-color);
}

#team .member .contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

#team .member .contact-info a {
    font-size: 14px;
}

#team .member .contact-info i {
    margin-right: 8px;
}

#advice {
    position: relative;
    padding: 0;
    max-width: 1920px;
    margin: 50px auto;
}

#advice .container-fluid {
    padding: 0;
}

#advice .row {
    margin: 0;
}

#advice .col-lg-7,
#advice .col-lg-5 {
    padding: 0;
}

#advice .img {
    height: 100%;
    position: relative;
}

#advice .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

#advice h3 {
    margin-bottom: 0;
}

#advice .text {
    background: var(--main-color);
    color: #fff;
    padding: 180px 12px;
}

#advice .text .wrapper {
    max-width: 450px;
    position: relative;
    z-index: 2;
}

#advice .text .title {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 30px;
}

#advice .text .title img {
    width: 75px;
    filter: brightness(0) invert(1);
}

#advice .text p {
    margin-bottom: 30px;
}

#advice .text a {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

#advice .text a i {
    margin-right: 8px;
}

#advice .text .btn {
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    margin-top: 22px;
}

#advice .text .btn:hover {
    color: var(--main-color);
    background: #fff;
}

#advice .edge {
    position: absolute;
    right: 40%;
    top: 0;
    width: 150px;
    height: 100%;
}

#advice .shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

#downloads .list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: fit-content;
    max-width: 100%;
}

#downloads .btn {
    color: var(--main-alt);
    border: 1px solid var(--main-alt);
    align-self: flex-start;
    width: 100%;
}

#downloads .btn:after {
    content: "\f019";
}

#downloads .btn:hover {
    background: var(--main-alt);
    color: var(--main-color);
}

#form p {
    font-weight: 700;
}

#form form label {
    display: none;
}

#form form label.show {
    display: inline-block;
    padding: 5px;
}

div.form-check-inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

#form form .form-control {
    background: #eff4ff;
}

#form form .btn-wrapper {
    margin-top: 20px;
    text-align: right;
}

#form form .btn {
    background: var(--main-color);
}

#form form .btn:hover {
    background: #6a6182;
}

#form img {
    padding: 0 50px;
}

#form .contact-details .title {
    font-weight: 700;
    margin-bottom: 7px;
    margin-top: 20px !important;
    color: var(--main-text);
}

#form .contact-details div,
#form .contact-details a {
    margin: 3px 0;
    color: var(--main-color);
}

#form .contact-details i {
    margin-right: 8px;
}

#form .contact-details .mt-3 {
    color: var(--main-text);
}

/*--------------------------------------------------------------
9.0 Custom pages
--------------------------------------------------------------*/

/*------------------------------
9.1 Basic
------------------------------*/

/*------------------------------
9.2 Search
------------------------------*/
#search-top {
    padding: 70px 0;
    text-align: center;
}

#search-top h1 {
    font-size: 40px;
    font-weight: 700;
}

#search-top h1 span {
    color: var(--main-alt);
}

#search-top .search {
    max-width: 750px;
    margin: 30px auto 0;
}

#search-top .search p {
    font-size: 18px;
    margin-bottom: 15px;
}

#search-top .search .form-control {
    background: #f7f7f7;
    border: none;
}

#search-top .search button {
    background: #f7f7f7;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
}

#search-results article {
    background: #fff;
    box-shadow: var(--box-shadow);
    margin-top: 24px;
}

#search-results article .details {
    padding: 25px;
}

#search-results article .details h5 {
    color: var(--main-alt);
}

#search-results article .details .btn {
    margin-top: 25px;
}

/*--------------------------------------------------------------
9.3 Error
--------------------------------------------------------------*/
#error {
    min-height: calc(100vh - 185px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0) 0%,
        rgba(35, 35, 34, 0.35) 100%
    );
}

#error .wrapper {
    display: flex;
    align-items: center;
}

#error .wrapper > div {
    flex: 0 0 50%;
    width: 50%;
}

#error .content {
    text-align: right;
}

#error .content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 14px;
}

#error .content p {
    font-size: 25px;
}

#error .content .cta {
    margin-top: 100px;
    text-align: right;
}

#error .content .cta p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444444;
    max-width: 360px;
    margin-left: auto;
}

#error .img {
    padding-left: 80px;
}

#error .img img {
    max-height: 60vh;
}

/*--------------------------------------------------------------
9.3 Products
--------------------------------------------------------------*/
.categories ul li > ul {
    display: none;
    margin-left: 20px;
}

.categories ul li.active > ul {
    display: block;
}

.products h2 {
    font-size: 20px;
    margin-top: 10px;
}

.products .pagination svg {
    width: 20px;
}

.products .pagination nav div:first-child {
    display: none;
}

.addtoshoppingcart {
    padding: 10px 0;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
}

.quantity {
    display: -ms-inline-flexbox;
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 10px;
}

.quantity .qty {
    width: 60px;
    height: 49px;
    line-height: 40px;
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background-color: #eee;
    text-align: center;
    margin-bottom: 0;
}

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

/* Firefox */
.quantity input[type="number"] {
    -moz-appearance: textfield;
}

.quantity .sub,
.quantity .add {
    display: block;
    cursor: pointer;
    border: 0 transparent;
    padding: 0;
    width: 46px;
    height: 49px;
    line-height: 40px;
    text-align: center;
    background-color: #eee;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
}

/*--------------------------------------------------------------
10.0 Media Queries
--------------------------------------------------------------*/

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1200px) {
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (max-width: 1400px) {
    #home-app .app {
        padding-right: 80px;
    }
    #home-app .app h4 {
        font-size: 18px;
    }
    #home-app .usps .usp .icon {
        flex: 0 0 55px;
    }
    #home-app .usps .usp img {
        height: auto;
        width: 55px;
        max-height: 50px;
    }
    #home-app .usps .usp:nth-of-type(3) img {
        width: 55px;
    }
    #home-app .edge {
        width: 150px;
    }
    #home-app .btns .btn {
        white-space: nowrap;
        width: 100%;
    }
}
/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
    body {
        padding-top: 74px;
    }
    section {
        padding: 50px 0;
    }
    #sticky-ctas {
        display: none;
    }
    header {
        position: fixed;
        animation: none !important;
        background: var(--main-color);
        padding: 12px 0 !important;
        transition: all 0.3s;
        border-bottom: 1px solid #fff;
        box-shadow: 0px 2px 20px rgba(14, 7, 15, 0.35);
    }
    header.open {
        height: 100vh;
        overflow: auto;
    }
    header .top {
        display: none;
    }
    header .container {
        position: relative;
    }
    header nav {
        align-items: flex-start !important;
        padding: 0;
        flex-direction: column;
    }
    header nav .logo img {
        width: 50px !important;
    }
    header nav .logo span {
        display: none;
    }
    header nav .logo .img:before,
    header nav .logo .img:after {
        display: none;
    }
    header .mobile-menu-toggle {
        width: 38px;
        height: 28px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        display: flex;
        top: 12px;
        right: 12px;
        position: absolute;
    }
    header .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    header .mobile-menu-toggle span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
    header .mobile-menu-toggle span:nth-child(2) {
        top: 10px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
    header .mobile-menu-toggle span:nth-child(3) {
        top: 20px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
    header .mobile-menu-toggle.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -4px;
        left: 6px;
    }
    header .mobile-menu-toggle.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    header .mobile-menu-toggle.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 23px;
        left: 6px;
    }
    header nav .menu,
    header nav form {
        display: none;
    }
    header.open nav .menu,
    header.open nav form {
        display: block;
        width: 100%;
        animation-name: fade;
        animation-duration: 0.5s;
    }
    @keyframes fade {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    header nav .menu {
        flex-direction: column;
        padding: 16px 0;
    }
    header nav .menu > li a {
        padding: 15px 0;
        width: calc(100% - 60px);
    }
    header nav .menu > li a:before {
        display: none;
    }
    header nav .menu li.dropdown {
        position: relative;
        justify-content: space-between;
        display: block;
        right: unset;
        top: unset;
    }
    header nav .menu li.dropdown .arrow-down {
        position: absolute;
        right: 0;
        top: 10px;
        font-size: 25px;
        height: 30px;
        width: 30px;
        display: grid;
        place-content: center;
        transition: all 0.3s;
    }
    header nav .menu li.dropdown.active .arrow-down {
        transform: rotate(180deg);
    }
    header nav .menu li.dropdown .drop-menu {
        position: relative;
        left: unset;
        top: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
        display: block;
        padding: 0;
    }
    header nav .menu li.dropdown.active > .drop-menu {
        max-height: 400px;
        animation: none;
        padding: 5px 0;
    }
    header nav .menu li.dropdown .drop-menu a {
        padding: 15px 25px;
        width: 100%;
    }
    header .dropdown {
        position: absolute;
        right: 65px;
        top: 12px;
    }
    header nav .menu .bottom {
        padding-top: 30px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-top: 1px solid #fff;
    }
    header nav .menu a {
        color: #fff;
    }
    header .search {
        position: relative;
        transform: unset;
    }
    header .search .form-outline {
        flex: 1;
    }
    .carousel-control-next,
    .carousel-control-prev {
        bottom: 1px;
        transform: unset;
        top: unset;
    }
    .carousel-control-prev {
        right: 50px;
        left: unset;
    }
    #services .row .col-lg-4:not(:last-child) {
        margin-bottom: 24px;
    }
    .content {
        padding: 25px 0;
    }
    #text-image .row,
    #text-video .row,
    #text-slider .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    .swiper-wrapper {
        padding: 20px 0;
    }
    .swiper-button-next,
    .swiper-button-prev {
        font-size: 20px;
        height: 35px;
        width: 35px;
    }
    .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
    #slider {
        height: calc(100vh - 73px);
    }
    #slider p {
        font-size: 17px;
    }
    #slider .swiper-button-prev {
        right: 35px;
    }
    #related .title {
        font-size: 18px;
    }
    #usps .row {
        --bs-gutter-y: 3.5rem;
    }
    #usps .usp i {
        width: 50px;
        height: 50px;
        font-size: 30px;
        transform: translateY(-25px);
    }
    h1 {
        font-size: 28px;
    }
    #banner {
        padding: 50px 0;
    }
    #banner.home .img {
        height: calc(100vh - 75px);
    }
    #banner.home .usps {
        margin-top: 50px;
    }
    #banner.home .usps .col-lg-4 {
        border: none;
    }
    #banner.home .usps .row .col-lg-4:nth-of-type(2) {
        transform: unset;
    }
    #banner.home .usps .usp {
        padding: 50px 25px;
    }
    #home-about {
        margin: 0;
    }
    #home-about .row .col-lg-6:first-of-type {
        padding-left: 12px;
    }
    #home-about .text {
        padding: 50px 0;
        max-width: unset;
    }
    #home-app {
        background: var(--main-color);
        padding: 50px 0;
        overflow: unset;
    }
    #home-app .edge {
        display: none;
    }
    #home-app .shapes {
        width: 100%;
        opacity: 0.05;
    }
    #home-app .app {
        padding: 0;
        color: #fff;
    }
    #home-app .app h2 {
        padding-right: 50px;
        width: 100%;
    }
    #home-app .app h2:after {
        background: #fff;
    }
    #home-app .app .usps .usp img {
        filter: brightness(0) invert(1);
    }
    #home-app .app h4 {
        font-size: 16px;
    }
    #home-app .app .btns .btn {
        color: #fff;
        border: 1px solid #fff;
    }
    #home-app .newsletter {
        margin-top: 100px;
        text-align: left;
    }
    #home-app .newsletter h2 {
        padding-left: 0;
    }
    #home-app .newsletter form {
        margin-top: 25px;
    }
    #home-app .newsletter .mb-5 {
        margin-bottom: 25px !important;
    }
    #news {
        padding-top: 50px;
    }
    #news h2 {
        margin: 0 auto 25px;
    }
    #news .row .col-lg-4:not(:last-of-type) {
        margin-bottom: 24px;
    }
    .article h3 {
        font-size: 17px;
    }
    footer {
        margin-top: 75px;
    }
    footer .footer-edge svg {
        width: 100%;
        height: 75px;
        top: -75px;
    }
    footer .tel,
    footer .mail {
        display: block;
    }
    footer .footer-links {
        margin-bottom: 24px;
    }
    footer .col-lg-2 a {
        font-size: 18px;
    }
    footer h4 {
        margin-top: 25px;
    }
    footer .addresses .title {
        margin-top: 15px;
    }
    footer .footer-top {
        padding: 50px 0;
    }
    footer .footer-bottom .wrapper {
        justify-content: center;
    }
    footer .footer-bottom ul {
        justify-content: center;
    }
    footer .footer-bottom .right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    #advice {
        margin: 0;
    }
    #advice .text {
        padding: 50px 12px;
    }
    #advice .edge {
        display: none;
    }
    #advice .text .title img {
        width: 55px;
    }
    #advice .shapes {
        width: 100%;
        opacity: 0.05;
    }
    #team .row .col-lg-3:not(:last-of-type) {
        margin-bottom: 24px;
    }
    #text-image.img-right,
    #text-image.img-left {
        padding: 25px 0;
        margin: 0;
    }
    #text-image.img-right .img img,
    #text-image.img-left .img img {
        position: relative;
        width: 100%;
        top: unset;
        transform: unset;
        height: unset;
        object-fit: unset;
    }
    #form img {
        padding: 30px 0;
        max-width: 180px;
    }
    #form form .btn-wrapper {
        text-align: left;
    }
}

@media (max-width: 767px) {
    #error {
        min-height: unset;
        padding: 50px 0;
    }
    #error .wrapper {
        flex-direction: column;
    }
    #error .wrapper > div {
        flex: 0 0 100%;
        width: 100%;
    }
    #error .content {
        text-align: center;
        order: 2;
        margin-top: 40px;
    }
    #error .content h1 {
        font-size: 40px;
    }
    #error .content p {
        font-size: 20px;
    }
    #error .content .cta {
        margin-top: 40px;
        text-align: center;
    }
    #error .content .cta p {
        max-width: unset;
    }
    #error .img {
        padding-left: 0;
    }
}

/*------------------------------
10.5 Landscape phones and down
------------------------------*/
@media (max-width: 480px) {
}

#hotspots .image-container {
    position: relative;
}

#hotspots .image-container img {
    width: 100%;
    height: 100%;
}

#hotspots .hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hotspots .hotspots .hotspot {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background-color: rgba(60, 255, 0, 0.877);
    border-radius: 50%;
    cursor: pointer;
}

#hotspots .hotspots .hotspot .content {
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 6px 12px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    min-height: 40px;
    width: fit-content;
    max-width: 300px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#hotspots .hotspots .hotspot .content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #f0f0f0;
}

#hotspots .hotspots .hotspot:hover .content {
    opacity: 1;
}
