* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
}

.wrapper {
  width: 100%;
}

.why {
    padding: 50px 0;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.left-col {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin-right: 70px;
}

.right-col {
    width: 40%;
    /* height: 100%; */
    background: #222;
    padding: 50px;
    position: relative;
}

.left-col__header {
    width: 100%;
    font-size: 30px;
    letter-spacing: 1px;
    margin-top: 70px;
}

.block {
    width: 33%;
    margin-top: 30px;
}

.block__icon {
    width: 20px;
}

.block__icon:hover {
    transform: rotate(360deg);
    transition: 0.3s;
}

.block__text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 30px;
    opacity: .8;
}

.price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.price::before {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 120%;
    background-image: linear-gradient(to bottom, #a445b2, #d41872 52%, #f06);
    left: 30px;
    bottom: 0;
}

.btn {
    width: 50%;
    margin: 0 auto;
    height: 40px;
    object-fit: contain;
    border-radius: 100px;
    background-image: linear-gradient(257deg, #a445b2, #d41872 52%, #f06);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    font-family: "Open Sans";
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 36px;
    text-align: center;
    padding-left: 19px;
    padding-right: 19px;
    transition: all .3s;
    cursor: pointer;
}

.price__block {
    color: #fff;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.price-name {
    font-size: 20px;
    float: left;
    padding-left: 26px;
    background-image: url(../img/plus-m.png);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: 0 5px;
}

.prices-price {
    font-size: 22px;
    float: right;
    text-align: right;
}

/* Starting second section */

.creation {
    background-color: #222;
    background-image: linear-gradient(to right, rgba(242, 36, 86, 0.5) 1px, transparent 1px);
    background-size: 198px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graphic {
    width: 200px;
    height: 100%;
    background-color: #f22456;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container__col-left {
    width: 300px;
}

.container__col-right {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.periods {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

.periods__block {
    width: 30%;
    margin-bottom: 50px;
}

.periods__block:last-child {
    width: 65%;
}

.periods__block-header {
    margin: 50px 0;
    font-size: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.periods__header {
    font-size: 17px;
    font-weight: 500;
    color: #f22456;
    margin-bottom: 16px;
}

.period__text {
    color: #cdc2b1;
    font-size: 14px;
    line-height: 1.5;
}

.min {
    width: 100%;
    height: 100%;
    position: relative;
}

.min__container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.min__container::after {
    content: '';
    display: block;
    position: absolute;
    right: 70px;
    top: -70px;
    width: 2px;
    height: 120%;
    background-image: linear-gradient(to bottom, #a445b2, #d41872 52%, #f06);
}

.min__container-header {
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 70px;
}

.block__text-width {
    width: 55%;
}

.min__container-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.min-blocks {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.min-blocks__list {
    width: 30%;
    list-style: none;
    margin-top: 50px;
}

.min-blocks__item {
    opacity: .8;
    font-size: 17px;
    line-height: 1.59;
    padding-left: 26px;
    background-image: url(../img/plus-m.png);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 0 5px;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px){
    .container__col-left {
        display: none;
    }

    .container__col-right {
        width: 100%;
    }


}

@media screen and (max-width: 768px){
    .container {
        flex-direction: column;
    }

    .left-col {
        width: 100%;
        margin-bottom: 50px;
    }

    .right-col {
        width: 85%;
    }

    .min-blocks {
        flex-direction: column;
    }

    .block__text-width {
        width: 100%;
        margin-bottom: 50px;
    }

    .min-blocks__list {
        width: 100%;
        margin-top: 0;
    }
}

@media screen and (max-width: 660px){
    .periods {
        flex-direction: column;
    }

    .periods__block {
        width: 100%;
        text-align: center;
    }

    .periods__block:last-child {
        width: 100%;
    }
}

@media screen and (max-width: 480px){
    .block {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .right-col {
        width: 75%;
    }

    .periods {
        flex-direction: column;
    }

    .periods__block {
        width: 100%;
    }

    .periods__block:last-child {
        width: 100%;
    }
}

/* Fridas style START */
* {
    padding: 0;
    margin: 0;
  }
  
  body {
    font-family: "Lato", sans-serif;
    line-height: 1.5;
    font-size: 16px;
  }
  
  .navsbar {
    background-color: #f1f1f1 !important;
    width: 100%;
    font-size: 18px;
    position: fixed;
    z-index: 999;
    display: flex;
  }
  .navsbar ul {
    display: inline-block;
    margin-left: 60px;
  }
  .navsbar li {
    display: inline-block;
    list-style: none;
    padding: 8px 16px;
  }
  .navsbar li a:not(.active):hover {
    background-color: #0048BA;
    color: #fff;
    padding: 10px 16px;
  }
  
  .active {
    color: #FF2100;
  }
  
  .active:hover {
    color: #fff;
    background-color: #000;
    padding: 10px 16px;
  }
  
  ul li a {
    text-decoration: none !important;
    color: #000;
  }
  
  .nav_right {
    float: right;
    margin-right: 20px;
  }
  
  .bars {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
  }
  
  .ul-active {
    position: relative;
    left: 180px;
  }
  
  .icon-bars {
    display: none;
  }
  
  .menu {
    text-align: center;
    padding-top: 60px;
    background-color: #A0E1D8;
    display: flex;
  }
  .menu li {
    padding-left: 40px;
    display: inline-block;
    list-style: none;
  }
  .menu li a {
    text-decoration: none !important;
    color: #000;
  }
  .menu li a:hover {
    color: #FF2100;
  }
  .menu button {
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    background-color: #D50800;
    color: #000;
    border: none;
  }
  
  .btn:hover {
    background-color: #32CA00;
    color: #fff;
  }
  
  .dropdown-content {
    position: absolute;
    min-width: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #fff;
    display: none;
    z-index: 5;
  }
  .dropdown-content ul {
    position: absolute;
    left: -9999px;
    z-index: 30;
    box-shadow: 0px 7px 17px -11px #000000;
  }
  .dropdown-content ul li {
    height: 0;
    transition: height 0.2s ease;
  }
  .dropdown-content ul li a {
    padding: 10px 20px;
    width: 310px;
    font-size: 15px;
    background: #ffffff;
    text-decoration: none;
    color: #000000;
    transition: color 0.2s ease;
  }
  .dropdown-content li {
    display: block;
    width: 100%;
    text-align: start;
    padding-left: 10px;
    padding-right: 10px;
  }
  .dropdown-content li a {
    display: block;
    font-size: 14px;
    color: #000;
    line-height: 60px;
    padding-left: 17px;
    padding-right: 17px;
    white-space: nowrap;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .slideshow {
    width: 100%;
    height: 625px;
    position: relative;
    overflow: hidden;
    background-color: #00244D;
    opacity: 0.8;
  }
  
  .text_area {
    width: 60%;
    position: absolute;
    top: 250px;
    left: 120px;
  }
  .text_area h1 {
    font-size: 40px;
    color: #0FC0FC;
  }
  .text_area div {
    color: #fff;
    position: absolute;
    left: 200px;
    width: 380px;
    margin-top: 20px;
    font-size: 26px;
  }
  .text_area span {
    position: absolute;
    left: 200px;
    margin-top: 120px;
  }
  .text_area span button {
    border: 2px solid #0FC0FC;
    background-color: #00244D;
    color: #0FC0FC;
    padding: 16px 60px;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 30px;
  }
  
  .text_area span button:hover {
    color: #fff;
    background-color: #008080;
  }
  
  .slide_image {
    position: absolute;
    right: 120px;
    top: 250px;
  }
  .slide_image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  
  .row {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 100px;
    display: flex;
    margin-bottom: 50px;
  }
  
  .row-right {
    box-shadow: -8px 6px 30px 0 rgba(180, 180, 180, 0.3);
    padding: 60px 30px;
    width: 800px;
    margin-top: 45px;
    margin-left: 67px;
    z-index: 1;
    background-color: #fff;
    display: flex;
  }
  
  .row-right-h1 {
    width: 203px;
    height: 197px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: relative;
  }
  .row-right-h1 h1 {
    margin-top: 30px;
    margin-left: 10px;
  }
  
  .row-img1 {
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .row-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .row-plus1 {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 10%;
  }
  
  .row-plus2 {
    position: absolute;
    top: -40px;
    right: 0px;
    width: 15%;
  }
  
  .row-plus-1 {
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 10%;
  }
  
  .row-plus-1:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  .row-plus-2 {
    position: absolute;
    bottom: -40px;
    left: 10px;
    width: 15%;
  }
  
  .row-plus-2:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  .row-right2 {
    position: relative;
    margin-left: 50px;
  }
  .row-right2 p {
    font-size: 18px;
  }
  
  .row-plus3 {
    position: absolute;
    top: -40px;
    right: 6px;
    width: 3%;
  }
  
  .row-plus4 {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 5%;
  }
  
  .row-plus1:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  .row-plus2:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  .row-plus3:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  .row-plus4:hover {
    transform: rotate(360deg);
    transition: 1s;
  }
  
  /*half5*/
  .row-1 {
    width: 57.9%;
    position: relative;
  }
  .row-1 h3 {
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  .row-1 ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .line {
    content: "";
    display: block;
    position: absolute;
    width: 665px;
    height: 2px;
    background-image: -webkit-linear-gradient(right, #a445b2, #d41872 52%, #f06);
    background-image: -o-linear-gradient(right, #a445b2, #d41872 52%, #f06);
    background-image: linear-gradient(to left, #a445b2, #d41872 52%, #f06);
    left: -675px;
    top: 17px;
  }
  
  .pink {
    color: #f22456;
    font-size: 17px;
    font-weight: 600;
  }
  
  .order-audit {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.59;
    padding-left: 50px;
    position: relative;
  }
  .order-audit div {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-image: -webkit-linear-gradient(176deg, #a445b2, #d41872 52%, #f06);
    background-image: -o-linear-gradient(176deg, #a445b2, #d41872 52%, #f06);
    background-image: linear-gradient(266deg, #a445b2, #d41872 52%, #f06);
    top: 10px;
    left: 0;
  }
  
  .row-2 {
    width: 42%;
    margin-left: 30px;
  }
  
  .row-2-form {
    background-color: #222;
    box-shadow: -13px 13px 30px 0 rgba(122, 122, 122, 0.3);
    background-image: url(../img/X.png);
    background-position: 50%;
    padding: 47px 100px 66px;
    height: auto;
    position: relative;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .row-2-form h3 {
    color: #f22456;
    font-family: Roboto;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    -webkit-background-clip: text;
  }
  
  .line2 {
    top: 54px;
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 10px;
    background-color: #fff;
    left: 0;
  }
  
  .row-form {
    position: relative;
  }
  .row-form input[type=text] {
    color: #e5e5e5;
    background-color: transparent;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-image-source: -webkit-linear-gradient(right, #a445b2, #d41872 52%, #f06);
    border-image-source: -o-linear-gradient(right, #a445b2, #d41872 52%, #f06);
    border-image-source: linear-gradient(to left, #a445b2, #d41872 52%, #f06);
    border-image-slice: 1;
    border-top: none;
    border-right: none;
    border-left: none;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 30px;
    font-size: 14px;
  }
  
  .box {
    margin-left: 8px;
    border-radius: 2px;
    height: 20px;
    width: 17px;
    background-size: cover;
    margin-top: -7px;
    border: 1px solid #fff;
  }
  
  .box-text {
    padding-left: 25px;
    font-size: 12px;
    display: inline-block;
    position: relative;
    top: -22px;
    color: #fff;
    margin-left: 10px;
  }
  .box-text a {
    color: #f22456;
    text-decoration: underline;
  }
  
  .center {
    text-align: center;
  }
  
  .form-btn {
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    width: 230px;
    margin-top: 30px;
    border-radius: 100px;
    background-image: linear-gradient(257deg, #a445b2, #d41872 52%, #f06);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    border: none;
    padding: 19px 19px;
    cursor: pointer;
  }
  
  .form-btn:hover {
    background-image: linear-gradient(78deg, #3023ae, #c86dd7);
  }
  
  .row-plus-s {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
  
  .row-plus-s2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  
  .row-plus-s3 {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .row-plus-s:hover {
    transform: rotate(360deg);
    transition: 0.5s;
  }
  
  .row-plus-s2:hover {
    transform: rotate(360deg);
    transition: 0.5s;
  }
  
  .row-plus-s3:hover {
    transform: rotate(360deg);
    transition: 0.5s;
  }
  
  .reviews {
    padding-top: 70px;
    padding-bottom: 0;
    background-color: #fbfbfb;
    margin-bottom: 300px;
  }
  
  .container {
    margin: auto;
  }
  
  .reviews h2 {
    line-height: 1.54;
    letter-spacing: 9px;
    margin-bottom: 33px;
    padding-left: 100px;
  }
  
  .reviews-item {
    width: 700px;
    background-color: #fff;
    padding: 40px 40px 40px 100px;
    height: 100%;
    left: -300px;
    display: flex;
  }
  .reviews-item img {
    width: 200px;
    height: 50px;
    margin-right: 50px;
    z-index: 6;
  }
  
  .reviews-text {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.93;
    margin-top: -300px;
    margin-left: 100px;
  }
  .reviews-text p {
    margin-bottom: 20px;
  }
  .reviews-text a {
    color: #087ac1;
  }
  
  .footer {
    padding-top: 10px;
    padding-bottom: 30px;
    background-color: #222;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer_row {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-box {
    padding: 20px 20px;
  }
  .footer-box span {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 17px;
    display: block;
  }
  .footer-box ul li {
    list-style: none;
    padding: 10px 20px;
  }
  .footer-box a {
    padding: 4px 0;
    text-decoration: none;
    color: #fff;
  }
  
  .share-btns {
    display: block;
  }
  
  .share-btn {
    display: inline-block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.2s;
  }
  .share-btn a i {
    font-size: 26px;
    color: #fff;
    padding: 8px 10px;
  }
  
  .share-btn a i:hover {
    background-color: #f22456;
  }
  
  .footer-title {
    color: #f22456;
    padding: 5px 0px;
  }
  
  .arda {
    width: 150px;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 5px;
  }
  .arda img {
    width: 100%;
    max-width: 150px;
    height: auto;
  }
  
  .footer-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    color: #ffffff;
    background: #222222;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 13px;
    transition: 0.3s;
    text-align: center;
  }
  
  .xp-c {
    font-size: 15px;
    color: #f22456;
  }
  
  .bottom-btn {
    background: #f80468;
    color: #fff;
    border: 0;
    padding: 0.4em 0.8em;
    margin: 0 0.5em;
    font-size: 13px;
  }
  
  @media (max-width: 768px) {
    .navsbar ul li:not(.li-active) {
      display: none;
    }
  
    .menu {
      display: none;
    }
  
    .icon-bars {
      display: block;
    }
  
    .text_area {
      display: none;
    }
  
    .row {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .row-left {
      margin: auto;
    }
  
    .row-right {
      margin-left: 0;
    }
  
    .row-1 {
      margin: auto;
    }
  
    .row-2-form {
      width: 100%;
    }
  
    .reviews-img {
      width: 100%;
    }
  
    .footer_row {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  /*# sourceMappingURL=style.css.map */
  
/* Fridas style END */