* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: #2175a1;
    text-decoration: none;
}

a:hover {
    color: #041a25;
    text-decoration: none;
}

.header {
    padding: 1rem 0;
    background-color: #fff;
}

.header-contact {
        display: flex;
    font-size: 1.2rem;
     gap: .25rem; 
    padding-top: 1.2rem;
    font-weight: bold;
    flex-direction: column;
}
.header-contact a {
    font-size: 1rem;
}

.logo {
    width: 150px;
}

.content-row-1 {
    padding: 3rem 0;
}

.content-row-1 h1 {
    color: #0a3247;
    font-weight: 600;
    font-size: 30px;
    margin-bottom:0px;
}
.content-row-1 h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: #115172;
}

.content-row-1 p {
    color: #454545;
}

.img-1 {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: #b2e5ff solid 1px;
}

.content-row-2 {
    padding: 3rem 0;
    background-color: #e9e7ec;
}

.content-row-3 {
    padding: 3rem 0;
    background-color: #fff;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
 

.products li {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.products li img {
    border-radius: 12px;
    max-height: 300px;
}
@media screen and (max-width:768px) {
   .products {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.products li img {
    max-height: 100%;
}
}
.title {
    color: #0a3247;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .5rem;
}

.title:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 4px;
    width: 80px;
    background-color: #0a3247;
    content: "";

}

iframe {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: #b2e5ff solid 4px !important;
    width: 100%;
}

.content-row-4 {
    padding: 3rem 0;
    background: url(../img/contact-bg.jpg)left top no-repeat;
    background-size: cover;
    color: #fff;
}

.content-row-4 h3 {
    color: #b3e2f6;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: bold;
}

.content-row-4 h3:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 4px;
    width: 80px;
    background-color: #b3e2f6;
    content: "";

}

.content-row-4 ul li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #b3e2f6;
}

.content-row-4 ul li i {
    margin-right: 0.6rem;
    font-size: 1.3rem;
    color: #b3e2f6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: black;
    color: white;
    transform: scale(1.1);
}
.footer {
    background-color: #0a3247;
    padding: 1rem 0;
    text-align: center;
    color: #FFF;
}
.box-5 {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.box-5 img {
    width: 120px;
}
.box-5 div {
        text-align: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 12px;
}
.box-5 div h5 {
    font-weight: 600;
    color: #115578;
    margin-top: .5rem;
}