* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Montserrat', sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    font-weight: 500;
    line-height: 1.2;
}


.container {
    max-width: 1056px;
}


.header {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	transition: all 0.35s ease;
}

#sticky_nav {
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	z-index: 999;
	transition: all .5s ease
}


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


.brand img {
	max-width: 160px;
}

.burger {
	position: relative;
	display: none;
	cursor: pointer;
	user-select: none;
	z-index: 1;
	width: 1.75rem;
	height: 1rem;
	border: none;
	outline: none;
	background: none;
	visibility: visible;
	transform: rotate(0deg);
	transition: 0.35s ease;
	padding: 10px;
}

.burger-line {
	position: absolute;
	display: block;
	top: 25px;
	right: 10px;
	width: 30px;
	height: 2px;
	border: none;
	outline: none;
	opacity: 1;
	transform: rotate(0deg);
	background-color: #28303F;
	transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
	top: 0px;
}

.burger-line:nth-child(2) {
	top: 0.5rem;
}

.burger-line:nth-child(3) {
	top: 1rem;
}


.desk-menu ul li {
	display: inline-block;
	margin: 0px 10px;
}

.desk-menu ul li a {
	display: block;
	padding: 5px;
	font-size: 16px;
	color: #28303F;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}


.language-select {
	border: none;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	margin-right: 20px;
}

select:focus,
input:focus {
	outline: none;
}


/* mobile menu */
.mobile-menu a:hover,
.show-menu-btn:hover,
.hide-menu-btn:hover {
	color: #038FDE;
}

.mobile-menu {
	display: none;
}


@media screen and (max-width:800px) {

	.header {
		padding: 15px 15px;
		display: flex;
		align-items: center;

	}

	.show-menu-btn,
	.hide-menu-btn,
	.burger {
		display: block;
	}

	.desk-menu,
	.lng-wrapper,
	.login-btn-wrapper {
		display: none;
	}

	.mobile-menu {
		display: block;
	}


	.nav a:hover::before {
		width: 0%;
	}

	.mobile-menu {
		position: fixed;
		width: 80%;
		height: 100%;
		background: #F5F5F5;
		top: 0;
		right: -100%;
		overflow: auto;
		text-align: center;
		line-height: normal;
		padding-top: 50px;
		font-size: 30px;
		transition: .7s;
		font-size: 16px;
		color: #28303F;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		z-index: 2;

	}

	.mobile-menu-top {
		display: flex;
		align-items: center;
		position: absolute;
		top: 20px;
		left: 0;
		right: 0;
	}

	.hide-menu-btn {
		position: absolute;
		right: 40px;
		font-size: 30px;
		font-weight: 400;
	}

	.mobile-menu ul li {
		display: block;
		float: none;
		padding-top: 35px;
	}

	.mobile-menu ul li a {
		color: #28303F;
	}

	.mobile-menu.is-active {
		right: 0;
	}

	.login-btn {
		color: #fff !important;

	}
}


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

.login-btn {
	font-family: 'Poppins', sans-serif;
	padding: 12px 30px;
	font-weight: 600;
	font-size: 16px;
	background: #28303F;
	border-radius: 10px;
	color: #fff;
	transition: all 1s ease-out;
	cursor: pointer;
}

.login-btn:hover {
	background-color: #0971e0;
	color: #fff;
    transition: all 1s ease-out;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #2D2D2D;
    color: #fff;
}


/* Hero Content Wrapper Code Start Here */

.hero-content-wrapper:before {
    content: '';
    background: url(images/hero-item-bg.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}



.hero-content-top {
    height: 45vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.hero-main-content {
    text-align: center;
}

.hero-main-content h1 {
    font-weight: 800;
    font-size: 48px;
    color: #545454;
    line-height: 1.1;

}

.hero-text-br {
    display: block;
}

.hero-main-content p {
    color: #545454;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    margin: 10px 0px;
}

.hero-main-btn-wrapper {
    padding: 30px 0;
}

.hero-main-btn-wrapper li {
    display: inline-block;
    margin: 0 10px;
}

.hero-main-btn-wrapper li a {
    display: block;
    padding: 16px 48px;
    width: 270px;
    height: 56px;
    background: #038FDE;
    border-radius: 10px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    transition: all .6s ease-in-out;
}

.try-it-out-btn {
    background: #FCAE66 !important;
}

.hero-main-btn-wrapper li a:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px -10px #038fde;
}

.try-it-out-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px -10px #FCAE66 !important;
}




.swiper-container {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

.swiper-slide img {
    width: 100%;
    object-fit: fill;
}

.swiper-slide-container {
    text-align: center;
    font-size: 18px;
    height: 100%;
    max-width: 650px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.news-branding {
    background: #F5F5F5;
}

.news-branding-swiper .swiper-slide {
    max-width: 400px;
    /* height: 200px; */
    margin-right: 0.5rem;
}

.news-branding-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}


.client-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}


/* Hero Content Wrapper Code End Here */


/* Top Features Area Css Start Here */

.section-py {
    padding: 75px 0px;
}

.top-features {
    background: #F5F5F5;
}

.section-title h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 38px;
    text-align: center;
    text-transform: capitalize;
    color: #545454;
    margin-bottom: 46px;
}

