@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap");
:root {
    --font-1: "Inter", sans-serif;
    --font-2: "IBM Plex Serif", serif;
    /* monospace
     */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
    margin: 0;
    font-family: var(--font-2);
    font-weight: 200;
}

body {
    font-family: var(--font-1);
    font-size: 1.3125rem;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    background-color: rgb(21, 21, 21);
}

h1,
h3 {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 1rem;
}

h3 {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.3;
    color: #ffffffff;
}

h2 {
    color: #dbdbdb;
    font-size: 1.2rem;
}

@media (min-width : 40em) {
    h1 {
        font-size: 6rem;
    }
    h2 {
        font-size: 2rem;
    }
}

p {
    font-family: var(--font-1);
    font-size: 18px;
    color: rgba(255,255,255,.65);
}

img {
    pointer-events: none;
    user-select: none;
    display: block;
    max-width: 100%;
}

section {
    padding: 4rem 0;
    min-height: 21rem;
    position: relative;
}

header {
    padding: 0;
    min-height: 21rem;
    position: relative;
}

header video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 30em;
}

.bg-fullscreen {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.bg-color-animation {
    background-image: 
    linear-gradient(-45deg, #ee76523c, #e73c7ec3, #23a5d52f, #23d5abc6);
    background-size: 400% 400%;
    animation: gradient 9s ease infinite;
}

.bg-color-light-fast-animation {
    background-image: linear-gradient(-45deg, #ee765200, #e73d7f73, #23a5d500, #23d5ab66);
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.bg-overlay-dark-gradient {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 9%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.7) 100%);
}
.bg-overlay-darker-gradient {
    background-image: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68) 5.88%, rgba(0, 0, 0, 0.76) 77.31%, rgba(0, 0, 0, 0.86));
}
.bg-overlay-dark2-gradient {
    background-image: linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.45) 9.66%, rgba(0, 0, 0, 0.45) 28.15%, rgba(0, 0, 0, 0.6431372549019608) 88.66%, rgba(0, 0, 0, 0.74))
}
.container {
    margin: 0 auto;
    width: min(90%, 70rem);
    position: relative;
}

.large {
    width: min(98%, 85rem);
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

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

.bg-dark {
    background-color: rgb(25, 28, 36);
}

.bg-darker {
    background-color: rgb(21, 21, 21);
}

.bg-light-blue {
    background-color: rgb(65, 160, 237);
}

.bg-black {
    background-color: rgb(0, 0, 0);
}

.header-Container {
    position: absolute;
    height: 100%;
    width: min(90%, 70rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#header-content {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#logo-top {
    position: absolute;
    left: 50%;
    top: 21%;
    width: 21%;
    transform: translate(-50%, -50%);
}

@media (min-width : 40em) {
    #logo-top {
        width: 15%;
    }
}

#book-now-button {
    position: absolute;
    left: 50%;
    top: 82%;
    transform: translate(-50%, -50%);
    width: 9em;
}

.button {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 50% 0, #52ff70 0, #1d8c34 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -2px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
}

.card .button {
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19),0 4px 13px -3px rgba(0, 0, 0, 0.22),0 -2px 0 rgba(45, 65, 45, 0.5) inset;
}

