@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    font-weight: 500;
    line-height: 25px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'lavish';
    src: url(../fonts/lavish.otf);
    font-weight: 400;
    font-style: normal
}
/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'lavish';
    font-size: 87px;
    line-height: 74px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'lavish';
    font-size: 60px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    /* margin: 0 0 30px; */
}

h3 {
    font-family: 'lavish';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'lavish';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'lavish';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 16px 0;
}
header {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.menuSec img {
    margin: 0;
}
.Get_Started a {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 auto;
    width: 191px;
    height: 60px;
    background: #fff;
    border-radius: 50px;
    gap: 19px;
    color: #000;
    font-weight: 600;
    padding: 5px;
}

.Get_Started a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #6c53a1;
    color: #fff;
    font-size: 27px;
    transform: rotate(45deg);
}

.menuSec .row {
    align-items: center;
}
.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 37px;
    justify-content: start;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    /* padding: 10px 23px; */
    font-size: 14px;
}

.menuSec ul li a:after {
    /* content: ''; */
    /* position: absolute; */
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.main_slider{
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 35px;
}
section.main_slider.inner-banner {
    padding: 180px 0 85px;
}
.banner_content {
    text-align: center;
}

.banner_content p {
    color: #ffffffab;
    font-size: 14px;
}

.banner_content a {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 auto;
    width: 228px;
    height: 60px;
    background: #fff;
    border-radius: 50px;
    gap: 19px;
    color: #000;
    font-weight: 600;
    padding: 5px;
}

.banner_content a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #6c53a1;
    color: #fff;
    font-size: 27px;
    transform: rotate(45deg);
}

.banner_text {
    background: #6c53a1;
    border: 6px solid #fff;
    text-align: center;
    border-radius: 11px;
    padding: 17px;
}

.banner_card {
    border: 0 solid #fff;
    background: #fff;
    border-radius: 10px;
}

.banner_card img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 17px;
    border: 8px solid #fff;
}

.banner_text h4 {
    color: #fff;
    margin-bottom: 3px;
}

.banner_text p {
    color: #ffffffa6;
    font-size: 14px;
    margin: 0;
}
/*banner css end*/
section.About_sec {
    padding: 100px 0;
}

.about_text h4 {
    padding-left: 25px;
    font-size: 26px;
    color: #000;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.about_text h4:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #6c53a1;
    left: 6px;
    bottom: 12px;
    border-radius: 50px;
}

.about_text h2 {
    font-size: 60px;
    color: #000;
    margin-bottom: 8px;
}

.about_text p {
    color: #7c7c7c;
}

.years {
    display: flex;
    align-items: center;
    gap: 34px;
    justify-content: end;
}

.years h5 {
    font-size: 60px;
    margin-bottom: 0;
}
p.years_para {
    width: 131px;
}

.about_text a {
    display: flex;
    justify-content: end;
    align-items: center;
    /* margin: 0 auto; */
    width: 196px;
    height: 60px;
    background: #6c53a1;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.about_text a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #6c53a1;
    font-size: 27px;
    transform: rotate(45deg);
}

.about_img img {
    height: 485px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.serives_content {
    text-align: center;
    padding: 0  0 20px 0;
    border-bottom: 2px dashed #7c7c7c;
}
.serives_content h4 {
    font-size: 25px;
    color: #000;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    width: 10%;
    margin: 0 auto;
}

.serives_content h4:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #6c53a1;
    left: 7px;
    bottom: 11px;
}
section.our_services {
    padding: 0 0 100px 0;
}
section.our_services.inner-serives {
    padding-top: 100px;
}
.services_text {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 35px 0;
    border-bottom: 2px dashed #7c7c7c;
    position: relative;
    z-index: 1;
}
.services_text:hover img {
    display: block;
}
.services_text img {
    position: absolute;
    right: 34px;
    width: 220px;
    height: 246px;
    object-fit: cover;
    border-radius: 11px;
    box-shadow: 0 0 19px 0 #908f86;
    object-position: -35px;
    display: none;
}
.services_text h2 {
    font-size: 28px;
    color: #7c7c7c;
    width: 27%;
}

