@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

@font-face {
    font-family: "Canela";
    src: url('../fonts/Canela_Collection/CanelaFamily/Canela-Thin-Trial.otf');
}

@font-face {
    font-family: "Saol";
    src: url('../fonts/SaolDisplay-Light/SaolDisplay-Light.ttf');
}

:root {
    --white: #fff;
    --black: #080a14;
    --main: #FF7F11;
    --light-main: #FFBF88;
    --opacity-main: rgba(255, 203, 159, 0.5);
    --dark-main: #331903;
    --very-dark-main: #281402;
    --variant-main: #006B5E;
    --light-variant-main: #63BAAB;
    --grey: #323332;
    --light-grey: #BEBEBE;
    --style-font: "GilroyLight", sans-serif;
}

*::before,
*::after,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-family: 'Encode Sans', sans-serif;
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    overflow: hidden;
}


h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-bottom: 4px;
}

/* Track */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 2px var(--dark-main); */
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--dark-main);
    opacity: .8;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main);
}

/* Main */
a {
    text-decoration: none;
    color: var(--complementary-main);
    transition: all 0.5s ease;
    cursor: pointer;
}

button {
    cursor: pointer;
}

.btn {
    background: none;
    border: 1px solid var(--main);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    margin: 0.5em 0;
    padding: 1.2rem 3.6rem;
}

.btn-slide {  
    color: var(--main);
    transition: 0.8s;
}

.btn-slide:hover,
.btn-slide:focus {
    box-shadow: inset 24.5rem 0 0 0 var(--dark-main);
    border-color: var(--dark-main);
    color: var(--white);
}

.card {
    border-radius: 0 !important;
}

.main-content {
    min-height: 100vh;
    width: 100%;
    background: white;
    border: 1px solid var(--dark-main);
    position: relative;
    z-index: 1;
}


section {
    padding: 100px;
}

@media screen and (max-width: 768px) {
    section {
        padding: 50px;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 30px;
    }
}

.linked a {
    color: var(--dark-grey);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked-light a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked a:hover,
.linked-light a:hover {
    color: var(--main);
}

.linked a::after,
.linked-light a::after {
    content: "";
    width: 30px;
    position: absolute;
    margin: 0 auto;
    height: 1px;
    background: var(--main);
    left: 0;
    right: 0;
    bottom: -10px;
}

.top10 {
    margin-top: 10px;
}

.top20 {
    margin-top: 20px;
}

.top30 {
    margin-top: 30px;
}

.top40 {
    margin-top: 40px;
}

.top50 {
    margin-top: 50px;
}

.bottom10 {
    margin-bottom: 10px;
}

.bottom20 {
    margin-bottom: 20px;
}

.bottom30 {
    margin-bottom: 30px;
}

.bottom40 {
    margin-bottom: 40px;
}

.bottom50 {
    margin-bottom: 50px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 10;
}

header img {
    height: 60px;
}

header ul  {
    display: flex;
}

header ul li {
    padding-left: 20px;
}

header ul li a {
    font-size: 1.6rem;
    border: 3px solid transparent;
}

header ul li a:hover,
header ul li a.active {
    border-bottom: 3px solid var(--main);
}

.main-header {
    background: var(--dark-main);
    border-radius: 0 !important;
}

.main-header ul li a {
    color: var(--white);
}

.header-bg {
    background: var(--light-main);
    /* border-bottom: 1px solid var(--dark-main); */
    border-radius: 0 !important;
}

.header-bg ul li a {
    color: var(--white);
}

.header-bg img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger div {
    height: 2px;
    width: 28px;
    margin: 5px 0;
    background-color: var(--dark-main);
    margin-left: auto;
}

.hamburger div:last-child {
    width: 22px;
}

.hamburger div:nth-child(2) {
    width: 32px;
}

.header-bg .hamburger div {
    background-color: var(--white);
}

@media screen and (max-width: 900px) {
    header {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    header nav {
        position: absolute;
        left: -100%;
        top: 60px;
        width: 100%;
        background: var(--dark-main);
        padding: 30px;
        transition: all 0.5s ease-in-out;
    }

    .hamburger {
        display: block;
    }

    header #nav-check:checked ~ nav {
        left: 0;
    }

    header ul {
        display: block;
    }

    header ul li {
        margin: 15px 0;
    }

    header ul li a {
        color: var(--white);
    }

    header #nav-check:checked ~ .hamburger div {
        width: 28px;
        height: 3px;
        margin: 0 0 5px 0;
        transition: all 0.5s ease-out;
    }

    header #nav-check:checked ~ .hamburger div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    header #nav-check:checked ~ .hamburger div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    header #nav-check:checked ~ .hamburger div:nth-child(2) {
        opacity: 0;
    }
}

