@import "https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&family=Heebo:wght@300;400;500;600;700;800;900&display=swap";

html {
    scroll-behavior: smooth;
}

body {
    font-family: heebo, sans-serif;
    color: #585978;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input,
textarea,
button {
    transition: all .3s ease-out 0s;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

a {
    text-decoration: none;
    transition: all .3s ease-out 0s;
}

a:hover {
    text-decoration: none;
}

button {
    transition: all .3s ease-out 0s;
}

@media(max-width:767px) {
    .container {
        padding: 0 30px;
    }
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #00a78e;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all .3s ease-out 0s;
}

.scroll-top:hover {
    color: #fff;
    background: rgba(0, 167, 142, .8);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #323450;
    margin-bottom: 0;
    font-family: fira sans, sans-serif;
}

h1 {
    font-size: 80px;
    letter-spacing: .7px;
}

h2 {
    font-size: 60px;
    letter-spacing: .7px;
}

h3 {
    font-size: 40px;
    letter-spacing: .4px;
}

h4 {
    font-size: 30px;
    letter-spacing: .35px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.button {
    height: 44px;
    font-size: 18px;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #00a78e;
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    padding: 0 25px;
    overflow: hidden;
}

.button i {
    padding-left: 20px;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    margin: auto;
    background: rgba(0, 0, 0, .1);
    z-index: -1;
    transition: all .4s linear;
    transform: translate3d(-50%, -50%, 0) scale(0);
}

.button:hover {
    color: #fff;
}

.button:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}



.button-lg {
    height: 64px;
}

.button-sm {
    height: 34px;
    font-size: 16px;
    font-weight: 400;
}

.header {
    background: #fff;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .header.header-navbar .header-action {
        position: absolute;
        right: 60px;
    }
}

@media(max-width:767px) {
    .header.header-navbar .header-action {
        position: absolute;
        right: 60px;
    }
}

.header.header-navbar .header-action a {
    font-size: 16px;
    color: #fff;
    padding: 12px;
}

.header.header-navbar .navbar {
    padding: 20px 0;
    border-radius: 0;
    position: relative;
    transition: all .3s ease-out 0s;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .header.header-navbar .navbar {
        padding: 17px 0;
    }
}

@media(max-width:767px) {
    .header.header-navbar .navbar {
        padding: 17px 0;
    }
}

.header.header-navbar .navbar-brand {
    padding: 0;
}

.header.header-navbar .navbar-brand img {
    max-width: 180px;
}

.header.header-navbar .navbar-toggler {
    padding: 0;
}

.header.header-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.header.header-navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all .3s ease-out 0s;
}

.header.header-navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}

.header.header-navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.header.header-navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .header.header-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .1);
        padding: 5px 12px;
    }
}

@media(max-width:767px) {
    .header.header-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(50, 52, 80, .1);
        padding: 5px 12px;
    }
}

.header.header-navbar .navbar-nav .nav-item {
    position: relative;
}

.header.header-navbar .navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all .3s ease-out 0s;
    padding: 7px 15px;
    margin: 0 3px;
    position: relative;
    display: inline-block;
    z-index: 1;
    border: 1px solid transparent;
    border-radius: 30px;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .header.header-navbar .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 20px;
        color: #323450;
    }
}

@media(max-width:767px) {
    .header.header-navbar .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 20px;
        color: #323450;
    }
}

.header.header-navbar .navbar-nav .nav-item a:hover,
.header.header-navbar .navbar-nav .nav-item a.active {
    color: #fff;
    border-color: #fff;
}

@media only screen and (min-width:768px) and (max-width:991px) {

    .header.header-navbar .navbar-nav .nav-item a:hover,
    .header.header-navbar .navbar-nav .nav-item a.active {
        color: #00a78e;
        border-color: none;
    }
}

@media(max-width:767px) {

    .header.header-navbar .navbar-nav .nav-item a:hover,
    .header.header-navbar .navbar-nav .nav-item a.active {
        color: #00a78e;
        border-color: none;
    }
}

.hero-section-wrapper {
    background: #fff;
    position: relative;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00a78e;
    clip-path: circle(80% at right -20%);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .circle {
        clip-path: circle(90% at right -20%);
    }
}

