@font-face {
    font-family: SpaceGrotesk;
    src: url('fonts/SpaceGrotesk-Bold.ttf') format("truetype");
    font-weight: bold;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url('fonts/SpaceGrotesk-Light.ttf') format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url('fonts/SpaceGrotesk-Medium.ttf') format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url('fonts/SpaceGrotesk-Regular.ttf') format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url('fonts/SpaceGrotesk-SemiBold.ttf') format("truetype");
    font-weight: 600;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
  
.my-7 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
}

:root {
    --primary-color: #FF8160;
    --secondary-color: #191A23;
    --body-color: #F3F3F3;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: SpaceGrotesk;
    background-color: white;
}

.navbar {
    position: relative;
    display: flex;
    padding-top: 30px;
    padding-bottom: 10px;
    background-color: var(--body-color);
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

@media (min-width: 1600px) {
    .navbar {
        position: relative;
        display: flex;
        padding-bottom: 10px;
        background-color: var(--body-color);
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        padding-bottom: 60px;
        justify-self: center;
    }
}

@media (min-width: 1350px) {
    .img-fluid {
        padding-left: 20%;
    }
}

@media (max-width: 1400px) {
    .hero-illustration {
        display: none;
    }
}
.nav-items {
    display: flex;
}

.navbar .container {
    margin: 0 auto;     /* Центрирование контейнера */
}

.container {
  overflow: visible; /* override bootstrap */
}

.my-0{
    align-self: center;
}
.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}


.nav-items>ul>li>a {
    font-family: SpaceGrotesk;
    color: var(--secondary-color);
    text-decoration: none;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: var(--primary-color);
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: var(--secondary-color);
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.bg-timetailor {
  background-color: var(--primary-color) !important;
}

#card-block .col-md-6 {
    display: flex;
}

#card-block .p-4 {
    flex-grow: 1;
}

.services p {
    min-height: 3em; /* Минимальная высота для 2 строк */
}


.border-wrap {
    border-radius: 30px;
}

#row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
  }

/* Hero Container Section (Let's Get Your Life Organized) */


.hero-content1-wrapper {
  background-color: var(--body-color);
  border-radius: 45px;
  padding: 60px 0; /* ❗ убираем боковые отступы */
  position: relative;
  overflow: visible;
}


.hero-content1-wrapper {
  background-color: var(--body-color);
  border-radius: 45px;
  padding: 60px;
  position: relative;
  overflow: visible;
}

.hero-content {
    max-width: 600px;
    flex: 1 1 500px;
}

.hero-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.cta-button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hero-visual {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design */

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-illustration {
        margin-top: 40px;
    }

    #no_paddings {
        padding: 0;
    }
}


.nav-button {
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: var(--secondary-color);
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#hamburger-menu,
#mobile-menu {
    display: none;
}

@media only screen and (max-width: 1052px) {
    #mobile-menu {
        background-color: var(--primary-color);
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.6s ease;
        transform: translateX(-100%);
    }

    .mobile-nav-items>ul {
        padding: 0px;
    }

    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mobile-nav-items>ul>li>a {
        color: var(--secondary-color);
        text-decoration: none;
    }

    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: var(--body-color);
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: var(--secondary-color);
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid var(--secondary-color);
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: var(--primary-color);
        transition: width 0.6s ease, left 0.7s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: var(--secondary-color);
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: var(--body-color);
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items>ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: var(--secondary-color);
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: var(--secondary-color);
        cursor: pointer;
        font-size: 24px;
    }
}

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

.footer-heading {
    font-size: 20px;
    display: inline-block;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 4px;
}

.heading p {
    font-size: 14px;
}

/* Hero Section Start */

.hero-section a{
    padding: 20px 35px;
    color: var(--body-color);
    border-radius: 10px;
    text-decoration: none;
    background-color: var(--secondary-color);
}

.hero-section .hero-content h1 {
    font-size: 60px;
    font-weight: 500;
}

.hero-section .hero-content p {
    font-size: 20px;
    font-weight: 400;
}

.hero-section {
    margin-bottom: 300px;
}
.hero-content p {
    margin-bottom: 6rem !important;
}
#heading1 {
    margin-bottom: 4.5rem !important;
}