/* Slider */
.slider {
    height: 90vh;
    background: linear-gradient(
        to right,
        var(--light-main) 0%,
        var(--light-main) 70%,
        var(--white) 50%,
        var(--white) 100%
    );
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.slider .container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    /* align-items: center; */
    justify-content: center;
    padding-top: 50px;
}

.slider .container .left {
    flex-basis: 60%;
    padding-top: 100px;
}

.slider .container .left p {
    position: relative;
}

/* .slider .container .left p::after {
    position: absolute;
    content: '';
    background: var(--dark-main);
    top: 50%;
    left: 130px;
    height: 1px;
    width: 30px;
} */

.slider .container .left h1 {
    font-size: 3.4rem;
    padding-top: 10px;
    color: var(--dark-main);
    font-weight: 600;
}

.slider .container .left h1 span {
    color: var(--main);
}

.slider .container .right {
    flex-basis: 40%;
    position: relative;
}

.slider .container .right::before {
    position: absolute;
    content: '';
    top: -50px;
    left: -50px;
    height: 150px;
    width: 250px;
    background-color: transparent;
    background-image: radial-gradient(var(--dark-main) 10%, transparent 11%),
        radial-gradient(var(--dark-main) 10%, transparent 11%);
    background-size: 10px 10px;
    background-position: 0 0, 30px 30px;
    background-repeat: repeat;
    z-index: -1;
}

.slider .container .right img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    transform-origin: left;
} 

@media screen and (max-width:768px) {
    .slider {
        height: 100vh;
    }

    .slider .container {
        flex-direction: column;
    }

    .slider .container .right {
        padding-top: 30px;
    }

    .slider .container .right::before {
        top: 0;
        height: 80px;
        width: 150px;
    }
    
    .slider .container .right img {
        height: 250px;
        width: 100%;
    } 

    .slider .container .left {
        padding-top: 20px;
    }
    
    .slider .container .left h1 {
        font-size: 2.4rem;
    }
}

/* About */
.about {
    padding-top: 0;
}

.about .title h3 {
    position: relative;
    /* padding-left: 40px; */
    font-weight: 600;
    color: var(--main);
}

/* .about .title h3::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    height: 1px;
    width: 30px;
    background: var(--dark-main);
} */

.about .container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding-top: 50px;
}

.about .container .left {
    flex-basis: 40%;
    position: relative;
}

.about .container .left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about .container .left .floated {
    position: absolute;
    bottom: -50px;
    right: -50px;
    height: 200px;
    width: 200px;  
}

.about .container .left .floated img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border: 4px solid var(--white); 
}

.about .container .right {
    flex-basis: 60%;
    padding: 50px 0;
}

