* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

body {
    font-weight: normal;
    font-family: Montserrat
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px
    }
}

@media (max-width: 960px) {
    .container {
        max-width: 640px
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 100%
    }
}

a {
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}

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

@media (max-width: 960px) {
    .header .flex {
        justify-content: space-between
    }
}

.header .logo {
    width: 84px;
    height: 60px
}

.header .logo img {
    display: block
}

.header nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 350px
}

@media (max-width: 1200px) {
    .header nav {
        width: 290px
    }
}

@media (max-width: 960px) {
    .header nav {
        display: none
    }
}

.header nav a {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000
}

.header .phone {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-right: 30px;
}

@media (max-width: 960px) {
    .header .phone {
        display: none
    }

    .header .social {
        display: none;
    }
}

.header .btn-group {
    display: flex;
    align-items: center;
    margin-left: auto
}

@media (max-width: 960px) {
    .header .btn-group {
        display: none
    }
}

.header .btn-group .btn {
    width: 170px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    line-height: 20px;
    text-align: center;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s
}

.header .btn-group .btn.btn-stroke {
    border: 1px solid #95909B;
    color: #95909B
}

.header .btn-group .btn.btn-fill {
    background: #95909B;
    border: 1px solid #95909B;
    color: #fff
}

.header .burger {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 20px
}

@media (min-width: 960px) {
    .header .burger {
        display: none
    }
}

.header .burger span {
    width: 35px;
    height: 2px;
    background-color: #95909B
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s
}

.sidebar.show {
    visibility: visible;
    opacity: 1
}

.sidebar .content {
    padding: 30px;
    position: relative
}

.sidebar .close {
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../img/svg/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 20px;
    right: 20px
}

.sidebar nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.sidebar nav a {
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000
}

.sidebar .phone {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-right: 20px;
}

.sidebar .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap
}

.sidebar .btn-group .btn {
    width: 170px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s
}

.sidebar .btn-group .btn.btn-stroke {
    border: 1px solid #95909B;
    color: #95909B
}

.sidebar .btn-group .btn.btn-fill {
    background: #95909B;
    border: 1px solid #95909B;
    color: #fff
}

.contacts-sidebar{
    display: flex;
    justify-content: center;
}

.sidebar .social{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    padding: 52px 0 400px 0;
    border-top: 1px solid #F7F5F9
}

@media (max-width: 960px) {
    .footer {
        padding: 52px 0 52px 0
    }
}

.footer .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

@media (max-width: 960px) {
    .footer .flex .item {
        width: 50%;
        margin-bottom: 40px
    }
}

@media (max-width: 640px) {
    .footer .flex .item {
        width: 100%
    }
}

.footer .flex .item .url {
    margin-bottom: 10px
}

.footer .flex .item .url a {
    font-weight: normal;
    font-size: 15px;
    line-height: 40px;
    color: #000000;
    display: inline-block
}

.footer .flex .item .copyright {
    margin-top: 65px;
    font-weight: normal;
    font-size: 15px;
    line-height: 40px;
    color: #95909B
}

.footer .flex form {
    display: flex;
    align-items: center;
    margin-bottom: 40px
}

.footer .flex form input {
    background: #F7F5F9;
    height: 48px;
    width: 234px;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    padding: 0 20px;
    color: #000000;
    border: 0;
    outline: none;
    font-weight: normal;
    font-family: Montserrat
}

.footer .flex form button {
    background: #1A051D;
    cursor: pointer;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    height: 48px;
    width: 136px;
    border: 0;
    font-weight: normal;
    font-family: Montserrat
}

.footer .flex .social a {
    display: inline-block;
    margin-right: 20px;
    text-decoration: none
}

.Banner {
    padding: 226px 0 126px;
}

@media (max-width: 640px) {
    .Banner {
        padding: 130px 0 60px 0
    }
}

.Banner h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    max-width: 538px;
    margin: 0 auto 20px auto
}

.Banner h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin: 0 0 50px 0
}

