/* Base CSS */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BlackItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Black.woff2') format('woff2'),
        url('../fonts/Gilroy-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BoldItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-LightItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy-RegularItalic';
    src: url('../fonts/Gilroy-RegularItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-MediumItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Gilroy';
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #000000;
    font-weight: 700;
    font-size: 48px;
}

p {
    color: #727A89;
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1140px;
}


/*-------------------- Offcanvas area css start --------------------*/

.menu-close {
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 18px;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    color: #000;
    background: #fff;
}

.offcanvas-area {
    position: fixed;
    left: -100%;
    height: 100%;
    width: 300px;
    background: #1D4ED8;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
}

.offcanvas-area.active {
    left: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    font-size: 18px;
    color: #fff;
    display: block;
    transition: .3s;
    padding: 16px 22px;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

.offcanvas-area .main-menu ul li:first-child a {
    border-top: 1px solid #fff;
}

.offcanvas-area .main-menu ul li a:hover,
.offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #D5D5D5;
}

.offcanvas-menu .main-menu ul {
    display: block;
    padding-top: 70px;
    padding-left: 0;
    margin-bottom: 40px;
    list-style: none;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 27px;
    color: #fff;
    cursor: pointer;
    position: relative;
    top: 2px;
    margin-left: 20px;
    margin-right: 8px;
}

.offcanvas-menu .common-btn {
    font-size: 17px;
    padding: 9px 30px;
    border-radius: 12px;
}

.offcanvas-btn a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    width: 128px;
    height: 48px;
    text-decoration: none;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin: 0px 4px;
}

.offcanvas-btn a:hover {
    background-color: #fff;
    color: #000;
}

.offcanvas-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-------------------- Offcanvas area css end --------------------*/


/*-------------------- Header area css start --------------------*/

.header__area {
    background-color: #1061DD;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    padding-top: 20px;
    padding-bottom: 20px;
}

.site__logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.main__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main__menu ul li {
    display: inline-block;
    margin: 0px 16px;
}

.main__menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 0.7;
    transition: .3s;
}

.main__menu ul li a:hover {
    opacity: 1;
}

