*, *:before, *:after {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    display: inline-block;
}
p {
    line-height: 25px;
}
a {
    text-decoration: none;
}
@font-face {
    font-family: Quicksand;
    src: url(fonts/Quicksand-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: Quicksand;
    src: url(fonts/Quicksand-Bold.ttf);
    font-weight: 700;
}
.fix {
    height: 50px;
    width: 100%;
    position: relative;
}
body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: #333;
}
.wrapper {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    height: inherit;
    min-height: inherit;
    padding: 0 15px;
}
.wrapper_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button_blue {
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #A186F8, #6055B9 );
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin-bottom: 50px;
}
.button_white {
    padding: 8px 30px;
    background: white;
    color: #6055B9;
    margin-left: 15px;
    border-radius: 5px;
}

/*         HEADER          */
header {
    height: 50px;
    background: linear-gradient(45deg, #A186F8, #6055B9 );
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}
header li {
    padding: 0 15px;
    color: #f0eff8;
    cursor: pointer;
}
header ul {
    display: flex;
    align-items: center;
}
.left_deco {
    position: absolute;
    top: 49px;
    left: -400px;
    z-index: 0;
}
.menu_btn {
    display: none;
}
#logo {
    padding: 5px 0;
    cursor: pointer;
}
/*          MAIN           */
main {
    min-height: 500px;
    padding: 15px 0;
}
main h1 {
    margin-right: -100px;
}
main p {
    margin: 10px -120px 60px 0;
}
main h4 {
    margin: 80px 0 30px;
}
.main_img {
    width: 150%;
    margin-bottom: 30px;
}

/*             OUR WORK SECTION         */

.our_work {
    background: #F6F5F8;
    overflow: hidden;
    min-height: 550px;
}
h3 {
    text-align: center;
    margin: 50px 0 70px;
    font-size: 25px;
}
.boxes_flex {
    display: flex;
    flex-wrap: wrap;
}
.boxes_flex .box {
    width: calc(25% - 30px);
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box__circle {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box__title {
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0;
}

/*            OUR OFFERS              */
.our_offers {
    min-height: 1000px;
    overflow: hidden;
}
.offer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 130px 0;
}
.offer_circle {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: linear-gradient(45deg, #ffb73c, #F4776A);
    display: inline-block;
    margin-right: 10px;
}
#contactBtn {
    text-decoration: none;
}
.offer__info {
    max-width: 40%;
}
.offer__info_title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.offer img {
    max-width: 400px;
}
#circle-fill:before {
    content: '';
    width: 600px;
    height: 600px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    background: #F8FBFD;
}
#circle:before {
    content: '';
    width: 600px;
    height: 600px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    border: 20px solid #F8FBFD;
}
/*            CONTACT AREA              */
.contact {
    min-height: 600px;
    background: #F6F5F8;
    overflow: hidden;
}
.contact_area {
    display: flex;
    justify-content: space-around;

}
.contact_area img {
    max-width: 400px;
}
label {
    display: block;
    margin: 15px 0 2px;
    color: #6055B9;
}
form {
    width: 30%;
    position: relative;
}
input, textarea {
    border: none;
    padding: 12px 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}