.services_text p {
    width: 36%;
    color: #7c7c7c;
}
.servies_btn {
    padding: 20px 0;
}
.servies_btn a {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 auto;
    width: 196px;
    height: 60px;
    background: #6c53a1;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.servies_btn a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #6c53a1;
    font-size: 27px;
    transform: rotate(45deg);
}
.services_text:hover h2 {
    color: #000;
}



.services_text:hover {
    border-bottom: 2px solid #6c53a1;
}

.serives_content:hover {
    border-bottom: 2px solid #6c53a1;
}

.Why-chose-us{
    background-image: url(../images/why-schose-us.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.why_chose_us_content {
    text-align: center;
}

.why_chose_us_content h4 {
    color: #fff;
    font-size: 25px;
    padding-left: 15px;
    position: relative;
    z-index: 1;
    MARGIN: 0 auto;
    width: 17%;
}

.why_chose_us_content h4:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #FFF;
    LEFT: 11px;
    bottom: 12px;
    border-radius: 50px;
}

.why_chose_us_content h2 {
    color: #fff;
    font-size: 60px;
}

.why_chose_us_content p {
    color: #fff;
}

.why_text {
    background: #fff;
    padding: 50px 52px;
    border-radius: 12px;
}

.why_text h3 {
    margin-bottom: 0;
    margin-top: 26px;
    font-weight: 500;
    color: #000;
}
.why_text p {
    color: #7c7c7c;
    margin: 0;
}
.Shared_sec {
    padding: 100px 0;
}

.Shared_img img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* FAQ wrapper */
.faq {
    /* max-width: 700px; */
    /* margin: 50px auto; */
}

/* Item */
.faq-item {
    border-bottom: 1px dashed #cfcfcf;
}

/* Button */
.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-family: 'lavish';
}

/* Arrow */
.faq-btn .arrow {
    font-size: 26px;
    transition: 0.3s;
    color: #c9c0dc;
}

/* Active */
.faq-btn.active {
    color: #000;
    border-bottom: 2px solid #624c93;
}

.faq-btn.active .arrow {
    transform: rotate(0deg);
    color: #624c93;
}

/* Content */
.faq-content {
    display: none;
    padding: 10px 0 20px;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Show active */
.faq-content.show {
    display: block;
}
.Shared_text h4 {
    font-size: 25px;
    padding-left: 15px;
    position: relative;
    z-index: 1;
}

.Shared_text h4:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #764c93;
    left: 0;
    top: 8px;
    border-radius: 50px;
}

.Shared_text h2 {
    color: #000;
    font-size: 60px;
    margin-bottom: 0;
}

.Shared_text p {
    color: #7c7c7c;
    margin-bottom: 0;
}

/*Footer css Ends*/

.left-text ul li {
    margin: 0 0 20px 0;
}

.left-text ul li a i,
.left-text ul li span i {
    color: #fff !important;
    font-size: 23px;
    /* padding-right: 20px; */
    /* margin-bottom: 28px; */
}

.left-text ul li a,
.left-text ul li span {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.left-text ul li a p:hover {
    color: #80a697;
    transition: ease-out;
    transition-duration: 0.2s;
}

.left-text ul li p {
    font-size: 13px;
    line-height: 25px;
    color: #fefefe;
    font-weight: 400;
    margin: 0;
}

footer {background-image: url(../images/why-schose-us.jpg);background-repeat: no-repeat;background-size: cover;padding: 0;position: relative;}
footer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #ffffff66;
    top: 65px;
    left: 0;
}
.middle-text p {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    text-transform: lowercase;
    width: 85%;
    margin: 17px auto;
}

.ftr-inp form button:hover {
    background: #ea812c;
}

footer h6 {
    font-size: 25px;
    color: #ffff;
    text-align: center;
    font-weight: 400;
    margin-bottom: 14px;
    font-family: 'lavish';
}