@media (min-width:991px) {
 #btn1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    width: 70%;
 }
}

@media (max-width:525px) {
 #btn1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    width: 100%;
 }
}

@media (max-width: 1200px) {
    .hero-section {
        margin-bottom: 300px;
    }
    .hero-content p {
        margin-bottom: 2rem !important;
    }
    #heading1 {
        margin-bottom: 2rem !important;
    }
    #mobile-img {
        margin-bottom: 2rem !important;
    }
    #btn1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    width: 70% ;
    }
}
@media (min-width: 1200px) {
    #btn1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: flex-start;
    width: 50% ;
    }
}
/* Services Section Start */

.services .services-card.services-card-one, .services .services-card.services-card-two {
    background-color: var(--body-color);
    border: 1px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 25px;
    padding: 25px;
    
}

.services .heading > h2, .working-process .heading > h2, .contact-us .heading > h2 {
    font-size: 24px;
    background-color: var(--primary-color);
    line-height: 1;
    height: 40px;
    border-radius: 10px;
    padding: 7px;
}

.services .services-card.services-card-two {
    background-color: var(--primary-color);
    /* padding: 34px 25px; */
}

.services .services-card a i{
    color: var(--primary-color);
    background-color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.services .services-card:hover a i {
    rotate: -30deg;
}

.services-card img {
    width: 100%;
    height: 180px;
}

@media only screen and (max-width: 1000px) {
    .services-card img {
        width: 150px;
        height: 150px;
    }
}

.services .services-card a {
    align-items: center;
    color: var(--secondary-color);
}

/* Working Process Start */

.working-process .accordion-item {
    border: 1px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
    /* padding: 20px; */
    background-color: var(--body-color);
}

.working-process .accordion-item .accordion-button {
    background-color: var(--body-color);
    padding: 20px 40px;
    border-bottom: 1px solid var(--secondary-color);
}

.working-process .accordion-item .accordion-collapse.collapse.show, .working-process .accordion-item .accordion-collapse.collapse.show {
    background-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    transition: all 0.2s ease-in-out;
    background-color: var(--primary-color) !important;
    box-shadow: none;
}

.working-process .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 40px;
}

.working-process .accordion-item .accordian-numbers {
    font-size: 44px;
    padding-right: 20px;
}

.accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    content: "\f068";
    height: 35px;
    width: 35px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: var(--body-color);
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f067"; 
}

.working-process .accordion-item .collapsing {
    transition: all 0.6s ease-in-out;
  }
  

/* Contact Us Start */

.contact-us  .contact-wrapper{
    border-radius: 25px;  
    padding: 40px 60px;
    background-color: var(--body-color);
}

.contact-us  .contact-wrapper input, .contact-us  .contact-wrapper textarea {
    background-color: white;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 6px 12px;
}

.contact-us  .contact-wrapper input:focus {
    box-shadow: none;
}

.contact-bg {
    position: absolute;
    right: -190px;
    width: 400px;
}

input[type="radio"] {
    display: none; /* Hide the default radio button */
  }
  
  .custom-radio {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: inline-block;
    position: relative;
    margin-right: 4px;
  }
  
  input[type="radio"]:checked + label .custom-radio::before {
    content: '';
    height: 12px;
    width: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
  }

/* Footer Start */

