*{
    padding: 0;
    margin: 0px;
    box-sizing: border-box;
}
html,
body {
  scroll-behavior: smooth;
  font-family: "Rubik", sans-serif;
}
button {
  font-family: "Rubik", sans-serif;
}
:root {
  --primary-color: #333333;
  --secondary-color: #ee5f38;
  --default-text-color: #636363;
  --color-white: #ffffff;
  --color-gray-600: #eff3f7;
  --color-light-blue-200:#d8e8ee;
}
.sticky_header{
    background-color: var(--color-white);
}
.hero_section_bg {
    background-image: url(../images/about-bg-image.png) !important;
    background-color: #00859c9d;
    width: 100%;
    height: 400px !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.heading_banner{
    font-size: 32px;
    line-height: 38px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 100px;
}
.learning-section{
    padding-block: 100px;
}
.learning_heading_wrapper{
    padding-bottom: 10px;
    border-bottom: 1px solid var(--default-text-color);
}
.title_common{
    font-size: 17px !important;
    line-height: 28px !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    padding-inline: 16px 14px !important;
    width: 100%;
    max-width: 370px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
    margin: 0px;
}
.title_common:hover{
    color: var(--secondary-color) !important;
}
.padding-y{
    padding-block: 20px !important;
}
.aws_link_section{
    padding-block: 100px;
}
@media (max-width:991px){
  
    .hero_section_bg {
        height: 293px !important;
    }
    .heading_banner {
        font-size: 24px;
        line-height: 30px;
    }
    .learning-section {
        padding-block: 80px;
    }
    .aws_link_section {
        padding-block: 80px;
    }
}
@media (max-width:767px){
    .heading_main {
        font-size: 20px;
        line-height: 24px;
    }
    .heading_main {
        font-size: 18px;
        line-height: 22px;
    }
    .aws_link_section {
        padding-block: 60px;
    }
}
@media (max-width:575px){
    .blog_card_thumbnail {
        min-height: unset !important;
    }
}