.Banner .btn-group {
    width: 370px;
    margin: 0 auto
}

@media (max-width: 640px) {
    .Banner .btn-group {
        width: 100%
    }
}

.Banner .btn-group .btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s
}

.Banner .btn-group .btn.btn-fill {
    text-transform: uppercase;
    color: #FFFFFF;
    height: 48px;
    background: #FF647C;
    margin-bottom: 20px
}

.Banner .btn-group .btn.btn-fill:hover {
    background-color: #dc556a
}

.Banner .btn-group .btn.btn-stroke {
    height: 40px;
    border: 1px solid #95909B;
    border-radius: 6px;
    background: #fff;
    color: #95909B;
    width: 170px
}

@media (max-width: 640px) {
    .Banner .btn-group .btn.btn-stroke {
        width: 100%;
        margin-top: 20px
    }
}

.Banner .btn-group .btn.btn-stroke:hover {
    border: 1px solid #6c6971;
    color: #6c6971
}

.Banner .btn-group .flex-btn {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 640px) {
    .Banner .btn-group .flex-btn {
        flex-wrap: wrap
    }
}

.Advantages {
    padding-bottom: 100px
}

.Advantages h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin: 0 0 76px 0
}

.Advantages .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px
}

@media (max-width: 960px) {
    .Advantages .row {
        flex-wrap: wrap
    }
}

.Advantages .row:nth-child(odd) .info {
    margin-left: 30px
}

@media (max-width: 960px) {
    .Advantages .row:nth-child(odd) .info {
        margin: 20px 0
    }
}

.Advantages .row:nth-child(2n) {
    justify-content: flex-start
}

@media (max-width: 960px) {
    .Advantages .row:nth-child(2n) {
        justify-content: center;
        flex-direction: column-reverse
    }
}

.Advantages .row:nth-child(2n) .info {
    margin-right: 30px;
    text-align: right;
    margin-left: 60px
}

@media (max-width: 960px) {
    .Advantages .row:nth-child(2n) .info {
        text-align: center;
        margin: 20px 0
    }
}

.Advantages .row:nth-child(2n) .info h3 {
    margin-left: auto
}

.Advantages .row .image {
    min-width: 370px;
    width: 370px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden
}

@media (max-width: 640px) {
    .Advantages .row .image {
        min-width: 100%;
        width: 100%
    }
}

.Advantages .row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.Advantages .row .info {
    width: 470px;
    min-width: 470px;
    margin-left: 30px
}

@media (max-width: 960px) {
    .Advantages .row .info {
        width: 100%;
        min-width: 100%;
        margin: 20px 0;
        text-align: center
    }
}

.Advantages .row .info .small-title {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #95909B
}

.Advantages .row .info h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin-bottom: 10px;
    max-width: 232px
}

@media (max-width: 960px) {
    .Advantages .row .info h3 {
        max-width: 100%
    }
}

.Advantages .row .info p {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #95909B
}

.Advantages .show-more {
    margin-top: 80px
}

.Advantages .show-more h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #000000;
    margin-bottom: 13px
}

.Advantages .show-more .btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    width: 304px;
    margin: 0 auto
}

@media (max-width: 640px) {
    .Advantages .show-more .btn {
        width: 100%
    }
}

.Advantages .show-more .btn.btn-fill {
    text-transform: uppercase;
    color: #FFFFFF;
    height: 48px;
    background: #FF647C
}

.Advantages .show-more .btn.btn-fill:hover {
    background-color: #dc556a
}

.team-work {
    padding-bottom: 80px
}

.team-work h2 {
    margin: 0 0 30px 0;
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000
}

.team-work .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 46px
}

@media (max-width: 640px) {
    .team-work .tabs {
        flex-wrap: wrap
    }
}

.team-work .tabs li {
    list-style: none;
    cursor: pointer
}

@media (max-width: 640px) {
    .team-work .tabs li {
        width: 100%;
        text-align: center;
        margin-bottom: 10px
    }
}

