@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif; */

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #494A53;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #494A53;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #0084CE;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

figure {
	margin: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1210px;
    padding: 0 20px;
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    padding: 25px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    width: 100%;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .container figure,
.header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 60px;
}

.header-section .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 50px 20px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    line-height: 1;
    margin-bottom: 25px;
}

.menu-bar li:last-child {
    margin-bottom: 0;
}

.menu-bar li a {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: #353B48;
    transition: .5s;
}

.menu-bar li:last-child a {
    padding: 13px 40px;
    background-color: #0084CE;
    border: none;
    border-radius: 10px;
    color: #FFFFFF !important;
    transition: .5s;
}

.menu-bar li:last-child a:hover {
    background-color: #191728;
    transition: .5s;
}

.menu-bar.show li a {
    color: #353B48;
}

.menu-bar.show li a.active {
    color: #0084CE;
}

.menu-bar.show li a svg path {
    fill: #353B48;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #353B48;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #353B48;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 16px;
    line-height: 1;
    color: #353B48;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 30px;
    padding: 0;
    color: #353B48;
    position: absolute;
    right: 20px;
    top: 48%;
    transform: translate(0, -50%);
}

@media (min-width: 768px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 768px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 50px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a:hover {
        color: #0084CE;
        transition: .5s;
    }

    .menu-bar li a.active {
        color: #0084CE;
        border-bottom: 4px solid #0084CE;
        transition: .5s;
    }
	
	.header-section .container figure,
	.header-section .container figure img {
		height: 45px;
	}
	
	.menu-bar li a {
		font-size: 15px;
    }

    .dropDown-list a.active {
        color: #0084CE;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #0084CE;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #0063c1;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #A9E2FF;
    }
}
@media(min-width: 1200px) {
	.header-section .container figure,
	.header-section .container figure img {
		height: 60px;
	}
	
	.menu-bar li a {
		font-size: 20px;
	}
}

