/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: 'Roboto';
}

.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: #e94659;
    font-weight: 700;
    font-size: 26px;
}

a {
    text-decoration: none;
}

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


/*-------------------- 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: 318px;
    background: #e94659;
    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: 94px;
    padding-left: 0;
    margin-bottom: 65px;
    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: 200px;
    height: 60px;
    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: 18px;
    margin: 0 auto
}

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


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


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

.header__area {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding: 20px 0px;
    background: #fff;
}

.site__logo {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 175px;
}

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

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

.main__menu ul li {
    display: inline-block;
    margin-left: 50px;
}

.main__menu ul li:first-child {
    margin-left: 0;
}

.main__menu ul li a {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    transition: .3s;
    font-weight: 500;
}

.main__menu ul li a:hover {
    color: #e94659;
}

.main__menu ul li:last-child a {
    width: 180px;
    height: 54px;
    background-color: #e94659;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    letter-spacing: 1px;
	color: #fff;
}

.main__menu ul li:last-child a:hover {
    background-color: #fff;
    color: #e94659;
}

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


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

.hero__area {
    position: relative;
    z-index: 1;
    padding-top: 300px;
    padding-bottom: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.hero__area::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    content: "";
    z-index: -1;
    opacity: .8;
}

.hero__main__blk h1 {
    color: #fff;
    font-size: 70px;
    margin-bottom: 0px;
}

.hero__main__blk h4 {
    font-size: 45px;
    color: #fff;
    margin-bottom: 30px;
}

.hero__main__blk p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero__main__blk a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 234px;
    height: 62px;
    background-color: #e94659;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    transition: .4s;
    font-weight: 400;
}

.hero__main__blk a:hover {
    background-color: #fff;
    color: #e94659;
}

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


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

.service__single__blk {
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 15px 17px rgba(0, 0, 0, 0.2);
    height: 100%;
    padding: 30px;
    transition: .3s;
}

.service__area {
    padding-bottom: 120px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.service__img {
    margin-bottom: 20px;
    height: 65px;
}

.service__img img {
    height: 100%;
}

.service__content h4 {
    margin-bottom: 3px;
    transition: .3s;
}

.service__content p {
    color: #1d1d1b;
    margin-bottom: 0;
    font-size: 16px;
    transition: .3s;
}

.service__single__blk:hover {
    background-color: #e94659;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.service__single__blk:hover .service__img img {
    filter: brightness(100);
}

.service__single__blk:hover .service__content h4 {
    color: #fff;
}

.service__single__blk:hover .service__content p {
    color: #fff;
}

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


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

.about__area {
    padding-bottom: 150px;
    padding-top: 40px;
}

.about__left__blk img {
    width: 100%;
}

.about__right__blk {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__right__blk>span {
    text-transform: uppercase;
    color: #e94659;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}

.about__right__blk>h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about__right__blk>p {
    color: #1d1d1b;
    font-size: 16px;
}

.about__info {
    border-left: 5px solid #e94659;
    padding-left: 30px;
    margin-left: 50px;
    margin-bottom: 40px;
}

.about__info p {
    font-size: 20px;
    color: #1d1d1b;
    margin-bottom: 0;
}

.about__info p:first-child {
    font-size: 16px;
    padding-right: 100px;
}

.about__right__blk a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 234px;
    height: 62px;
    background-color: #e94659;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    transition: .4s;
    font-weight: 400;
    border: 1px solid transparent;
}

.about__right__blk a:hover {
    background-color: #fff;
    color: #e94659;
    border: 1px solid #e94659;
}

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


/*-------------------- Solution area css start --------------------*/

.solution__area {
    background-color: #e94659;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 60px;
}

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

.solution__content span {
    display: block;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 18px;
}

.solution__content h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}

.solution__content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.solution__content ul li {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
}

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

.solution__content ul li i {
    margin-right: 15px;
}

.solution__content {
    padding-left: 50px;
}

.solution__img2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.solution__content.solution2 {
    padding-left: 0;
    padding-right: 50px;
}

.solution__area.solution2 {
    background-color: #3d3d3c;
    padding-top: 115px;
    padding-bottom: 100px;
}

/*-------------------- Solution area css end --------------------*/


/*-------------------- Approach area css start --------------------*/

.approach__area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.approach__title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.approach__title h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.approach__title p {
    font-size: 20px;
    color: #1d1d1b;
    margin-bottom: 0;
}

.service__single__blk.approach {
    height: auto;
    margin-bottom: 45px;
    min-height: 280px;
}

/*-------------------- Approach area css end --------------------*/


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

.testimonial__area {
    background-color: #e94659;
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonial__title {
    margin-bottom: 60px;
}

.testimonial__title h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 0;
}

.testimonial__quote {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.testimonial__info p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial__info {
    text-align: center;
    margin-bottom: 45px;
}

.testimonial__single__slide {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial__user__img {
    max-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

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

.testimonial__user__info {
    text-align: center;
}

.testimonial__user__info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial__user__info p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
}

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


/*-------------------- Contact area css start --------------------*/

.contact__area {
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact__area::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: #1d1d1b;
    content: "";
    z-index: -1;
}

.contact__title {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    text-align: center;
}

.contact__title p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact__title h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}

.contact__wrap {
    background-color: #fff;
    padding: 50px 150px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
}

.contact__form__single label {
    display: block;
    color: #1d1d1b;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.contact__form__single input {
    width: 100%;
    height: 54px;
    padding: 10px 20px;
    color: #1d1d1b;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #1d1d1b;
    outline: none;
}

.contact__form__single {
    margin-bottom: 45px;
}

.contact__form__single textarea {
    width: 100%;
    height: 170px;
    padding: 20px 20px;
    color: #1d1d1b;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #1d1d1b;
    outline: none;
    resize: none;
}

.contact__form__btn {
    display: flex;
    justify-content: end;
}

.contact__form__btn button {
    width: 180px;
    height: 54px;
    border: none;
    outline: none;
    background-color: #e94659;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
}

.contact__form__btn button:hover {
    background-color: #1d1d1b;
}

/*-------------------- Contact area css end --------------------*/


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

.footer__area {
    background-color: #272b36;
    padding-top: 65px;
    padding-bottom: 30px;
}

.footer__logo {
    max-width: 190px;
    margin-bottom: 60px;
}

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

.footer__first__contact ul li {
    margin-bottom: 10px;
}

.footer__first__contact ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: .3s;
    display: flex;
    align-items: center;
}

.footer__first__contact ul li a i {
    width: 25px;
    margin-right: 15px;
    color: #e94659;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__first__contact ul li a:hover {
    color: #e94659;
}

.footer__menu h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer__menu ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: .3s;
}

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

.footer__menu ul li a i {
    color: #e94659;
    margin-right: 20px;
}

.footer__title h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
}

.footer__title {
    margin-bottom: 30px;
}

.footer__subscribe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60px;
}

.footer__subscribe input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
}

.footer__subscribe button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 42px;
    background-color: #e94659;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    transition: .3s;
}

.footer__subscribe button:hover {
    background-color: #272b36;
}

.footer__subscribe__content p {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
}

.footer__subscribe__content {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e94659;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.footer__social a:hover {
    background-color: #fff;
    color: #e94659;
}

.copyright__area {
    background-color: #272b36;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer__copy__content span {
    color: #b2b2b2;
    font-size: 16px;
    font-weight: 300;
}

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


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

.hero__area.hero__about {
    padding-top: 200px;
    padding-bottom: 140px;
}

.about__area.about2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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


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