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

:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

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

ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
body {
    font-family: "DM Sans", sans-serif;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    height: 100%;
    width: 100%;
}
.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

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

/* **** Header **** */
header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar {
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 15px 0px;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-collapse {
    align-items: center;
}
.navbar-light .navbar-nav {
    margin-left: auto;
}
.navbar-light .navbar-nav.right-navbar {
    align-items: center;
}
.navbar-light .navbar-nav li {
    margin-right: 50px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #000000;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar-light .navbar-nav .nav-link.tel-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 75px;
    display: flex;
    align-items: center;
    padding: 10px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}
.navbar-light .navbar-nav .nav-link.tel-link img {
    max-width: 100%;
    margin-right: 10px;
}
.navbar-light .navbar-nav .nav-link.tel-link:hover {
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
}
.dropdown .dropdown-toggle {
    box-shadow: none;
    outline: none;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown .dropdown-toggle i {
    padding-left: 10px;
}
.dropdown .dropdown-toggle:after {
    display: none;
}
.dropdown-menu {
    right: 0;
    left: auto;
    width: auto;
    width: 68px;
    max-width: 68px;
    min-width: 68px;
}
.navbar-light .navbar-nav .dropdown-menu li {
    margin: 0;
}

.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:hover {
    color: #7255b4;
}
.navbar .navbar-nav > .active > a,
.navbar .navbar-nav > .active > a:focus,
.navbar .navbar-nav > .active > a:hover {
    color: #7255b4;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #7255b4;
}
.navbar .navbar-nav > li > a.order-btn:hover {
    background-color: #333;
    color: #fff;
}

/* **** toggler **** */
.navbar-light .navbar-toggler {
    background-color: #7255b4;
    border-radius:4px;
    outline: none;
    box-shadow: none;
    border: none;
    height: 40px;
    width: 50px;
    padding: 0;
}
.navbar-light .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-light .navbar-toggler .navbar-toggler-icon {
    background-image: unset;
}
.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}
.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* **** End toggler **** */

header.nav-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header.nav-new .navbar {
    border-radius: 0;
    box-shadow: none;
}
header.nav-new .navbar-brand img{
    width: 140px;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* **** End Header **** */

/* **** Hero **** */
.hero-wrp {
    padding: 250px 0 72px;
    position: relative;
}
.hero-wrp h3 {
    font-style: italic;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    color: #7255b4;
    margin: 0;
}
.hero-wrp h2 {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 96px;
    line-height: 115px;
    letter-spacing: -0.07em;
    color: #000000;
    margin: 0 0 40px;
}
.hero-wrp p {
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    color: #6e6975;
    margin: 0 0 45px;
    width: 485px;
    margin-left: 60px;
    position: relative;
}
.hero-wrp p span {
    position: relative;
    z-index: 9;
}
.hero-wrp p:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: auto;
    background-image: url(../images/dot.png);
    top: 0;
    left: -40px;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-wrp a{
    padding: 20px 45px;
    background: #7255b4;
    box-shadow: 0px 17px 25px rgba(98, 63, 205, 0.25);
    border-radius: 51px;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    display: table;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hero-wrp a:hover{
    background-color: #000;
    color: #fff;
}
.hero-main {
    position: absolute;
    right: 10%;
    top: 5%;
    max-width: 100%;
}
/* **** End Hero **** */



/* **** propos-wrp **** */
.propos-wrp {
    padding: 80px 0 200px;
    position: relative;
}
.propos-wrp .propos-block {
    padding-left: 100px;
    position: relative;
    padding-bottom: 200px;
}
.propos-wrp .propos-block h1 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #000000;
    transform: rotate(-90deg);
    transform-origin: left;
    top: 50%;
    left: 0;
    position: absolute;
}
.propos-wrp .propos-boxs {
    width: 680px;
    position: relative;
    z-index: 9;
}
.propos-wrp .propos-box {
    background: #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 38px;
    padding: 40px 47px;
    min-height: 275px;
    margin: 0 0 40px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    overflow: hidden;
    cursor: pointer;
}
.propos-wrp .propos-box:before {
    position: absolute;
    content: "";
    background-color: #a78fff;
    left: -25px;
    top: 0;
    bottom: 0;
    border-radius: 0;
    height: 100%;
    width: 21px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.propos-wrp .propos-box.active:before,
.propos-wrp .propos-box:hover:before {
    left: 0;
    width: 21px;
    right: auto;
}
.propos-wrp .right-propos-part {
    margin: 30px 0 0;
}
.propos-wrp .right-propos-box {
    margin: 40px 0 0;
}
.propos-wrp .propos-box h3 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 0 0 12px;
}
.propos-wrp .propos-box p {
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #6e6975;
    margin: 0;
}
.propos-wrp .propos-main-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
}
/* **** End propos-wrp **** */


/* **** team-wrp **** */
.team-wrp {
    position: relative;
    padding: 0 0 100px;
}
.team-wrp .row {
    display: flex;
    align-items: center;
}

.team-wrp .team-img img {
    width: 100%;
    margin: 0 0 50px;
}
.titlebar h3 {
    font-family: Poppins;
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #7255b4;
    margin: 0 0 16px;
}
.titlebar h2 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
    margin: 0 0 15px;
}
.team-wrp .slider {
    padding-left: 0;
}
.team-wrp .slider-box {
    background: #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 46px;
    padding: 43px 60px 43px 40px;
    margin: 45px 30px 50px 95px;
}
.team-wrp .slider-box .box-head {
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}
.team-wrp .slider-box .box-head img {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    margin-right: 12px;
}
.team-wrp .slider-box .box-head h3 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 4px;
}
.team-wrp .slider-box p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #6e6975;
    margin: 0;
}
.team-wrp .slick-prev,
.team-wrp .slick-next {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 135px;
}
.team-wrp .slick-next {
    top: auto;
    top: 210px;
}

