/*==================== GOOGLE FONTS ====================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/*==================== VARIABLES CSS ====================*/
:root {
    --header-height: 3rem;

    /*========== COLORS ==========*/
    /* Change favorite color */
    /*Purple 250 - Green 142 - Blue 230 - Pink 340*/
    --hue-color: 190;
    /* HSL color mode */
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --first-color-lighter-dark: hsl(var(--hue-color), 8%, 15%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: white;
    --white-color: var(--container-color);
    --black-color: black;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-bar-thumb-color: hsl(var(--hue-color), 42%, 40%);

    /*========== FONT & TYPORGRAPHY ==========*/
    --body-font: 'Poppins', sans-serif;
    --title-font: 'Raleway', sans-serif;

    /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
    --biggest-font-size: 2.3rem;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== FONT WEIGHT ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== MARGINS ==========*/
    /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.25rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== Z INDEX ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /*========== HOVER OVERLAY ==========*/
    --img-transition: .3s;
    --img-hidden: hidden;
    --img-scale: scale(1.1);
}

/*========== FONT SIZE FOR LARGER SCREENS ==========*/
@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 3.5rem;
        --big-font-size: 3rem;
        --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;
    }
}

/*========== VARIABLE DARK THEME ==========*/
body.dark-theme {
    --first-color-second: hsl(var(--hue-color), 30%, 8%);
    --first-color-lighter-dark: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 95%);
    --text-color: hsl(var(--hue-color), 8%, 75%);
    --input-color: hsl(var(--hue-color), 29%, 16%);
    --body-color: hsl(var(--hue-color), 28%, 12%);
    --container-color: hsl(var(--hue-color), 29%, 16%);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

/*========== BUTTON DARK / LIGHT ==========*/
.nav__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.change-theme {
    font-size: 1.25rem;
    color: var(--title-color);
    margin-right: var(--mb-1);
    cursor: pointer;
}

.change-theme:hover {
    color: var(--first-color);
}

/*==================== BASE ====================*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 0 var(--header-height) 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    overflow: overlay;
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button,
input {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
    padding: 4.5rem 0 2.5rem;
}

.section__title {
    font-size: var(--h1-font-size);
    text-transform: capitalize;
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-3);
}

.section__title, .section__subtitle {
    text-align: center;
}

.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}

.button:hover {
    background-color: var(--first-color-alt);
}

/* -------------------- FOR SMALLER COMMENTS -------------------- */
/* --------------------  -------------------- */
/*====================  ====================*/
/*====================  ====================*/
/*====================  ====================*/

/*==================== Button Dark/Light ====================*/
.nav__dark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    position: absolute;
    left: 3rem;
    bottom: 4rem;
}

.change-theme, .change-theme-name {
    color: var(--text-color);
}

.change-theme {
    cursor: pointer;
    font-size: 1rem;
}

.change-theme-name {
    font-size: var(--small-font-size);
}

/*==================== LAYOUT ====================*/
.main {
    position: relative;
}

.container {
    max-width: 968px;
    width: calc(100% - 3rem);
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
}

/*==================== HEADER ====================*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
}

/*==================== NAV ====================*/
.nav {
    height: var(--header-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav__logo, .nav__toggle {
    color: var(--white-color);
}

.nav__logo {
    font-weight: var(--font-semi-bold);
}

.nav__toggle {
    font-size: 1.2rem;
    cursor: pointer;
}

.nav__menu {
    position: relative;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        -webkit-box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
        box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
        padding: 3rem;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }
}

.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
}

.nav__link {
    color: var(--text-color-light);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--text-color);
}

.nav__close {
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

/* -------------------- show menu -------------------- */
.show-menu {
    right: 0;
}

/* -------------------- Change background header -------------------- */
.scroll-header {
    background-color: var(--body-color);
    -webkit-box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
    box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
    color: var(--title-color);
}

.active__header {
    background-color: var(--body-color) !important;
    -webkit-box-shadow: 0 0 4px rgba(14, 55, 63, 0.15) !important;
    box-shadow: 0 0 4px rgba(14, 55, 63, 0.15) !important;
}

.active__header .nav__logo,
.active__header .nav__link,
.active__header .nav__toggle {
    color: var(--title-color) !important;
}

/* -------------------- Active link -------------------- */
.active-link {
    position: relative;
    color: var(--title-color);
}

.active-link::before {
    content: '';
    position: absolute;
    background-color: var(--title-color);
    width: 100%;
    height: 2px;
    bottom: -.5rem;
    left: 0;
}

/*==================== home ====================*/
.home {
    height: 100vh;
    position: relative;
}

.home__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    filter: brightness(.4);
}

.home__container {
    position: relative;
    /* height: 100%; */
    height: 100vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr .25fr;
    grid-template-columns: 2fr .25fr;
    -ms-flex-line-pack: center;
    align-content: center;
}

.home__subtitle, .home__title, .home__description {
    color: var(--body-color);
}

.home__subtitle {
    font-size: var(--h2-font-size);
    font-weight: var(--font-medium);
}