.team-work .tabs li.active a {
    background: linear-gradient(194.93deg, #BD7AE3 0%, #8461C9 100%);
    color: #FFFFFF
}

.team-work .tabs li a {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    align-items: center;
    text-align: center;
    color: #1A051D;
    height: 48px;
    padding: 0 40px;
    display: inline-flex;
    justify-content: center;
    border-radius: 6px
}

.team-work .js-tab-content {
    display: none
}

.team-work .js-tab-content.active {
    display: block
}

.team-work .flex {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 1200px) {
    .team-work .flex {
        flex-wrap: wrap
    }
}

.team-work .flex .image {
    border-radius: 12px;
    width: 370px;
    min-width: 370px;
    height: 260px;
    overflow: hidden;
    margin-right: 30px
}

@media (max-width: 1200px) {
    .team-work .flex .image {
        margin-right: 0
    }
}

@media (max-width: 640px) {
    .team-work .flex .image {
        width: 100%;
        min-width: 100%
    }
}

.team-work .flex .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.team-work .flex .info {
    width: 600px;
    min-width: 600px
}

@media (max-width: 1200px) {
    .team-work .flex .info {
        width: 100%;
        min-width: 100%;
        text-align: center
    }
}

.team-work .flex .info h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 60px;
    margin-bottom: 30px;
    color: #000000
}

.team-work .flex .info p {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #000000
}

.All-possibilities {
    padding-bottom: 130px
}

.All-possibilities h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin: 0 0 50px 0
}

.All-possibilities .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px
}

.All-possibilities .flex .item {
    width: 16.66%
}

@media (max-width: 960px) {
    .All-possibilities .flex .item {
        margin-bottom: 20px;
        width: 25%
    }
}

@media (max-width: 640px) {
    .All-possibilities .flex .item {
        width: 50%
    }
}

.All-possibilities .flex .item .image {
    width: 100px;
    min-width: 100px;
    border-radius: 12px;
    height: 100px;
    overflow: hidden;
    margin: 0 auto
}

.All-possibilities .flex .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.All-possibilities .flex .item h4 {
    margin-top: 20px;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    text-align: center
}

.All-possibilities .btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    width: 304px;
    margin: 0 auto
}

@media (max-width: 640px) {
    .All-possibilities .btn {
        width: 100%
    }
}

.All-possibilities .btn.btn-fill {
    text-transform: uppercase;
    color: #FFFFFF;
    height: 48px;
    background: #FF647C
}

.All-possibilities .btn.btn-fill:hover {
    background-color: #dc556a
}

.Tarif {
    padding-bottom: 270px
}

@media (max-width: 960px) {
    .Tarif {
        padding-bottom: 100px
    }
}

.Tarif h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin: 0 0 10px 0
}

.Tarif .small-title {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #95909B;
    text-align: center;
    margin-bottom: 50px
}

.Tarif .owl-nav button {
    cursor: pointer;
    outline: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    background-color: #FF647C !important;
    color: #fff !important
}

.Tarif .owl-nav .owl-prev {
    left: 0
}

.Tarif .owl-nav .owl-next {
    right: 0
}

.Tarif .owl-nav span {
    outline: none !important;
    display: block;
    height: 60px;
    width: 60px;
    font-size: 42px
}

.Tarif .flex {
    position: relative
}

.Tarif .flex .item {
    background: #FFFFFF;
    padding: 50px 30px 70px 30px;
    border: 1px solid #ECEBED;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    margin: 1px;
    display: flex;
    flex-direction: column
}

@media (max-width: 640px) {
    .Tarif .flex .item {
        padding: 20px 20px 20px 20px
    }
}

.Tarif .flex .item:hover {
    border: 1px solid #d3d2d4
}

.Tarif .flex .status {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #000000;
    margin-bottom: 6px
}

@media (max-width: 1200px) {
    .Tarif .flex .status {
        font-size: 18px;
        line-height: normal
    }
}

.Tarif .flex .grow {
    flex-grow: 3
}

