/* Google fonts */
  @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&display=swap');
/* Variables CSS */
:root {
    --header-height: 3.5rem;
    /* Colors */
    --second-color: hsl(0, 0%, 100%);
    --title-color: hsl(0, 0%, 85%);
    --text-color: hsl(0, 0%, 58%);
    --text-color-light: hsl(40, 12%, 75%);
    --border-color: hsl(40, 12%, 75%);
    --body-color: #fff;
    --container-color: #fff;
    /* Font and Typography */
    --body-font: 'Fira Sans', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /* Font Weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    /* Font Weight */
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* Responsive Typography */
@media screen and (min-width: 1024px){
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/* Base */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html { 
    scroll-behavior: smooth;
}

body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,h2,h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


.contact__img img, .value__img img{
    max-width: 100%;
    height: auto;
}


/* Reusable CSS Classes */
.container {
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: grid;
}

.section {
    padding: .5rem 0 2rem;
}

.section__title{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}

.section__title span {
    color: var(--second-color);
}

.section__subtitle{
    display: block;
    font-size: var(--small-font-size);
    color: var(--second-color);
}

.main{
    overflow: hidden;
}






.home__description{
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px 360px;
}

body {
	background-color: #000000;
	background-repeat: no-repeat;
	background-position: center;
}
#Layer1 {
	position:absolute;
	left:45px;
	top:70px;
	width:546px;
	height:326px;
	z-index:301;
	background-color: #000000;
}
.style5 {
	font-size: 14px;
	color: #999999;
	width: 400px;
	text-align: justify;
	padding: auto;
}
.style6 {font-size: 14px; color: #999999; width: 400px; text-align: justify; padding: auto; font-weight: bold; }



/* No Touchy */
.value__container{
    row-gap: 2rem;
}

/* No Touchy */
.value__images{
    position: relative;
    display: flex;
    justify-content: center;
}

/* No Touchy */
.value__orbe{
    width: 266px;
    height: 316px;
    background-color: hsl(0, 0%, 4%);
    border-radius: 35px 35px 35px 35px;
}

/* No Touchy */
.value__img{
    position: absolute;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 35px 35px 35px 35px;
    inset: 0;
    margin: auto;
    box-shadow: 0 08px 36px hsla(0, 0%, 100%, 0.35);
}

/* No Touchy */
.value__description{
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}

/* Contact */
/* No Touchy */
.contact__container{
    row-gap: 2rem;   
}

/* No Touchy */
.contact__images{
    position: relative;
    display: flex;
    justify-content: center;
}

/* No Touchy */
.contact__orbe{
    width: 266px;
    height: 316px;
    background-color: hsl(0, 0%, 4%);
    border-radius: 35px 35px 35px 35px;
}

.contact__img{
    position: absolute;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 35px 35px 35px 35px;
    inset: 0;
    margin: auto;
    box-shadow: 0 08px 36px hsla(0, 0%, 100%, 0.35);
}

.contact__description{
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}




/* Breakpoints */
/* Smol Devices */
@media screen and (max-width: 350px){
    .container{
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .section{
        padding: 3.5rem 0 1rem;
    }
}

@media screen and (max-width: 350px){
    .value__img,
    .contact__img{
        width: 220px;
        height: 260px;
    }

    .value__orbe,
    .contact__orbe {
        width: 236px;
        height: 280px;
    }
}

@media screen and (min-width: 576px) {
.container {
    padding-top: 135px;
}
}

@media screen and (min-width: 706px) {
    .container {
        padding-top: 165px;
    }
    }

/* Medium Devices */
@media screen and (min-width: 767px){
    .value__container,
    .contact__container{
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .contact__images{
        order: 1;
    }
}

@media screen and (min-width: 867px){
    .container{
        padding-left: 175px;
        padding-top: 165px;
    }
}

/* Beeg Devices */
@media screen and (min-width: 1023px){

    .value__orbe,
    .contact__orbe{
        width: 441px;
        height: 601px;
        border-radius: 35px 35px 35px 35px;
    }

    .value__img,
    .contact__img{
        width: 401px;
        height: 561px;
        border-radius: 35px 35px 35px 35px;
    }

    .value__img img,
    .contact__img img{
        max-width: initial;
        width: 490px;
    }

    .value__description,
    .contact__description{
        font-size: var(--normal-font-size);
        margin-bottom: 2.5rem;
    }

    .home__description{
        font-size: var(--h3-font-size);
        margin-bottom: 2.5rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .value__accordion-title{
        font-size: var(--normal-font-size);
    }

    .value__accordion-item{
        padding: 1.25rem 1.25rem 1.25rem 1rem;
    }

    .value__accordion-description{
        padding-bottom: 1rem;
        font-size: var(--small-font-size);
    }
    .container{
        padding-left: 175px;
        padding-top: 165px;
    }
}

@media screen and (min-width: 1040px){
    .container{
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (min-width: 1201px){
    .container{
        padding-left: 225px;
        padding-top: 235px;
    }
}

/* Noice Luxury Screens tbh */
/* @media screen and (min-width: 2048px){
    body{
        zoom: 1.5;
    }
}

@media screen and (min-width: 3840px){
    body{
        zoom: 2;
    }
}  */