@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
}
html{
   overflow: auto; 
}
body {
    background: #f5f5f56b;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #212121;
    line-height: 25px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
    text-align: right;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a a:focus {
    outline: none;
}

p {
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin: 0px;
    font-size: 14px;
}

ul,
ol {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

ul li,
ol li {
    list-style: none;
}
header {
    border-bottom: 5px solid #82cdec;
    position: relative;
    background-image: linear-gradient(360deg, #135466ba, #135466ba, #135466ba);
    background-image: linear-gradient(360deg, #135466eb, #135466d9, #1354667d);
}
.header-img {
    width: 100vw;
    height: 100%;
    object-position: 0 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    
}
nav.custom-navbar{
    text-align: center;
}
nav.custom-navbar img {
    width: 200px;
}
.header-hero {
    display: flex;
    flex-direction: column;
    padding: 50px;
    align-items: center;
    text-align: center;
}

.header-hero h1 {
    font-size: clamp(30px, 5vw, 45px);
    color: #ffffff;
    text-shadow: #000000 0px 3px 1px;
    font-weight: 700;
}

.header-hero h2 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
}
.header-hero p{
    font-size: 18px;
    padding: 10px 0 20px 0;
    text-shadow: #000000 0px 1px 1px;
    color: #ffffff;
}
section {
    padding: 50px 0;
}
.cards-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.card-content {
    width: 290px;
    border: 1px solid #ededed;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    background-color: #fff;
    transition: all 0.2s linear;
    
}
.card-content:hover {
    border: 1px solid #d7d7d7;
    box-shadow: 0 0 10px #d7d7d7;
    cursor: pointer;
}
.card-content-top {
    padding-bottom: 20px;
}
.card-content-top img {
    height: 70px;
}
.card-content-top h6 {
    color: #454545;
    font-weight: 700;
    padding: 10px 0;
    height: 50px;
    overflow: hidden;
}
.card-content-top p {
    font-size: 15px;
    color: #454545;
    font-weight: 400;
    padding: 10px 0;
    height: 89px;
    overflow: hidden;
}
.card-text-details span{
    color: #324b71;
}
.card-content-bottom {
    padding-top: 20px;
}
.card-content-bottom  {
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #26312e;
    display: flex;
    align-items: flex-end;
    border-top: 1px solid #f1f1f1;
    justify-content: center;
}
.card-content-bottom img {
    height: 20px;
    margin-right: 10px;
    opacity: 0.6;
}
.col-md-4.col-12 {
    margin-top: 20px;
}

@media(min-width: 1400px) {
    header {
        background-image: linear-gradient(360deg, #135466bf, #135466bf, #1354667d);
    }
}