.about .container .right h1::before {
    position: absolute;
    content: 'ABOUT US';
    left: 0;
    top: 10px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.about .container .right .blurb {
    padding: 30px 0;
    padding-left: 50px;
}

.about .container .right a {
    margin-left: 50px;
}

@media screen and (max-width:768px) {
    .about .container {
        flex-direction: column;
    }

    .about .container .right .blurb {
        padding: 30px 0;
        padding-left: 0;
    }
    
    .about .container .right a {
        margin-left: 0;
    }
    
    .about .container .right h1::before {
        font-size: 4.4rem;
    }
}

/* Services */
.services .title {
    width: 65%;
}

.services .title::before {
    position: absolute;
    content: 'OUR SERVICES';
    left: 0;
    top: -40px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.services .title h3 {
    position: relative;
    /* padding-left: 40px; */
    padding-bottom: 30px;
    font-weight: 600;
}

/* .services .title h3::before {
    position: absolute;
    content: '';
    top: calc(50% - 15px);
    left: 0;
    height: 1px;
    width: 30px;
    background: var(--dark-main);
} */

.services .title h1 {
    color: var(--dark-main);
}

.services .container {
    display: flex;
    padding-top: 50px;
    gap: 30px;
}

.services .container * {
    flex: 1
}

.services .container .item {
    position: relative;
    padding: 50px;
    background: var(--opacity-main);
    transition: all 0.5s ease-in-out;
    color: var(--black);
}

.services .container .item:nth-child(2),
.services .container .item:hover {
    background: var(--dark-main);
    color: var(--white);
}

.services .container .item img {
    height: 50px;
    filter: opacity(1);
}

.services .container .item:nth-child(2) img,
.services .container .item:hover img {
    filter: brightness(0) invert(1);
}

.services .container .item h3 {
    padding: 20px 0;
    color: var(--dark-main);
}

.services .container .item:nth-child(2) h3,
.services .container .item:hover h3 {
    color: var(--white);
}

.services .container .item a {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.4rem;
    transition: all 0.5s ease-in-out;
}

.services .container .item a i {
    padding-left: 10px;
}

.services .container .item a:hover i {
    padding-left: 15px;
}

@media screen and (max-width:768px) {
    .services .title::before {
        font-size: 4.4rem;
    }

    .services .title {
        width: 100%;
    }

    .services .container {
        flex-direction: column;
    }
}

/* Store */
.store {
    display: grid;
    grid-template-columns: 3fr 5fr;
    padding-left: 100px;
    padding-bottom: 50px;
}

.store img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(90%);
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    transform-origin: left;
    z-index: 9;
}

.store .content {
    position: relative;
    background: var(--light-main);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: -1;
    height: 500px;
    display: flex;
    flex-direction: column;
    padding-left: 300px;
    padding-right: 100px;
    margin-left: -200px;
    justify-content: center;
}

.store .content::before {
    position: absolute;
    content: 'OUR STORE';
    left: 300px;
    top: 100px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--grey);
    opacity: 0.1;
    z-index: -1;
}

.store .content p {
    width: 80%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.store .link {
    padding-left: 100px;
    margin-top: -150px;
}

@media screen and (max-width:768px) {
    .store {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .store .mask {
        padding: 30px;
    }

    .store .content::before {
        font-size: 4.4rem;
        left: 30px;
        top: 70px;
    }
    
    .store .content {
        background: var(--light-main);
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
        z-index: -1;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 0;
        justify-content: center;
    }

    .store .link {
        padding-left: 30px;
        margin-top: -100px;
    }
}

/* About Crumb */
.about-crumb {
    position: relative;
    padding-top: 60px;
}

.about-crumb .about-page {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.5) 100%), url('../images/opt-glass.jpg');
}

.about-crumb .service-page {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.5) 100%), url('../images/set.jpg');
}

.about-crumb .blog-page {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.5) 100%), url('../images/blog.jpg');
}

.about-crumb .container {
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    width: 100%;
    padding-left: 100px;
}

.about-crumb .container h3 {
    width: 60vw;
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 500;
    padding-bottom: 50px;
}

