﻿body {
    background-color: #ECEDF1;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 1525px;
}

.row {
    width: 127%;
    height: 100px;
}

.top1 {
    background-color: #373737;
    position: fixed;
    bottom: 0;
    width: 1490px;
}

.header1 {
    width: 1525px;
    height: 90px;
    background-color: #615d5c;
    overflow: hidden;
}

.Slide {
    width: 1038px;
    height: 640px;
}

.sub_menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
    background-color: #373737;
    margin: 0;
    width: 222px;
    height: 150px;
    border-radius: 30px;
    position: relative;
    top: 60px;
}

.but {
    color: white;
    background: none;
    border: none;
    font-size: 20px;
    padding-top: 21px;
}

    .but:hover {
        text-decoration: underline;
        transform-origin: left;
        transition: transform .5s ease;
        transform: skewY(6deg);
    }

.Company {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding-left: 144px;
    padding-top: 40px;
}


.animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.animate-left {
    position: relative;
    animation: animateleft 0.4s;
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

.animate-right {
    position: relative;
    animation: animateright 0.4s;
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

.footer {
    background: #ECEDF1;
    text-align: center;
    padding-top: 50px;
}

.ProductTitle {
    border: none;
    font-size: x-large;
    font-family: math;
    font-weight: 700;
}

    .ProductTitle:hover {
        color: #434054;
        transform: scale(1.1);
    }

.ProductImage {
    height: 200px;
    width: 250px;
}

    .ProductImage:hover {
        transform: scale(1.2);
    }

.animate-charcter {
    background-image: linear-gradient(dimgrey 25%, lightslategrey 83%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 3em;
    padding-left: 70px;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.a1:visited {
    text-decoration: none;
    color: blue;
}