.header-section .container aside .start-for-free a {
    padding: 15px 30px;
    background: linear-gradient(180deg, #555555 0%, #000000 100%);
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.header-section .container aside .start-for-free a:hover {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .header-section {
        padding: 20px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .menu-bar {
        gap: 30px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    margin: 110px 70px 0 70px;
    padding: 50px 0 50px 0;
    background: linear-gradient(0deg, #E0F9FF 0%, #FFFFFF 100%);
    border-radius: 30px;
}

.banner-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.banner-section .container aside {
    width: 55%;
}

.banner-section .container figure {
    width: 45%;
	display: flex;
    align-items: flex-end;
}

.banner-section h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    color: #191728;
    padding: 10px 0;
}

.banner-section h1 span {
    display: block;
}

.banner-section p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #191728;
    padding: 10px 0;
}

form.contant-form {
    margin-top: 15px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 15px 35px 0px #ACCBD180;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

form.contant-form .field-half {
    width: calc(50% - 10px);
}

form.contant-form .field-full {
    width: 100%;
}

form.contant-form input[type="text"],
form.contant-form input[type="tel"],
form.contant-form input[type="email"],
form.contant-form select,
form.contant-form textarea {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #A7ADAE;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #63636D;
}

form.contant-form select {
    background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

form.contant-form textarea {
    height: 100px;
    overflow: auto;
    resize: none;
}

form.contant-form ::placeholder {
    color: #63636D;
}

form.contant-form ::-ms-input-placeholder {
    color: #63636D;
}

form.contant-form .field-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

form.contant-form button[type="submit"] {
    margin: 0;
    padding: 13px 40px;
    width: auto;
    height: 54px;
    background-color: #0084CE;
    border: none;
    border-radius: 10px;
    color: #FFFFFF !important;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    transition: .5s;
    cursor: pointer;
}

form.contant-form button[type="submit"]:focus,
form.contant-form button[type="submit"]:hover {
    background-color: #191728;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .banner-section {
        margin: 100px 20px 0 20px;
        padding: 15px 0;
    }

    .banner-section .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .banner-section .container aside {
        width: 100%;
    }

    .banner-section .container figure {
        width: 100%;
    }

    .banner-section h1 {
        font-size: 26px;
    }

    .banner-section p {
        font-size: 16px;
    }

    form.contant-form {
        margin-top: 5px;
        padding: 15px;
        gap: 15px;
    }

    form.contant-form .field-half {
        width: 100%;
    }

    form.contant-form .field-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    form.contant-form .checkbox {
        width: 100%;
    }

    input[type="radio"]+label {
        font-size: 15px;
    }

    input[type="checkbox"]+label {
        font-size: 15px;
    }

    form.contant-form button[type="submit"] {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section {
        margin: 110px 20px 0 20px;
    }

    .banner-section .container {
        flex-wrap: wrap;
    }

    .banner-section .container aside {
        width: 100%;
    }

    .banner-section .container figure {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (min-width:1024px) and (max-width:1210px) {
    .banner-section {
        margin: 110px 20px 0 20px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #191728;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 46px;
}

.content-section h2 {
    font-size: 42px;
}

.content-section h3 {
    font-size: 36px;
}

.content-section h4 {
    font-size: 30px;
}

.content-section h5 {
    font-size: 26px;
}

.content-section h6 {
    font-size: 22px;
}

.content-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #494A53;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #494A53;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #494A53;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 20px 60px;
    background-color: #0084CE;
    border: none;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 500;
    line-height: 38px;
    color: #FFFFFF !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.btn-01 a:hover {
    background-color: #191728;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 14px;
    }

    .content-section ul li {
        font-size: 14px;
    }

    .content-section ol li {
        font-size: 14px;
    }

    .btn-01 a {
        margin: 10px 0;
        padding: 5px 30px;
        font-size: 16px;
    }
}

.trusted-partners-section {
    padding: 50px 0 35px;
    text-align: center;
}

.trusted-partners-section ul {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

@media only screen and (max-width:760px) {
    .trusted-partners-section {
        padding: 30px 0;
    }

    .trusted-partners-section ul {
        margin: 10px 0 0 0;
        flex-wrap: wrap;
        gap: 30px;
        row-gap: 15px;
    }

    .trusted-partners-section ul li {
        width: 45%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .trusted-partners-section ul {
        gap: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1210px) {
    .trusted-partners-section ul {
        gap: 50px;
    }
}

.how-it--works-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E1FAFF 50%, #FFFFFF 100%);
}

.how-it--works-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.how-it--works-section figure {
    width: 50%;
}

.how-it--works-section aside {
    width: 50%;
}

.how-it--works-section h2 {
    padding: 0;
}

.icon-content {
    padding: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.icon-content::before {
    content: "";
    border-left: 1px dashed #A7ADAE;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: -1;
}

.icon-content:last-child::before {
    display: none;
}

.icon-content article {
    width: calc(100% - 80px);
}

.icon-content article h6,
.icon-content article p {
    padding: 0;
}

@media only screen and (max-width:760px) {
    .how-it--works-section {
        padding: 30px 0;
    }

    .how-it--works-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .how-it--works-section figure {
        width: 100%;
        text-align: center;
    }

    .how-it--works-section aside {
        width: 100%;
    }

    .how-it--works-section h2 {
        padding: 0;
    }

    .icon-content {
        padding: 15px 0;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    .icon-content::before {
        content: "";
        border-left: 1px dashed #A7ADAE;
        width: 1px;
        height: 100%;
        position: absolute;
        left: 30px;
        top: 30px;
        z-index: -1;
    }

    .icon-content:last-child::before {
        display: none;
    }

    .icon-content article {
        width: calc(100% - 80px);
    }

    .icon-content article h6,
    .icon-content article p {
        padding: 0;
    }
}

.users-says-section h2 {
    text-align: center;
}

.js-users-says-slider {
    margin: 15px -15px 0 -15px;
}

.js-users-says-slider .item {
    padding: 15px;
}

.testimonial {
    min-height: 230px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px #ACCBD180;
}

.testimonial aside {
    padding: 20px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial aside h6 {
    padding: 0;
    font-size: 20px;
}

.testimonial aside h6 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.testimonial article {
    padding: 10px 20px;
}

@media only screen and (max-width:760px) {
    .js-users-says-slider {
        margin: 0 -15px 0 -15px;
    }

    .js-users-says-slider .item {
        padding: 15px;
    }

    .testimonial {
        min-height: inherit;
    }

    .testimonial aside h6 {
        font-size: 18px;
    }

    .testimonial aside h6 span {
        font-size: 14px;
    }
}

.about-us-section {
    padding: 100px 0;
    text-align: center;
}

.about-us-section p {
    margin: 0 auto;
    max-width: 1100px;
}

.about-us-section .btn-01 a {
    margin: 30px 0 0 0;
}

@media only screen and (max-width:760px) {
    .about-us-section {
        padding: 50px 0 30px 0;
    }

    .about-us-section .btn-01 a {
        margin: 15px 0 0 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {}

@media only screen and (min-width:1024px) and (max-width:1210px) {}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    padding: 25px 0;
    background-color: #191728;
}

.footer-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-section ul.links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.footer-section ul.links li {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
}

.footer-section ul.links li a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-section ul.links li a:hover {
    color: #0084CE;
    transition: .5s;
}

.footer-section ul.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-section ul.social li {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
}

.footer-section ul.social li a {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF33;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.footer-section ul.social li a:hover {
    background-color: #0084CE;
    color: #FFFFFF;
    transition: .5s;
}

.footer-section p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
}

@media only screen and (max-width:760px) {
    .footer-section .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-section ul.links {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .footer-section ul.links li {
        font-size: 16px;
    }

    .footer-section ul.social {
        width: 100%;
    }

    .footer-section ul.social li {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .footer-section ul.social li a {
        width: 40px;
        height: 40px;
    }

    .footer-section p {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section .container {
        flex-wrap: wrap;
    }

    .footer-section ul.links {
        width: 47%;
    }

    .footer-section ul.social {
        width: 47%;
        justify-content: flex-end;
    }

    .footer-section p {
        width: 100%;
        text-align: center;
    }
}

/* 	-----------------------------------------------------
    ------------------ Go to top Styles -----------------
    ----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 54px;
    width: 54px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #0084CE url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 10px;
    box-shadow: 0px 10px 25px -3px #00000040;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}

@media only screen and (max-width:1170px) {
    .cd-top {
        display: none;
    }
}

.wpcf7-list-item {
	margin: 0 !important;
}

.wpcf7-list-item label {
	display: flex;
	gap: 10px;
}

.wpcf7-list-item-label {
    font-size: 18px;
    color: #191728;
}

.wpcf7-list-item-label a {
    color: #0084CE;
    border-bottom: 2px solid #0084CE;
    transition: all .4s ease-in-out;
}

.wpcf7-list-item-label a:hover {
    color: #191728;
    border-bottom: 2px solid #191728;
    transition: all .4s ease-in-out;
}

.check,
.radio {
  height: 24px;
  width: 24px;
  position: relative;	
}

.check:after,
.radio:after {
  content: '\00D7';
  display: block;
  background: #FFFFFF;
  background-image: url('https://cdn0.iconfinder.com/data/icons/slim-square-icons-basics/100/basics-21-32.png');
  pointer-events: none;
  font-size: 15px;
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  color: transparent;
  transition: .25s all ease-in-out;
  border-radius: 3px;
  line-height: 15px;
  background-position: 0 15px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
}

.radio:after {
  border-radius: 50%;
}

.check:checked:after,
.radio:checked:after {
  background-color: #d4de4e;
  background-position: 0 0;
}

.check:hover:after,
.radio:hover:after {
  border-color: #d4de4e;
}

.home-banner-info {
	margin: 35px 0 20px;
}

.home-banner-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 14px 15px;
    background: #FFFFFF;
    border: 1px solid #81B6C1;
    border-radius: 8px;
    width: 100%;
}

.home-banner-info-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.home-banner-info-content p {
    font-size: 15px;
    color: #272B34;
    font-weight: 500;
    padding: 0;
}

.home-banner-info-content p span {
	font-size: 13px;
	display: block;
	color: #616161;
	font-weight: 300;
}

.home-banner-info-image {
	width: 50px;
	display: flex;
}

.home-banner-info-content {
	width: calc(100% - 50px);
	padding-left: 9px;
}













.requirements-info-cards {
    margin: 35px 0;
}

.requirements-info-card-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}

.requirements-info-cards-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.requirements-info-card-content p {
    font-size: 15px;
    color: #272B34;
    font-weight: 500;
    padding: 0;
}

.requirements-info-card-image {
	width: 32px;
	display: flex;
}

.requirements-info-card-content {
	width: calc(100% - 32px);
	padding-left: 12px;
}

.requirements-info-card-wrapper {
	background: #FFFFFF;
	box-shadow: 0px 25px 60px rgba(172, 203, 209, 0.5);
	border-radius: 10px;
	display: block;
	padding: 35px 25px 30px 25px;
}

.requirements-info-card-wrapper h4 {
	font-size: 32px;
	color: #191728;
	margin: 0 0 15px;
}

@media(min-width: 768px) {
	.home-banner-info-content p {
		font-size: 20px;
	}

	.home-banner-info-content p span {
		font-size: 14px;
	}
	
	.requirements-info-card-content p {
		font-size: 20px;
	}
	
	.requirements-info-cards {
		margin: 0 0 65px;
	}
}

@media(min-width: 1200px) {
	.home-banner-info-flex {
		flex-direction: row;
		gap: 30px;
	}
	
	.home-banner-info {
		margin: 60px 0 0px;
	}
	
	.requirements-info-cards-flex {
		flex-direction: row;
		gap: 15px;
		justify-content: space-between;
	}
	
	.requirements-info-cards {
		margin: 0 0 120px;
	}
	
	.requirements-info-card-item {
		width: auto;
	}
	
	.requirements-info-card-wrapper h4 {
		text-align: center;
}
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none !important;
}