@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;;
} 

body {
    width: 100%;

}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.header:hover::after {
    left: 100%;
}

.logo {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    font-weight: 700;
    width: 10%;
}


.navbar a {
    font-size: 1.20rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: fff;
    cursor: pointer;
    display: none;
}


/* BREAKPOINTS */

@media (max-width: 1265px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 1140px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: whitesmoke;
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 19rem;
    }


    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
        height: 18px;
    }
}

/* hero */

/* .hero {
    min-height: 80vh;
    background: url(assets/img/accounting-hero.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.hero .content {

} */

.hero .container {
    margin-top: 20px;
    height: 600px;
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
}

.hero .container img {
    width: 100%;
    height: 500px;
    float: right;
}

.hero .hero-text {
    width: 100%;
    /* text-align: center; */
}


.hero .hero-text h1 {
    font-size: 3.3rem;
    margin-bottom: 12px;
    color: black;
}

.hero .hero-text p{
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.hero .container button {
    padding: 1em 2.1em 1.1em;
    border-radius: 4px;
    margin: 8px;
    border: none;
    background-color: rgb(133, 184, 243);
    color: #000000;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0em -0.2rem 0em #6088f3 inset;
    transition: color 3s ease-in-out;
    text-decoration: none;
}

.hero button:hover {
    background-color: transparent;
    color: blue;
    border: 3px solid #6088f3;
    cursor: pointer;
}

.hero .container button a {
    text-decoration: none;
    color: black;
}

.hero button a:hover {
    color: black;
}

@media (max-width:1380px) {
    .hero .container {
        margin-top: 20px;
        flex-direction: column;
        margin-bottom: 200px;
    }
    .hero .hero-text {
        width: 100%;
        text-align: center;
    }
    .hero .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width:678px) {
    .hero .container {
        margin-bottom: 00px;
    }
    .hero .hero-text h1 {
        font-size: 2rem;
    }
}

.logo {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    font-weight: 700;
    width: 10%;
}


@media (max-width:428px) {

}

@media (max-width: 710px) {


    .logo {
      font-size: 1.5rem;
  }

}



/* WRAPPER */



  .wrapper {
    margin-top: 100px;
    margin: 150px auto;
    width: 80%;
    margin-bottom: 200px;
}

.wrapper img {
    max-width: 800px;
    float: left;
    /* border: 3px solid; */
    border-radius: 15px;
    margin-top: 25px;
    margin-left: 0px;
    margin-right: 40px;
    height: 400px;
}

.wrapper .text-box {
    font-size: 41px;
}

.wrapper .text-box p {
    font-size: 17px;
    width: 100%;
}

.read-more-btn{
    color: #405cf5;
    font-size: 20px;
    text-align: center;
}

.read-more-container{
    display: flex;
    flex-direction: column;
    color: #111;
    gap: 1rem;
}

.read-more-text{
    display: none;
}

.read-more-text--show{
    display: inline;
}



.wrapper .text-box h2 {
    font-size: 30px;
}

@media (max-width:1881px) {
    .wrapper .text-box p {
        font-size: 16px;
    }
    .wrapper .text-box h2 {
        font-size: 29px;
    }
    .wrapper img {
        width: 95%;
        height: 95%;
    }
}

@media (max-width:1786px) {
    .wrapper .text-box p {
        font-size: 15px;
    }
    .wrapper.text-box h2 {
        font-size: 28px;
    }
    .wrapper img {
        width: 92%;
        height: 92%;
    }
}

@media (max-width:1706px) {
    .wrapper .text-box p {
        font-size: 14px;
    }
    .wrapper .text-box h2 {
        font-size: 27px;
    }
    .wrapper img {
        max-width: 600px;
        width: 80%;
        height: 80%;
        margin-right: 37px;
    }
}

@media (max-width:1530px) {
    .wrapper .text-box p {
        font-size: 13px;
    }
    .wrapper .text-box h2 {
        font-size: 26px;
    }
    .wrapper img {
        max-width: 550px;
        width: 75%;
        height: 75%;
        margin-right: 34px;
    }
}

@media (max-width:1459px) {
    .wrapper .text-box p {
        font-size: 12px;
    }
    .wrapper .text-box h2 {
        font-size: 25px;
    }
    .wrapper img {
        max-width: 500px;
        width: 72%;
        height: 72%;
        margin-right: 31px;
    }
}

@media (max-width:1300px) {
    .wrapper .text-box p {
        font-size: 11px;
    }
    .wrapper .text-box h2 {
        font-size: 24px;
    }
    .wrapper img {
        max-width: 450px;
        width: 68%;
        height: 68%;
        margin-right: 28px;
    }
}

@media (max-width:1223px) {
    .wrapper .text-box {
        float: left;
    }
    .wrapper .text-box h2 {
        font-size: 25px;
        text-align: center;
    }
    .wrapper .text-box p {
        text-align: center;
        font-size: 16px;
    }
    .wrapper img {
        align-items: center;
        max-width: 1000px;
        width: 100%;
        margin-left: 550px auto;
    }
}


/* uslugimain */

.uslugimain {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    float: left;
    width: 40%;
    margin-left: 200px;
}

.uslugimain .text ul {
    margin-top: 5px;
}

.uslugimain .container .text ul {
    list-style-type: none;
}



.button-9 {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    /* font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif; */
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    margin-left: 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s,box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 30%;
  }
  
  .button-9:disabled {
    cursor: default;
  }
  
  .button-9:focus {
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
  }
  
  .button-9 a {
      color: white;
      text-decoration: none;
  }


  @media (max-width:1720px) {
    .uslugimain {
        margin-left: 160px;
    }
  }

  @media (max-width:1660px) {
    .uslugimain .container .text {
        font-size: 16px;
    }
  }

  @media (max-width:1499px) {
    .uslugimain .container .text {
        font-size: 14px;
    }
    .uslugimain .container {
        width: 90%;
    }
    .uslugimain .button-9 {
        width: 30%;
    }
  }

  @media (max-width:1321px) {
    .uslugimain .button-9 {
        width: 40%;
    }
  }

  @media (max-width:1223px) {
    .uslugimain {
        margin-top: 100px;
        width: 80%;
    }
    .uslugimain .container .text {
        font-size: 20px;
        text-align: center;
    }
    .uslugimain .container .text ul {
        list-style-type: none;
        text-decoration: none;
    }
    .uslugimain .button-9 {
        width: 24%;
    }
  }

  @media (max-width:1060px) {
    .uslugimain {
        margin-left: 140px;
        
    }
    .uslugimain .button-9 {
        width: 30%;
    }
  }
  @media (max-width:900px) {
    .uslugimain {
        margin-left: 110px;
        
    }
    .uslugimain .button-9 {
        width: 30%;
    }
  }


  @media (max-width:843px) {
    .uslugimain {
        margin-left: 90px;
        
    }
    .uslugimain .button-9 {
        width: 35%;
    }
  }

  @media (max-width:725px) {
    .uslugimain {
        margin-right: 150px;
        
    }
    .uslugimain .button-9 {
        width: 40%;
    }
  }


  @media (max-width:667px) {
    .uslugimain {
        margin-left: 70px;
    }
  }

  @media (max-width:634px) {
    .uslugimain {
        margin-right: 100px;
    }
    .uslugimain .button-9 {
        width: 45%;
    }
  }

  @media (max-width:564px) {
    .uslugimain {
        margin-right: 100px;
    }
    .uslugimain .button-9 {
        width: 50%;
    }
  }


  @media (max-width:460px) {
    .uslugimain {
        margin-left: 55px;
    }
  }

  @media (max-width:508px) {
    .uslugimain {
        margin-right: 100px;
    }
    .uslugimain .button-9 {
        width: 55%;
    }
  }

  @media (max-width:462px) {
    .uslugimain {
        margin-right: 100px;
    }
    .uslugimain .button-9 {
        width: 60%;
    }
  }

  @media (max-width:462px) {
    .uslugimain {
        margin-right: 0px;
    }
    .uslugimain .button-9 {
        width: 70%;
    }
  }

  @media (max-width:390px) {
    .uslugimain {
        margin-left: 50px;
    }
    .uslugimain .button-9 {
        width: 70%;
    }
  }






/* cel */

.cel {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    float: right;
    width: 40%;
    margin-right: 140px;
    border: 3px solid whitesmoke;
    background: whitesmoke;
    border-radius: 10px;
}

.cel .img {
    width: 100%;
}

.cel .uslugi ul {
    list-style-type: none;
}

.cel .uslugi h2 {
    margin-bottom: 5px;
    margin-left: 30px;
 }

 .cel .uslugi ul li {
    margin-bottom: 3px;
 }


 @media (max-width:1660px) {
    .cel .imgcel {
        width: 30%;
    }
  }

  @media (max-width:1499px) {
    .cel .uslugi {
        font-size: 14px;
    }
    .cel {
        width: 37%;
    }
  }

  @media (max-width:1304px) {
    .cel .uslugi {
        font-size: 14px;
    }
    .cel {
        width: 34%;
    }
  }

  @media (max-width:1223px) {
    .cel {
        margin-top: 100px;
        margin-right: 1px;
        width: 100%;
        margin-bottom: 50px;
    }
    .cel .container .uslugi {
        font-size: 20px;
    }
  }

  @media (max-width:1070px) {
    .cel {
        width: 100%;
        
    }
    .uslugimain .button-9 {
        width: 30%;
    }
  }
  @media (max-width:900px) {
    .cel {
        margin-left: 10px;
        
    }
    .uslugimain .button-9 {
        width: 30%;
    }
  }


  @media (max-width:843px) {
    .cel {
        width: 100%;
        
    }
    .uslugimain .button-9 {
        width: 35%;
    }
  }

  @media (max-width:725px) {
    .cel {

        width: 100%;
        
    }
    .uslugimain .button-9 {
        width: 40%;
    }
  }


  @media (max-width:667px) {
    .cel {
        width: 100%;
    }
  }

  @media (max-width:634px) {
    .cel {
        margin-right: 00px;
        width: 100%;
    }
    .uslugimain .button-9 {
        width: 45%;
    }
  }

  @media (max-width:564px) {
    .cel {
        margin-right: 00px;
        width: 100%;
    }
    .uslugimain .button-9 {
        width: 50%;
    }
  }



  @media (max-width:508px) {
    .cel {
        width: 100%;
    }
    .uslugimain .button-9 {
        width: 55%;
    }
  }

  @media (max-width:462px) {
    .cel {
        width: 100%;
    }
    .uslugimain .button-9 {
        width: 60%;
    }
  }

  @media (max-width:462px) {
    .cel {
        margin-right: 0px;
    }
    .uslugimain .button-9 {
        width: 70%;
    }
  }

  @media (max-width:390px) {
    .cel {
        width: 100%;
    }
    .uslugimain .button-9 {
        width: 70%;
    }
  }

  /* FOOTER */

  footer {
    margin-top: 600px;
    padding: 40px 0;
    background-color: rgb(131, 165, 230);
    height: 20%;
    color: white;
}

.footer .logofooter {
    text-align: center;
    margin-bottom: 10px;
}

.footer .logo {
    color: white;
}

.footer ul {
    text-align: center;
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.0;
    margin-bottom: 0;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    opacity: 1;
}

.footer .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: white;
}

@media (max-width:1223px) {
    footer {
        margin-top: 2300px;
    }
}

@media (max-width:800px) {
    footer {
        margin-top: 1900px;
    }
}

@media (max-width:508px) {
    footer {
        margin-top: 1900px;
    }
  }

  @media (max-width:434px) {
    footer {
        margin-top: 21  00px;
    }
  }

  @media (max-width: 398px) {
    footer {
        margin-top: 2200px;
    }
  }

  @media (max-width: 348px) {
    footer {
        margin-top: 2200px;
    }
  }

  @media (max-width: 334px) {
    footer {
        margin-top: 2200px;
    }
  }







