@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--inter-font);
}

:root {
    --inter-font: "Inter", sans-serif;
}

body {
    background-color: #fbfbfb !important;
    margin: 0px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    position: relative;
}

/* global style */
#loader {
    transform: rotateX(45deg) rotateZ(45deg);
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateZ(45deg);
    animation: rotation 2s infinite;
}
.loader {
    transform: translate(-180deg, -80px, 0);
    animation: bouncing-shadow 2s infinite;
    max-width: 100%;
    transform-style: preserve-3d;
    height: 80px;
    width: 80px;
    position: relative;
    transform-origin: 0 0;
    transform: translateX(0) translateY(0) translateZ(-40px);
}
@keyframes rotation {
    0% {
        transform: rotateX(45deg) rotateY(0) rotateZ(45deg);
        animation-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
    }
    50% {
        transform: rotateX(45deg) rotateY(0) rotateZ(225deg);
        animation-timing-function: cubic-bezier(0.76, 0.05, 0.86, 0.06);
    }
    100% {
        transform: rotateX(45deg) rotateY(0) rotateZ(405deg);
        animation-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
    }
}
@keyframes bouncing-shadow {
    0% {
        transform: translateZ(-80px) scale(1.3);
        animation-timing-function: cubic-bezier(0.76, 0.05, 0.86, 0.06);
        opacity: 0.05;
    }
    45% {
        transform: translateZ(0);
        animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 0.3;
    }
    100% {
        transform: translateZ(-80px) scale(1.3);
        animation-timing-function: cubic-bezier(0.76, 0.05, 0.86, 0.06);
        opacity: 0.05;
    }
}
.web_links {
    position: fixed;
    top: 50%;
    left: -3rem;
    transform: translate(0, -50%);
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: left 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86) 0s;
}
.web_links.active {
    left: 0px;
}
.web_links > a {
    padding: 0.5rem;
    background: #fff;
    display: block;
}
.web_links > a:not(:last-child) {
    border-bottom: 1px solid rgb(74, 85, 104);
}
/* code {
    border-radius: 0.3em;
    color: rgb(74, 85, 104) !important;
    background-color: #edf2f7;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem !important;
    font-weight: normal;
    font-family: var(--inter-font);
} */
mark {
    font-weight: 700;
    background-color: #edf2f7 !important;
}

blockquote {
    font-style: italic;
    border-left-style: solid;
    border-left-color: #a3bffa;
    border-left-width: 3px;
    margin: 0 2rem !important;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: normal;
    color: #718096;
}

table {
    padding: 0px;
    border-collapse: collapse;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #edf2f7;
}

table thead tr th {
    text-align: left;
    border-bottom: 1px solid;
    background-color: #2d3748;
    color: #edf2f7;
    font-weight: normal;
    padding: 1rem;
    font-family: var(--inter-font);
    font-size: 1rem;
    line-height: 1.3;
}

table tfoot tr td {
    text-align: left;
    border-bottom: 1px solid;
    background-color: #2d3748;
    color: #edf2f7;
    font-weight: normal;
    padding: 1rem;
    font-family: var(--inter-font);
    font-size: 1rem;
    line-height: 1.3;
}

table tbody tr td {
    text-align: left;
    border-bottom: 0px solid;
    margin-top: -1px;
    font-weight: normal;
    padding: 1rem;
    font-family: var(--inter-font);
    font-size: 1rem;
    color: #718096;
}
table tbody tr:nth-child(odd) {
    background-color: #e2e8f0 !important;
}
ol,
ul {
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
    list-style-position: outside;
    list-style-image: none;
    margin-left: 1rem;
    margin-bottom: 2rem;
}
.post_card ol li > p {
    margin: 0.5rem;
}
ol li,
ul li {
    margin: 0;
    margin-bottom: 0.5rem;
    padding-left: 0;
    color: #4a5568;
    font-size: 1.25rem;
    margin: 0.5rem;
    font-family: var(--inter-font);
}
ol li::marker {
    margin: 0;
    margin-bottom: 0.5rem;
    padding-left: 0;
    color: #4a5568;
    font-size: 1.25rem;
    margin: 0;
    font-family: var(--inter-font);
}

