@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/*
#479ff8
*/
:root{
    --color-main-gray: #c1c1c1;
    --color-main-blue: #0081ff;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: var(--color-main-blue);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
    padding: 8px 28px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: var(--color-main-blue);
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    display: block;
}
.a-more-information{
    text-decoration: none;
    color: var(--color-main-blue);
}
main {
    margin-top: 200px;
}

.filler {
    border-radius: 10px;
    background: #F3F3F3;
}

section {
    margin-bottom: 100px;
}
/* header */

.header {
    position: fixed;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    top: 0;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
    width: 1276px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px 0px var(--color-main-gray);
    border-radius: 15px;
    height: 60px;
    display: inline;
    z-index: 999;
    overflow: hidden;
}

.header-img {
    margin-top: 9px;
}

#select-language{
    text-decoration: none;
    color: var(--main-color);
    font-size: var(--normal);
    font-weight: 400;
    margin: 10px 20px;
    border-width: 0;
    outline: 0;
}
.header-img:hover{
    animation: 0.8s linear rotate;
}
@keyframes rotate {
    0% {
      transform:  rotate(0deg);
    }
    25% {
        transform: rotate(-4deg);
      }
    50% {
        transform: rotate(4deg);
    }
    75%{
        transform: rotate(-4deg);
    }
    100% {
        transform: rotate(0deg);
    }
  }
.header-pc-ul {
    position: fixed;
    margin-top: -50px;
    list-style: none;
    display: flex;
    right: 0;
    align-items: center;
}

.header-pc-ul li {
    margin-left: 40px;
}

.header-pc-ul li a{
    font-size: 18px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}
.header-pc-ul li a:hover{
    color: var(--color-main-blue);
  /* Смещаем подчёркивание на 20 пикселей вниз */
  
    text-underline-offset: 20px;
    transition-duration: 0.5s;
}
.active{
    /*text-decoration: underline 2px #479FF8 !important;
  /* Смещаем подчёркивание на 20 пикселей вниз */
    text-underline-offset: 20px;
    text-decoration-thickness: 2px;
}

.header-pc-ul #login {
    background-color: #27AE60;
    text-transform: capitalize;
    width: 116px;
    height: 41px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border: none;
    border: solid 2px #27AE60;
    box-shadow: 4px 5px 40px #EEEEEE;
    border-radius: 6px;
    margin-right: 10px;
    /*animation: 1s linear infinite rotate;*/

}

.header-pc-ul #login:hover {
    background-color: #fff;
    color: #27AE60;
    
    transition-duration: 0.5s;
}
/*menu bar*/
.menu-bar {
    display: none;
    position: fixed; 
    width: 200px; 
    height: 200px; 
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 4px 4px 40px var(--color-main-gray);
    right: 20px;
    top: 80px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s linear;
}
.menu-bar.show {
    opacity: 0;
}
.menu-bar-ul {
    list-style: none; 
    line-height: 30px;
    margin: 15px;
}
.menu-bar-ul li a{
    color: var(--color-main-blue);
    text-decoration: none;
}
.menu-bar-ul li button {
    background-color: #27AE60;
    text-transform: capitalize;
    width: 116px;
    height: 30px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border: none;
    border: solid 2px #27AE60;
    box-shadow: 4px 5px 40px #EEEEEE;
    border-radius: 6px;
    padding: 0;
    margin-top: 10px;
}
.bar-menu-button{
    cursor: pointer;
    position: fixed;
    top: 18px;
    left: 320px;
    z-index: 1000;
    width: 40px; 
    height: 40px; 
    margin: 6px; 
    display: none;
}
.burger-raw{
    width: 40px; 
    height: 6px; 
    background-color: var(--color-main-blue); 
    border-radius: 10px; 
    margin-bottom: 5px;
}
/* index */
.index-about {
    width: 100%; 
    background-color: white; 
    box-shadow: 4px 4px 40px #c1c1c1;
    border-radius: 15px;
    padding: 30px;
    font-size: 18px;
    margin: 0px;
    margin-bottom: 40px;
}

