* {
    font-family: 'Exo 2', 'PT Sans', sans-serif;
    font-weight: normal;
}
/*Our Teachers section*/
.creator-story {
  display: flex;
  align-items: center;
  gap: 80px;
  background: #ffffff;
}

.creator-card {
  background: #f9f6f3;
  border-radius: 28px;
  padding: 48px 42px;
  text-align: center;
}

.creator-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
}

.creator-name {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.creator-meta {
  font-size: 16px;
  color: #6b6b6b;
}


.creator-small {
  font-size: 26px;
  color: #6b6b6b;
  margin-bottom: 28px;
  line-height: 1.6;
}

.creator-highlight {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f1f1f;
}
@media (min-width:768px) {
    .creator-card{min-width:485px;}
}
@media (max-width: 900px) {
  .creator-story {
    flex-direction: column;
    gap: 48px;
  }
    
  .creator-highlight {
    font-size: 34px;
  }
}

/**/
/*header start*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: white;
}
nav.navbar:has(.show) {
    height: 100vh;
    display: flex;
    align-items: flex-start;

}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 133.3333333333%;
    color: #090909;
    text-underline-offset: 3px;
    text-decoration: underline transparent;
    transition: 0.3s ease text-decoration 0s;
    cursor: pointer;
}


nav.fixed {
    position: fixed;
    width: 100%;
    background: white;
    z-index: 99;
    box-shadow: 10px -6px 15px black !important;

}


.nav-link:hover {
    text-decoration: underline #51a03c;
    color: #51a03c;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
}

/*sub_menu*/
.navbar .company {
    position: relative;
}

.navbar .company .fa-caret-down {
    transition: transform 0.5s;
}

.navbar .company:has(.active) .fa-caret-down {
    transform: rotate(180deg);
}


ul.sub_menu {
    display: none;

    /*padding: 10px;*/
}

ul.sub_menu .nav-link {
    margin: 15px 0px;
    display: inline-flex;
    width: 100%;
    padding: 0px !important;
    justify-content: center;
}

.sub-menu li a {
    font-weight: 500;
    color: #090909;
    font-size: 15px;
    line-height: 20px;
    padding: 16px 24px;
    display: inline-block;
    transition: 0.5s all ease;
    width: 100%;
}

.sub-menu li a:hover {
    background: #fafafa;
}

.navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0 !important
}

@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?1dogmf");
    src: url("../fonts/icomoon.eot?1dogmf#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff?1dogmf") format("woff"), url("../fonts/icomoon.svg?1dogmf#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.language {
    font-weight: 500;
    position: relative;
}

.language>a {
    cursor: pointer;
}

.nav-button {
    background-color: #46c269;
    color: #ffffff;
    border-radius: 11px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease all 0s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-left: 75px;
}

.nav-button-2 {
    margin: 30px auto 0 auto !important;
    width: fit-content;
    display: block;
    background: #2f313f;
}

.nav-button.nav-button-2:hover {
    color: white;
    background-color: #2f313f;
    opacity: .7;
}

.nav-button:hover {
    color: white;
    background-color: #1d9f3a;
}