a {
    color: #667eea;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.25rem;
    font-family: var(--inter-font);
}

label {
    box-sizing: border-box;
    margin: 0px 0px 0.5rem;
    min-width: 0px;
    width: 100%;
    display: flex;
    color: #718096;
    font-family: var(--inter-font);
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
textarea {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: block;
    width: 100%;
    padding: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid;
    border-radius: 4px;
    color: inherit;
    background-color: transparent;
    font-family: var(--inter-font) !important;
    border: none;
    background-color: #e2e8f0;
    color: #718096;
    outline: none;
    margin-bottom: 1rem;
    min-height: 45px;
}
input::placeholder {
    color: #718096;
}
.blu_button {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    text-align: center;
    line-height: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: inherit;
    font-family: var(--inter-font);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #fff;
    background-color: #667eea;
    border: 0;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 10rem;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 9999px;
    cursor: pointer;
    border-width: 3px;
    border-style: solid;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section_left {
    padding: 0 2rem;
}
.margin_line {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    min-width: auto;
    border-top-style: solid;
    border-top-color: transparent;
    border-top-width: 2px;
    height: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.page_light_sm_heading {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: var(--theme-ui-colors-heading, #2d3748);
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 2rem;
    margin-left: 2px;
    margin-right: 0;
    margin-bottom: 0;
}
.page_light_sm_heading::before {
    background-color: #e2e8f0;
    content: "";
    border-radius: 9999px;
    position: absolute;
    height: 100%;
    width: 5px;
    top: 0;
    left: 0;
}
.box_card {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    padding: 2rem;
}
.reveal {
    animation: fadeInUp;
    animation-duration: 750ms;
    animation-delay: 0ms;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 10%, 0);
    }
    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.main_search {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 97;
    background-color: #fbfbfb;
    opacity: 1;
    width: 100%;
    height: 100%;
    display: none;
}
.main_search.active {
    display: initial;
}
.main_search .search {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: #e2e8f0;
    border-radius: 0.5rem;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 99;
    width: 90vw;
    max-width: 40em;
    border-style: solid;
    border-color: #e2e8f0;
    border-width: 3px;
    padding-left: 1rem;
    padding-right: 1rem;
}
.main_search .search svg {
    width: 17px;
    height: 17px;
    fill: #718096;
}
.main_search .search > input {
    margin-bottom: 0;
    font-size: 1.25rem;
}
.main_search .close_search {
    display: inline-block;
    position: fixed;
    right: 2rem;
    top: 2rem;
}
.main_search .search_results {
    box-sizing: border-box;
    margin: -2rem 0px 0px;
    min-width: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 7rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 99;
}
.main_search .search_results .results_text {
    box-sizing: border-box;
    margin: 0px auto;
    min-width: 0px;
    display: block;
    overflow-y: scroll;
    width: 90vw;
    max-width: 40em;
    max-height: 70vh;
    box-shadow: rgba(50, 50, 93, 0.1) 0px 15px 35px 0px,
        rgba(0, 0, 0, 0.07) 0px 5px 15px 0px;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 2rem;
    font-family: var(--inter-font);
    color: #a0aec0;
}
.main_search .search_results .search_by {
    font-size: 1.25rem;
    font-family: var(--inter-font);
    color: #4a5568;
    margin: 0.6rem 0;
    text-align: end;
}
/* font style */
@media only screen and (min-width: 1024px) {
    html {
        font-size: 100%;
    }
}
@media only screen and (min-width: 768px) {
    html {
        font-size: 95%;
    }
}
@media only screen and (min-width: 640px) {
    html {
        font-size: 90%;
    }
    .main_search .search_results .results_text {
        max-height: 50vh;
    }
}
html {
    font-size: 85%;
    scroll-behavior: smooth;
}
/* end global style */

/* header style */
.bg_main_img {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    width: 100%;
    min-height: 100vh;
    position: absolute;
    z-index: -1;
    top: -30px;
    right: 15%;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: top right;
}
#header {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7rem;
    padding: 2rem 0;
}
#header .logo img {
    opacity: 0;
    transform: translateZ(0);
    transition: opacity 0.35s linear;
    will-change: opacity;
    max-width: 100%;
    max-height: 40px;
}
#header > .search_input {
    height: 50px;
    display: flex;
    min-width: 268px;
    align-items: center;
    background: #e2e8f0;
    padding: 0 1rem;
    border-radius: 8px;
}
#header > .search_input svg {
    fill: #718096;
    height: 15px;
    width: 15px;
}
#header > .search_input > input {
    border: none;
    outline: none;
    height: 100%;
    background: #e2e8f0;
    padding: 0.5rem;
    width: 100%;
    color: #718096;
    font-size: 1rem;
    font-weight: normal;
    min-height: 100%;
    margin-bottom: 0;
    font-family: var(--inter-font);
}
#header > .search_input > input::placeholder {
    color: #718096;
}
#header > .menu a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    color: #718096;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0.25rem;
    margin: 0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mobile_menu {
    gap: 0.8rem;
    display: none;
}
.mobile_menu > span,
.close_search span {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #a0aec0;
    background-color: #edf2f7;
}
.mobile_menu > span svg,
.close_search span svg {
    width: 24px;
    height: 24px;
}
.toggle_menu {
    position: relative;
    display: none;
}
.toggle_menu.active {
    display: initial;
}
.toggle_menu .close_toggle_menu {
    margin: 0px;
    appearance: none;
    -webkit-box-pack: center;
    border: 3px solid transparent;
    display: inline-block;
    min-width: auto;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-evenly;
    outline: 0px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    border-radius: 9999px;
    cursor: pointer;
    box-sizing: initial;
    color: #a0aec0;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    padding: 0.5rem;
    background-color: #edf2f7;
    transition: left 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86) 0s;
    left: -2rem;
    position: fixed;
    z-index: 99999;
    top: 2rem;
}
.toggle_menu .close_toggle_menu.active {
    left: 2rem;
}
.toggle_menu .close_toggle_menu svg {
    width: 24px;
    height: 24px;
}
.toggle_transition {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    position: fixed;
    top: 0px;
    right: 0px;
    transform: translate(100%, 0px);
    width: 75%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 45px 0px;
}
.toggle_transition.active {
    transform: translate(0px, 0px);
}
.toggle_content {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    position: relative;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    overflow-y: scroll;
    font-size: 1.25rem;
    padding: 4rem;
}
.toggle_content .toggle_heading {
    box-sizing: border-box;
    margin: 0px 0px 1rem;
    min-width: 0px;
    font-family: var(--inter-font);
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.25rem;
}
.toggle_content .toggle_links {
    display: flex;
    flex-direction: column;
}
.toggle_content .toggle_links a {
    box-sizing: border-box;
    margin: 0px 0px 0.5rem;
    min-width: 0px;
    display: inline-block;
    color: #718096;
    text-decoration: none;
    user-select: none;
    font-weight: normal;
    padding: 0px;
    font-size: 1.25rem;
    font-family: var(--inter-font);
}
.toggle_content .toggle_links .link_divider {
    box-sizing: border-box;
    min-width: 0px;
    padding: 0px;
    margin: 1rem 0px 2rem;
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-color: initial;
    border-image: initial;
    border-bottom-style: solid;
    color: #e2e8f0;
}
.toggle_menu .toggle_overlay {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(34, 34, 34);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    z-index: 90;
}
.toggle_menu .toggle_overlay.active {
    opacity: 0.9;
}
/* end header style */