.home__title {
    font-size: var(--biggest-font-size);
}

.home__description {
    margin-bottom: 1rem;
}

.home__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--body-color);
    color: var(--first-color);
    border-radius: .5rem;
    font-weight: var(--font-medium);
}

.home__button:hover {
    background-color: var(--first-color-lighter);
}

.home__button-icon {
    font-size: 1.5rem;
    margin-left: .5rem;
}

.home__video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: .75rem;
}

.home__video-content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: .15rem;
    background-color: var(--body-color);
    border-radius: 50%;
    cursor: pointer;
}

.home__video-icon {
    font-size: 1.8rem;
    color: var(--first-color);
}

.home__popup {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--first-color-lighter);
    padding: 1rem .75rem;
    border-radius: 1rem;
}

.home__popup-close {
    position: absolute;
    top: -.75rem;
    right: -.75rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: .35rem;
    background-color: var(--first-color);
    color: var(--first-color-lighter);
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
}

/* -------------------- Show popup -------------------- */
.show-popup {
    display: block;
}

/* -------------------- Controls -------------------- */
.controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: .25rem .5rem;
    background-color: var(--body-color);
    border-radius: .75rem;
    z-index: var(--z-tooltip);
    overflow: hidden;
}

.controls__img {
    width: 35px;
    height: 35px;
    border-radius: .5rem;
    cursor: pointer;
}

.controls__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

/* -------------------- Active controls -------------------- */
.swiper-slide-thumb-active {
    width: 45px;
    height: 45px;
}

/*==================== ABOUT ====================*/
.about__data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about__description {
    text-align: center;
    max-width: 60ch;
    margin-bottom: var(--mb-2);
}

.abo {
    margin-bottom: 8rem;
}

.abo .about__description {
    max-width: 70vh;
    margin-bottom: var(--mb-1);
}

.about__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about__img-overlay {
    overflow: var(--img-hidden);
}

.about__img-one {
    width: 130px;
}

.about__img-two {
    width: 180px;
}

.about__img-one,
.about__img-two {
    transition: var(--img-transition);
    -webkit-transition: var(--img-transition);
    -moz-transition: var(--img-transition);
    -ms-transition: var(--img-transition);
    -o-transition: var(--img-transition);
}

.about__img-one:hover,
.about__img-two:hover {
    transform: var(--img-scale);
    -webkit-transform: var(--img-scale);
    -moz-transform: var(--img-scale);
    -ms-transform: var(--img-scale);
    -o-transform: var(--img-scale);
}

/*==================== FOOTER ====================*/
.margin {
    display: -ms-grid;
    display: grid;
    row-gap: 10rem;
}

.product-container {
    padding-bottom: calc(2rem + 1.5rem);
}

.product .section__title {
    margin-bottom: 2rem;
}

.product__container {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-bottom: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: var(--mb-2);
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
}

.product__content {
    min-height: 220px !important;
    gap: 1rem;
    max-height: 220px !important;
    position: relative;
    display: -ms-grid;
    display: grid;
    margin-bottom: 1rem;
    padding: .25rem .75rem .75rem;
    background-color: var(--container-color);
    -webkit-box-shadow: 0 2px 6px rgba(65, 11, 16, .15);
    box-shadow: 0 2px 6px rgba(65, 11, 16, .15);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.product__content:hover {
    -webkit-box-shadow: 0 3px 12px rgba(65, 11, 16, .15);
    box-shadow: 0 3px 12px rgba(65, 11, 16, .15);
}

.product__img {
    width: 200px;
    max-height: 135px;
    min-height: 135px;
    object-fit: contain;
    /* width: 110px; */
    -ms-grid-column-align: center;
    justify-self: center;
    /* margin-bottom: .25rem; */
}

.product__title {
    text-align: center !important;
    font-size: var(--normal-font-size);
    text-transform: capitalize;
}

.swiper-button-prev, .swiper-button-next {
    margin-top: calc(-3 * var(--swiper-navigation-size)/ 2);
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: '';
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -2.5rem;
}

.swiper-pagination-bullet {
    background-color: var(--first-color-lighter-dark);
}

.swiper-pagination-bullet-active {
    background-color: var(--first-color);
}

.swiper-button-prev, .swiper-button-next {
    font-size: 2rem;
    color: var(--first-color);
}

.swiper-button-prev, .swiper-button-next, .swiper-pagination-bullet {
    outline: none;
}

.swiper-portfolio-icon {
    font-size: 2rem;
    color: var(--first-color);
}

.swiper-portfolio-pagination {
    top: 19rem;
}

/*==================== CONTACT ====================*/
/*==================== CONTACT ====================*/
.contact__container {
    row-gap: 3rem;
}

.contact__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: var(--mb-2);
}

.contact__icon {
    font-size: 2rem;
    color: var(--first-color);
    margin-right: var(--mb-0-75);
}

.contact__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

.contact__subtitle {
    font-size: var(--small-font-size);
    color-interpolation-filters: var(--text-color);
}