footer .row {
    background-color: var(--secondary-color);
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

footer .social-icons a{
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background-color: white;
}

footer .social-icons a i {
    /* padding: 20px; */
}

footer .subscription {
    padding: 60px 30px;
    background: rgba(41, 42, 50, 1);
    border-radius: 25px;
}

footer .subscription input, footer .subscription input:focus {
    background-color: transparent;
    border: 1px solid var(--body-color);
    box-shadow: none;
    padding: 10px 20px;
}

footer .subscription input[type='submit'] {
    background-color: var(--primary-color);
}
@media (min-width: 400px) and (max-width: 575.98px) {
    .container, .container-sm {
      max-width: 540px !important;
    }
  }

footer .footer-info {
    border-bottom: 2px solid var(--body-color);
}

/* Hero Section Styles */
.hero-container {

  overflow: visible;
  position: relative;
}


.hero-illustration {
  flex: 1 1 500px;
  position: relative;
  z-index: 2;
  margin-top: -5%;
  margin-bottom: -10%;
  transform: scale(1.1);
}

.illustration-svg {
  width: 100%;
  height: auto;
  display: block;

  transform: scale(1.1) translateY(-5%);
  transform-origin: center;
}


.hero-text-container {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}


.hero-content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  overflow: visible;
  position: relative;
}



  .cta-container {
    display: flex;
    align-items: flex-start;
  }
  
  .cta-button {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding: 20px 35px;
    border-radius: 14px;
    background-color: #191a23;
    border: none;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
  }
  
  /* Media Queries */
  @media (max-width: 991px) {
    #card-block {
        margin: 0 auto;
    }
    .services p {
        min-height: 4em; /* Минимальная высота для 3 строк */
    }
    .hero-content1-wrapper {
        
        padding: 0 !important; 
    }
    
    
    .hero-content1 {
      height: 330px;
      padding: 40px;
      padding-top: 20px;
      padding-bottom: 0;
      gap: 30px;
    }
  
    .hero-title,
    .hero-description {
      width: 100%;
    }
  
    .illustration-svg {
      height: 300px;
    }
  }
  @media (max-width: 435px) {
    .hero-description {
        margin-bottom: 0;
    }
    #tryNowButton {
        margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    
  
    .hero-content1 {
      padding: 40px;
      gap: 30px;
      align-self: center;
    }
  
    .hero-text-container {
      gap: 20px;
    }
  
    .hero-title {
      font-size: 24px;
    }
  
    .hero-description {
      font-size: 16px;
    }
  
    .cta-button {
      font-size: 18px;
      padding: 15px 25px;
    }
  
    .illustration-svg {
      height: 200px;
    }
  }



   /* feature-showcase */

  .feature-showcase {
    display: flex;
    padding: 70px 60px;
    align-items: flex-start;
    gap: 64px;
    border-radius: 45px;
    box-sizing: border-box;
    background-color: #191a23;
  }
  
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 60%;
  }
  
  .feature-title {
    padding: 0 7px;
    border-radius: 7px;
    color: #000;
    font-family: SpaceGrotesk;
    font-size: 30px;
    font-weight: 500;
    background-color: #f3f3f3;
    margin: 0;
  }
  
  .feature-description {
    color: #fff;
    font-family: SpaceGrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
  }
  
  .divider {
    width: 1px;
    height: 186px;
    background-color: #fff;
  }
  
  @media (max-width: 991px) {
    .feature-showcase {
      padding: 40px 30px;
      gap: 32px;
      flex-direction: column;
      align-items: center;
    }
  
    .feature-card {
      width: 100%;
      max-width: 500px;
      align-items: center;
      text-align: center;
    }
  
    .feature-title {
      font-size: 24px;
    }
  
    .feature-description {
      font-size: 16px;
    }
  
    .divider {
      width: 80%;
      height: 1px;
      margin: 20px 0;
    }
}

  
  @media (max-width: 640px) {
  
    .feature-card {
      max-width: 100%;
    }
  
    .feature-title {
      font-size: 20px;
    }
  
    .feature-description {
      font-size: 14px;
    }
  }
  
  #margin-bottom {
    margin-bottom: 5%;
  }

#submit {
    transition: background-color 0.3s ease-in-out;
  }
#submit:hover {
    background-color: #FF8160 !important;
  }

.kermit-easter {
  animation: pop-in 0.3s ease;
}

@keyframes pop-in {
  from {
    transform: scale(0.5) translate(-50%, -50%);
    opacity: 0;
  }
  to {
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
  }
}

.applelogo {
    width: 35%;
  display: inline-block;
  padding: 0px !important;
  border-radius: 20px !important; /* Optional: slight rounding if you want */
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}

.apple1 {
    width: 100%;
    height: 100%;
}

.applelogo:hover {
  box-shadow: 0 0 15px 8px var(--primary-color);
  filter: brightness(1.1);
}

@media (max-width: 1400px) {

    .hero-illustration {
        display: none;
    }
    .applelogo {
        width: 40%;
    }
}