textarea {
    resize: none;
    height: 150px;
    margin-bottom: 10px;
}
.submit_button {
    background: linear-gradient(45deg, #A186F8, #6055B9 );
    color: white;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}
.error {
    border: 1px solid #F483BA;
}
.errorMsg {
    position: absolute;
    font-size: 14px;
    right: 0;
    color: #F483BA;
    display: none;
}

@media screen and (max-width: 960px ) {
    .wrapper_flex {
        flex-wrap: wrap;
    }
    .main_img {
        order: -1;
        width: 70%;
        margin-left: auto;
        margin-right: 10%;
    }
    main p, main h1 {
        margin-right: 0;
    }
    .boxes_flex .box {
        width: calc(50% - 30px);
    }
}

.line {
    position: absolute;
    height: 5px;
    top: 50px;
    left: 0;
    background: #F483BA;
}
@media screen and (max-width: 760px) {
    header ul {
        position: absolute;
        left: 0;
        top: 50px;
        background: linear-gradient(0deg, #A186F8, #6055B9 );
        z-index: 1000;
        width: 100%;
        height: calc(100vh - 50px);
        flex-direction: column;
        padding-top: 70px;
        transition: transform .5s;
        transform: translateX(-100%);
    }
    .openMenu {
        transform:translateX(0);
    }
    header ul li {
        text-align: center;
        margin: 30px;
    }
    .button_white {
        margin: 20px 0 0;
    }
    .menu_btn {
        display: block;
        cursor: pointer;
    }
    .offer {
        flex-wrap: wrap;
    }
    .offer__info {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .offer:nth-child(odd) img {
        order: -1;
    }
    .contact_area {
        flex-wrap: wrap;
    }
    .contact_area img {
        order: -1;
    }
    form {
        width: 70%;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 500px) {
    .boxes_flex .box {
        width: calc(100% - 30px);
        margin-bottom: 30px;
    }
    .offer img {
        width: 60%;
    }
    form {
        width: 100%;
    }
    .contact_area img {
        width: 60%;
    }
}
/*            FOOTER          */
footer {
    height: 50px;
    background: linear-gradient(45deg, #A186F8, #6055B9 );
    color: white;
}

#Like {
    animation: move 4s infinite;
}
#Violet-heart {
    animation: moveHeart 4s infinite;
    animation-delay: 1s;
}
@keyframes move {
    0% {
        transform: translate(450.428px, 175.376px);
    } 50% {
        transform: translate(450.428px, 195.376px);
    } 100% {
        transform: translate(450.428px, 175.376px);
    }
}
@keyframes moveHeart {
    0% {
        transform: translate(513.107px, 30px);
    } 50% {
        transform: translate(513.107px, 0);
    } 100% {
        transform: translate(513.107px, 30px);
    }
}


.successEmail {
    margin: 50px 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.successEmail__message {
    margin-top: 50px;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #6055B9;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #6055B9;
  fill: none;
  animation: stroke .6s cubic-bezier(0.650, 0.000, 0.450, 1.000) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke .3s cubic-bezier(0.650, 0.000, 0.450, 1.000) .8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #6055B9;
  }
}


/* Application */

.inputInfo {
    width: 100%;
    text-align: left;
}
.inputInfo label {
    color: #453E81;
}
.inputInfo input[type="text"] {
        background: white;
        width: 100%;
        border: 1px solid #A086F8;
        border-radius: 5px;
}
#app .inputInfo .inputError {
    border-color: red;
}
.selectChoice {
    width: 100%;
    height: 40px;
    color: #453E81;
    display: flex;
    justify-content: space-around;
    border: 1px solid #A086F8;
    border-radius: 50px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 30px;
}
.selectChoice div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-left: 1px solid #A086F8;
    cursor: pointer;
}
.selectChoice .active {
    background: #453E81;
    color: white;
}
.rating {
    width: 100%;
    height: 6px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
}
.rating .star {
    width: 20%;
    height: 100%;
    cursor: pointer;
    padding: 3px 5px 3px 0;
}
.rating .star div {
    background: #E3DFEC;
    width: 100%;
    height: 100%;
}
.rating .star:last-child {
    margin-right: 0;
}
.rating .star:hover div {
    background: #a399d1;
    transition: .3s;
}
.rating .star:last-child div {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.rating .star:first-child div {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.ratingName {
    text-align: left;
    margin-top: 50px;
    color: #453E81;
    position: relative;
}
.rating .star .ratingActive {
    background: #7C6AD4;
}
.ratingLevel {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    font-weight: bold;
}
.addNewSkillBtn {
    position: absolute;
    right: 0;
    top: 22px;
    width: 41px;
    height: 41px;
    background: #453E81;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.checkboxArea {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.checkboxArea input[type="checkbox"]{
    width: 17px;
    height: 17px;
    accent-color: #5f589d;
}
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
}

/* Track (the line) */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #E3DFEC;
    border-radius: 6px;
}
#progressBar {
    padding: 15px 0;
}

/* Thumb (the handle) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    cursor: pointer;
    background: #7C6AD4;
    border-radius: 50%;
    transition: background-color 0.2s;
    position: relative;
    top: -4px;
}

/* Change thumb color on hover */
input[type="range"]::-webkit-slider-thumb:hover {
    background: #4b427f;
}
 .textarea textarea {
    border: 1px solid #A086F8;
    border-radius: 5px;
 }
 .sendBtn {
    color: white;
    background: #453E81;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
 }
.not-agreed {
    cursor: auto;
    background: #aaa;
 }
 #app {
    padding: 15px;
 }
 .cookiesPopup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 100px;
    background: rgba(0,0,0,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
 }
 .cookiesPopup__acceptBtn {
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
 }
