*{
    margin: 0;
    padding: 0;
}

body{
    background-attachment: fixed;
    background-image: linear-gradient(45deg, rgb(228, 126, 157) , rgb(31, 103, 185) );
}

.menu{
    text-align: center;
    font-size: 14px;
    font-family: Tahoma;
    background: whitesmoke;
    margin: 2% auto;
    padding: 1%;
    border-radius: 8px;
    box-shadow: 2px 2px 10px #000000;
}
.menu>span>a{
    padding: 1% 2% 1% 2%;
}
.menu>span>a{
    color: #008b1e;
    font-size: 15px;
    text-decoration: none;

}
.menu>span>a:hover{
    transition: all .3s;
    background: #008b1e;
    color: #f5f5f5;
}
.kadr{
    font-family: Tahoma;
    color: #008b1e;
    background: #fff;
    box-shadow: 2px 2px 10px #000000;
    margin: 0 auto;
    padding: 1%;
    border-radius: 18px;
    text-align: center;
    height: 150px;
}
select{
    transition: all .2s;
    border-radius: 8px;
    width: 50%;
    box-shadow: 2px 2px 10px #008b1e;
    background: #008b1e;
    padding: 1%;
    text-align: right;
    color: whitesmoke;
    font-size: 17px;
    border: none;
    outline: none;
}
select:focus{
background: whitesmoke;
    color: #008b1e;
    font-family: Tahoma;
    font-size: 14px;
}
.pos>a{
    color: #fff;
    font-size: 15px;
    text-decoration: none;  
}
.pos>a:hover , pos>a:focus{
    color: rgb(0, 50, 187);
}
input{
    position: relative;
    color: whitesmoke;
    transition: all .2s;
    border-radius: 8px;
    margin: 2% auto 2% auto;
    width: 48%;
    background: #008b1e;
    box-shadow: 2px 2px 10px #008b1e;
    border: none;
    padding: 1%;
    outline: none;
}
input::placeholder {
    position: absolute;
    color: whitesmoke;
    right: 6%;
}
input:hover::placeholder , input:focus::placeholder{
    color: transparent;
}
input[type=submit]{
    width: 25%;
    margin: auto;
}
input[type=submit]:hover , input[type=submit]:focus{
    background: whitesmoke;
    color: #008b1e;
    transition: all .2s;
}







/* /////////////////////////// responsive ////////////////////////////////////////////////  */

/* For mobile phones: */
[class*="col-"] {
    width: 95%;
}

@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
}



@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}