.language:hover i {
    animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

@keyframes shake-bottom {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

.language .sub-menu {
    position: absolute;
    z-index: 1;
    top: 100%;
    transform: translateY(0px);
    background: #ffffff;
    box-shadow: 4px 8px 34px rgb(29 29 80 / 10%);
    border-radius: 10px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease all 0s;
    overflow: hidden;
}

.language a i {
    margin-right: 2px;
}

.language a span {
    text-decoration: underline transparent;
    text-underline-offset: 3px;
    transition: 0.3s ease text-decoration 0s;
}

.language:hover a span {
    text-decoration: underline #090909
}

.language a span {
    font-size: 15px;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.hamburger {
    cursor: pointer;
    margin: auto;
    transform: rotate(0);
    transition: .5s ease-in-out;
    -webkit-transform: rotate(0);
    width: 30px;
    height: 20px;
}

.hamburger div {
    background: #21257f;
    border-radius: 9px;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transform: rotate(0);
    transition: .25s ease-in-out;
    -webkit-transform: rotate(0);
    width: 100%;
}

.hamburger div:nth-child(1) {
    top: 0;
}

.hamburger div:nth-child(2),
.hamburger div:nth-child(3) {
    top: 10px;
}

.hamburger div:nth-child(4) {
    top: 20px;
    width: 85%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 991.98px) and (max-width: 1199.98px) {
    .nav-button {
        margin-left: 15px;
    }

    .nav-link {
        padding: 0 20px 0 0 !important;
    }
}

@media (min-width: 1199.98px) {
    .nav-link {
        padding: 35px 35px 35px 0 !important;
    }
}

@media (min-width: 992px) {
    ul.sub_menu:is(.active) {
        top: 88px;
        left: -75px;
        position: absolute;
        width: 200px;
        background: #efefef;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    .bf-benefits .row {
        margin: 0 !important;
    }

    .onfooter__inner {
        padding: 30px 20px !important;
    }

    .onfooter__inner form>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .onfooter__inner form div label {
        gap: 10px;
    }

    .navbar-nav .nav-link {
        margin-bottom: 30px;
        padding: 20px 0;
    }

    ul.sub_menu:is(.active) {
        position: static;
        padding-left: 20px;
        align-items: flex-start;
    }

    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 24px;
    }



    .language a span {
        display: none;
    }

    .nav-button {
        padding: 10px 15px;
        font-size: 11px;
        margin-left: 30px;
        position: inherit;
    }

    .language {
        position: absolute;
        left: 35%;
        top: 25px;
    }

    .navbar-nav {
        padding: 30px 15px 20px;
    }

    .navbar-nav .nav-link {
        margin-bottom: 0;
    }
}

/*header end*/

/* slider start*/
.img-wrapper {
    position: relative;
}

#slider {
    min-height: 100vh;
}

#slider .carousel-item {
    height: 100vh;
}

#slider .carousel-item > .d-flex {
    min-height: 100vh;
    align-items: center;
    padding-top: 80px;
}

#slider {
    background-color:#f9f6f3;
     /*background-color: #f5f5f5;*/
}


#slider .container .content {
    display:flex;
    justify-content:space-between;
    flex-wrap:nowrap;
    height:calc(100vh - 106px);
    align-items:center;
}

#slider .container .content .text-wrapper {
    width:58%;
}

#slider .container .content .img-box {
    width:400px;
}



#slider.slider-static .carousel-item {
    display: none;
    height: auto;
    min-height: 0;
}

#slider.slider-static .carousel-item:first-child {
    display: block;
}

#slider.slider-static .carousel-inner {
    height: auto;
}

#slider .text-wrapper {
    color: white;
}

.carousel-item img {
    position: relative;
    object-fit: contain;
    height: 421px;
    margin: 0 auto;
    width: 100%;
}

#slider .carousel-item:nth-of-type(1) img,
#slider .carousel-item:nth-of-type(2) img,
#slider .carousel-item:nth-of-type(3) img {
    object-fit: cover;
    border-radius: 50%;
    width: 400px;
    height: 400px;
}

#slider .title {
    font-weight: 800;
    font-size: 38px;
    line-height: 46px;
    color: #090909;
    margin-bottom: 74px;
}

.text-wrapper p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #090909;
}

.text-wrapper strong a {
    color: #1d9f3a;
    text-decoration: underline transparent;
    text-underline-offset: 3px;
    transition: 0.3s ease text-decoration 0s;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
}

.text-wrapper strong a:hover {
    text-decoration: underline #1d9f3a;
}

.carousel-item .circle-wrap {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    transition-delay: .1s;
    transition: transform .8s;
}

.animate__delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.control-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15%;
    display: flex;
    justify-content: flex-end;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.carousel-control-next,
.carousel-control-prev {
    width: 55px;
    height: 55px;
    background: #000;
    opacity: 1;
    margin: 0 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: static;
}

.carousel-control-prev {
    left: auto;
    right: 70px;
}

.carousel-control-next {
    right: 0;
    margin-right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 25px;
    filter: invert(1);
    background-size: contain;
    background-repeat: no-repeat;
}

.carousel-control-next-icon {
    background-image: url(/img/next.png);
}

.carousel-control-prev-icon {
    background-image: url(/img/left.png);
}

.control-btn:hover {
    background-color: #51a03c;
}

.slider-stats {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    gap: 18px;
    margin-top: 28px;
    justify-content: start;
}

.stat-card {
    border-radius: 20px;
    padding: 24px 22px 26px;
    text-align: left;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.stat-card--yellow {
    background: #FDD46B;
}

.stat-card--orange {
    background:#FD976D;
}

.stat-card--purple {
    background: #C9B1FB;
}

.stat-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: #2f313f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    line-height: 22px;
    color: #2f313f;
}