.header__btn__blk {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.header__btn a {
    background-color: #fff;
    display: inline-block;
    color: #0A53D4;
    padding: 7px 22px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 59px;
    transition: .3s;
    border: 1px solid transparent;
}

.header__btn__ghost {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    opacity: 0.7;
    margin-right: 8px;
    transition: .3s !important;
}

.header__btn__ghost:hover {
    opacity: 1 !important;
}

.header__btn a:hover {
    opacity: .7;
}

.main__menu ul li a.active {
    opacity: 1;
}

.header__area.no-bg {
    background-color: #fff;
}

/*-------------------- Header area css end --------------------*/


/*-------------------- Hero area css start --------------------*/

.hero__area {
    padding-top: 160px;
    padding-bottom: 766px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero__content {
    text-align: center;
    max-width: 52%;
    margin-left: auto;
    margin-right: auto;
}

.hero__content h1 {
    color: #fff;
    font-size: 64px;
    margin-bottom: 18px;
}

.hero__content p {
    color: #fff;
    opacity: 0.7;
    margin-bottom: 31px;
}

.hero__content a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 51px;
    background-color: #FFFFFF;
    border-radius: 65px;
    font-size: 16px;
    font-weight: 500;
    color: #0A53D4;
    text-transform: capitalize;
    transition: .3s;
    margin-left: auto;
    margin-right: auto;
}

.hero__content a:hover {
    opacity: .7;
}

/*-------------------- Hero area css end --------------------*/


/*-------------------- About area css start --------------------*/

.about__area {
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
    padding-top: 150px;
}

.about__left__blk span {
    display: block;
    margin-bottom: 14px;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.about__left__blk h2 {
    margin-bottom: 9px;
}

.about__left__blk p {
    margin-bottom: 24px;
}

.about__left__blk a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 39px;
    background-color: #1D4ED8;
    border-radius: 59px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.about__left__blk a:hover {
    background-color: #000;
}

.about__img {
    position: absolute;
    right: 0;
    top: 0;
    width: 800px;
}

.about__sp1 {
    position: absolute;
    right: 7%;
    top: -22%;
    width: 38px;
    z-index: -1;
}

.about__sp2 {
    position: absolute;
    right: 10%;
    top: -11%;
    width: 240px;
    z-index: -1;
}

.about__sp3 {
    position: absolute;
    left: 2%;
    bottom: 20%;
    width: 39px;
    z-index: -1;
}

/*-------------------- About area css end --------------------*/


/*-------------------- Service area css start --------------------*/

.service__topbar {
    text-align: center;
    margin-bottom: 65px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.service__topbar span {
    display: block;
    margin-bottom: 12px;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 500;
}

.service__topbar h2 {
    margin-bottom: 12px;
}

.service__topbar p {
    margin-bottom: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.service__icon__blk {
    width: 61px;
    height: 61px;
    background-color: #1D4ED8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 18px;
}

.service__icon__blk img {
    width: 30px;
}

.service__content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: capitalize;
}

.service__single__blk {
    box-shadow: 0px 3px 3px rgba(60, 70, 100, 0.05);
    border-radius: 16px;
    background-color: #fff;
    padding: 28px 22px;
}

.service__area {
    padding-top: 100px;
    padding-bottom: 180px;
    position: relative;
    z-index: 1;
}

.service__sp1 {
    position: absolute;
    right: 24%;
    top: 0;
    width: 37px;
    z-index: -1;
}

.service__sp3 {
    position: absolute;
    right: 4%;
    top: 37%;
    width: 39px;
    z-index: -1;
}

.service__sp5 {
    position: absolute;
    left: 2%;
    bottom: 25%;
    width: 31px;
    z-index: -1;
}

.join__area {
    position: relative;
    z-index: 1;
}

.join__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

/*-------------------- Service area css end --------------------*/


/*-------------------- Feature area css start --------------------*/

.feature__main__blk {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.feature__title span {
    display: block;
    margin-bottom: 12px;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 500;
}

.feature__right__blk img {
    width: 100%;
}

.feature__main__slider.owl-carousel .owl-dots {
    display: none;
}

.feature__main__slider.owl-carousel .owl-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid #1D4ED8 !important;
    border-radius: 50%;
    color: #1D4ED8 !important;
    font-size: 25px !important;
    opacity: 0.1;
    transition: .3s;
}

.feature__main__slider.owl-carousel .owl-nav button:hover {
    background-color: #1D4ED8 !important;
    opacity: 1;
    color: #fff !important;
}

.feature__main__slider.owl-carousel .owl-prev {
    margin-right: 10px;
}

.feature__main__slider.owl-carousel .owl-nav {
    margin-top: 10px;
}

.feature__area {
    position: relative;
    z-index: 1;
    padding-top: 86px;
    padding-bottom: 92px;
}

.feature__sp1 {
    position: absolute;
    left: 10%;
    top: 30%;
    z-index: -1;
    width: 37px;
}

.feature__sp2 {
    position: absolute;
    left: 40%;
    bottom: 15%;
    width: 39px;
    z-index: -1;
}

/*-------------------- Feature area css end --------------------*/


/*-------------------- Price area css start --------------------*/

.price__area {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.price__area .container {
    max-width: 900px;
}

.price__title {
    text-align: center;
    margin-bottom: 41px;
}

.price__single__blk {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: .3s;
}

.price__first__blk h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.price__first__blk p {
    font-size: 14px;
    margin-bottom: 0;
}

.price__first__blk {
    margin-bottom: 22px;
    padding: 16px;
    padding-bottom: 0;
}

.price__second__blk h4 {
    font-size: 32px;
    margin-bottom: 0;
}

.price__second__blk span {
    color: #727A89;
    font-size: 12px;
    font-weight: 400;
}

.price__second__blk {
    background-color: #F9F9F9;
    padding: 10px 16px;
    margin-bottom: 12px;
}

.price__service ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price__service ul li {
    display: block;
    margin-bottom: 7px;
    color: #727A89;
    font-size: 14px;
    font-weight: 400;
}

.price__service ul li:last-child {
    margin-bottom: 0;
}

.price__service {
    padding: 0px 16px;
    margin-bottom: 12px;
}

.price__service ul li i {
    margin-right: 12px;
    color: #1D4ED8;
}

.price__cost__single {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price__cost {
    padding: 0px 16px;
}

.price__cost__single p {
    font-size: 14px;
    margin-bottom: 0;
}

.price__cost__single span {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.price__cost__single {
    margin-bottom: 12px;
}

.price__cost__single:last-child {
    margin-bottom: 0;
}

.price__btn__blk {
    padding: 16px;
    padding-top: 0;
    margin-top: 31px;
}

.price__btn__blk a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 47px;
    border-radius: 27px;
    color: #727A89;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.price__btn__blk a:hover {
    background-color: #E9EDFB;
}

.price__btn__blk a:hover {
    background-color: #E9EDFB;
}

.price__single__blk.active .price__btn__blk a:hover {
    background-color: #E9EDFB;
}

.price__sp1 {
    position: absolute;
    left: 1%;
    top: 56%;
    width: 37px;
    z-index: -1;
}

.price__sp2 {
    position: absolute;
    right: 5%;
    bottom: 14%;
    width: 39px;
    z-index: -1;
}

.price__single__blk.active {
    background: linear-gradient(113.22deg, #0569FF -1.65%, #003EB6 101.14%);
    box-shadow: 0px 14px 30px #1D4ED86B;
}

.price__single__blk.active .price__first__blk h4 {
    color: #fff;
}

.price__single__blk.active .price__first__blk p {
    color: #fff;
    opacity: .7;
}

.price__single__blk.active .price__second__blk {
    background-color: rgba(255, 255, 255, 0.05);
}

.price__single__blk.active .price__second__blk h4 {
    color: #fff;
}

.price__single__blk.active .price__second__blk span {
    color: #fff;
    opacity: .7;
}

.price__single__blk.active .price__service ul li {
    color: #fff;
    opacity: .7;
}

.price__single__blk.active .price__service ul li i {
    color: #fff;
}

.price__single__blk.active .price__cost__single p {
    color: #fff;
    opacity: .7;
}

.price__single__blk.active .price__cost__single span {
    opacity: .7;
    color: #fff;
}

.price__single__blk.active .price__btn__blk a {
    background-color: #fff;
    color: #1D4ED8;
}

/*-------------------- Price area css end --------------------*/



/*-------------------- Client area css start --------------------*/

.client__title {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 45px;
}

.client__title span {
    display: block;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.client__title h2 {
    margin-bottom: 0;
}

.client__main__slider.owl-carousel .owl-stage-outer,
.client__main__slider2.owl-carousel .owl-stage-outer {
    overflow: visible !important;
}

.client__single__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    text-align: center;
}

.client__single__slide img {
    max-width: 150px;
}

.client__area {
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.client__sp {
    position: absolute;
    left: 25%;
    top: 20%;
    width: 39px;
    z-index: -1;
}

/*-------------------- Client area css end --------------------*/


/*-------------------- Testimonial area css start --------------------*/

.testimonial__area {
    padding-bottom: 157px;
    position: relative;
    z-index: 1;
}

.testimonial__quote {
    max-width: 70px;
    margin-bottom: 22px;
}

.testimonial__content p {
    margin-bottom: 0;
}

.testimonial__content {
    margin-bottom: 30px;
}

.testimonial__user__main {
    display: flex;
    align-items: center;
}

.testimonial__user__img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 13px;
}

.testimonial__user__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
}

.testimonial__user__info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

.testimonial__user__info span {
    color: #727A89;
    font-size: 13px;
    font-weight: 400;
    display: block;
}

.testimonial__single__slide {
    box-shadow: 0px 8px 18px rgba(60, 70, 100, 0.05);
    border-radius: 16px;
    background-color: #fff;
    padding-left: 15px;
    padding-bottom: 18px;
    padding-right: 23px;
    padding-top: 41px;
}

.testimonial__main__slider.owl-carousel .owl-stage {
    padding-top: 10px;
    padding-bottom: 10px;
}

.testimonial__sp {
    position: absolute;
    right: 4%;
    top: 39%;
    width: 53px;
    z-index: -1;
}

/*-------------------- Testimonial area css end --------------------*/


/*-------------------- Join area css start --------------------*/

.join2__area {
    padding-bottom: 88px;
    position: relative;
    z-index: 1;
}

.join__wrap {
    background-color: #1D4ED8;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.join__left__blk {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-left: 50px;
}

.join__left__blk h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 7px;
}

.join__left__blk p {
    font-weight: 500;
    max-width: 81%;
    color: #fff;
    opacity: .7;
    margin-bottom: 22px;
}

.join__left__blk a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 51px;
    background-color: #fff;
    border-radius: 65px;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: .3s;
}

.join__left__blk a:hover {
    opacity: .7;
}

.join__wrap::after {
    position: absolute;
    left: 47%;
    top: 0;
    width: 50%;
    height: 100%;
    content: "";
    z-index: -1;
    background-image: linear-gradient(to right, #1D4ED8, transparent);
}

.join__right__blk {
    position: relative;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.join__right__blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join2__sp {
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 31px;
    z-index: -1;
}

/*-------------------- Join area css end --------------------*/


/*-------------------- Footer area css start --------------------*/

.footer__area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 200px;
}

.footer__logo {
    margin-bottom: 15px;
}

.footer__content {
    max-width: 370px;
    margin-bottom: 16px;
}

.footer__content p {
    color: #fff;
    opacity: .7;
    margin-bottom: 0;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #1D4ED8;
    border-radius: 50%;
    margin-right: 10px;
    transition: .3s;
    box-shadow: 0px 6px 10px #1D4ED88A;
}

.footer__social a img {
    width: 14px;
    height: 16px;
}

.footer__social a:hover {
    box-shadow: none;
    background-color: #3B6EFD;
}

.footer__menu h4 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #FFFFFF;
    opacity: .5;
    text-transform: capitalize;
}

.footer__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__menu ul li {
    margin-bottom: 10px;
    display: block;
}

.footer__menu ul li a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    display: block;
    transition: .3s;
}

.footer__menu ul li a:hover {
    color: #1D4ED8;
}

.copy__area {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 35px;
    padding-bottom: 35px;
}

.copy__main__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy__content {
    flex: 0 0 auto;
}

.copy__content span {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    opacity: .5;
}

.login__blk {
    flex: 0 0 auto;
}

.login__blk ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.login__blk ul li {
    display: inline-block;
    margin-left: 26px;
}

.login__blk ul li a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
    display: inline-block;
}

.login__blk ul li a:hover {
    color: #1D4ED8;
}

.footer__menu {
    padding-bottom: 33px;
}

/*-------------------- Footer area css end --------------------*/


/*-------------------- Sign In area css start --------------------*/

.signin__area {
    padding-top: 147px;
    padding-bottom: 50px;
}

.signin__left__blk {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    max-width: 85%;
}

.signin__topbar h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.signin__topbar span {
    font-size: 16px;
    font-weight: 400;
    color: #727A89;
}

.signin__topbar span a {
    color: #1D4ED8;
}

.signin__topbar {
    margin-bottom: 25px;
}

.form__main__blk input {
    width: 100%;
    height: 47px;
    border: 1px solid rgba(114, 122, 137, 0.2);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    margin-bottom: 6px;
    color: #000000;
}

.signin__terms {
    margin-top: 26px;
    display: flex;
    align-items: center;
}

.signin__terms input {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(114, 122, 137, 0.2);
    border-radius: 4px;
    margin-right: 12px;
}

.signin__terms span {
    color: #727A89;
    font-size: 14px;
    font-weight: 400;
}

.signin__terms span a {
    color: #1D4ED8;
}

.signin__btn__blk button {
    border: none;
    outline: none;
    width: 179px;
    height: 46px;
    background-color: #1D4ED8;
    border-radius: 59px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.signin__btn__blk button:hover {
    background-color: #000;
}

.signin__btn__blk {
    margin-top: 23px;
}

.signin__img__blk img {
    width: 100%;
}

.signin__img__blk {
    display: flex;
    align-items: center;
    height: 100%;
}

.signin__terms.signin2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signin__remember {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.signin__forgot {
    flex: 0 0 auto;
}

.signin__forgot a {
    color: #727A89;
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}

.signin__forgot a:hover {
    text-decoration: underline;
    color: #0259DC;
}


/*-------------------- Sign In area css end --------------------*/


/*-------------------- Default area css start --------------------*/
/*-------------------- Default area css end --------------------*/