@keyframes bouncing {
    0% {bottom: 0;}
    50% {bottom: 20px;}
    100% {bottom: 0;}
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

@media screen and (min-width:800px) {
    body {
    width: 100%;
}
}

@media screen and (max-width:800px) {
    body {
        width: 90%;
    }
}


header {
    display: flex;
    background-color: rgb(129, 123, 123);
    padding: 5px;
    width: 100%;
    color: azure;
}

header >  span {
font-family: Arial, Helvetica, sans-serif;
}


label {
    font-family: oldenglish, sans-serif;
    font-size: larger;
    padding-left: 50px;
}

.buttona {
    padding:4px;
    background-color: rgb(4, 107, 50);
    border-radius: 10px;
    border-style: solid rgb(45, 12, 88);
}

nav {
    height: auto;
    padding: 10px;
    padding-left: 25px;
    background-color: rgb(26, 47, 92);
    color: whitesmoke;
}

nav  > span {
    float:right;
    background-color: rgb(4, 107, 50);
    height: 40px;
    width:120px;
    margin-top:-10px;
    margin-right: -10px;
    text-align: center;
    padding: 10px;
}

nav,  a {
    color: wheat;
    text-decoration: none;
    font-weight: bold;
    transition: all 1s ease;
}

nav a:hover {
    background-color: #ddd;
        color: #333;
    padding: 10px;
}

body {
    background-color:whitesmoke;
    color: rgb(12, 40, 167);
}

body > img {
    width:15%;
    }
    

footer {
    position: fixed;
    bottom:  0;
    width: 100%;
    background-color: rgba(4, 47, 110, 0.651);
    text-align: center;
    color: aliceblue;
}

.products {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3,1fr);
    gap: 1rem;
    height: 100%;
    width: 100%;
  }


.item1 {
border-color: rgb(15, 14, 14);
    border-style: solid;
    grid-row: 1;
    grid-column: 1;
    
}


.item2 {
    border-color: rgb(230, 227, 227);
    border-style:solid ;
    grid-row: 1;
    grid-column: 6;
}

.item3 {
    border-color: rgb(12, 12, 12);
    border-style: solid;
    grid-row: 3/4;
    grid-column: 3/6;
    height: 100%;
    width: 100%;
}

.item3 > img {
    width:100%;
    height: 100%;
    
}

.item4 {
    border-color: rgb(230, 227, 227);
    border-style: solid;
    grid-row: 3;
    grid-column: 7;
    height: 100%;
        padding: 2px;
}

.item5 {
    border-color: rgb(230, 227, 227);
    border-style: solid;
    grid-row: 2;
    grid-column: 8;

}

figure {
    text-align: center;
    width: 70%;
}
figcaption {
    text-align: center;
    background-color: black;
    color:white;
        margin-bottom:20px;
}

img {
    vertical-align: baseline;
    height:100%;
    width: 100%;
    margin-bottom:20px;
}

.contact {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    /*grid-template-rows: repeat(3,1fr);*/
    
}

.contact > div >  img {
    float: left;
    width:35%;
}



.table {
    display: grid;
    grid-template-columns: 
    minmax(150px, 1fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr);
    grid-template-rows: 150px;
    overflow: hidden;
    border-collapse: collapse;
    gap: 5px;
}

.table img {
    align-self: center;
    width: fit-content;
    height: 150px;
}


.tg  {
    
    border-collapse:collapse;
    border-spacing:0; 
    font-size: 1rem;}
.tg td{
    border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;
overflow:hidden;padding:10px 5px;word-break:normal;
}

.tg th
{ 
    border-color:rgb(235, 225, 225);
    border-style:groove;
    border-width:1px;
    font-family:Arial,
    sans-serif;
    font-weight:normal;
    overflow:hidden;
    padding:7px 5px;
    word-break:normal;
}
.tg-1wig{font-weight:bold;text-align:left;vertical-align:top}
.tg .tg-0fw0{background-color:rgb(26, 47, 92);color:#efefef;text-align:right;vertical-align:top;  padding: 7px;}
.tg .tg-jyht{
    background-color:
    rgb(26, 47, 92);
    color:#efefef;
    font-weight:bold;
    text-align:left;
    padding: 7px;
}
.tg .tg-0lax{text-align:center;vertical-align:top;  padding: 7px;}
.tg > a, .tg-faw0 {
    display: flex;
    width: 100%;
    background-color:rgb(26, 47, 92);
    text-align:center;
    font-size:24px;
    color:white;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    padding: 7px;
}


.tg .tg-faw01{
    background-color:rgb(26, 47, 92);
    color:white;
        padding: 9px;
        font-weight: bold;
}

button {
    color: rgb(247, 242, 236);
    width: 125px;
    height: 50px;
    margin:10px;
    padding: 10px;
}

button.tab1 {    background-color:rgb(47, 47, 49); }
button.tab2 {    background-color:rgb(82, 54, 4);  }
button.tab3 {    background-color:rgb(4, 56, 9);   }
button.tab4 {    background-color:rgb(182, 55, 55);}
button.tab5 {    background-color:rgb(19, 55, 122);}
button.tab5 {    background-color:rgb(92, 7, 14);  }

.info {
    display: inline-grid;
    justify-content: center;
    align-items: center;
    background-color: darkcyan;
    color: #efefef;
    border-radius: 5%;
}

.info p {
    margin:15px;
    padding: 15px;
}

.row {
    display: flex;
    margin:15px;
    padding: 15px;
    width: 25em;
    justify-content:  space-between;
    align-items: center;
}

.contact  img {
    object-fit: contain;
    flex-shrink: 5;
}


p {
    background-color: rgb(2, 15, 2);
    color: blanchedalmond;
    text-align: center;
}

h3 {
    margin:5px;
    padding: 10px;
}

.items {
    display: grid;
    grid-template-columns: repeat(2,1fr);
 
}
.block1 {
    background-color: green;
    color: aliceblue;
    text-align: center;
    padding: 50px;
     font-size: x-large;
}


.block2 {
    background-color: rgb(6, 42, 90);
    color: aliceblue;  
    text-align: center;
    padding: 50px;
     font-size: x-large;
}


.block3 {
    background-color: rgb(87, 14, 23);
    color: aliceblue;
    text-align: center;
    padding: 50px;
    font-size: x-large;
}


.block4 {
    background-color: rgb(69, 82, 11);
    color: aliceblue;
    text-align: center;
    padding: 50px;

    
}
.mapcont {
    display:flex;
    margin:50px;
}

.mapcont > div {
    margin: 150px;
    padding:50px;
    background-color: aquamarine;
    border: #2e0404 solid;
}

.address {
display: inline-grid;
grid-template-columns: 120px 250px;
grid-template-rows: 70px;
}

.arrow {
    background-color: orange;
    animation: bouncing 1s infinite ease-in-out;
    bottom: 0;
    display: block;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}