.Tarif .flex .info {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #95909B;
    margin-bottom: 33px;
    min-height: 40px
}

@media (max-width: 1200px) {
    .Tarif .flex .info {
        font-size: 12px
    }
}

.Tarif .flex .price {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #000000
}

.Tarif .flex .moth {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #95909B;
    margin-bottom: 40px
}

.Tarif .flex p {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #1A051D
}

.Tarif .flex .btn {
    margin-top: 26px;
    background: #ECEBED;
    border-radius: 6px;
    height: 48px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #95909B;
    transition: 0.3s
}

.Tarif .flex .btn:hover {
    background-color: #cecdd0;
    color: #fff
}

.Reviews {
    padding-bottom: 100px
}

.Reviews .owl-nav button {
    cursor: pointer;
    outline: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    background-color: #FF647C !important;
    color: #fff !important
}

.Reviews .owl-nav .owl-prev {
    left: 0
}

.Reviews .owl-nav .owl-next {
    right: 0
}

.Reviews .owl-nav span {
    outline: none !important;
    display: block;
    height: 60px;
    width: 60px;
    font-size: 42px
}

.Reviews h2 {
    margin: 0 0 47px 0;
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000
}

.Reviews .flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px
}

@media (max-width: 640px) {
    .Reviews .flex {
        margin-left: 0
    }
}

.Reviews .item .image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto
}

.Reviews .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.Reviews .item .info {
    margin-top: 20px
}

.Reviews .item .info .name {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-bottom: 10px
}

.Reviews .item .info p {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #95909B
}

.Reviews .slogan {
    margin-top: 150px
}

.Reviews .slogan h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin-bottom: 30px
}

.Reviews .slogan .btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    width: 304px;
    margin: 0 auto
}

@media (max-width: 640px) {
    .Reviews .slogan .btn {
        width: 100%
    }
}

.Reviews .slogan .btn.btn-fill {
    text-transform: uppercase;
    color: #FFFFFF;
    height: 48px;
    background: #FF647C
}

.Reviews .slogan .btn.btn-fill:hover {
    background-color: #dc556a
}

.login-page {
    background: #F7F5F9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.login-page .box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 100px;
    text-align: center;
    width: 627px;
    min-width: 627px;
    margin: 20px
}

@media (max-width: 640px) {
    .login-page .box {
        width: 90%;
        min-width: 90%;
        padding: 40px 20px
    }
}

.login-page .logo img {
    margin: 0 auto
}

.login-page .title {
    margin: 30px auto;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #95909B;
    max-width: 234px
}

.login-page .login {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #1A051D;
    margin-bottom: 20px
}

.login-page .form-control {
    margin-bottom: 24px
}

.form-control .name-salon{
    display: none;
}

.form-control .show{
    display: block;
}

.login-page .form-control input {
    background: #FFFFFF;
    border: 1px solid #ECEBED;
    font-weight: normal;
    font-family: Montserrat;
    height: 56px;
    padding: 0 17px;
    width: 100%;
    outline: none !important;
    border-radius: 6px
}

.phone-number-input {
    background: #FFFFFF;
    border: 1px solid #ECEBED;
    font-weight: normal;
    font-family: Montserrat;
    height: 56px;
    width: 100%;
    outline: none !important;
    border-radius: 6px
}

.login-page .select-control {
    background: #FFFFFF;
    border: 1px solid #ECEBED;
    font-weight: normal;
    font-family: Montserrat;
    height: 56px;
    padding: 0 17px;
    width: 100%;
    outline: none !important;
    border-radius: 6px;
}

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

.login-page .flex-form .checkobox {
    display: flex;
    align-items: center;
    cursor: pointer
}

@media (max-width: 640px) {
    .login-page .flex-form .checkobox {
        width: 100%;
        margin-bottom: 20px
    }
}

.login-page .flex-form .checkobox input {
    display: none
}