.box-img img {
    max-width: 290px;
    max-height: 194px;
}


.box-card {
    max-width: 340px;
    min-height: 390px;
    padding: 20px;
    background-color: #fff;
    /* box-shadow: 0px 16px 32px -4px rgba(62, 92, 108, 0.15); */
    border-radius: 24px;
}

.box-card.step-box {
    background: #F5F5F5;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 8%;
    padding: 5px 30px;
    background: #038FDE;
    color: #fff;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    border-radius: 0px 8px 8px 0px;
}

.box-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.box-content h4 {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    color: #038FDE;
}

.box-content p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #545454;

}




.testimonial-card {
    width: 700px;
    display: flex;
    background-color: #fff;
    padding: 20px;
    border-radius: 24px;
    max-height: 200px;
}

.test-img {
    max-width: 136px;
    max-height: 136px;
}

.test-img img {
    object-fit: cover;
}

.test-content {
    margin-left: 20px;
    text-align: left;
}

.test-content h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #545454;
}

.test-content h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FCAE66;
}

.test-content p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;

    /* New Medium Grey */

    color: #8C8C8C;
}


























/* start count stats  */

.counters-area {
    background: #FCAE66;
}

#counter-stats {
    display: flex;
    justify-content: center;
}

.stats {
    text-align: center;
    color: #fff;
}

.stats span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    display: inline-block;
}

.stats h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}



/* end count stats */




.testimonial {
    background: #F5F5F5;
}










.designed-you-need {
    background: #FCAE66;
}

.designed-left h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.line-break {
    display: block;
}

.toggler-switch-all {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin: 8px 0;
    max-width: 320px;
    background: #F5F5F5;
    border-radius: 10px;
}

.toggler-switch-all span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #545454;
}



.toggler-switch-all input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggler-switch-all label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
}

.toggler-switch-all label:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.toggler-switch-all input:checked+label {
    background: #038FDE;
}

.toggler-switch-all input:checked+label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.toggler-switch-all label:active:after {
    width: 25px;
}

.designed-right img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}



.announcement-area {
    background-color: #F5F5F5;
}




.all-announcement {
    padding-left: 20px;
}



.announcement-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    color: #545454;
}

.announcement-title span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.announcement-img {
    margin: 20px 0;
}


.single-announcement p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    text-transform: capitalize;
    color: #545454;
}


.learn-more-btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    background: #038FDE;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    transition: all .5s ease-out;
}

.learn-more-btn:hover {
    background-color: #2D2D2D;
    color: #fff;
}

.all-ann-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    color: #545454;
    border-bottom: 1px solid rgba(84, 84, 84, .1);
    margin-bottom: 25px;

}