.slick-prev,
.slick-next {
    box-shadow: none;
    outline: none;
    border-radius: 0;
    border: none;
    font-size: 0;
    outline: none;
    z-index: 9;
    position: absolute;
}
.slick-prev:before,
.slick-next:before {
    position: absolute;
    content: "";
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    background-image: url(../images/arrow-left.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.slick-prev:before {
    background-image: url(../images/arrow-right.svg);
}
.slick-prev:hover:before,
.slick-next:hover:before {
    background-color: #7255b4;

    backdrop-filter: grayscale(1) contrast(3) blur(1px);
}

/* **** End team-wrp **** */


/* **** service-wrp **** */
.back-lightblue {
    background-color: rgba(171, 124, 223, 0.02);
    padding: 120px 0;
}
.service-wrp {
    padding: 0 0 52px;
}
.service-wrp .row {
    display: flex;
    align-items: center;
}
.service-wrp .titlebar h2 {
    margin: 0 0 32px;
}
.service-wrp .slider {
    padding: 0 0 100px;
    position: relative;
}
.service-wrp .slider-box p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #6e6975;
    margin: 0;
}

.service-wrp .slick-prev,
.service-wrp .slick-next {
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
}
.service-wrp .slick-prev {
    bottom: 0;
    left: 85px;
}
.service-wrp .slick-prev:before,
.service-wrp .slick-next:before {
    bottom: 0;
}

.service-block {
    padding-left: 50px;
}
.service-block .service-box {
    background: #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 50px;
    padding: 40px 20px 25px 40px;
    border: 4px solid transparent;
    margin: 0 0 30px;
    min-height: 330px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.service-block .service-box.active,
.service-block .service-box:hover {
    border-color: #ab7cdf;
}
.service-block .service-box img {
    max-width: 100%;
    margin: 0 0 16px;
}
.service-block .service-box h3 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 12px;
}
.service-block .service-box p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #6e6975;
    margin: 0;
}
.right-propos-part {
    margin: 30px 0 0;
}
.right-propos-part .right-service-box {
    margin: 30px 0 0;
}
/* **** End service-wrp **** */