@media screen and (max-width:768px) {
    .about-crumb {
        height: 70vh;
    }

    .about-crumb .container h3 {
        font-size: 2.4rem;
    }

    .about-crumb .container {
        padding: 50px 30px;
        height: 100%;
    }

    .about-crumb .container h3 {
        width: 100%;
    }
}
/* About Details */
.about-details {
    background: linear-gradient(
        to bottom,
        var(--white) 0%,
        var(--white) 75%,
        var(--dark-main) 50%,
        var(--dark-main) 100%
    );
    padding-bottom: 150px;
}

.about-details .title {
    padding-bottom: 50px;
    width: 60%;
}

.about-details .title h3 {
    font-size: 3rem;
    padding-top: 10px;
}

.about-details .title p {
    position: relative;
    font-weight: 600;
}

.about-details .title p::before {
    position: absolute;
    content: 'ABOUT US';
    left: 0;
    top: -10px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.about-details .container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
}

.about-details .container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-details .container .right .text {
    padding: 50px 0;
}

.about-details .container .right .text p {
    font-size: 1.6rem;
    padding: 10px 0;
}

.about-details .container .bottom {
    background: var(--very-dark-main);
    color: var(--white);
    padding: 50px;
}

.about-details .design {
    padding: 50px 0;
}

.about-details .design h3 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 400;
}

@media screen and (max-width:768px) {
    .about-details {
        background: var(--white);
    }

    .about-details .title {
        width: 100%;
    }

    .about-details .title p::before {
        font-size: 4.4rem;
    }

    .about-details .container  {
        grid-template-columns: 1fr;
    }

    .about-details .container .right .text {
        padding-top: 0;
    }
}

/* Blog */
.blog .title {
    width: 70%;
}

.blog .title p {
    position: relative;
    font-weight: 600;
    padding-bottom: 30px;
}

.blog .title p::before {
    position: absolute;
    content: 'ARTICLES';
    left: 0;
    top: -10px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.blog .title h3 {
    position: relative;
    font-size: 3rem;
}

.blog .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog .container {
    padding-top: 50px;
}

.blog .container .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog .container .item .post-title {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 20px;
}

.blog .container .item h4 {
    color: var(--dark-main);
}

.blog .container .item a {
    font-size: 1.4rem;
    color: var(--dark-main);
}

.blog .container .item p {
    padding-bottom: 20px;
}

@media screen and (max-width:768px) {
    .blog .title {
        width: 100%;
    }

    .blog .title h3 {
        font-size: 2.4rem;
    }

    .blog .title p::before {
        font-size: 4.4rem;
    }

    .blog .container {
        grid-template-columns: 1fr;
    }
}

/* Our Services */
.our-services {
    padding: 100px 150px;
}

.our-services .item a {
    font-size: 1.4rem;
    color: var(--dark-main);
}

.our-services .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.our-services .item .mask {
    flex-basis: 40%;
}

.our-services .item .details {
    flex-basis: 60%;
}

.our-services .item:nth-child(even) {
    flex-direction: row-reverse;
}

.our-services .item img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    transform-origin: left;
}

.our-services .item h3 {
    padding-bottom: 20px;
    font-size: 2.4rem;
    color: var(--dark-main);
}


@media screen and (max-width:768px) {
    .our-services {
        padding: 50px 30px;
    } 

    .our-services .item:nth-child(even),
    .our-services .item {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--grey);
    }
}

