html{
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
}
.partner__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.partner__item {
    padding: 15px;
    border-radius: 15px;
    background-color:rgb(245, 250, 255);
}
.partner__item img{
    max-width: 100px;
}
input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked) {
	position: absolute;
	left: -9999px;
}

input[type="checkbox"]:checked+label,
input[type="checkbox"]:not(:checked)+label {
	display: inline-block;
	position: relative;
	padding-left: 28px;
	line-height: 20px;
	cursor: pointer;
	margin-bottom: 10px;
}

input[type="checkbox"]:checked+label:before,
input[type="checkbox"]:not(:checked)+label:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 18px;
	height: 18px;
	border: 1px solid #0085e6;
	background-color: #ffffff;
}

input[type="checkbox"]:checked+label:before,
input[type="checkbox"]:not(:checked)+label:before {
	border-radius: 2px;
}

input[type="checkbox"]:checked+label:after,
input[type="checkbox"]:not(:checked)+label:after {
	content: "";
	position: absolute;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

input[type="checkbox"]:checked+label:after,
input[type="checkbox"]:not(:checked)+label:after {
	left: 5px;
	top: 5px;
	width: 10px;
	height: 5px;
	border-radius: 1px;
	border-left: 3px solid #0085e6;
	border-bottom: 3px solid #0085e6;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

input[type="checkbox"]:not(:checked)+label:after {
	opacity: 0;
}

input[type="checkbox"]:checked+label:after {
	opacity: 1;
}
.footer-area .content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.footer__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}
.footer__menu li a{
	color: #fff;
}
.footer__menu li a:hover {
	color: #92c0fb;
}
.footer-area .copy-area p{
	text-align: center;
}
@media(max-width: 768px){
    .partner__list{
        flex-direction: column;
        gap: 10px;
    }
		.footer__menu{
			flex-direction: column;
		}
}

.main-nav__docs {
	background-color: #051242 !important;
}

.wrapper {
	padding: 140px 0 80px 0;
}

.wrapper h1 {
	text-align: center;
	margin-bottom: 16px;
	font-size: calc(1rem + 1.5vw);

}


.wrapper p:last-child {
	margin-bottom: 0;
}

.wrapper p:not(:last-child) {
	margin-bottom: 16px;
}

.wrapper a {
	text-decoration: none;
	cursor: pointer;
}
.thanksWrapper {
	position: relative;
	padding: 80px 0;
}

.thanksLogoWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
}

.thanksLogo {
	max-width: 100px;
	width: 100%;
	margin-bottom: 40px;
}

.thanksTextContent {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 0 auto 100px;
	padding: 0 15px;
	max-width: 800px;
	text-align: center;
}

.thanksText {
	font-size: 18px;
	line-height: 30px;
}

@media(max-width: 575px){
	.banner-area {
		background-image: none;
		background-color: #051242;
	}
	.home-shape img{
		display: none !important;
	}
}