* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
@media (min-width: 1700px) {
    .home-content .discount-img {
        width: 653px;
        height: 343px;
    }
    .home-content .discount-img img {
        width: 650px;
        height: 340px;
    }
    .home .home-image .rhombus img {
        max-width: 540px;
        top: -50px;
        left: -240px;
    }
}
.pop-up {
    position: fixed;
    background: rgb(10, 213, 10);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
    margin-top: 645px;
    box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.3), -4px -4px 4px rgb(255, 255, 255, 0.1);
}

.pop-up i {
    font-size: 30px;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
}

.pop-up a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
}
/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    padding: 30px 8%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.logo img {
    font-size: 27px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    width: 300px;
    height: 120px;
    margin-left: -20px;
    animation: slideRight 1s ease forwards;
}

.navbar a {
    display: inline-block;
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px;
    margin-top: 20px;
    transition: .2s;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.1s * var(--i));
    opacity: 0;
}

.navbar a:hover ,
.navbar a.active {
    color: red;
    font-size: 24px;
}

.social-media {
    display: flex;
    justify-content: space-between;
    width: 150px;
    height: 40px;
    margin-top: 20px;
    
}
.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 40px;
    background: transparent;
    text-decoration: none;
    transform: rotate(45deg);
    transition: .5s;
    animation: slideSci .5s ease forwards;
    animation-delay: calc(.1s * var(--i));
    opacity: 0;
    border: 1px solid grey;
    border-radius: 50%;

}
.social-media a i {
    font-size: 28px;
    transform: rotate(-45deg);

}
#face{
    color: rgb(60, 60, 255);
}
#wp{
    color: rgb(8, 198, 8);
}
#insta{
    color: rgb(234, 25, 123);
}
#face:hover {
    color: white;
    background-color: rgb(60, 60, 255);
    border: 0;
}
#wp:hover {
    color: white;
    background-color: rgb(8, 198, 8);
    border: 0;
}
#insta:hover {
    color: white;
    background-color: rgb(234, 25, 123);
    border: 0;
}
/* section */
.home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;
    justify-content: space-between;
    overflow: hidden;
    position: relative;

}
.discount-img {
    height: 263px;
    width: 503px;
    margin-bottom: 10px;
    border: 2px solid rgb(128, 128, 128, 0.1);
    animation: afis 2s ease;
}
.discount-img img{
    width: 500px;
    height: 260px;
    animation: afis 2s ease;
    box-shadow: 4px 6px 8px rgb(0, 0, 0, 0.4);
}
.home-content {
    max-width: 630px;
}
.home-content h1 {
    font-size: 50px;
    line-height: 1.2;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
}
.home-content h3 {
    font-size: 36px;
    color: red;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    width: 700px;
}
.home-content p {
    font-size: 16px;
    margin: 10px 0 30px;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
}

.store {
    color: white;
    display: inline-block;
    padding: 10px 28px;
    background: red;
    border: 2px solid red;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 550;
    transition: 0.4s;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
}
.store:hover {
    color: red;
    background-color: transparent;
}

.home-image {
    position: relative;
    width: 450px;
    height: 450px;
    transform: rotate(45deg);
    z-index: -1;
}
.home-image .rhombus {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: white;
    border: 25px solid red;
    right: -7%;
    top: -20px;
    box-shadow: 15px -15px 15px rgba(0,0,0,.2);
    opacity: 0;
    animation: zoom 1s ease forwards;

}
.home-image .rhombus img {
    position: absolute;
    max-width: 420px;
    transform: rotate(-45deg);
    top: 30px;
    left: -120px;
    opacity: 0;
    animation: car 1s ease forwards;
    animation-delay: .3s;
}
.home .rhombus2 {
    position: absolute;
    top: -15%;
    right: -26%;
    width: 700px;
    height: 700px;
    background: red;
    transform: rotate(45deg);
    z-index: -2;
}
/* navigation-chart */
.navigation-chart {
    flex-wrap: wrap;
    display: flex;
    background-color: rgb(231, 231, 231);
    
}
.navigation-chart a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-align: center;
    width: 100%;
    color: black;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid black;
    background-color: rgb(231, 231, 231);
}