.right-text ul li a {
    color: #fefefe;
    font-size: 16px;
    line-height: 38px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    text-transform: capitalize;
    transition: ease-in;
    transition-duration: 0.2s;
}

.right-text ul li a:hover {
    color: #80a697;
    transition: ease-out;
    transition-duration: 0.2s;
}

.bottom-footer p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
    padding: 10px 0;
    text-align: center;
    line-height: 29px;
    width: 203%;
}

.bottom-footer {
    /* background: #1d1d1d; */
    border-top: 1px solid #ffffff4d;
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 51px;
}

.left-text {
    padding: 0 0 0 100px;
}

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

.right-text ul li {
    margin-bottom: 3%;
}

.ftr-bottom {
    padding: 0;
    position: relative;
}

.ftr-inp form input {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border-radius: 10px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
}

.ftr-inp {
    position: relative;
    margin-bottom: 20px;
}

.ftr-inp form {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.ftr-inp form button {
    border: unset;
    background: #80a697;
    color: #dff;
    width: 16%;
    height: 40px;
    transition: 0.5s;
    border-radius: 100px;
    margin-top: 0;
    position: absolute;
    top: 8%;
    right: 5px;
}

.ftr-l img {
    width: 12%;
}

.bottom-footer .row {
    align-items: center;
}

.bottom-footer img {
    margin: 0 0 0 auto;
    display: block;
}

.double-links {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 80px;
    text-align: start;
}

.ftr-inp form input::placeholder {
    color: #000;
}

.ftr-bottom:before {
    position: absolute;
    content: '';
    background: #ffffff4d;
    width: 1px;
    height: 77%;
    top: 67px;
    left: 29%;
    z-index: 1;
}

.ftr-bottom:after {
    position: absolute;
    content: '';
    background: #ffffff4d;
    width: 1px;
    height: 77%;
    top: 67px;
    right: 30%;
    z-index: 1;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background-color: #0000;
    color: #ffffff69;
    border: 1px solid #ffffff69;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-socials ul li a i:hover {
    background-color: #6c53a1;
    color: #fff;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.2s;
}

footer .left-text h6 {
    text-align: start;
}

.middle-text {
    position: relative;
    top: 90px;
}

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

.right-text,
.left-text {
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-main {
    position: relative;
}

/*Footer css Ends*/
.testi_box {
    background: #f2f2f2;
    padding: 33px 15px;
    padding-left: 27px;
    width: 300px;
    border-radius: 10px;
}
.testi_box img {
    height: 62px;
    width: 64px;
    object-fit: cover;
    border-radius: 50px;
    object-position: top;
}

.testi_box p {
    font-style: italic;
    color: #7c7c7c;
    padding-top: 33px;
}

.testi_box h5 {
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    padding-top: 24px;
}

.testi_box span {
    color: #7c7c7c;
    font-size: 14px;
}
.Testimonials_sec {
    padding-bottom: 100px;
}

.Testimonials_Content {
    text-align: center;
}

.Testimonials_Content h4 {
    position: relative;
    z-index: 1;
    padding-left: 15px;
    width: 13%;
    margin: 0 auto;
}

.Testimonials_Content h4:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #624c93;
    left: 3px;
    top: 7px;
    border-radius: 50px;
}
.Testimonials_Content p {
    color: #7c7c7c;
}
.testi_slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2 !important;
}
.testi_box:hover {
    background: #fff;
    box-shadow: 0 0 7px 0px #7c7c7c;
}

.testi_slider .slick-list.draggable {
    padding: 15px 0;
}

.testi_slider .slick-prev::before {
    content: '\f060';
    font-family: 'FontAwesome';
    color: #ffffff;
    border: 1px solid;
    border-radius: 45px;
    height: 50px;
    width: 50px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: -13px;
    background: #6c53a1;
}
.testi_slider .slick-next:before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: #ffffff;
    border: 1px solid;
    border-radius: 50px;
    height: 50px;
    width: 51px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: -13px;
    background: #6c53a1;
    opacity: 1;
}