/* Contact */
.contact .container {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.contact .container .mask {
    flex-basis: 40%;
}

.contact .container .mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

form {
    flex-basis: 60%;
    padding: 50px 0;
}

form h3 {
    font-size: 3.0rem;
    color: var(--dark-main);
    padding-bottom: 50px;
}

form .input-box {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

form .input-box * {
    flex: 1;
}

form .message label, 
form .input-box label {
    font-size: 1.4rem;
    padding-bottom: 5px;
}

form .input-box .input {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
}

form textarea,
form .input-box .input input {
    font-family: 'Encode Sans', sans-serif;
    padding-left: 10px;
    font-size: 1.6rem;
}

form .input-box .input input {
    border: 1px solid var(--grey);
    height: 40px;
}

form .message {
    display: grid;
    grid-template-columns: 1fr;
}

form .message textarea {
    border: 1px solid var(--grey);
    width: 100%;
}

@media screen and (max-width:768px) {
    .contact .container  {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact .container .mask {
        display: none;
    }

    .contact .container form .input-box {
        flex-direction: column;
        gap: 0;
    }
}

/* Shop-crumb */
.shop-crumb {
    height: 80vh;
    display: flex;
    flex-direction: row;
}

.shop-crumb * {
    flex: 1;
}

.shop-crumb .details {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    justify-content: center;
    padding-left: 100px;
    padding-top: 100px;
    gap: 30px;
}

.shop-crumb .details h3 {
    font-size: 2.8rem;
    color: var(--very-dark-main);
    font-weight: 400;
}

.shop-crumb .details img {
    width: 200%;
    height: 250px;
    object-fit: cover;
}

.shop-crumb .bg-image {
    background: url('../images/shop-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .shop-crumb .details {
        padding-left: 30px;
        grid-template-columns: 1fr;
    }

    .shop-crumb .details h3 {
        font-size: 1.8rem;
    }
    
    .shop-crumb .details img {
        display: none;
    }
}

/* Shop list */
.shop-list .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.shop-list .container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
}

.shop-list .container .details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 15px;
}

.shop-list .container .details p.title {
    font-weight: bolder;
    font-size: 1.6rem;
}

.shop-list .container .link {
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.shop-list .container a {
    color: var(--dark-main);
    font-size: 1.4rem;
}

.shop-list .container .link i {
    padding-right: 5px;
    font-size: 2rem;
}

.shop-list h1.coming {
    text-align: center;
    font-size: 14.2rem;
}

@media screen and (max-width:768px) {
    .shop-list .container  {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--grey);
    }

    .shop-list h1.coming {
        text-align: center;
        font-size: 6.2rem;
    }
}

/* Alerts */
.alert {
    padding: 10px;
    margin-bottom: 30px
}

.alert-success {
    background: lightblue;
    /* color: var(--white); */
    border-radius: 0;
}

/* Single Post */
.blog-item {
    padding: 50px 100px;
}

.blog-item h3.blog-title {
    position: relative;
    font-size: 4.2rem;
    color: var(--dark-main);
}

.blog-item .created {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
}

.blog-item .quotes {
    background: var(--dark-main);
    padding: 30px;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.blog-item .quotes h3 {
    font-weight: 300;
    font-size: 2.4rem;
    color: var(--white);
    border-left: 1px solid var(--white);
    padding-left: 30px;
}

.blog-item .quotes img {
    filter: brightness(0) invert(1);
}

.blog-item .share {
    padding: 50px 0;
}

@media screen and (max-width:768px) {
    .blog-item {
        padding: 30px;
    }
}

div#social-links {
    margin: 0 auto;
    max-width: 500px;
}
div#social-links ul li {
    display: inline-block;
}          
div#social-links ul li a {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 1px;
    font-size: 30px;
    color: #222;
    background-color: #ccc;
}

/* ClearVision */
.clear-vision {
    padding-top: 150px;
}

.clear-vision .container-one {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
}

.clear-vision .container-one img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.clear-vision .container-one .details h3 {
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--dark-main);
    font-size: 2.4rem;
}

.clear-vision .container-one .details h3::before {
    position: absolute;
    content: 'CLEAR VISION';
    left: -20px;
    top: -30px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.clear-vision .container-one .details p {
    /* padding-left: 20px; */
    padding-bottom: 50px;
}

/* Choose Us */
.choose-us {
    padding: 50px 100px;
    background: var(--opacity-main);
}

.choose-us .container .title h3 {
    color: var(--dark-main);
    padding-bottom: 30px;
    font-size: 2.4rem;
}

/* to-expect */
.to-expect .title h3 {
    font-size: 1.8rem;
    padding-top: 20px;
    padding-bottom: 10px;
}

.to-expect .details .left li {
    font-size: 1.6rem;
}

.to-expect .details .left p.last {
    padding: 20px 0 30px 0;
    color: var(--dark-main);
}

.to-expect .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
}