/* **** video **** */
.video-wrp .titlebar h2 {
    text-align: center;
}
.video-wrp .titlebar p {
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    text-align: center;
    color: #6e6975;
    margin: 0 0 50px;
}
.video-block {
    width: 969px;
    height: 629.27px;
    margin: 0 auto;
    display: table;
    position: relative;
}
.video-block img {
    max-width: 100%;
    border-radius: 60px;
    object-position: center;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 105px;
    width: 105px;
    background: linear-gradient(162.29deg, #ffffff 48.24%, #ffffff 74.37%, #ffffff 87.44%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.play-btn:before {
    position: absolute;
    content: "";
    left: -10px;
    top: -10px;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 125px;
    width: 125px;
    border-radius: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.play-btn:after {
    position: absolute;
    content: "";
    left: -20px;
    top: -20px;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 145px;
    width: 145px;
    border-radius: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.play-btn img {
    border-radius: 0;
}
.play-btn:hover {
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.4);
}
.play-btn:hover:after,
.play-btn:hover:before {
    height: 105px;
    width: 105px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
/* **** End video **** */


/* **** dashboard **** */
.dashboard-wrp {
    padding: 140px 0 180px;
    position: relative;
}
.dashboard-wrp .row {
    display: flex;
    align-items: center;
}
.dashboard-wrp .titlebar p {
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    color: #6e6975;
    margin: 0;
}
.leptop-img img {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    display: table;
}
/* **** End dashboard **** */



/* **** locations **** */
.locations-wrp {
    padding: 0 0 50px;
}
.locations-wrp h3 {
    text-align: center;
}
.locations-wrp h2 {
    text-align: center;
    margin: 0 0 70px;
}
.locations-wrp img {
    max-width: 100%;
    margin: 0 auto;
    display: table;
}
/* **** End locations **** */



/* **** Faq **** */
.faq-wrp {
    padding: 100px 0 0;
    margin: 0 0 140px;
}

.faq-block {
    position: relative;
    padding-right: 140px;
}
.faq-block h1 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #000000;
    transform: rotate(-90deg);
    top: 100px;
    right: 0;
    position: absolute;
    transform-origin: right;
}
.faq-wrp .titlebar h3 {
    margin: 0 0 32px;
}
.faq-wrp .titlebar p {
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    color: #6e6975;
    margin: 0 0 48px;
}
.accordion .accordion-item {
    margin: 0;
    background-color: transparent;
    border: none;
    background: #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 24px;
    padding: 0 0;
    margin: 0 0 24px;
}
.accordion .accordion-item .accordion-button {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    background-color: transparent;
    position: relative;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 32px;
    color: #000000;
    padding: 0 34px 0 64px;
    min-height: 80px;
    display: flex;
    align-items: center;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #7255b4;
}
.accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.accordion .accordion-item .accordion-button::after {
    display: none;
}
.accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    left: 20px;
    top: 50%;
    font-size: 18px;
    color: #000;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #7255b4;
}
.accordion .accordion-item .accordion-button.collapsed:before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    color: #000;
}
.accordion .accordion-item .accordion-body {
    padding: 0 52px 24px 64px;
}
.accordion .accordion-item .accordion-body p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    color: #6e6975;
    margin: 0;
}
/* **** End Faq **** */

/* **** Contact **** */
.contact-wrp {
    padding: 100px 0;
    background-color: rgba(171, 124, 223, 0.02);
}
.contact-wrp .titlebar h2 {
    margin: 0 0 40px;
}
.contact-wrp .cnt-block {
    width: 1260px;
    margin-right: 25px;
    margin-left: auto;
}

.cnt-block ul li {
    margin-bottom: 32px;
    display: inline-block;
    margin-right: 25px;
}
.cnt-block ul li:last-child {
    margin-right: 0;
}
.cnt-block .form-group {
    display: flex;
    align-items: center;
}
.cnt-block .form-group label {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    color: #6e6975;
    margin: 0;
    white-space: pre;
    margin-right: 15px;
}
.cnt-block .form-group .form-control {
    background-color: #ffffff;
    border: 1px solid rgba(167, 143, 255, 0.3);
    border-radius: 77px;
    box-shadow: none;
    outline: none;
    height: auto;
    padding: 13px 21px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #7255b4;
}
.cnt-block .form-group .form-control::placeholder {
    color: #7255b4;
}
.cnt-block .form-group select.form-control {
    width: 235px;
}
.cnt-block ul li:first-child .form-group .form-control {
    width: 235px;
}
.cnt-block ul li:nth-child(3) .form-group .form-control {
    width: 290px;
}
.cnt-block ul li:last-child .form-group .form-control {
    width: 190px;
}
select.form-control {
    width: 100%;
    display: inline-block;
    margin: 0 0;
    -webkit-appearance: none;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 15px;
}
/* **** End Contact **** */