.hero-section-wrapper .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: 0 0;
}

.hero-section-wrapper .header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #41464b;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.hero-section-wrapper .hero-section {
    position: relative;
    z-index: 1;
    padding: 270px 0 140px;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero-section-wrapper .hero-section {
        padding: 120px 0 50px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero-section-wrapper .hero-section {
        padding: 120px 0 50px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-section-wrapper .hero-section {
        padding: 70px 0 30px;
    }
}

@media(max-width:767px) {
    .hero-section-wrapper .hero-section {
        padding: 50px 0 0;
    }
}

.hero-section-wrapper .hero-section .hero-content-wrapper {
    padding: 100px 0;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper {
        padding-bottom: 50px;
    }
}

@media(max-width:767px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper {
        padding-bottom: 50px;
    }
}

.hero-section-wrapper .hero-section .hero-content-wrapper h2 {
    margin-bottom: 30px;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper h2 {
        font-size: 55px;
        line-height: 65px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper h2 {
        font-size: 47px;
        line-height: 58px;
    }
}

@media(max-width:767px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (min-width:575px) and (max-width:767px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper h2 {
        font-size: 47px;
        line-height: 58px;
    }
}

@media only screen and (min-width:1400px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper p {
        padding-right: 100px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper p {
        padding-right: 100px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper p {
        padding-right: 30px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-section-wrapper .hero-section .hero-content-wrapper p {
        padding-right: 100px;
    }
}

.hero-section-wrapper .hero-section .hero-image {
    margin-bottom: 100px;
    position: relative;
}

.hero-section-wrapper .hero-section .hero-image img {
    width: 100%;
}

.feature-section {
    background: #f8f8f8;
    padding: 100px 0 50px;
}

.feature_shape {
    position: absolute;
    top: 105%;
    left: -15%;
}

@media(max-width:767px) {
    .feature_shape {
        top: 132%;
        left: -40%;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .feature_shape {
        top: 170%;
        left: -30%;
    }
}

.container-shape {
    position: relative;
}

.feature-section .single-feature {
    padding: 60px 35px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
    text-align: center;
    border: 1px solid #585978;
    transition: all .3s ease-out 0s;
}

.feature-section .single-feature:hover {
    border-color: #00a78e;
    box-shadow: 0 8px 25px rgba(0, 167, 142, .35);
}

.feature-section .single-feature .icon {
    color: #00a78e;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    width: 110px;
    height: 100px;
    z-index: 1;
}

.feature-section .single-feature .content h5 {
    font-weight: 600;
    margin-bottom: 25px;
}

.about-section {
    background: #f3f3f3;
    padding: 100px 0 50px;
    position: relative;
    z-index: 1;
}

.about-section .about-content-wrapper ul {
    padding-bottom: 25px;
}

.about-section .about-content-wrapper ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.about-section .about-content-wrapper ul li i {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    margin-top: 4px;
    font-weight: 700;
}

.about-section .about-image {
    margin-top: 30px;
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:767px) {
    .about-section .about-image img {
        width: 100%;
    }
}

.gallery-section {
    padding: 100px 0 70px;
    background: #f3f3f3;
}

.gallery-section .single-gallery {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
}

.gallery-section .single-gallery:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-section .single-gallery:hover .overlay .action {
    transform: translateY(0px)
}

.gallery-section .single-gallery .image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-section .single-gallery .image img {
    width: 100%;
}

.gallery-section .single-gallery .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out 0s;
    background: rgba(0, 167, 142, .3);
}

.gallery-section .single-gallery .overlay .action {
    transform: translateY(20px);
    transition: all .3s ease-out 0s;
}

.gallery-section .single-gallery .overlay .action a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #323450;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-section .single-gallery .info {
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-left: 30px;
    margin-bottom: 15px;
    padding: 30px 20px;
    border-radius: 5px 0 5px 5px;
    margin-top: -70px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.gallery-section .single-gallery .info h5 {
    margin-bottom: 15px;
}

.pricing-section {
    padding: 100px 0;
    background: #f3f3f3;
}

.pricing_shape-1 {
    position: absolute;
    left: 70%;
}

.pricing-section .pricing-active-wrapper {
    position: relative;
}

.pricing-section .pricing-active-wrapper .tns-controls {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    bottom: 40px;
    left: -250px;
}

.pricing-section .pricing-active-wrapper .tns-controls:focus {
    outline: none;
}

@media only screen and (min-width:768px) and (max-width:991px),
(max-width:767px) {
    .pricing-section .pricing-active-wrapper .tns-controls {
        left: 0;
        width: 100%;
        justify-content: center;
        bottom: 0;
    }
}

.pricing-section .pricing-active-wrapper .tns-controls button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #323450;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border: none;
}

.pricing-section .pricing-active-wrapper .tns-controls button:hover {
    background: #00a78e;
    color: #fff;
}

.pricing-section .pricing-active .single-pricing {
    background: #fff;
    border-radius: 5px;
    margin: 30px 15px;
    padding: 45px 40px;
    border: 1px solid transparent;
    transition: all .3s ease-out 0s;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(218, 211, 211, .42);
}

.pricing-section .pricing-active .single-pricing.active {
    transform: scale(1.15);
    z-index: 9;
}

@media only screen and (min-width:768px) and (max-width:991px),
(max-width:767px) {
    .pricing-section .pricing-active .single-pricing {
        padding: 40px 25px;
        margin-bottom: 100px;
    }
}

.pricing-section .pricing-active .single-pricing h6 {
    color: #585978;
    margin-bottom: 15px;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .pricing-section .pricing-active .single-pricing h6 {
        font-size: 16px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .pricing-section .pricing-active .single-pricing h6 {
        font-size: 16px;
    }
}

.pricing-section .pricing-active .single-pricing h4 {
    margin-bottom: 20px;
    font-weight: 500;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .pricing-section .pricing-active .single-pricing h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .pricing-section .pricing-active .single-pricing h4 {
        font-size: 24px;
    }
}

.pricing-section .pricing-active .single-pricing h3 {
    margin-bottom: 18px;
    color: #00a78e;
}

.pricing-section .pricing-active .single-pricing ul {
    margin-bottom: 30px
}

.pricing-section .pricing-active .single-pricing ul li {
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 12px;
}

.team-section {
    padding: 100px 0 70px;
    background: #e5e5e5;
}

.team-section .single-team {
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all .3s ease-out 0s;
}

.team-section .single-team:hover .image .overlay {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.team-section .single-team .image {
    margin: auto;
    margin-bottom: 25px;
    position: relative;
}

.team-section .single-team .image img {
    width: 100%
}

.team-section .single-team .image .overlay {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(218, 218, 218, 0) 0%, #00a78e 100%);
    transition: all .3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.team-section .single-team .image .overlay .socials li a {
    background: #fff;
    color: #00a78e;
}

.team-section .single-team .info h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.team-section .single-team .info p {
    margin-bottom: 20px;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-section .single-testimonial:hover .content-wrapper {
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
}

.testimonial-section .single-testimonial .content-wrapper {
    background: #fff;
    border: 1px solid #f5f4f4;
    border-radius: 10px;
    padding: 35px 24px;
    transition: all .3s ease-out 0s;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-section .single-testimonial .content-wrapper .content {
    position: relative;
    z-index: 1;
}

.testimonial-section .single-testimonial .content-wrapper .content p {
    font-size: 20px;
    line-height: 30px;
}

.testimonial-section .single-testimonial .content-wrapper .content .quote {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -35px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 120px;
    line-height: 1;
    color: rgba(88, 89, 120, .05);
    z-index: -1;
}

.testimonial-section .single-testimonial .content-wrapper .info {
    margin-bottom: 25px;
}

.testimonial-section .single-testimonial .content-wrapper .info .image {
    max-width: 48px;
    width: 100%;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
    overflow: hidden;
}

.testimonial-section .single-testimonial .content-wrapper .info .image img {
    width: 100%;
}

.testimonial-section .single-testimonial .content-wrapper .info .text p {
    font-size: 14px;
}

.contact-section {
    background: #f3f3f3;
    padding: 100px 0 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-section .contact-form-wrapper form .single-input {
    position: relative;
    margin-bottom: 20px;
}

.contact-section .contact-form-wrapper form .single-input label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.contact-section .contact-form-wrapper form .single-input textarea,
.contact-section .contact-form-wrapper form .single-input input {
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding-right: 20px;
    padding-left: 50px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
    transition: all .3s ease-out 0s;
}

.contact-section .contact-form-wrapper form .single-input textarea::placeholder,
.contact-section .contact-form-wrapper form .single-input input::placeholder {
    font-weight: 300;
    opacity: 1;
    color: 585978;
}

.contact-section .contact-form-wrapper form .single-input textarea:focus,
.contact-section .contact-form-wrapper form .single-input input:focus {
    border-color: #00a78e;
}

.contact-section .contact-form-wrapper form .single-input input {
    height: 56px;
}

.contact-section .contact-form-wrapper form .single-input textarea {
    padding: 15px 20px;
    padding-left: 50px;
    resize: none;
}

.contact-section .contact-form-wrapper form .single-input i {
    position: absolute;
    left: 21px;
    top: 20px;
}

.contact-section .contact-form-wrapper form .form-button {
    padding-top: 10px;
}

.contact-section .contact-form-wrapper form .form-button button {
    height: 56px;
    border-radius: 5px;
}

.contact-section .contact-form-wrapper form .form-button button i {
    padding-left: 0;
    padding-right: 20px;
}

@media only screen and (min-width:1400px) {
    .contact-section .left-wrapper {
        margin-left: 60px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .contact-section .left-wrapper {
        margin-left: 40px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
(max-width:767px) {
    .contact-section .left-wrapper {
        margin-top: 50px;
    }
}

.contact-section .left-wrapper .single-item {
    padding: 25px 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    transition: all .3s ease-out 0s;
}

.contact-section .left-wrapper .single-item:hover {
    box-shadow: 0 5px 25px rgba(47, 128, 237, .3);
}

.contact-section .left-wrapper .single-item .icon {
    max-width: 54px;
    width: 100%;
    height: 54px;
    border-radius: 50%;
    background: #00a78e;
    color: #fff;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.contact-section .left-wrapper .single-item .text p a {
    color: #585978;
}

.footer-section {
    background: #f3f3f3;
    padding-top: 80px;
}

.footer-section .widget-wrapper .footer-widget {
    margin-bottom: 50px;
}

.footer-section .widget-wrapper .footer-widget .logo {
    margin-bottom: 30px;
}

.footer-section .widget-wrapper .footer-widget p.desc {
    margin-bottom: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2f80ed;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px 8px;
}

.footer-section .widget-wrapper .footer-widget .socials {
    justify-content: flex-start;
}

.footer-section .widget-wrapper .footer-widget .socials li a {
    background: rgba(0, 167, 142, .4);
    margin: 0;
    margin-right: 10px;
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.footer-section .widget-wrapper .footer-widget .socials li a:hover {
    background: #00a78e;
}

.footer-section .widget-wrapper .footer-widget h6 {
    font-weight: 600;
    color: #585978;
    margin-bottom: 35px;
    margin-top: 10px;
}

.footer-section .widget-wrapper .footer-widget .links li a {
    font-size: 16px;
    line-height: 32px;
    color: #585978;
}

.footer-section .widget-wrapper .footer-widget .links li a:hover {
    color: #00a78e;
}

.footer-section .widget-wrapper .footer-widget .download-app li a {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 5px;
    background: #fff;
    max-width: 200px;
    width: 100%;
    margin-bottom: 12px;
}

.footer-section .widget-wrapper .footer-widget .download-app li a .icon {
    font-size: 35px;
    color: #323450;
    margin-right: 12px;
}

.footer-section .widget-wrapper .footer-widget .download-app li a .text {
    font-size: 14px;
    font-weight: 500;
    color: #585978;
}

.footer-section .widget-wrapper .footer-widget .download-app li a .text b {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: fira sans, sans-serif;
    color: #323450;
}

.footer-section .copyright-wrapper {
    border-top: 1px solid rgba(88, 89, 120, .4);
    padding: 20px 0;
}

.footer-section .copyright-wrapper p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: rgba(88, 89, 120, .6);
}
/* ------------- default ------------ */

.radius-10 {
    border-radius: 10px;
}

.radius-30 {
    border-radius: 30px;
}

.radius-50 {
    border-radius: 50px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}