.to-expect .container img {
    width: 100%;
}

/* FAQs */
.faqs {
    padding: 0 100px;
    padding-bottom: 50px;
}

.faqs .title {
    border-top: 1px solid var(--light-grey);
}

.faqs .title h3 {
    padding: 20px 0;
    color: var(--dark-main);
    font-size: 2.4rem;
}

.faqs .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ClearVision */
.prescription {
    padding-top: 150px;
}

.prescription .container-one {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
}

.prescription .container-one img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.prescription .container-one .details h3 {
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--dark-main);
    font-size: 2.4rem;
}

.prescription .container-one .details h3::before {
    position: absolute;
    content: 'LENS FITTING';
    left: -20px;
    top: -30px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.prescription .container-one .details p {
    /* padding-left: 20px; */
    padding-bottom: 50px;
}

/* Diagnosis */
.diagnosis {
    padding-top: 150px;
}

.diagnosis .container-one {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
}

.diagnosis .container-one img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.diagnosis .container-one .details h3 {
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--dark-main);
    font-size: 2.4rem;
}

.diagnosis .container-one .details h3::before {
    position: absolute;
    content: 'DIAGNOSIS';
    left: -20px;
    top: -30px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.diagnosis .container-one .details p {
    /* padding-left: 20px; */
    padding-bottom: 50px;
}

/* Dispensing */
.dispensing {
    padding-top: 150px;
}

.dispensing .container-one {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
}

.dispensing .container-one img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.dispensing .container-one .details h3 {
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--dark-main);
    font-size: 2.4rem;
}

.dispensing .container-one .details h3::before {
    position: absolute;
    content: 'DISPENSING';
    left: -20px;
    top: -30px;
    font-size: 6.2rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.1;
}

.dispensing .container-one .details p {
    /* padding-left: 20px; */
    padding-bottom: 50px;
}

@media screen and (max-width:768px) {
    .diagnosis .container-one,
    .clear-vision  .container-one,
    .prescription .container-one,
    .dispensing .container-one {
        grid-template-columns: 1fr;
    }

    .faqs,
    .choose-us {
        padding: 30px;
    }

    .to-expect .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .faqs .container {
        display: flex;
        flex-direction: column;
    }
}


/* Footer */
footer {
    background: var(--very-dark-main);
    color: var(--white);
    padding: 100px;
    padding-bottom: 20px;
    text-align: center;
}

footer .links {
    display: flex;
    flex-direction: row;
}

footer .links * {
    flex: 1;
}

footer .links .item {
    text-align: center;
    padding: 50px auto;
}

footer .links .item i {
    font-size: 3.6rem;
}

footer .links .item p {
    font-size: 1.6rem;
}

footer .links .item:nth-child(2) {
    border-width: 2px;
    border-style: solid;
    border-image: 
        linear-gradient(
        to bottom, 
        white, 
        rgba(0, 0, 0, 0)
        ) 1 100%;
}

footer .socials {
    padding-top: 50px;
    padding-bottom: 20px;
}

footer .socials i {
    font-size: 2.2rem;
    padding: 0 10px;
    transition: all 0.5s ease-in-out;
}

footer .bottom-bar {
    padding-top: 50px;
    border-top: 1px solid var(--light-main);
}

footer .bottom-bar p {
    font-size: 1.3rem;
}

footer .bottom-bar p span {
    padding: 0 10px;
}

@media screen and (max-width:768px) {
    footer .links {
        flex-direction: column;
    }

    footer .links .item:nth-child(2) {
        border: none;
        padding: 30px 0;
    }
}