/*Contact Us Page Css Starts */

section.contact-banner-sec {
  background-image: url("../images/inner-banner5.jpg");
}

.contact-page-sec {
  background: #fff;
  padding-top: 100px;
}

/* LEFT FORM */

.contact-form .contact-input {
  height: 52px;

  border: 1px solid #e3e3e3;

  border-radius: 0;

  padding: 0 18px;

  font-family: "Oswald", sans-serif;

  font-size: 16px;

  color: #333;
}

.contact-form .contact-input:focus,
.contact-form .contact-textarea:focus {
  border-color: #d1d1d1;

  box-shadow: none;
}

.contact-textarea {
  min-height: 230px;

  border: 1px solid #e3e3e3;

  border-radius: 0;

  padding: 16px 18px;

  resize: none;

  font-family: "Oswald", sans-serif;

  font-size: 16px;

  color: #333;

  height: 200px;
}
.contact-submit-btn i{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #6c53a1;
    font-size: 27px;
    transform: rotate(45deg);
}
.contact-submit-btn {
   display: flex;
   justify-content: end;
   align-items: center;
   margin: 0 auto;
   width: 202px;
   height: 60px;
   background: #6c53a1;
   border-radius: 50px;
   gap: 19px;
   color: #ffffff;
   font-weight: 600;
   padding: 5px;
   border: none;
}

.contact-submit-btn:hover {
  /* background: #fff; */
  /* color: var(--bk); */
  /* border-color: var(--bk); */
}

/* RIGHT INFO */

.contact-info-wrap {
  padding-left: 30px;
}

.contact-info-title {
  font-family: "Oswald";

  font-size: 40px;

  line-height: 1.1;

  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

.contact-info-item {
  display: flex;

  align-items: flex-start;

  gap: 16px;
}

.contact-info-icon {
  color: var(--ct1);

  font-size: 26px;

  line-height: 1;

  margin-top: 6px;

  min-width: 28px;
}

.contact-info-text h4 {
  font-family: "Oswald";

  font-size: 22px;

  line-height: 1.2;

  margin-bottom: 6px;

  color: #111;
}

.contact-info-text p {
  font-family: "Oswald", sans-serif;

  font-size: 18px;

  color: #333;
}

/* SOCIALS */

.contact-socials {
  display: flex;

  gap: 10px;

  margin-top: 30px;
}

.c-social {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 38px;

  width: 38px;

  border-radius: 100px;

  color: #fff;

  font-size: 16px;

  transition: 0.3s ease;
}

.c-social:hover {
  transform: translateY(-2px);
}

/* Colors like screenshot */

.c-social.fb {
  background: #1877f2;
}

.c-social.tw {
  background: #1da1f2;
}

.c-social.ig {
  background: #e1306c;
}

.c-social.gp {
  background: #db4437;
}

.contact-map iframe {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 600px;

  width: 100%;

  margin: 100px 0 0 0;
}

/*Contact Us Page Css Ends */
/* Book Page Css Starts */

.book-sec {
  background: #f6f6f6;
  padding-top: 100px;
  padding-bottom: 100px;
}

.book-form .row {
  row-gap: 25px;
}

.book-field {
  width: 100%;
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  height: 55px;

  border: 1px solid #d8d8d8;
  border-radius: 4px;

  padding: 0 18px;

  font-size: 15px;
  font-family: "Poppins";

  background: #fff;

  color: #6b6b6b;
}

.book-field textarea {
  height: 180px;
  padding: 18px;
  resize: none;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  border-color: var(--ct3);
}

.book-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.book-btn button i{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #6c53a1;
    font-size: 27px;
    transform: rotate(45deg);
}
.book-btn button {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 auto;
    width: 191px;
    height: 60px;
    background: #6c53a1;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
    border: none;
}



/* Book Page Sec Css Ends */