.contact__content {
    background-color: var(--input-color);
    border-radius: .5rem;
    padding: .75rem 1rem 0.25rem;
    /* -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; */
}

.contact__label {
    font-size: var(--smaller-font-size);
    color: var(--first-color);
}

.contact__input {
    width: 100%;
    background-color: var(--input-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    border: none;
    outline: none;
    padding: .25rem .5rem .5rem 0;
}

textarea {
    resize: none;
}

/*==================== FOOTER ====================*/
.footer__container {
    row-gap: 5rem;
}

.footer__content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
    font-size: var(--h3-font-size);
}

.footer__title {
    margin-bottom: var(--mb-0-5);
}

.footer__description {
    margin-bottom: var(--mb-2);
}

.footer__subtitle {
    margin-bottom: var(--mb-1);
}

.footer__item {
    margin-bottom: var(--mb-0-75);
}

.footer__link {
    color: var(--text-color);
}

.footer__link:hover {
    color: var(--title-color);
}

.footer__rights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
    text-align: center;
}

.footer__copy, .footer__terms-link {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.footer__terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__terms-link:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/*========== SCROLL UP ==========*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background-color: var(--first-color);
    opacity: .8;
    padding: 0 .3rem;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.scrollup:hover {
    background-color: var(--first-color-alt);
}

.scrollup__icon {
    font-size: 1.5rem;
    color: var(--white-color);
}

/* Show scroll */
.show-scroll {
    bottom: 5rem;
}

/*==================== SCROLL BAR ====================*/
::-webkit-scrollbar {
    width: .65rem;
    background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background-color: var(--scroll-bar-thumb-color);
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--hue-color), 42%, 60%);
}


/*==================== MEDIA QURIES ====================*/
/* FOR SMALL DEVICES */
@media screen and (max-width: 320px) {
    .controls__container {
        -webkit-column-gap: .25rem;
        -moz-column-gap: .25rem;
        column-gap: .25rem;
    }

    .home__popup-video {
        width: 230px;
        height: 100px;
    }
}

@media screen and (min-width: 468px) {
    .product__container {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 568px) {
    .product__container {
        -ms-grid-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }

    .swiper-portfolio-pagination {
        top: 25rem;
    }

    .swiper-portfolio-pagination:nth-child(3) {
        top: 23rem !important;
    }

    .contact__container {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__information {
        margin-bottom: 3.4rem;
    }
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    .section {
        padding: 7rem 0 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__link {
        color: var(--white-color);
        text-transform: initial;
    }

    .nav__link:hover {
        color: var(--white-color);
    }

    .nav__dark {
        position: initial;
    }

    .nav__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }

    .nav__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 4rem;
        -moz-column-gap: 4rem;
        column-gap: 4rem;
    }

    .nav__toggle, .nav__close {
        display: none;
    }

    .change-theme-name {
        display: none;
    }

    .change-theme {
        color: var(--white-color);
    }

    .active__header .active-link::before {
        background-color: var(--title-color) !important;
    }

    .active-link::before {
        background-color: var(--white-color);
    }

    .scroll-header .nav__link {
        color: var(--text-color);
    }

    .scroll-header .active-link {
        color: var(--title-color);
    }

    .scroll-header .active-link::before {
        background-color: var(--title-color);
    }

    .scroll-header .change-theme {
        color: var(--text-color);
    }

    .footer__rights {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .home__container {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .home__description {
        padding-right: 5rem;
        margin-bottom: 2rem;
    }

    .home__video {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
    }

    .home__video-icon {
        font-size: 3rem;
    }

    .home__popup-video {
        width: 500px;
        height: 250px;
    }

    .home__popup-close {
        font-size: 1.5rem;
    }

    .controls {
        padding: .5rem;
        border-radius: 1.25rem;
    }

    .controls__container {
        -webkit-column-gap: 1.5rem;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }

    .controls__img {
        width: 45px;
        height: 45px;
        border-radius: .75rem;
    }

    .swiper-slide-thumb-active {
        width: 55px;
        height: 55px;
    }

    .about__data, .about__title {
        text-align: initial;
    }

    .about__title {
        margin-bottom: var(--mb-1-5);
    }

    .about__description {
        margin-bottom: var(--mb-2);
    }

    .product__container {
        -ms-grid-columns: repeat(4, 1fr);
        grid-template-columns: repeat(4, 1fr);
    }

    .product__content {
        padding: .5rem 1.5rem 1.5rem;
    }

    .product__img {
        /* width: 190px; */
        max-width: 170px;
        height: auto;
        margin-bottom: var(--mb-1);
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .home__description {
        padding-right: 11rem;
    }

    .footer__content {
        justify-items: center;
    }

    .swiper-portfolio-icon {
        font-size: 3.5rem;
    }

    .contact__form {
        width: 460px;
    }

    .contact__inputs {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}

/* FOR TALL SCREENS ON MOBILES & DESKTOP */
@media screen and (min-height: 721px) {
    .home {
        /* height: 640px; */
        height: 100vh;
    }
}