/* **** Footer **** */
footer{
    padding: 100px 0 0;
    position: relative;
}
footer .logo-box img {
    max-width: 100%;
}
.quick-box h3 {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #7255b4;
    margin: 0 0 16px;
}
.quick-box h4 {
    margin: 0 0 5px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 31px;
    color: #000000;
}
.quick-box p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #6e6975;
    margin: 0 0 12px;
}
.quick-box a {
    display: block;
    margin: 0 0 8px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #6e6975;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.quick-box a:hover{
    color: #623FCD;
    transform: translateX(5px);
}

.center-bix {
    margin: 0 auto;
    display: table;
}
.last-bix {
    margin-left: auto;
    margin-right: 0;
    display: table;
}
.copyright {
    margin: 32px 0 0;
    padding: 32px 0;
    border-top: 1px solid #ab7cdf;
}
.copyright p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 31px;
    text-align: center;
    color: #6e6975;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright p img {
    display: inline-block;
    margin-left: 5px;
}
/* **** End Footer **** */




.shap1{
    position: absolute;
    left: 0;
    top: 5%;
    width: 35%;
    z-index: -1;
}

.shap2{
    position: absolute;
    bottom: -17%;
    left: -10%;
    z-index: -1;
}
.shap3 {
    position: absolute;
    right: -10%;
    bottom: -40%;
    z-index: -1;
}
.shap4 {
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: -1;
}
.service-wrp{
    position: relative;
}
.shap5 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.video-wrp{
    position: relative;
}
.shap6 {
    position: absolute;
    right: 0;
    bottom: 15%;
    z-index: -1;
}
.shap7{
    position: absolute;
    right: 0;
    top: 70%;
    z-index: -1;
}
.locations-wrp{
    position: relative;
}
.shap8{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.faq-wrp{
    position: relative;
}
.shap9{
    position: absolute;
    right: 0;
    top:-500px;
    z-index: -1;
}
.shap10{
    position: absolute;
    right: -5%;
    top: -50%;
    width: 100%;
    z-index: -1;
}



.contact-wrp .btn-box{
    display: flex;
    align-items: center;
}
.contact-wrp .tel-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff;
    box-shadow: 0px 30px 60px rgba(167, 143, 255, 0.08);
    border-radius: 75px;
    display: flex;
    align-items: center;
    padding: 10px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrp .tel-link img {
    max-width: 100%;
    margin-right: 10px;
}
.contact-wrp .tel-link:hover {
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
}
.contact-wrp .btn-main{
    padding: 20px 45px;
    background: #623FCD;
    box-shadow: 0px 12px 18px rgba(98, 63, 205, 0.2);
    border-radius: 51px;
    box-shadow: 0px 17px 25px rgba(98, 63, 205, 0.25);
    border-radius: 51px;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    display: table;
    margin-right: 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrp .btn-main:hover{
    background-color: #000;
    color: #fff;
}


.dropdown-mobile{
    display: none;
}


/* **** fullscreen-navigation-holder **** */
.modal-dialog{
    max-width: 969px;
}
.modal-dialog .modal-content{
    padding: 0;
    border-radius: none;
    box-shadow: none;
    position: relative;
    border-radius: 60px;
}
.modal-dialog .modal-content .btn-close{
    background-image: unset;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    position: absolute;
    right: -40px;
    top: -40px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: #ffffff;
    color: #000;
    font-size: 20px;
    box-shadow: 0px 30px 60px rgb(167 143 255 / 8%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.modal-body{
    width: 100%;
    height: 629.27px;
    width: 100%;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
}
.modal-body iframe{
    height: 100%;
    width: 100%;
}
/* **** End fullscreen-navigation-holder **** */



.select2-container--default .select2-selection--single{
    border:none;
}
.select2-container .select2-selection--single{
    height: auto;
    border:none;
    background-color: transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    background-color: #ffffff;
    border: 1px solid rgba(167, 143, 255, 0.3);
    border-radius: 77px;
    box-shadow: none;
    outline: none;
    height: auto;
    padding: 13px 21px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #7255b4;
    position: relative;
}
.select2-container--default .select2-selection--single .select2-selection__rendered:before{
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    background-size: contain;
    background-position: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}

.select2-search--dropdown{
    display: none !important;
}
.select2-container--open .select2-dropdown--below {
    border-radius: 4px;
    border: 1px solid rgba(167, 143, 255, 0.3);
    padding: 0;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-results__option--selectable:hover,
.select2-container--default .select2-results__option--selected{
    background-color: #623FCD;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}