.login-page .flex-form .checkobox input:checked + .indicator {
    background-image: url(../img/svg/tick.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center
}

.login-page .flex-form .checkobox .indicator {
    border: 1px solid #ECEBED;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 6px;
    margin-right: 10px
}

.login-page .flex-form .checkobox span {
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    color: #95909B
}

.login-page .flex-form .lose-pass {
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    color: #0084F4
}

.login-page button {
    margin-top: 30px;
    background: #ECEBED;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    height: 48px;
    cursor: pointer;
    border: 0;
    outline: none !important;
    color: #95909B;
    transition: 0.3s
}

.login-page button:hover {
    background: #cdccce;
    color: #fff
}

.breadcrumb {
    padding: 20px 0
}

.breadcrumb .row {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center
}

.breadcrumb a {
    display: inline-block;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #95909B
}

.breadcrumb a:after {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background-image: url(../img/svg/CaretRight.svg);
    margin: 0 6px;
    display: inline-block;
    content: ""
}

.breadcrumb span {
    display: inline-block;
    color: #1A051D
}

.blog {
    padding-bottom: 120px
}

.blog .all-blog-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    padding: 30px 0;
    text-align: center
}

.blog .grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 60px
}

@media (max-width: 1200px) {
    .blog .grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .blog .grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

.blog .item {
    padding: 20px;
    background: #F6F4F8;
    border-radius: 20px;
    transition: 0.3s
}

.blog .item:hover {
    transform: translateY(-10px)
}

@media (max-width: 1200px) {
    .blog .item:hover {
        transform: translateY(0)
    }
}

.blog .item:hover img {
    transform: scale(1.2)
}

.blog .image {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 230px
}

.blog .image a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1
}

.blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s
}

.blog .date {
    padding: 12px 0 4px 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #95909B
}

.blog h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #1A051D;
    margin-bottom: 16px
}

.blog h2:hover {
    color: #BE52F2
}

.blog h2 a {
    color: inherit;
    text-decoration: none;
    display: block
}

.blog p {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #1A051D
}

.blog .ck-editor img {
    width: 100%;
    height: auto !important;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden
}

.blog .text-box {
    max-width: 770px;
    margin: 0 auto
}

.pagination-box {
    text-align: center
}

.pagination-box .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px
}

.pagination-box .pagination a {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #F6F4F8;
    border-radius: 4px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #95909B
}

.pagination-box .pagination a:hover {
    border-color: #BE52F2
}

.pagination-box .pagination a.active {
    color: #fff;
    background: #BE52F2;
    border-color: #BE52F2
}

.preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.89);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s
}

.preloader.loaded {
    transform: scale(0)
}

.pswp__preloader__icn {
    opacity: 0.75;
    width: 50px;
    height: 50px;
    animation: clockwise 500ms linear infinite
}

.pswp__preloader__cut {
    position: relative;
    width: 30px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0
}

.pswp__preloader__donut--fake {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0
}

.pswp__preloader__donut {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    border: 2px solid #FF647C;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite
}

@keyframes clockwise {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes donut-rotate {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(-140deg)
    }
    to {
        transform: rotate(0)
    }
}

.connect-whatsapp{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 6;
}

.connect-whatsapp a{
    height: 60px;
    width: 60px;
}

@media (max-width: 960px) {
    .connect-whatsapp{
        right: 10px;
        bottom: 10px;
    }

    .connect-whatsapp a{
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 640px) {
    .connect-whatsapp{
        right: 8px;
        bottom: 8px;
    }
}

.otp-digit {
    background: #FFFFFF;
    border: 1px solid #ECEBED;
    font-weight: normal;
    font-family: Montserrat;
    height: 40px;
    width: 40px;
    outline: none !important;
    border-radius: 6px;
    text-align: center;
}

.country-code {
    background: #FFFFFF;
    border: 1px solid #ECEBED;
    font-weight: normal;
    font-family: Montserrat;
    height: 56px;
    outline: none !important;
    border-radius: 6px;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    align-content: center;
    display: inline-block;
    padding: 16px;
    font-size: 14px;
}
/*# sourceMappingURL=style.css.map */