@media (min-width: 1199.98px) {
    .carousel-item img {
        height: 265px;
    }

    .carousel-item .circle-wrap {
        width: 365px;
        height: 365px;
    }

    #slider .title {
        font-size: 60px;
        line-height: 72px;
    }

    #slider .title {
        margin-bottom: 36px;
    }
}

@media (min-width: 992px) {
    ul.sub_menu:is(.active) {
        top: 88px;
        left: -60px;
        position: absolute;
        width: 200px;
        background: #efefef;
        z-index: 2;
        display:block!important;
    }
}

@media (max-width: 991.98px) {
    ul.sub_menu:is(.active) {
        position: static;
        padding-left: 20px;
        align-items: flex-start;
    }

    .carousel-item .circle-wrap {
        width: 370px;
        height: 370px;
    }


    .carousel-item img {
        height: 200px;
    }

    #slider .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .img-box {
        margin-bottom: 5px;
    }

    .text-wrapper p,
    .text-wrapper strong a {
        font-size: 14px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 40px;
        height: 40px;
    }

    .slider-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (min-width: 768px) {


    .frutris {
        width: 200px !important;
        height: 200px !important;
        position: absolute !important;
        top: -110px !important;
        left: 0;
        right: 0;
    }
}

@media (max-width: 767.98px) {
    #slider .text-wrapper {
        margin-top: 4rem;
    }

    #slider .carousel-item:nth-of-type(1) img,
    #slider .carousel-item:nth-of-type(2) img,
    #slider .carousel-item:nth-of-type(3) img {
        width: 250px;
        height: 250px;
    }

    .frutris {
        width: 100px !important;
        height: 100px !important;
        position: absolute !important;
        top: -77px !important;
        left: 0;
        right: 0;
    }


    .carousel-item .circle-wrap {
        width: 250px;
        height: 250px;
    }

    .carousel-item img {
        height: 165px;
    }

    .slider-stats {
        gap: 14px;
        margin-top: 20px;
    }
}

@media (max-width: 400px) {


    .carousel-item img {
        height: 135px;
    }

    .carousel-item .circle-wrap {
        width: 200px;
        height: 200px;
    }

    #slider .carousel-item {
        height: 70vh;
    }
}

/* slider end*/

/* benefits  start */
.bf-benefits {
    padding: 70px 0;
}

.bf-title {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #2f313f;
    font-size: 40px;
    line-height: 1.15;
}

.bf-benefits  .col-12 {
    padding: 0 10px!important;
    margin-top:20px!important;
    
}

.bf-title {
    margin-bottom:70px!important;
}

.bf-benefits  .feature  {
    background: #f9f6f3;
    border-radius:16px;
    padding:20px;
    text-align:center;
}

.feature-title {
    font-weight: 600;
    color: #2f313f;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-text {
    color: #121d2b99;
    font-size: 16px;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: #f9f6f3;
    /* светло-серый как у Bolt */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap svg {
    width: 70px;
    height: 70px;
    color: #384152;
}

/* benefits  end */

/* useful start */
.useful-title {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

#useful {
    padding: 70px 0;
    background: #f9f6f3;
}

.useful-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 22px;
}

.useful2 .useful-box img {
    height: 340px!important;
}

.useful-box {
    position: relative;
    background:white;
    border-radius:8px;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height:100%;
}

.useful-box h2 {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 26px;
    line-height: 33px;
    padding: 0 20px;
}

.useful-box p {
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}

.tags a {
    font-weight: 100;
    font-size: 16px;
    line-height: 21px;
    color: #d5d5d5;
    pointer-events: none;
}

@media (min-width: 992px) {
    ul.sub_menu:is(.active) {
        top: 88px;
        left: -75px;
        position: absolute;
        width: 200px;
        background: #efefef;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    #useful {
        padding: 50px 0;
    }

    ul.sub_menu:is(.active) {
        position: static;
        padding-left: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {

    .useful-box {
        margin-bottom: 30px;
    }

    .useful-box img {
        margin-bottom: 14px;
    }

    .useful-title {
        font-size: 30px;
    }

    .useful-title {
        margin-bottom: 22px
    }
}

/*useful end*/

/* results start*/
:root {
    --gap: 20px;
    --speed: 30s;
}

#results {
    padding: 70px 0;
    position: relative;
}


.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: var(--gap);
    width: max-content;
    will-change: transform;
}