.offer-container .button,
.contact .button {
    background-image: radial-gradient(100% 100% at 50% 0, #616161, #333333);
}
  
.button:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button:hover {
    background-image: radial-gradient(100% 100% at 50% 0, #8fffa2 0, #1d8c34 100%);
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
}

.button:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}

.no-padding {
    padding: 0;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    padding: 6rem 0;
}

.text-content {
    padding: 4rem 0;
}

.text-content-float {
    padding: 8rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 50%;
}

.text-content-float.right {
    justify-content: flex-end;
}

.float {
    width: 90%;
    margin: 0 auto;
}

.split .image {
    background-position: 50%;
    background-size: cover;
    min-height: 50%;
}

@media (min-width: 65em) {

    .quote {
        font-size: 2rem;
    }

    .split {
        display: flex;
        flex-direction: row;
        min-height: 60%;
    }

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

    .split > * {
        flex-basis: 70%;
    }

    .split .text-content,
    .split .text-content-float {
        flex-basis: 100%;
    }

    .split > * + *,
    .split.reverse  > :first-child {
        margin-left: 3em;
    }

    .split.reverse  > * + * {
        margin-left: 0;
    }

    .split .image,
    .text-content-float {
        min-height: 0;
    }

    .float {
        width: min(90%, 40rem);
        margin-inline:0;
    }
}

.large-splitted {
    width: 100%;
}

.mountains {
    background-image: url(../images/Mountains.jpg);
}

.golden-eagle {
    background-image: url(../images/GoldenEagle.jpg);
}

.tree-planet {
    background-image: url(../images/TreePlanet.jpg);
}

.cute-monster {
    background-image: url(../images/CuteMonster.jpg);
}

.padding-top {
    padding-top: 8rem;
}

.large-padding {
    padding: 10rem 0;
}

section.companies {
    padding: 0;
    min-height: 0;
}

img.companies {
    max-width: 100%;
    padding: 2.1rem 0;
    opacity: 0.25;
}

.offer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-border {
    box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.81);
    border-radius: 6px;
    margin:0.9em;
    box-sizing: border-box;
    border-radius: 9px;
    padding: 3px;
    background: rgb(25, 28, 36);
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg,rgb(25, 28, 36) ,rgb(31, 35, 46) 50%,rgb(25, 28, 36));
}

.card {
    border-radius: 6px;
    box-sizing: border-box;
    padding: 1.5rem;
    background: rgb(25, 28, 36);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.highlight {
    box-shadow: rgba(0, 158, 253, 0.25) 0 20px 80px, rgba(42, 245, 152, 0.1) 0 20px 40px;
    background: linear-gradient(135deg,rgba(42, 245, 152, 1) ,rgba(0, 158, 253, 1) 50%,rgba(42, 245, 152, 1));
}

.gold {
    box-shadow:0 5px 60px rgba(251, 255, 0, 0.15), rgba(42, 245, 152, 0.1) 0 20px 40px;
    background: linear-gradient(135deg, rgba(227, 245, 41, 1), rgba(238, 252, 175, 1), rgba(245, 236, 41, 1));
}

.highlighted-text {
    background-image: linear-gradient(to bottom right, rgba(42, 245, 152, 1), rgba(0, 188, 252, 1), rgba(42, 245, 152, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlighted-text-gold {
    background: linear-gradient(135deg, rgba(227, 245, 41, 1), rgba(238, 252, 175, 1), rgba(245, 236, 41, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card ul {
    padding: 0;
    display: inline-block;
    text-align: left;
    margin-bottom: 2em;
    flex-grow: 1;
}

.card li {
    list-style: none;
    margin-top: .5em;
    opacity: .7;
    text-align: left;
    font-size: 18px;
}

.fa-check-circle {
    height: 1em;
    margin-right: 0.8em;
}

.card p {
    font-size: 14px;
    margin-bottom: 1em;
}

.card p.price {
    font-size: 21px;
    color: rgba(255,255,255,.50);
}

@media (max-width: 79em) {
    .card li {
        font-size: 0.9rem;
    }
    .card p {
        font-size: 0.8rem;
    }
}

.expert-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-card {
    width: 120px;
    box-shadow: 0 6px 15px -5px rgba(0, 0, 0, 0.81);
    border-radius: 6px;
    background-color:rgba(0, 0, 0, 0.33);
    margin:1em 3em;
}

.expert-card img {
    border-radius: 6px 6px 0 0;
    width: 100%;
}

.expert-card h3 {
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    padding: 0.5rem 0;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 79em) {
    .expert-card {
        margin:0.5em;
    }
}

.sliding-background {
    animation: slide 60s linear infinite;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: rgb(66, 66, 66);
    margin-bottom: 0.6rem;
}

@keyframes slide{
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-1692px, 0, 0);
    }
  }

/* fade in up */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(-50%, -45%, 0);
        transform: translate3d(-50%, -45%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(-50%, -45%, 0);
        transform: translate3d(-50%, -45%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }
}

@media (max-width : 65em) {
    .offer-container {
        display: block;
    }
    .offer-container .card-border {
        margin: 2em auto;
        max-width: 540px;
    }
    .offer-container .card-border:first-child {
        margin-top: 0.9em;
    }
    .large {
        width: 90%;
    }
}