@media screen and (max-width: 600px) {
    .home-content p {
        font-size: 0px;
        padding-right: 130px;
    }
    .home-content h1 {
        font-size: 22px;
        padding-right: 50px;
    }
    .home-content h3 {
        color: white;
        font-size: 16px;
        padding-right: 70px;
        width: 160px;
    }
    .store {
        padding: 8px 20px;
        font-size: 12px;
        border: 2px solid white;
        background-color: white;
        color: red;
        z-index: 2;
    }
    .store:hover {
        color: white;

    }
    .home-image .rhombus img {
        position: absolute;
        max-width: 340px;
        transform: rotate(-45deg);
        top: 30px;
        left: -120px;
        opacity: 0;
        animation: car 1s ease forwards;
        animation-delay: .3s;
    }
    .social-media {
        display: grid;
        margin-left: 25px;
        margin-top: -84px;
    }
    .social-media a {
        margin-top: 7px;
        width: 33px;
        height: 33px;
    }
    .social-media a i {
        font-size: 24px;
    }
    .logo img {
        width: 120px;
        height: 48px;
        margin-left: -18px;
    }
    .navbar a {
        margin-top: -25px;
    }
    .header {
        height: 130px;
    }
    .pop-up {
        margin-top: 520px;
        padding: 5px 7px;
    }
    .pop-up i {
        font-size: 20px;
    }
    .pop-up a {
        font-size: 12px;
    }
    .discount-img {
        width: 0;
        height: 0;
        border: 0;
    }
    .discount-img img {
        width: 0;
        height: 0;
    }
    .navigation-chart {
        margin-top: 25px;
    }
    .navigation-chart a {
        font-size: 17px;
        font-weight: 700;
    }
}
/* KEYFRAMES ANIMATION */

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideSci {
    0% {
        transform: translateX(100px) rotate(45deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(45deg);
        opacity: 1;
    }
}
@keyframes slideBottom {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes zoom {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes car {
    0% {
        transform: translate(300px -300px) scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(-45deg);
        opacity: 1;
    }
}
@keyframes afis {
    0% {
        opacity: 0;
        width: 0;
        height: 0;
    }
    100% {
        opacity: 1;
    }
}
/* footer */
footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background-color: rgb(40, 40, 40);
}
footer .footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}
footer .footer-container .title1 {
    position: relative;
    color: red;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}
footer .footer-container .company-logo {
    width: 300px;
    height: 120px;
}
.sc-icons {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 50px);
}
.sc-icons li {
    list-style: none;
}
.sc-icons li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: red;
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.3s;
}
.sc-icons li a:hover {
    background-color: rgb(255, 130, 130);
}
.sc-icons li a i {
    color: white;
    font-size: 20px;
}
footer .footer-container .sec-quicklinks {
    position: relative;
}
footer .footer-container .sec-quicklinks ul li {
    list-style: none;
}
footer .footer-container .sec-quicklinks ul li a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.3s;
}
footer .footer-container .sec-contact {
    position: relative;
}
footer .footer-container .sec-contact li {
    display: grid;
    margin-bottom: 16px;
}
footer .footer-container .sec-contact li span {
    margin: 5px;
    color: white;
    font-size: 18px;
    padding: 4px;
}
footer .footer-container .sec-contact li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s;
}
footer .footer-container .sec-contact li a:hover {
    color: red;
}
footer .footer-container .sec-quicklinks ul li a:hover {
    color: red;
}

.copyrighttext {
    width: 100%;
    background-color: red;
    padding: 13px 100px 13px;
    text-align: center;
    color: white;
    font-size: 11px;
}
@media screen and (max-width: 991px) {
    footer {
        padding: 40px;
    }
    footer .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .copyrighttext {
        font-size: 8.5px;
    }
}
@media screen and (max-width: 650px) {
    footer .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
    footer .footer-container .company-logo {
        width: 250px;
        height: 100px;
    }
}
/* header-line */
.line {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    padding: 3px 8%;
    background: red;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}
/* card */
.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgb(231, 231, 231);
    border: 20px, solid rgb(231, 231, 231);
    width: 100%;
}
.card {
    width: 325px;
    background-color: white;
    border: 3px solid rgb(215, 215, 215);
    border-radius: 18px;
    overflow: hidden;
    margin: 8px;
    transition: 0.3s;
}
.card:hover {
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.3), -12px -12px 12px rgb(240, 240, 240);
    border: 3px solid red;
}
.card-content {
    padding: 16px;
    background-color: white;
}
.card-content h4 {
    font-size: 28px;
    margin-bottom: 8px;
    color: black;
}
.card-content p {
    font-size: 15px;
    color: black;
    line-height: 1.3;
}
.card-content .btk {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    font-family: Georgia, Times, 'Times New Roman', serif;
    border-radius: 6px;
    margin-top: 16px;
    background-color: red;
    color: white;
    transition: 0.3s;
}
.card-content .btk:hover {
    color: red;
    background-color: white;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1) inset, -12px -12px 12px white inset;
}
.card .card-content .card-alt-title {
    color: red;
    font-size: 15px;
    font-weight: 700;
}
.extra {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    border: 2px solid rgb(231, 231, 231);
    width: 100%;
    background-color: rgb(231, 231, 231);
}
.card-extra {
    width: 230px;
    background-color: white;
    border: 2px solid rgb(180, 180, 180);
    border-radius: 36px;
    overflow: hidden;
    margin: 50px;
    padding: 14px;
}
.card-extra img {
    width: 100%;
    height: 170px;
}
.card-extra h5 {
    font-size: 24px;
    margin-bottom: 8px;
    color: black;
    text-align: center;
}
.card-extra p {
    font-size: 13px;
    color: black;
    line-height: 1.3;
    text-align: center;
}
.list a {
    text-decoration: none;
    color: white;
}
@media screen and (max-width: 605px) {
    .line {
        top: 130px;
    }
}