/* banner section style */
.banner_heading {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: 900;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 3rem;
    background: linear-gradient(45deg, #667eea 32.5%, #805ad5 50.5%);
    color: #9f7aea;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.banner_text {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: var(--theme-ui-colors-heading, #2d3748);
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--theme-ui-colors-omegaDark, #718096);
    font-weight: normal;
    width: 66.6%;
}
/* end banner section style */

/* blog section style */
.blogs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.blogs .blog_item {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    display: flex;
    flex-direction: column;
}
.blogs .blog_item:hover {
    -webkit-transform: translateY(-0.25rem);
    -ms-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    box-shadow: 0px 2px 4px rgba(46, 41, 51, 0.08),
        0px 5px 10px rgba(71, 63, 79, 0.16);
}
.blog_item_type {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 0.5rem;
    vertical-align: middle;
    padding: 0.35rem 1rem 0.25rem 1rem;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    color: #2d3748;
    font-family: var(--inter-font);
    margin-bottom: 1rem;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advertising {
    background-color: #e9d8fd;
}
.case_study {
    background-color: #c6f6d5;
}
.blog_item .blog_item_heading {
    text-decoration: none;
    display: block;
    color: #2d3748;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.33;
    font-family: var(--inter-font);
    flex: auto;
}
.blog_item > p {
    font-size: 15px;
    margin: 0;
    margin-bottom: 1rem;
    display: block;
    color: #a3a6b4;
}
.blog_item .blog_auther {
    display: flex;
}
.blog_item .blog_auther .img_circle {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #e2e8f0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 9999px;
    border-style: solid;
    border-width: 3px;
    border-color: #e2e8f0;
    overflow: hidden;
    opacity: 0.9;
    margin-right: 1rem;
}
.blog_auther .auther_name {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    color: #718096;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--inter-font);
    font-size: 14px;
    flex-basis: 100%;
}
.blog_auther .post_details {
    color: #a0aec4;
    font-size: 14px;
    font-family: var(--inter-font);
    flex-basis: 100%;
}
.blog_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 40px;
    min-height: 55px;
    padding: 0.25rem;
    max-width: 500px;
    margin: 0 auto;
}
.blog_pagination a {
    flex: 1;
    background-color: #718096;
    border: none;
    outline: none;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 50px;
    border-radius: 30px;
    visibility: visible;
}
.blog_pagination a:hover {
    color: white;
}
.blog_pagination .page_numbering {
    color: #718096;
    font-family: var(--inter-font);
    flex: 1;
    text-align: center;
}
/* end blog section style */

/* newletter section style */
.newsletter_card {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    padding: 2rem;
}
.newsletter_card .newsletter_content {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.newsletter_content > h2,
.box_card > h2 {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.newsletter_content .content_text,
.box_card > .content_text {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: "Inter", sans-serif;
    margin-bottom: 1rem;
    color: #7e8a9d;
}
.newsletter_content .newsletter_form {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}
#tutorials .box_card,
#category .box_card {
    text-align: center;
}
/* end newletter section style */

/* detail page style */
.detail_heading {
    box-sizing: border-box;
    min-width: 0px;
    font-family: var(--inter-font);
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: 900;
    text-decoration: none;
    font-size: 3rem;
    margin: 0px;
}
.person_detail {
    box-sizing: border-box;
    min-width: 0px;
    color: #2d3748;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    align-self: flex-start;
    border-left-style: solid;
    border-left-width: 5px;
    border-left-color: #718096;
    margin: 2rem 0px 0px;
    padding: 0.5rem 1rem;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.person_detail .person_info {
    display: flex;
    flex-direction: column;
}
.person_detail .img_circle {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #e2e8f0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 9999px;
    border-style: solid;
    border-width: 3px;
    border-color: #e2e8f0;
    overflow: hidden;
    opacity: 0.9;
    margin-right: 1rem;
}
.name_link {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    padding-right: 0.5rem;
    display: inline-block;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    color: #718096;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--inter-font);
    flex: auto;
}
.details {
    color: #a0aec0;
    text-decoration: none;
    font-family: var(--inter-font);
}

.table_content {
    display: flex;
    column-gap: 1rem;
    flex-wrap: wrap;
}
.table_content .table_link {
    flex: 1 1 28rem;
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    color: #718096;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0.5rem;
    padding: 0;
    font-family: var(--inter-font);
    display: flex;
    align-items: center;
}
.table_content .table_link span:nth-child(2) {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: 600;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0;
}
.table_content .table_link span:nth-child(2):hover {
    color: #5a67d8;
}
.table_content .table_link span:first-child {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.45rem;
    color: #a0aec0;
    width: 2rem;
    margin-right: 1rem;
    margin-bottom: 0;
}
.post_card {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    padding: 2rem;
}
.post_card p {
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: #4a5568;
    font-family: var(--inter-font);
    line-height: 30px;
}

.post_card .post_card_heaing {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
}
.post_card .post_card_heaing a {
    color: #2d3748;
    -webkit-text-decoration: none;
    text-decoration: none;
}
.post_card .post_card_heaing a svg {
    display: none;
}
.post_card .post_card_heaing:hover .post_card .post_card_heaing a svg {
    display: initial;
}
.post_card .post_card_hr {
    padding: 0px;
    margin: 2rem 0px;
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-color: initial;
    border-image: initial;
    border-bottom-style: solid;
    color: #e2e8f0;
}
.post_card .post_card_img {
    padding: 0;
    margin: 0.5rem;
    margin-bottom: 2rem;
    color: var(--theme-ui-colors-article, #4a5568);
    font-size: 1.25rem;
    font-family: var(--inter-font);
}

.post_card figcaption {
    text-align: center;
    font-style: italic;
    font-size: 0.875rem;
    margin: 1rem;
}
.post_card .post_card_video {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post_card h1 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    font-weight: 900;
    display: block;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 3rem;
    font-family: var(--inter-font);
    line-height: 1.33;
}
.post_card h2 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
    border-left: 14px solid rgb(1, 22, 39) !important;
    border-radius: 6px;
    border-color: #ececec;
    border-right: 1px solid #ececec;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.post_card .note {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
    border-left: 14px solid red !important;
    border-radius: 6px;
    border-color: #ececec;
    border-right: 1px solid #ececec;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.post_card h3 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
}
.post_card h4 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
}
.post_card h5 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
}
.post_card h6 {
    pointer-events: painted;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-family: var(--inter-font);
    line-height: 1.33;
    font-weight: bold;
    display: block;
}
.post_card a {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    color: #2d3748;
}
.post_card a:hover {
    color: #2d3748;
}
.post_card a svg {
    visibility: hidden;
    width: 24px;
    height: 24px;
}
.post_card p a {
    color: #667eea;
}
.post_card p a:hover {
    color: #667eea;
}
.post_tags_and_shares {
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.post_tags_and_shares h2 {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    line-height: 1.33;
    display: block;
    font-weight: 600;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #718096;
    margin-right: 1rem;
    margin-bottom: 0;
}
.post_tags_and_shares .post_tags,
.post_tags_and_shares .post_shares {
    display: flex;
    align-items: center;
}
.post_tags_and_shares .tags span {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: inline-block;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 2px;
    border-radius: 0.5rem;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-weight: 600;
    vertical-align: middle;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    background-color: #e2e8f0;
    color: var(--theme-ui-colors-omegaDark, #718096);
}

.post_tags_and_shares .post_shares .shares > span {
    cursor: pointer;
    border-width: 3px;
    border-style: solid;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    box-sizing: initial;
    color: var(--theme-ui-colors-omega, #a0aec0);
    border-color: transparent;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    padding: 0.5rem;
    color: #4267b2;
}
.post_tags_and_shares .post_shares .shares button {
    background-color: transparent;
    border: none;
    padding: 0px;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

/* end detail page style */

/* tags section style */
.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.tags a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: inline-block;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 2px;
    border-radius: 0.5rem;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-weight: 600;
    vertical-align: middle;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    background-color: #e2e8f0;
    color: var(--theme-ui-colors-omegaDark, #718096);
    text-decoration: none;
}
/* end tutorial section style */

/* related posts style */
.related_posts {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.related_posts .related_card {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    overflow: hidden;
    height: 100%;
    flex: 1 1 440px;
}
.related_posts .related_card:hover {
    -webkit-transform: translateY(-0.25rem);
    -ms-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    box-shadow: 0px 2px 4px rgba(46, 41, 51, 0.08),
        0px 5px 10px rgba(71, 63, 79, 0.16);
}
.related_posts .related_card article {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-left-style: solid;
    border-left-width: 5px;
    border-left-color: var(--theme-ui-colors-alphaLight, #a3bffa);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.related_posts .related_card .related_post_content {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 100px;
    padding: 1rem;
}
.related_post_content a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: var(--theme-ui-colors-heading, #2d3748);
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.related_post_content a:hover {
    color: #2d3748;
}
.related_post_content .content_detail {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-size: 0.75rem;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.related_post_content .content_detail .detail_box {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--theme-ui-colors-omega, #a0aec0);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.detail_box .detail_name {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    padding-right: 0.5rem;
    display: inline-block;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
.detail_box .detail_name a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    color: var(--theme-ui-colors-omegaDark, #718096);
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    font-weight: normal;
}
.detail_box .time_detail {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
/* end related posts style */

/* contact page style */
.contact > h1,
.our_team > h1 {
    box-sizing: border-box;
    margin: 0px 0px 1rem;
    min-width: 0px;
    font-family: var(--inter-font);
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: 900;
    text-decoration: none;
    font-size: 3rem;
}
.contact > h2 {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.contact .para {
    box-sizing: border-box;
    margin: 0px 0px 1rem;
    min-width: 0px;
    display: block;
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: normal;
    color: #718096;
    font-family: var(--inter-font);
}
.contact_form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.contact_form .contact_form_group {
    flex: 1 1 300px;
}
/* end contact page style */

/* tutorial page style */

/* tutorial globals */
.tutorial_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.tutorial_header {
    background-color: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 95;
}
.tutorial_header #header {
    height: 6rem;
}
.circle_btn {
    height: 40px;
    width: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: #a0aec0;
    border: none;
    outline: none;
}
.circle_btn:hover {
    background-color: #edf2f7;
}
/* tutorial globals */

#tutorial_page {
    display: flex;
    position: relative;
}
#tutorial_page .sidebar {
    width: 260px;
    padding: 2rem;
    background-color: #fff;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 80px;
}
.sidebar .group {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}
.sidebar .group .group_heading {
    font-size: 1rem;
    font-family: var(--inter-font);
    font-weight: 600;
    color: #2d3748;
    text-transform: capitalize;
    overflow-wrap: break-word;
}
.sidebar .group .group_heading:hover .anchor {
    opacity: 1;
}
.sidebar .group .link {
    font-size: 1rem;
    font-family: var(--inter-font);
    color: #a0aec0;
    padding: 0.25rem 0;
    transition: color 250ms ease-in-out;
    overflow-wrap: break-word;
}
.sidebar .group .link.active {
    color: #0089ff;
}
.sidebar .group .link.active:hover {
    color: #0089ff;
}
.sidebar .group .link:hover {
    color: #4a5568;
}
.sidebar > .circle_btn {
    opacity: 0;
}
#tutorial_page .tutorial_content {
    margin-left: auto;
    width: calc(100% - 260px);
    /* display: flex; */
    padding: 0rem 3rem 0 3rem;
}
.tutorial_content main {
    flex: 1;
}
.tutorial_content main::-webkit-scrollbar {
    width: 0;
}
.tutorial_content .page_nav_and_sponser {
    flex: 1;
}

.dot_before {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    display: inline-block;
    background: #3858f6;
    line-height: 6px;
}

/* end tutorial page style */

/* memeber section style */
.member_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.member_list > .box_card {
    flex: 1 1 250px;
    max-width: 294px;
}
.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.member_circle {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #e2e8f0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 9999px;
    border-style: solid;
    border-width: 3px;
    border-color: #e2e8f0;
    overflow: hidden;
    opacity: 0.9;
    margin-right: 1rem;
}
.member_heading {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 1.25rem;
}
.member_designation {
    color: #718096;
    line-height: 0px;
    font-family: var(--inter-font);
    font-size: 12px;
}
.member_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
/* end memeber section style */

/* services section style */

.services_card {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
        color 250ms ease;
    transition: transform 250ms ease, box-shadow 250ms ease, color 250ms ease;
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    padding: 2rem;
}
.services_card .services_content {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.services_content > h2,
.services_content .box_card > h2 {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.services_content .content_text {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    margin-bottom: 1rem;
    color: #7e8a9d;
}

.services_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.service {
    box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
    flex: 1 1 250px;
    max-width: 275px;
    border-radius: 10px;
    padding: 1rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 250ms ease;
    cursor: pointer;
}
.service:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.service:hover > span {
    background-color: #2d3748;
}
.service:hover > span > svg {
    fill: #fff;
}
.service > span {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service > h4 {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 1rem;
    text-transform: capitalize;
}
.service > p {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: normal;
    line-height: 1.33;
    display: block;
    color: #7e8a9d;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 12px;
}
/* end services section style */

/* footer section style */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap-reverse;
    padding: 4rem 0;
}
.powered_box img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.7;
    vertical-align: middle;
    max-width: 150px;
    display: block;
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: -1;
}
.powered_box .reserved_text {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    padding-top: 0.5rem;
    margin-bottom: 2rem;
    color: #718096;
    font-family: var(--inter-font);
    font-size: 1rem;
    display: block;
}
.powered_box .powered_by a {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--inter-font);
    color: #2d3748;
    text-decoration: none;
    display: flex;
}
.powered_box .powered_by svg {
    fill: #2d3748;
    height: 24px;
    margin-left: 0.5rem;
}

.footer_link_heading {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-family: var(--inter-font);
    font-weight: bold;
    line-height: 1.33;
    display: block;
    color: #2d3748;
    font-weight: 600;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: block;
}
.footer_links {
    display: flex;
    flex-direction: column;
}
.footer_links a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: #718096;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0.25rem;
    margin: 0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-family: var(--inter-font);
    font-size: 1rem;
}
/* end footer section style */

@media only screen and (max-width: 1200px) {
    .circle_btn {
        display: flex;
    }
    .circle_btn svg {
        width: 20px;
        height: 20px;
    }
    .tutorial_lists {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 94;
    }
    .tutorial_lists > .box_card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        border-radius: 0;
    }
    .mobile_mt {
        margin-top: 80px;
    }
    #tutorial_page .sidebar {
        left: -270px;
        position: absolute;
        z-index: 99;
        top: 0;
        transition: left 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86) 0s;
    }
    #tutorial_page .sidebar.active {
        left: 0;
    }
    .sidebar > .circle_btn {
        opacity: 1;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    #tutorial_page .tutorial_content {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .mobile_menu {
        display: flex;
    }
    #header > .search_input,
    #header .menu {
        display: none;
    }
    .banner_heading {
        text-align: center;
        font-size: 1.875rem;
    }
    .banner_text {
        text-align: center;
        width: 100%;
    }

    .main_search .close_search {
        top: 90%;
        left: 50%;
        transform: translate(-13%, 0);
    }
}
@media only screen and (max-width: 640px) {
    .box_card {
        padding: 1rem;
    }
    .blogs .blog_item {
        padding: 1rem;
    }
    .service {
        max-width: 100%;
    }
    .member_list > .box_card {
        max-width: 100%;
    }
    .section {
        padding: 0 1rem;
    }
    .section_left {
        padding: 0 1rem;
    }
    .margin_line {
        margin: 1rem 0;
    }
    .page_light_sm_heading {
        text-align: center;
    }
    .page_light_sm_heading::before {
        display: none;
    }
    .footer_link_heading {
        display: none;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
    }

    .powered_box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer .footer_box{
        width: 100%;
    }
    .footer .footer_box .footer_links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .footer_box:nth-child(1) {
        order: 4;
    }
    .footer .footer_box:nth-child(2) {
        order: 3;
    }
    .footer .footer_box:nth-child(3) {
        order: 2;
    }
    .footer .footer_box:nth-child(4) {
        order: 1;
    }

    .footer_links a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        font-size: 0.8rem;
    }

    .mobile_box_show {
        box-sizing: border-box;
        margin: 0;
        min-width: 0;
        background-color: #fff;
        border-radius: 1rem;
        -webkit-transition: -webkit-transform 250ms ease, box-shadow 250ms ease,
            color 250ms ease;
        -webkit-transition: transform 250ms ease, box-shadow 250ms ease,
            color 250ms ease;
        transition: transform 250ms ease, box-shadow 250ms ease,
            color 250ms ease;
        box-shadow: 1px 1px 5px 0 rgba(1, 1, 1, 0.05);
        padding: 2rem;
    }
    .detail_heading {
        font-size: 1.875rem;
    }
    .person_detail .img_circle {
        display: none;
    }
    .person_detail {
        display: flex;
    }
    .person_detail .person_info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .contact h1 {
        font-size: 2.25rem;
    }
    #tutorial_page .tutorial_content {
        padding: 0 1rem;
    }
}
.category_title_style {
    margin-top: 15px;
    font-weight: 700;
    font-style: italic;
    font-size: 17px;
    text-decoration: underline;
    color: #2d3748;
}
