* {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121F3D;
    
}
.header {
    /*border: solid 1px blue;*/
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
    background-color: #071b48;
}

nav {
    /* border: solid 1px yellow; */
    width: 455px;
    text-align: center;
    color: #1E77EC;
   
    
}

nav ul  li a{
    list-style: none;
    text-decoration: none;
    
}

nav ul {
    margin-top: 20px;
}
nav li {
    /*border: solid 1px yellow;*/
    display: inline;
    text-align: center;
    padding: 5px 15px;
    margin: auto 0;
}

.right {
    /*border: solid 1px green;*/
    width: 250px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.right li {
    list-style: none;
   
    margin: 0 15px;
    color: #1E77EC;
    background: #eeeeee;
    padding: 5px 10px;
}

.right ul {
    display: flex;
    
}

.right a {
    text-decoration: none;
    
}

.description-catalog {
    /* border: solid 1px yellow; */
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
#catalog {
    display: grid;
    place-content: center;
    font-family: 'Cairo', sans-serif;
}

.text {
    color: #1E77EC;
    /* border: solid 1px green; */
    padding: 20px 20px;
    
}

.form {
    display: grid;
    place-content: center;
    margin: 0 auto;
   
}
.container-form {
    /* border: solid 1px red; */
    display: inline;
    
    
      
    
}

h2 {
    font-size: 35px;
    margin-bottom: 20px;
 }

.select {
    /* border: solid 1px red; */
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    background-color: #8817ea;
    color: #fff;
}
 .cards {
    /* border: solid 1px red; */
    display: grid;
    grid-template-columns: 350px 350px 350px;
    grid-auto-rows: 220px;
    gap: 25px;
    place-content: center;

 }
 .card {
    /* border: solid 1px green; */
    border-radius: 10px;
    background-color: #24385B;
    color: #1E77EC;
    padding: 15px 20px;
 }


 footer {
    background-color: #071b48;
    padding: 30px 100px;
    color: #1E77EC;
    font-family: 'Cairo', sans-serif;
 }

 .social {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    /* border: 5px solid #e1bee7; */
 }
 .social img {
    width: 30px;
    margin-right: 15px;
    
    
 }

 .social-icons {
    color: #1E77EC;
 }

 .hr {
    /* height: 10px; */
    color: #1E77EC;
    margin: 15px 0;
 }