@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

body {
    overflow-x: hidden;
}

a.icon-wrap {
    text-decoration: none;
}

.main-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    overflow: hidden;
}

.main {
    min-height: 100%;
}

.heading {
    max-width: 600px;
    margin: 0 auto;
}

.heading .title {
    font-weight: 600;
    font-size: 42px;
    color: #000;
}

.heading .desc {
    font-size: 18px;
    color: #000;
}

.header {
    box-shadow: 0 0 30px rgba(127, 137, 161, .3);
    min-height: 74px;
}

.header .navbar {
    min-height: 74px;
}

.header .logo {
    width: 100%;
    max-width: 160px;
}

.hero {
    color: #fff;
    background-color: #212832;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 75px);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
}

.hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 724px;
    padding: 0 12px;
}

.hero .content .title {
    font-weight: 600;
    color: #fff;
    font-size: 36px;
}

.hero .content .desc {
    color: #fff;
    font-size: 18px;
}

.about {
    background: #ecf5ff;
}

.about .list-group-item svg {
    max-width: 30px;
    margin-right: 10px;
}

.blog .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
}

.blog .card-img-top {
    height: 236px;
    width: auto;
    object-fit: cover;
}

.email-content {
    background: #ecf5ff;
}

.email-content .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
}

.email-content .card-img-top {
    height: 100%;
    height: 160px;
    width: auto;
    object-fit: contain;
    padding: 8px;
}

.email-content .email-container {
    white-space: pre-wrap;
}

.footer {
    overflow: hidden;
    background: #127bcb;
}

.footer .copyright {
    background: #042d62
}

@media only screen and (max-width: 600px) {
    .hero .content .title {
        font-size: 36px;
    }

    .heading .title {
        font-size: 34px;
    }
}