.announcement-single-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    max-width: 326px;

}

.single-announcement-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: #545454;
    margin-left: 10px;

}

.single-announcement-title span {
    margin-top: 5px;
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    opacity: 0.66;
}

.announcement-img img {
    max-width: 80px;
}


.single-announcement-img {
    position: relative;
    max-width: 80px;
}

.ann-image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .8s ease-out;
    background-color: #008CBA;
    border-radius: 10px;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.announcement-single-box:hover .single-announcement-img img {
    opacity: .3;
}

.announcement-single-box:hover .overlay {
    opacity: .6;
}

.announcement-single-box:hover .single-announcement-title {
    color: #038FDE;
}


.contact-area {
    background: #F5F5F5;
}



.form-control {
    padding: 8px 10px;
    font-size: 14px;
    height: 40px;
    background-color: rgba(52, 58, 64, 0.01);
    border: 1px solid rgba(155, 155, 174, 0.3);
}

.form-group {
    margin-bottom: 1rem;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

textarea.form-control {
    height: auto;
}

.btn {
    border-radius: 3px;
    padding: 12px 30px;
    font-size: 15px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn.btn-primary {
    background: -webkit-gradient(linear, left top, right top, from(#3956de), to(#657be5));
    background: linear-gradient(to right, #3956de 0%, #657be5 100%);
    border: none;
    color: #fff;
    -webkit-box-shadow: 0 4px 20px rgb(57 86 222 / 15%);
    box-shadow: 0 4px 20px rgb(57 86 222 / 15%);
}

.contactUsEdutechs .section-title h1 {
    margin-bottom: 10px !important;
}

.ms-contact-information {
    display: none;
}

.contact-information {
    text-align: right;
    position: relative;
    width: 100%;
    height: 100%;

}

.contact-information:after {
    width: 100%;
    height: 50%;
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    border-right: 3px solid #545454;
    opacity: .7;
}

.contact-information h4,
.ms-contact-information h4 {
    margin-bottom: 10px;
}

.contact-information h4,
.ms-contact-information h4 .contact-information h4 a,
.ms-contact-information h4 a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.015em;
    color: #545454;

}


.contact-information h4 span {
    margin-left: 10px;
}

@media (min-width: 1200px) {

    .h4,
    h4 {
        font-size: 1.4rem;
    }
}


.location span {
    margin-left: 20px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.contact-message {
    margin-left: 15%;
}

.contact-message label {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.015em;
    color: #545454;
    margin-bottom: 8px;
}

.contact-input {
    border: none;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.contact-input:focus {
    outline: none;
}

.send-btn {
    padding: 8px 48px;
    background: #038FDE;
    border-radius: 8px;
    border: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}


/* Footer css start here */

.footer-area {
    background: #28303F;
    color: #fff;
    padding: 70px 0px 20px 0px;
}

.footer-brand-about img {
    max-width: 300px;
}

.footer-brand-about p {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    text-align: justify;
    color: #8C8C8C;
    padding-right: 10px;
    margin: 20px 0;
}


.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    width: 36px;
    height: 36px;
    background-color: #909090;
    border-radius: 20px;
    margin-right: 7px;
    align-items: center;
    justify-content: center;
}

.social-links a i {
    padding: 12px 11px;
    font-size: 20px;
    color: #fff;
}


.footer-link-wrapper {
    margin-top: 20px;
}

.footer-link-wrapper h4 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.015em;
    color: #D9D9D9;
    margin-bottom: 15px;
}

.footer-link-wrapper ul li a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.015em;
    color: #54A5EF;
}

.footer-copyright {
    margin-top: 50px;
}




.testimonialSwiper1 .swiper-slide,
.testimonialSwiper2 .swiper-slide {
    width: 700px !important;
}

#bottomToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background-color: #474848;
    color: white;
    cursor: pointer;
    padding: 2px 10px;
    border-radius: 4px;
    transition: 2s ease-in-out;
}

#myBtn:hover {
    background-color: #000;
}




@media only screen and (min-width: 320px) and (max-width: 767px) {
    .hero-content-wrapper {
        width: 100%;
    }

    .hero-content-top {
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 10px 20px;
        margin-top: 10%;
    }

    .hero-main-content h1 {
        font-weight: 800;
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-text-br {
        display: inline-block;
    }

    .hero-main-content p {
        font-size: 16px;
    }

    .hero-main-btn-wrapper li {
        display: inline-block;
        margin: 10px 10px;
    }


    .hero-main-btn-wrapper li a {
        padding: 16px 35px;
        width: 230px;
        height: 46px;
        color: #FFFFFF;
        font-style: normal;
        font-size: 16px;
        line-height: 15px;
    }


    .swiper {
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
    }

    .swiper-slide-container {
        margin: 0 auto;
    }

    .swiper-slide img {
        display: block;
        height: auto !important;
        object-fit: fill;
    }


    .client-container {
        flex-direction: column;
    }

    .client-item {
        margin: 10px auto;
    }

    .client-item img {
        max-width: 300px
    }



    .box-card {
        max-width: 340px;
        margin: 0 auto;
        min-height: 390px;
        padding: 20px;
        background-color: #fff;
        border-radius: 24px;
    }


    .section-title h1 {
        font-size: 30px;
    }


    .stats {
        text-align: center;
        color: #fff;
        margin-bottom: 20px;
    }

    .stats span {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 800;
        font-size: 36px;
        line-height: 36px;
        display: inline-block;
    }

    .get-start-br {
        display: block;
    }

    .box-card.step-box {
        margin-bottom: 20px;
    }

    .testimonialSwiper1 .swiper-slide,
    .testimonialSwiper2 .swiper-slide {
        width: 540px !important;
    }


    .testimonial-card {
        max-width: 550px;
        display: flex;
        background-color: #fff;
        padding: 15px;
        border-radius: 24px;
        max-height: 180px;

    }


    .testimonial-card p {
        font-size: 13px;
    }


    .p-px {
        padding: 0px 15px;
    }


    .toggler-switch-all {
        min-width: 100%
    }

    .single-announcement {
        padding: 0px 15px;
    }

    .all-announcement {
        margin-top: 30px;
    }

    .ms-contact-information {
        display: block;
    }

    .contact-information {
        display: none;

    }

    .ms-contact-information .location span {
        margin-left: 0px;
    }

    .ms-contact-information .location {
        display: flex;
        align-items: center !important;
        /* justify-content: flex-start; */
    }

    .ms-contact-information .line-break {
        display: inline-block;
    }

    .contact-message {
        margin-top: 30px;
        margin-left: 0px;
    }


    #bottomToTopBtn {
        display: none;
        position: fixed;
        bottom: 15px;
        right: 20px;
        z-index: 99;
        font-size: 26px;
        border: none;
        outline: none;
        background-color: #474848;
        color: white;
        cursor: pointer;
        padding: 2px 10px;
        border-radius: 4px;
        transition: 2s ease-in-out;
    }




}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-content-wrapper {
        width: 100%;
    }

    .hero-content-top {
        width: 100%;
        height: 30vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 10px 20px;
        margin-top: 0;
    }

    .hero-main-content h1 {
        font-weight: 800;
        font-size: 26px;
    }

    .hero-main-content p {
        font-size: 16px;
    }

    .hero-main-btn-wrapper li {
        display: inline-block;
        margin: 10px 10px;
    }


    .hero-main-btn-wrapper li a {
        padding: 16px 35px;
        width: 230px;
        height: 46px;
        color: #FFFFFF;
        font-style: normal;
        font-size: 16px;
        line-height: 15px;
    }

    .swiper {
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
    }



    .client-item {
        margin: 10px auto;
    }




    .box-card {
        max-width: 340px;
        margin: 0 auto;
        min-height: 390px;
        padding: 20px;
        background-color: #fff;
        border-radius: 24px;
    }


}