.marquee__item {
    flex: 31%;
    /* ровно 4 карточки в ширину */
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
}

.marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* results end*/

/*blogs start*/
:root {
    --main-color: #ad3330
}

.informations {
    padding: 70px 0;
    background-color: #f9f6f3;
    position: relative;
}

.informations-inner {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.informations-inner article {
    cursor: pointer;
    width: 31%;
    min-width: 31%;
}

.informations-inner article:hover img {
    transform: scale(1.02);
    box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.informations-inner article img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .3s;
}

.informations-inner article p {
    font-size: 18px;
    font-weight: bold;
    color: #2f313f;
}

.informations-inner article span {
    font-size: 12px;
    color: #2f313f;
    margin: 10px 0;
}


@media only screen and (max-width: 991px) {


    .informations-inner {
        flex-direction: column;
        gap: 30px
    }

    .informations-inner article {
        width: 100% !important
    }
}


@media screen and (max-width: 768px) {
    .informations {
        padding: 40px 0
    }
    .useful-box img {
        height: 300px;
    }
    .useful2 .useful-box img {
        height: 300px;
    }

    .navbar-brand img {
        height: 50px;
        width: 120px;
        object-fit: contain;
    }
}

/*blogs end*/

/*our teacher start*/
.vv iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 302px;
    border-radius: 24px;
    position: relative !important;
    background: #262626;
}

.solgun {
    opacity: 0.4;
}

#telebereyleri {
    padding: 70px 0;
    position: relative;
}

#telebereyleri h4 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    letter-spacing: -2px;
}


.text-styles ul li::marker {
    color: #92b33d;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1325px;
    }
}

@media (max-width: 768px) {

    #telebereyleri .slide {
        margin-bottom: 20px;
    }

    #telebereyleri .slide:last-child {
        margin-bottom: 0px;
    }

    #telebereyleri h4 {
        font-size: 35px;
        line-height: 40px;
    }
}

/*our teacher end*/

/*footer start*/
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit
}

footer {
    padding-top: 100px;
    padding-bottom: 94px;
    background: #2C2C2C;
}

.footer-number {
    color: #fff;
}

.footer-number p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1px;
}

.footer-number a {
    font-size: 18px;
    font-weight: 600;
}

.footer-number-descr {
    font-size: 14px;
    padding-top: 18px;
}

.footer-top-button {
    color: #F76951;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    font-size: 14px;
    display: block;
    border-radius: 50px;
    text-align: center;
    position: relative;
    z-index: 4;
    font-weight: 600;
    line-height: 70px;
    max-height: 70px;
}