h1 {
    margin-top: 150px;
    font-weight: 700;
    font-size: 64px;

    background: linear-gradient(226.01deg, #00A4FF -13.24%, #0076C7 119.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1+p {
    font-weight: 400;
    font-size: 24px;
    color: #000000;

    margin-top: 0px;
    margin-bottom: 80px;
}

.container {
    width: 1276px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
}

span.sharix {
    color: #05A7FE;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text>div {
    width: 630px;
    height: 191px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    
}

.about-text h3 {
    font-weight: 700;
    font-size: 24px;
    color: #000000;
}

.about-text p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.about-img {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-img>div {
    width: 606px;
    height: 422px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}



.about .filler {
    width: 546px;
    height: 362px;
}




.work-content {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.work-content .filler {
    width: 100%;
    height: 575px;
}

.work-text {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
}

.work-text p {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-top: 30px;
}

.work-show-text {
    font-weight: 400;
    font-size: 18px;
    color: var(--color-main-blue);
    text-decoration: none;
    align-self: flex-end;
    margin-top: 40px;
    cursor: pointer;
}

.work-show-text #show, 
.work-show-text #hide {
    margin-bottom: 3px;
}

.work-show-text #hide {
    display: none;
}

.business-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.business-flex div {
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}

.business-small {
    width: 606px;
    height: 191px;
    display: flex;
    align-items: center;
}

.business-small p {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.business-big {
    width: 630px;
    height: 249px;
}

.img-content {
    height: 100%;
    width: 100%;
}
.about-img div .filler {
    width: 100%;
    height: 100%;
}
.img-org-business{
    width: 50% !important;
    height: 50% ;

}
.img-content-small {
    filter: grayscale(100%);
    border-radius: 15px;
    height: 100%;
    width: 100%;
}
.img-content-small:hover {
    filter: grayscale(0%);
    box-shadow: 1px 1px 15px var(--color-main-gray);
    transition-duration: 0.5s;
}

.connection-content {
    padding: 40px 30px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}

.connection-content p {
    font-weight: 400;
    font-size: 18px;
}


.connection-content .filler {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    height: 615px;
}

.connection-content button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.connection-content button+p {
    text-align: center;
}

.courses-content {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
}
.connect-with-us{
    width: 100%;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    margin-right: 10px;
    margin-left: 10px;
}
.mail-to{
    text-decoration: none;
    color: #0081ff;
}

.courses-content p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 5px;
}

.courses-content>div {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.courses-content .filler {
    width: 378px;
    height: 249px;
    background: #F3F3F3;
    border-radius: 15px;
}

.contact-content {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
}

.contact-content .filler {
    padding: 30px;
    width: 618px;
    height: 250px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-content p {
    font-weight: 400;
    font-size: 18px;
}


/* about */
.conception-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.conception-content {
    font-size: 18px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}

.conception-content .filler {
    height: 256px;
}

.conception-content p {
    margin-top: 30px;
    font-size: 18px;
}

.conception-content .sharix {
    font-weight: 700;
}

.conception-content:nth-child(2) {
    width: 700px;
}

.conception-content:nth-child(3) {
    width: 536px;
}

.conception-content.conception-flex>div:first-child {
    width: 670px;
}

.conception-content.conception-flex>div:nth-child(2) {
    width: 503px;
}

.conception-content.conception-flex>div:nth-child(3) {
    width: 532px;
}

.conception-content.conception-flex>.filler {
    width: 644px;
    height: 330px;
}

.team-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.team-flex img {
    filter: brightness(80%);
    width: 256px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.team-flex img:hover {
    filter: brightness(100%);
    transform: rotate(-2deg) scale(1.1);
    transition-duration: 0.5s;
}
.team-flex h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

.team-flex p {
    font-weight: 400;
    font-size: 18px;
}

/* connect */
.connect-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.connect-flex>div {
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
}

.connect-flex>div h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.connect-flex>div p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}

.connect-flex>div button {
    margin-left: auto;
    margin-top: 10px;
}

.as-user {
    width: 533px;
}

.as-partner {
    width: 703px;
}

.as-service .filler {
    height: 256px;
    margin-bottom: 30px;
}

.as-service a {
    text-decoration: none;
    color: var(--color-main-blue);
}

.connect-links {
    margin-top: 40px;
    margin-bottom: -30px;
}

.create-content {
    width: 926px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.create-content ol {
    margin-left: 30px;
}

.create-content li {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}

.create-content button {
    margin-left: auto;
    margin-right: auto;
}

.price-list-content .filler {
    width: 926px;
    height: 332px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}


.business-org, 
.service-look {
    margin-top: -30px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}

.business-org a, 
.service-look a {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    color: #00A4FF;
    margin-bottom: 10px;
}

.business-org img {
    display: block;
    width: 502px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

.service-look img {
    display: block;
    width: 622px;
    margin-left: auto;
    margin-right: auto;
}

.business-org p, 
.service-look p {
    margin-top: 30px;
    font-weight: 400;
    font-size: 18px;
}


/* products */


.templates-flex {
    background: #FFFFFF;
    box-shadow: 4px 4px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 57px;
    /*animation: 5s linear shardow-big;*/
}
/*
@keyframes shardow-big{
    
      0%{
        box-shadow: -40px 4px 40px var(--color-main-gray);
      }
      100%{
        box-shadow: 4px 4px 40px var(--color-main-gray);
      }
}*/
.templates-flex>div{
    width: 580px;
}

.templates-text p {
    width: 100%;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 18px;
}

.templates-flex .filler {
    height: 360px;
}

.products-table {
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.products-table p {
    font-weight: 400;
    font-size: 18px;
}

.table {
    margin-top: 15px;
}

.table .row {
    display: flex;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.table .row .name {
    width: 550px;
}

.table .row .price {
    font-weight: 700;
    margin-left: auto;
    white-space: nowrap;
    width: 100px;
}

.table .row .desc {
    margin-left: 25px;
}

.table .row h3 {
    font-weight: 700;
    font-size: 18px;
}

.table .row p {
    font-weight: 400;
    font-size: 18px;
}


/* services */

.services {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.service-content {
    width: 724px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-text {
    display: flex;
}


.service-text p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}

.service-text img {
    margin-top: 10px;
}

.service-btns {
    margin-top: auto;
    display: flex;
    gap: 30px;
    align-items: baseline;
    justify-content: flex-end;
    
}

.service-btns a {
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-main-blue);
}



/* footer */


.sharix-footer {
    width: 100%;
    height: 320px;
    margin: auto;
    padding: 30px;
    padding-bottom: 20px;
    margin: 15px;
    background: #FFFFFF;
    box-shadow: 4px 5px 40px var(--color-main-gray);
    border-radius: 15px;
}

.sharix-content {
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 30px;
}

.sharix-content ul {
    list-style-type: none;
}

.sharix-content ul h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.sharix-content ul li {
    margin-top: 15px;
}

.sharix-content ul .h {
    margin-bottom: 20px;
    margin-top: 0;
}
.sharix-content ul .h h4 {
    white-space: nowrap;
}

.business-org img {
    width: 100%;
}
.sharix-content ul a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-main-blue);
}

footer {
    width: 1276px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 30px;
}

footer p {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

.service-look img {
    width: 100%;
}
.big-sharix-div img {
    width: 100%;
    border-radius: 1000px;
}
.big-sharix-div{
    text-align: center;
    margin: auto !important;
    border-radius: 1000px;
    width: 300px !important; 
    /*animation: 5s linear translate-big;*/
}
/*
@keyframes translate-big{
    0% {
        transform: translateX(1000px) rotate(360deg);
      }
      35%{
        transform: translateX(0px) rotate(0deg);
      }
      43% {
        transform: translateX(-150px) rotate(-80deg);
      }
      100%{
        transform: translateX(0px) rotate(0deg);
      }
}*/