* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

html, body {
    max-width: 100%;
    height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-clr: #80572A;
    --secondary-clr: #062224;
}

#home {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.header {
    margin: 0 3.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
}

.main {
    height: 60vh;
    margin: 0 3.5em;
    position: relative;
}

.product-img {
    position: absolute;
    background-image: url('./img/kiran-ck-LSNJ-pltdu8-unsplash-removebg-preview.png');
    background-size: cover;
    top: -45%;
    left: 28%;
    background-repeat: no-repeat;
    height: 700px;
    width: 440px;
    opacity: .75;
    z-index: -1;
}

.main-logo {
    width: 25vw;
}

.main-logo .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-logo .logo img {
    max-width: 75px;
    max-height: 75px;
    margin-right: 1em;
    z-index: -1;
}

.logo h1 {
    font-family: 'Lora', serif;
    font-size: 1.6em;
}

.logo h1 #span1, .span2 {
    color: var(--primary-clr);
}

.main-nav {
    width: 75vw;
}

.main-nav nav {
    width: 40%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.main-nav nav li {
    margin-left: 2em;
}

.main-nav nav a {
    font-family: 'Neuton', serif;
    font-size: 1.3em;
    color: var(--secondary-clr);
    transition: all 210ms ease;
}

.main-nav nav a:hover {
    color: var(--primary-clr);
}

.main .main-title {
    display: flex;
    justify-content: space-between;
}

.page-info {
    margin-top: 5em;
    position: relative;
}

.page-info p {
    width: 55%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
}

.bubble {
    position: absolute;
    top: 35%;
    left: 12%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: .4;
    background-image: linear-gradient(120deg, rgb(6, 34, 36, .79), rgb(6, 34, 36, .73), rgb(6, 34, 36, .56), rgb(6, 34, 36, .34));
    z-index: -1;
}

.btn {
    margin-top: 2em;
    font-family: 'Poppins', sans-serif;
}

.btn #btn {
    font-size: 1.2em;
    color: #fff;
    background-color: var(--secondary-clr);
    padding: .2em .35em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn a {
    color: #333;
    margin-left: 1em;
}

.video-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 550px;
    height: 350px;
    background-color: #F2F2F2;
    margin-top: 3em;
}

.video-panel img {
    cursor: pointer;
    z-index: -1;
}

.wave {
    height: calc(100vh - (60vh + 15vh));
    background-image: url('./myicons/wave.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

#product {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3.5em;
    position: relative;
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

.product-info {
    width: 40vw;
    height: 100%;
    margin-left: 2em;
}

.product-info header {
    margin-top: 20%;
    width: 70%;
    font-size: 1.6em;
    font-family: 'Nobile', sans-serif;
    color: #333;
}

.product-info ul {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5em;
    font-weight: lighter;
    font-size: 1.5em;
    margin-top: 1em;
}

.product-info li {
    list-style: circle;
}

.product-info #price-link {
    font-family: 'Lora', sans-serif;
    font-size: 1.2em;
    color: #A96C50;
    border: 1.5px solid #333;
    display: inline-block;
    padding: .25em .35em;
    margin-top: .8em;
    margin-left: 2em;
    transition: all 0.21s ease-out;
}

.product-info #price-link:hover {
    background-color: #333;
    color: white;
}

.sample-product {
    position: absolute;
    left: 45%;
}

.sample-product img {
    max-width: 440px;
    max-height: 440px;
    transition: all .7s ease;
}

.sample-product img:hover {
    transform: scale(1.3) rotate(-10deg);
    cursor: pointer;
}

#product nav {
    position: sticky;
    left: 90%;
    top: 0%;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    height: 30%;
    justify-content: space-around;
}

#product nav a {
    font-family: 'Neuton', sans-serif;
    font-size: 1.2em;
    color: #A96C50;
    transition: all 0.21s ease-out;
}

#product nav a:hover {
    color: #333;
}

#product nav li img {
    margin-right: 10px;
}

#about {
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-clr);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

#about .about-head {
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about .about-head h1 {
    font-family: 'Pompiere', cursive;
    color: #f9f9f9;
    font-size: 2.8em;
    text-align: center;
}

#about .about-head p {
    margin-top: 1.2em;
    width: 80%;
    text-align: center;
    font-size: 1.5em;
    color: #f0f0f0;
    font-family: 'Pompiere', cursive;
}

.profile-card img {
    max-width: 210px;
    max-height: 125px;
    border-radius: 75px;
}

#about .teams {
    height: 40vh;
    width: 80%;
    margin: auto;
}

#about .teams h2 {
    font-family: 'Pompiere', cursive;
    font-size: 2.5em;
    color: #f1f1f1;
    text-align: center;
}

.teams .profile-card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teams .profile-card .card-1, .teams .profile-card .card-2, .teams .profile-card .card-3 {
    transition: all .5s ease;
}

.teams .profile-card .card-1:hover, .teams .profile-card .card-2:hover, .teams .profile-card .card-3:hover {
    transform: translateY(-2em);
    box-shadow: 0px 10px 20px 5px rgba(255, 255, 255, 0.3);
    cursor: default;
}

.teams .profile-card .card {
    background-color: #F4F4F4;
    margin-right: 1em;
    border-radius: 10px;
    padding: 2em 1em;
    display: flex;
}

.profile-card .card-2 {
    align-self: flex-end;
}

.profile-card .card .profile-desc {
    align-self: center;
}

.profile-card .card .profile-desc h3 {
    font-size: 1.2em;
    text-align: center;
    font-family: 'Nobile', sans-serif;
    text-transform: uppercase;
    margin-bottom: .5em;
}

.profile-card .card .desc {
    color: #333;
    margin-left: 1em;
    text-align: left;
    font-size: .8em;
    font-family: 'Nobile', sans-serif;
}

@import url(https://fonts.googleapis.com/css?family=Raleway:300);
@import url(https://fonts.googleapis.com/css?family=Lusitana:400,700);
.align-center {
    text-align: center;
}


.content-wrapper {
    min-height: 100%;
    position: relative;
}

.get-in-touch {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.get-in-touch .title {
    text-align: center;
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 48px;
}

.form-field {
    position: relative;
    margin: 32px 0;
}

.input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: #000;
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    outline: none;
}

.label {
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #888;
    cursor: text;
    transition: transform .2s ease-in-out;
}

.submit-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}

.note {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: Lusitana, serif;
    font-size: 16px;
    line-height: 21px;
}