.footer-top-button:before,
.footer-top-button:after {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.footer-top-button:before {
    border: 2px solid #F76951;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.kataloq:before {
    border: 2px solid #4dac6b !important;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.kataloq {
    color: #4dac6b !important;
    margin-top: 20px;
    min-width: 192px;
}

.footer-top-button:hover::before {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

.footer-top-button:hover::after {
    background: #fff;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.footer-top-button:after {
    border: 2px solid transparent;
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}

.footer-center,
.footer-bottom {
    margin-top: 60px;
}

.footer-center ul li {
    display: inline-block;
    padding-right: 55px;
}

.footer-center ul li:last-of-type {
    padding-right: 0
}

.footer-center ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.footer-center ul li a:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    background: #F76A51;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: opacity 0.2s, -webkit-transform 0s 0.2s;
    transition: opacity 0.2s, -webkit-transform 0s 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s, -webkit-transform 0s 0.2s;
}

.footer-center ul li a:hover:before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.2s;
    transition: opacity 0.1s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.1s;
    transition: transform 0.2s, opacity 0.1s, -webkit-transform 0.2s;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.footer-center ul li a:hover span {
    -webkit-animation: anim-trinculo 0.4s forwards;
    animation: anim-trinculo 0.4s forwards;
    display: block;
}

@keyframes anim-trinculo {
    50% {
        opacity: 0;
        color: #fff;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    51% {
        opacity: 0;
        color: #F76A51;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    75% {
        opacity: 1;
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        opacity: 1;
        color: #F76A51;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.copy {
    color: #fff;
    font-size: 14px;
}

.copy a {
    transition: .5s all ease;
    display: inline-block;
    text-underline-offset: 2px;
}

.copy a:hover {
    text-decoration: underline;
}

.footer-social {
    text-align: right;
}

.footer-social li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social li:last-of-type {
    margin-right: 0;
}

.footer-social li a i {
    color: white !important;
    font-size: 22px;
    transition: .5s all ease
}


.footer-social li a svg path {
    fill: #fff;
}

.footer-social li i:hover {
    color: #1d9f3a
}

@media (min-width: 992px) {
    ul.sub_menu:is(.active) {
        top: 88px;
        left: -75px;
        position: absolute;
        width: 200px;
        background: #efefef;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    ul.sub_menu:is(.active) {
        position: static;
        padding-left: 20px;
        align-items: flex-start;
    }

    .footer-top-button {
        top: 30px;
    }

    .footer-center ul li {
        display: inline-block;
        padding-right: 5px;
        width: calc(33.333333% - 10px);
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-top-button {
        width: fit-content;
        height: 55px;
        font-size: 13px;
        line-height: 55px;
        padding: 0 15px;
    }

    .footer-top .col-lg-3:nth-child(2) .footer-number {
        color: #fff;
        margin-top: 20px;
    }

    footer {
        padding: 50px 0;
    }

    .footer-social {
        text-align: center;
        margin-top: 20px;
    }
}

/*footer end*/

/* onfooter start */
.onfooter__inner {
    flex-shrink: 0;
    padding: 50px 60px;
    ;
    border-radius: 20px;
    border: 1px #f5f5f5;
    background: #fff;
    box-shadow: 0px 0px 44px 8px rgba(0, 0, 0, .04);
}

.onfooter__inner h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.onfooter__inner form>input {
    min-height: 65px;
    padding-block: 20px;
    padding-inline: 20px;
    border-radius: 16px;
    background-color: #f5f5f5;
    transition: 0.15s ease-out;
    cursor: pointer;
    width: 100%;
    display: grid;
    margin-bottom: 0;
    z-index: 1;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    margin-bottom: 15px;
}

.onfooter__inner form>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-top: 40px;
}

.onfooter__inner form div .btn {
    background: #2aaa93;
    padding: 13px 17px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    transition: .2s;
    border-radius: 12px;
}

.onfooter__inner form div .btn:hover {
    background: #208c79;
}

.onfooter__inner form div input[type=submit] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: left;
    padding-left: 17px;
    outline: none;
    border: none;
    background: transparent;
    color:white;
}

.onfooter__inner form div label {
    display: flex;
    gap: 10px;
}

.onfooter__inner {
    margin-bottom: 70px;
}


.cyberpunk-checkbox {
    appearance: none;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #8e40ff;
    border-radius: 5px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.cyberpunk-checkbox:before {
    content: "";
    background-color: #8e40ff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transition: all 0.1s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.library {
    color: #fff;
    padding: 70px 0;
    background-color: #f9f6f3;
    margin-bottom: 80px;
}

.library-subtitle {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #2f313f;
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 18px 0;
    text-align: center;
}

.library-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: flex-start;
}


.side-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.space {
    flex: 0.5;
}

.library .card {
    background: #1a1a1c;
    border-radius: 14px;
    padding: 20px;
    width: 185px;
    height: 280px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.library .card:hover {
    transform: translateY(-3px);
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: #46c269;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.icon.pdf {
    background: #fff;
}

.library .card p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    
    #results .nav-button , .library  .nav-button, .informations .nav-button{
        display:block!important;
            margin: 0 auto 20px auto !important;
    }
    
    .library  .nav-button, .informations .nav-button{
        margin-top:40px!important;
    }
    .library-subtitle {
        font-size: 28px !important;
    }
    #results .nav-button.nav-button-2{
        margin-bottom:40px!important;
    }

    .library-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .library-row {
        flex-direction: column;
        gap: 30px;
    }

    .library .card {
        width: 100%;
        height: 480px;
    }
    .service-static-inner-page .service-img iframe {
        width:100%!important;
        height: 300px;
    }

  

    .side {
        flex-wrap: wrap;
        width: 100%;
    }

    .side-cards {
        flex-wrap: wrap;
        width: 100%;
    }

    .space {
        display: none;
    }
}




/* breadcrumb */
.breadcrumb {
    padding: 18px 0;
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-weight: 500;
}

.breadcrumb-list li i {
    padding: 0 15px;
    font-size: 12px;
    display: inline;
}

.title-wrap-page h4 {
    font-size: 25px;
    color:black;
    font-weight:bold;
}

.breadcrumb-list a {
    color: #a3a2a2;
}

.content-all , .library.library-2{
    display: grid!important;
    grid-template-columns: 1fr 1fr 1fr!important;
    gap:30px!important;
    margin:40px 0!important;
}

.content-all  .col-w , .content-all article{
    width: 100%!important;
}


/* inside pages */
.inside-pages .title-wrap-page {
    background-color: #f2f3f5;
    padding: 44px 0;
    text-align: center;
    color: #b49312;
}

.library.library-2  {
    padding: 0!important;
}

.library.library-2 .card {
    width:100%!important;
    height: 550px;
}

.service-static-inner-page .service-img {
  width: 50%;
  height: 600px;
}

.service-static-inner-page .service-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  float: left;
  margin-right: 40px;
  border-radius: 20px;
}
.service-static-inner-page-content {
    display:flex;
    gap:20px;
}

.service-static-inner-page-content:after {
  content: '';
  display: table;
  clear: both;
}

.service-static-inner-page-content ul {
    list-style:disc;
    padding-left:20px;
}

.service-static-inner-page-content ul ul {
    list-style: circle;
}

.service-static-inner-page {
  padding: 60px 0
}
.service-static-inner-page h2 {
    font-weight:bold;
    font-size:25px;
}


@media screen and (max-width: 768px) {
    #slider .container .content .img-box {
        margin-top:20px;
    }
    #slider .container .content {
        height:inherit;
    }
    #slider .container .content {
        padding-bottom:40px;
    }
    .library.library-2 .card {
        height:480px!important;
    }
    
   
    .creator-card {
        width:100%;
    }
    #slider .container .content {
        flex-direction:column;
    }
    #slider .container .content .text-wrapper {
    width: 90%;
}
.bf-title {
    margin-bottom: 20px !important;
}
.bf-benefits .col-12 {
    padding: 0!important;
}
#results {
    padding-bottom:0!important;
}
    .creator-story {
        flex-direction: column-reverse;
    }
    .service-static-inner-page-content {
        flex-direction:column;
    }
    .nav-button {
        display:none;
    }
.service-static-inner-page .service-img {
    height: inherit;
}
  .service-static-inner-page .service-img {
    width: 100%
  }

  .service-static-inner-page .service-img img {
    float: inherit;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service-static-inner-page .service-img img {
    height: 250px;
}
.service-static-inner-page {
    padding-top: 20px;
}
.content-all, .library.library-2 {
    grid-template-columns: 1fr   !important;
}

.library-2 
.marquee__item {
    height:350px;
}
}

.blog-page .shareButtons2  {
    display: flex;
    justify-content: space-between;
}
.blog-page .tarix {
    display: flex;
    gap: 5px
}
.blog__page-full-main-img {
    border-radius: 16px;
    display: block;
    margin: 20px auto;
    width: 100%;
    object-fit: cover;
    height: 400px;
}
.full-tags {
    width: 100%;
    border: 2px dashed #dedede;
    border-radius: 10px;
    padding: 30px;
    color: white;
}
.full-tags span {
    display: inline-block;
    color: #666;
    font-size: 14px;
    padding: 8px 25px;
    margin: 4px 5px 4px 5px;
    background-color: #f1f1f1;
    border-radius: 20px;
    pointer-events:none
}
.nav-tabs {
    justify-content:center;
}
.nav-tabs .nav-link {
    padding: 20px 30px!important;
    font-weight: 600;
}


/*****PRICE-FORM START*****/
#price-form .modal-content {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin: auto;
}

#price-form .modal-body { padding: 10px 40px 40px 40px }
#price-form .modal-title { font-size: 18px!important}
#price-form .modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

#price-form .modal-title { font-weight: 700; color: #000 }
#price-form input.effect, #price-form .custom-form select.effect { height: 50px }

#price-form .effect, .projects-full-story__form .effect {
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    margin: 0 0 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 16px;
    font-size: 14px;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}

#price-form .modal-content .btn-close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 50px;
    top: 34px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-backdrop { opacity: .8!important }
#price-form .btn-close:focus { box-shadow: none!important }

#price-form .submit-btn:hover {
    background-color: #239f86 !important;
}

#price-form .submit-btn, .projects-full-story__form .submit-btn {
    background-color: #2aaa93 !important;
    color: #fff !important;
    border-radius: 16px;
    height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#price-form .submit-btn i {
    color: #fff !important;
}

.footer-buttons a {
    cursor:pointer;
}

