@font-face {
    font-family: 'PT Root UI_Bold';
    src: url(../font/pt-root-ui/PT\ Root\ UI_Bold.otf);
}
@font-face {
    font-family: 'PT Root UI_Light';
    src: url(../font/pt-root-ui/PT\ Root\ UI_Light.otf);
}
@font-face {
    font-family: 'PT Root UI_Medium';
    src: url(../font/pt-root-ui/PT\ Root\ UI_Medium.otf);
}
@font-face {
    font-family: 'PT Root UI_Regular';
    src: url(../font/pt-root-ui/PT\ Root\ UI_Regular.otf);
}
@font-face {
    font-family: 'Inter';
    src: url(../font/Inter_2/Inter-VariableFont_slnt\,wght.ttf);
}
* {
    padding: 0;
    margin: 0 ;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
#loader {
    width: 100%;
    height: 100vh;
    background: #000 url('../img/amalie-steiness.gif') no-repeat center center;
    position: fixed;
    z-index: 1;
}
/*************** BUTTONS  *****************/
.button-blue {
    padding: 10px 20px;
    background: #00A3FF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.button-blue:hover {
    cursor: pointer;
    color: #000;
    background: #fff;
    box-shadow: 0 0 2px #000;
}
.button-blue a {
    text-decoration: none;
    transition: all 0.4s ease;
    color: #fff;
}
.button-blue:hover > a {
    color: #000;
}
/*************** BUTTONS  *****************/
.button-green {
    padding: 10px 20px;
    background: rgba(87, 203, 161, 1);
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.button-green:hover {
    cursor: pointer;
    color: #A0A0A0;
    background: #fff;
    box-shadow: 0 0 2px rgba(87, 203, 161, 1);
}
.button-green a {
    text-decoration: none;
    transition: all 0.4s ease;
    color: #fff;
}
.button-green:hover > a {
    color: #A0A0A0;
}
.button-grey {
    margin-left: 36px;
    padding: 10px 20px;
    background: #BEBEBE;;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.button-grey:hover {
    cursor: pointer;
    background: #000000;
    box-shadow: 0 0 2px #BEBEBE;
}
.button-grey a {
    text-decoration: none;
    transition: all 0.4s ease;
    color: #FFFFFF;
}
.button-grey:hover > a {
    color: #FFFFFF;
}
.button-black {
    background: #fff;;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #000;
    transition: all 0.4s ease;
}
.button-black:hover {
    cursor: pointer;
    color: #fff;
    background: #000;
}
.button-black a {
    transition: all 0.4s ease;
    color: #000;
}
.button-black:hover > a {
    color: #FFFFFF;
}

/*    *||*          HEADERS ITEMS           *||*     */

header {

}
.header {

}
.container {
    max-width: 1312px;
    margin: 0 auto;
}
.exchange-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}
.exchange-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.exchange-logo h1  a {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #000000;
}
.exchange-link {
    margin-left: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exchange-link .social-links {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #00A3FF;
    border: 1px solid #000;
    transition: all 0.4s ease;
    cursor: pointer;
}
.exchange-link .social-links:hover {
    background: rgba(0, 0, 0, 1);
}
.social-links span  {
    position: absolute;
    width: 148px;
    height: 40px;
    line-height: 40px;
    top: 50px;
    left: 50%;
    display: none;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #121212;
    border: 1px solid  #000;
    transition: all 0.4s ease;
}
.social-links span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: -11px;
    left: 62px;
    transform: rotate(45deg);
    background: #fff;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.exchange-link a img {
    object-fit: cover;
}
.navbar ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.navbar ul li {
    position: relative;
    margin: 0 4px;
    padding: 4px 8px;
}
.navbar a {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-transform: capitalize;
    color: #000000;
}
.navbar-active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: #000;
    border: 2px solid #000000;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/*          SECTIONS      2 PART           */
.section {

}
.exchange-section-items {
    /* width: 100%;
    height: auto;
    background: url(../img/Rectangle\ 2.png) linear-gradient(#fff);
    background-repeat: repeat; */
    /* background: #e4fffd; */
}
.exchange-section-cards {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}
.exchange-section-card {
    width: 25%;
    height: auto;
    text-align: start;
    padding: 50px 0;
}
.exchange-section-card h2 {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    color: #000000;
}
.exchange-section-card p {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;    
    padding-right: 40px;
    color: #000000;
}
.exchange-section-conventer {

}
.exchange-section-conventer form {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.conventer-button {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.conventer-button button {
    width: 40px;
    height: 40px;
    background: #00A3FF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.conventer-button button img {

}
.exchange-section-conventer-card {
    width: 646px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.conventer-cards {
    width: 50%;
    padding: 10px 20px;
}
.conventer-card-header {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.conventer-card-content {
    position: relative;
    margin: 10px 0;
    border: 1px solid #000000;
    border-radius: 5px;
}
.conventer-card-content-selection {
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    display: none;
    border: 1px solid #000;
    border-radius: 5px;
    z-index: 1;
    background: #fff;
}
.conventer-card-content-selection .conventer-card-content-img,
.conventer-card-content-selection .conventer-card-content-selected {
    border: none;
}
.conventer-card-content-selection .conventer-card-content-text {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conventer-card-content-selection .conventer-card-content-text span {
    margin-right: 10px;
}
.conventer-card-content-selection .conventer-card-content-selected:hover {
    background: #a0a0a028;
    cursor: pointer;
    transition: all 0.2s ease;
}
.conventer-card-content-selected {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;

}
.conventer-card-content-img,
.conventer-card-content-icon
{
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
}
.conventer-card-content-img {
    border-right: 1px solid #000000;
}
.conventer-card-content-icon {
    border-left: 1px solid #000000;
}
.conventer-card-content-img img, 
.conventer-card-content-icon img {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    cursor: pointer;
}
.conventer-card-content-text {
    width: 213px;
    height: auto;
    line-height: 40px;
    text-indent: 8px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #A0A0A0;
}
.conventer-cards input {
    width: 283px;
    height: 40px;
    margin: 10px 0;
    border: 1px solid #000000;
    border-radius: 5px;
    text-indent: 4px;
}
/*  **       AJAX SECOND PART       **   */
.conventer-cards input[type="email"],
.conventer-cards input[type="number"] {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #BEBEBE;
    text-indent: 8px;
}
.conventer-cards-items {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.conventer-cards-items .conventer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conventer-cards-items .conventer-card-header span {
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.8px;
    color: #000000;
}
.conventer-card-send {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conventer-card-send input {
    width: 238px;
    height: 40px;
    margin-left: 10px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #BEBEBE;
}
.conventer-cards-items-part .conventer-cards  {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.conventer-cards-items-part {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conventer-cards-items-part .conventer-cards input[type="checkbox"] {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
}
.conventer-cards-items-part .conventer-cards  label {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.conventer-cards label span {
    color: rgba(0, 163, 255, 1);
}
.conventer-next {
    transform: translateX(170px);
}
.conventer-card-items-content {
    width: 188px;
    height: auto;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #000000;
}
.conventer-card-items-content span,
.conventer-card-items-content .input-robot {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 5px;
}
.conventer-card-send {
    width: 100%;
}
.conventer-cards-items .conventer-cards {
    width: auto;
}
.xchange-section-conventer-alert {
    width: 647px;
    height: auto;
    margin: 20px 0;
    background: #FFFFFF;
    border: 1px solid #FF5555;
    border-radius: 5px;
}
.xchange-section-conventer-alert p {
    width: 562px;
    height: auto;
    margin: 10px 0;
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.xchange-section-conventer-alert p span {
    display: block;
    margin: 25px 0;
    color: rgba(255, 85, 85, 1);
}
.exchange-section-items form h2 {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    text-transform: uppercase;
    color: #000000;
}
.exchange-section-items ._details  {
    width: 100%;
    height: auto;
    padding: 20px 10px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
._details .prices-body-details {
    width: 293px;
    height: 40px;
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 5px;

}
._details .prices-body-details-input {
    width: 313px;
    height: 40px;
}
._details .prices-body-details-input input {
    width: 100%;
    height: 100%;
    outline: none;
    text-indent: 8px;
    border: 1px solid #000000;
    border-radius: 5px;
}
._details .prices-body-details span ,
._details .prices-body-details-input input {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
} 
.exchange-complate {
    width: 364px;
    height: auto;
    margin: 150px auto;
    text-align: center;
}
.exchange-complate-header h2 {
    margin-top: 10px;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
}
.exchange-complate-header p {
    width: 364px;
    height: 50px;
    margin: 10px 0;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;    
    color: #000000;
}
.exchange-complate-boby-content-qr {
    width: 312px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.exchange-complate-body-content-qr-bar {
    width: 161px;
    height: 161px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.exchange-complate-body-content-qr-bar span {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    color: #00A3FF;
}
.exchange-complate-boby-content-button {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}
.exchange-complate-boby-content-button button {
    width: 101px;
    height: 34px;
    margin-bottom: 8px;
    background: #00A3FF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.exchange-complate-boby-content-button button:hover {
    cursor: pointer;
    opacity: 0.8;
}
.exchange-complate-boby-content-button span {
    width: 100px;
    height: auto;
    padding: 8px 4px;
    border: 1px solid #00A3FF;
    border-radius: 5px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 6px;
    line-height: 8px;
    color: #000000;
    text-align: start;
}
.exchange-complate-boby-link {
    width: 313px;
    height: 40px;
    margin: 10px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.exchange-complate-boby-link-code {
    width: 199px;
    height: auto;
    padding: 0 2px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
}
.exchange-complate-boby-link-icon {
    position: relative;
    width: 40px;
    height: 100%;
    background: #FFFFFF;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
}
.exchange-complate-boby-link-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}
.exchange-complate-boby-link-wallet {
    width: 114px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #57CBA1;
    border-radius: 5px;
}
.exchange-complate-boby-link-wallet p {
    width: 74px;
    height: 100%;
    padding: 8px 20px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    color: #ffffff;
}
.exchange-complate-text {
    padding: 10px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #000000;
}
.exchamge-complate {
    width: 201px;
    height: 34px;
    background: #00A3FF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.exchamge-complate:hover {
    opacity: 0.8;
    cursor: pointer;
}
/*  **       AJAX SECOND PART       **   */
.exchange-section-link {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exchange-section-arrow {
    width: 1222px;
    height: 0px;
    background: rgba(0, 163, 255, 1);
    border: 2px solid #00A3FF;
}
.exchange-section-info {
    margin: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.exchange-section-info-first {
    position: relative;
    width: 50%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.exchange-section-info-first::after {
    position: absolute;
    content: '';
    width: 0;
    height: 176px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #000000;
}
.exchange-section-info-desc {
    width: 91px;
    height: 230px;
    padding-top: 10px;
    background: #47A7FF;
    border-right: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
}
.exchange-section-info-second {
    width: 50%;
    height: auto;
}
.exchange-section-info-first, 
.exchange-section-info-second  p {
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    align-items: center;
    color: #000000;
}
.exchange-section-info-first p {
    width: 466px;
    height: auto;
    margin: 0 auto ;
}
.exchange-section-info-second p {
    width: 613px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
}
.exchange-section-prices {
    width: 100%;
    height: auto;
    margin: 50px 0;
}
.exchange-section-prices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prices-header-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.prices-header-title  h2 {
    position: relative;
    padding: 4px 0;
    padding-right: 40px;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    text-transform: uppercase;
    color: #000000;
}
.prices-header-title  h2::before {
    position: absolute;
    content: '';
    width: 0;
    height: 62px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 1px solid #000000;
}
.prices-header-title p {
    width: 631px;
    height: auto;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}
.prices-header-timer {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    text-transform: uppercase;
    color: #000000;
}
.exchange-section-prices-body {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.prices-body-content {
    width: 313px;
    height: 80px;
    margin: 10px 0;
    border: 1px solid #000000;
    border-radius: 5px;
}
.prices-body-content-top {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #000000;
    border-radius: 5px;
}
.prices-body-content-top-img {
    position: relative;
    width: 40px;
    height: 40px;
    border-right: 1px solid #000000;
    border-radius: 5px;
}
.prices-body-content-top-img img {
    position: absolute;
    width: 24px;
    height: 24px;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.prices-body-content-top-desc {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prices-body-content-top-desc span {
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.prices-body-content-bottom {
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
}
.prices-body-content-bottom span {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #A0A0A0;
}
/*          FOOTER           */
.footer {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: rgba(0, 0, 0, 1);
}
.footer  h2 {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    text-align: start;
    text-transform: uppercase;
    color: #FFFFFF;

}
.exchange-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}
.exchange-footer-partners button {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    background: none;
    border: none;
    color: #00A3FF;
    cursor: pointer;
}
.footer-partners-header {
    width: 313px;
    height: 40px;
    padding: 0 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
}
.footer-partners-header-title {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.footer-partners-header-img {
    width: auto;
    height: 20px;
    object-fit: cover;
}
.exchange-footer-partners p {
    margin: 10px 0;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}
.exchange-footer-partners a,
.exchange-footer-partners span  {
    /* width: 61px; */
    display: block;
    padding: 4px 0;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.exchange-footer-partners a:hover {
    color: rgba(0, 163, 255, 1);
}
.exchange-footer-content ._partners .footer-partners-header-title {
    color: rgba(38, 162, 124, 1);
}
.exchange-footer-content ._partners .footer-partners-header-img {
    width: 40px;
    height: 40px;
    background: #26A27C;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
}
.exchange-footer-content ._partners  .footer-partners-header {
    padding-right: 0;
}
.exchange-footer-content ._partners p, 
.exchange-footer-content ._partners span {
    text-align: end;
}
.exchange-footer-content ._partners  h3 {
    margin: 20px 0;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}
.hide {
    display: none;
}
.show {
    display: block;                                                                                                             */
}

/*  SECOND PAGE ======================================================================================
======================================================================================================
 */
.rates-section-price {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
._rates .exchange-section-prices-body,
._rates .exchange-section-prices {
    margin-bottom: 0;
}
.rates-section-price .exchange-section-prices-body {
    width: 646px;
    height: auto;
    margin-top: 0;
}
.rates-section-statistics {
    width: 646px;
    height: auto;
    margin-top: 18px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.rates-section-statistics-header {
    width: 100%;
    height: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
}
.rates-section-statistics-body {
    width: 100%;
    height: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    border-bottom: 1px solid #000000;
    border-radius: 5px;
}
.rates-section-statistics-body-key h4,
.rates-section-statistics-body-value p  {
    margin: 10px 0;
}
.rates-section-statistics-head {
    width: 100%;
    height: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
}
.rates-section-statistics-footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-top: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}
.rates-section-statistics-footer::before {
    content: '';
    position: absolute;
    width: 410px;
    height: 0;
    border: 1px solid #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* THIRD PAGE    =====================================================================================
====================================================================================================== */
.news-section {
    width: 100%;
    height: auto;
    margin: 100px 0 ;
}
.news-section-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.news-section-card {
    width: 313px;
    height: 296px;
    margin: 10px 0;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.news-section-card-img {
    width: 274px;
    height: 180px;
    background: radial-gradient(101.95% 206.22% at -1.95% 0%, #8147E4 0%, #57CBA1 100%);
    border: 1px solid #000000;
    border-radius: 5px;
    overflow: hidden;
}
.news-section-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-section-card-title {
    padding-bottom: 4px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    border-bottom: 1px solid #000000;
}
.news-section-card-title span {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.3);
}
.news-section-card-desciption {
    width: 208px;
    height: 42px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
}
.news-section-btn {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*  FOURTH PAGE ===================================================================================
================================================================================================== */
.rewievs-section {
    width: 100%;
    height: auto;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.rewievs-section-slider {
    width: 868px;
    height: auto;
}
.rewievs-section-slider-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.slider-content-element {
    width: 424px;
    height: auto;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.slider-content-element-name {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    align-items: center;
    text-align: center;
    color: #000000;
}
.slider-content-element-description {
    margin: 10px 0;
    padding-right: 100px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.slider-content-element-description a {
    color: rgba(71, 167, 255, 1);
}
.slider-content-element-data {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;    
    color: rgba(0, 0, 0, 0.3);
}
.rewievs-section-slider-nav {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.rewievs-section-slider-nav button {
    width: 40px;
    height: 40px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0 10px;
    font-size: 18px;
}
.rewievs-section-slider-nav button img {
    object-fit: cover;
}
.rewievs-section-slider-nav ul {
    width: 240px;
    height: 40px;
    line-height: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.rewievs-section-slider-nav ul li {
    padding: 0 4px;
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}
.rewievs-section-slider-nav ul li:hover {
    color: #00A3FF;
    cursor: pointer;
}
.rewievs-section-slider-nav .rewievs-active {
    color: #000;
}
.rewievs-section-publish {
    width: 424px;
    height: auto;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #000000;
    border-radius: 5px;
}
.rewievs-section-publish form {
    width: 100%;
    height: auto;
    padding: 20px;
}
.rewievs-section-publish form input {
    width: 385px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    text-indent: 8px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.2);
    outline: none;
}
.rewievs-section-publish form p {
    margin: 10px 0;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.rewievs-section-publish form input[type="text"] {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
}
.rewievs-section-publish form label {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 8px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.2);
}
.rewievs-section-publish-robot {
    padding: 20px;
}
.rewievs-section-publish-btn {
    margin: 0 auto;
}
.rewievs-section-publish-btn button {
    width: 100%;
}
.reviews-btn {
    width: 100%;
    height: 100%;
    background: #57CBA1;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}
.reviews-btn:hover {
    opacity: 0.8;
}
/* =================================================================================================
==================================================================================================== */
.help-section-chat {
    position: relative;
    width: 424px;
    height: 687px; 
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
._chat {
    align-items: flex-start;
}
._chat h2 {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #000000;
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    color: #000000;
}
._chat  .rewievs-section-publish {
    border: none;
    margin: 0;
} 
._chat  .rewievs-section-publish h2 {
    margin-bottom: 20px;
    border: none;
}
._chat .slider-content-element-description {
    margin: 2px 0;
}
.help-section-chat-header {
    padding: 10px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    color: #BEBEBE;
}
.help-section-chat-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 54px;
    background: #FFFFFF;
    border-top: 1px solid #000000;
    border-radius: 5px;
}
.help-section-chat-footer input {
    width: 368px;
    height: 100%;
    outline: none;
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding: 0 8px;
    color: #000000;
    border: none;
    border-radius: 5px;
}
.help-section-chat-footer button {
    width: 54px;
    height: 100%;
    border: none;
    background: #47A7FF;
    border-left: 1px solid #000;
    border-radius: 5px;
    transition: all 0.4s ease;
}
.sending-btn:hover {
    opacity: 0.8;
    cursor: pointer;
}
.help-section-chat-text {
    width: 100%;
    height: 590px;
    padding: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 5px;
}
.help-section-chat-text-reciving, .help-section-chat-text-sending {
    width: 268px;
    height: auto;
    margin: 10px 0;
    padding: 10px;
    background: #CEE8FF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.help-section-chat-text-sending {
    transform: translateX(130px);
}
.help-section-chat-text-reciving {
    background: #fff;
}
._chat-foooter {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
._chat-footer-item, ._chat-footer-btn {
    width: 424px;
    height: 53px;
    line-height: 54px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}
._chat-footer-btn {
    color: #ffffff;
    background: #57CBA1;
    border: 1px solid #000000;
    border-radius: 5px;
    transition: all 0.4s ease;
}
._chat-footer-btn:hover {
    cursor: pointer;
    opacity: 0.8;
}
._chat-content {
    width: 100%;
    height: auto;
    margin: 50px 0;
}
.chat-content-document p {
    width: 424px;
    height: 54px;
    line-height: 54px;
    margin: 10px 0;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
}
.chat-content-document p span {
    margin-left: 20px;
}
._chat-content-form-header {
    font-family: 'PT Root UI_Bold';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #000000;
}
._chat-content-form-card .rewievs-section-publish {
    margin: 10px auto;
}

/* =====================================================
======================================================== */
/* .login-section {
    width: 100%;
    height: 50vh;
} */
.registration-card {
    width: 424px;
    height: auto;
    padding: 20px;
    margin: 100px auto;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.registration-card-header {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.registration {
    width: 138px;
    height: 40px;
    margin: 0 20px;
    background: #C7C7C7 !important; 
}
.registration-card form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}
.registration-card form input[type="text"],
.registration-card form input[type="password"]
 {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 0 10px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #BEBEBE;
}
.registration-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.registration-card-footer label  {
    margin-left: 10px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.registration-card-footer .button-green {
    width: 100px;
    height: 40px;
    margin-left: 130px;
}
.regsitration-login a {
    text-decoration: none;
    color: #FFFFFF;
}
.profile-section {
    width: 100%;
    height: auto;
}
.profile-section h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
}
.profile-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 10px 0;
}
.profile-content-item {
    width: 33%;
    padding: 10px 0;
}
.profile-content-item-card {
    width: 424px;
    height: auto;
    margin: 20px auto;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.profile-content-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-align: start;
}
.profile-content-item-header span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #00A3FF;
    cursor: pointer;
}
.profile-content-item-card input[type="text"], .profile-content-item-input  {
    width: 384px;
    height: 40px;
    padding: 0 10px;
    margin: 10px auto;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #BEBEBE;
}
.profile-content-item-input {
    position: relative;
}
.profile-content-item-input  input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
    outline: none;

}
.profile-content-item-input   label {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    top: 0;
    right: 0;
}
.profile-content-item a {
    margin: 20px 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #00A3FF;
}
.profile-wallet .prices-body-content-top {
    border: 1px solid #000;
    margin: 10px 0;
}
.profile-wallet .profile-wallet-span , .profile-wallet-conventer .profile-wallet-span {
    font-family: 'PT Root UI_Light';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.2);
}
.profile-wallet-conventer {
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 5px;

}
.profile-wallet-conventer .prices-body-content-top {
    border: none
}
.profile-wallet-conventer ._profile-top {
    border-bottom: 1px solid #000
}
.profile-wallet-conventer ._profile-bottom {
    border-top: 1px solid #000
}
.profile-wallet-conventer ._profile-middle {
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-wallet-conventer ._profile-middle p {
    font-family: 'PT Root UI_Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.prices-body-content-top-data {
    position: relative;
    width: 122px;
    height: 24px;
    line-height: 24px;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.prices-body-content-top-data span {
    margin: 0 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    color: #000000;
}
.prices-body-content-top-data::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 0;
    top: 50%;
    left: -52px;
    transform: translateY(-50%);
    border: 0.5px solid #000;
    border-radius: 5px;
}
.prices-body-content-top-data::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 0;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
    border: 0.5px solid #000;
    border-radius: 5px;
}
.profile-content-item-setting {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-content-item-setting-header {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.profile-content-item-setting-label {
    position: relative;
    width: 40px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.profile-content-item-setting-label input  {
    display: none;
}
.profile-content-item-setting-label label {
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -1px;
    left: -1px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.setting-profile {
    background: #57CBA1 !important;
    transform: translate(20px);
}
.profile-content-text {
    width: 384px;
    height: 40px;
    line-height: 40px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}
.profile-green {
    color: #57CBA1;
}
.profile-red {
    color: #FF5555;
}
.profile-content-item button {
    width: 424px;
    height: 40px;
}
.profile-personal-data {

}
.profile-personal-data p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
}
.profile-personal-data-info {
    width: 384px;
    height: 40px;
    line-height: 40px;
    margin: 10px auto;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.profile-personal-data-info-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-left: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
}
.profile-personal-data-info-link  img {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
._api {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #BEBEBE;
    overflow: hidden;
}
.personal-api {
    width: 80px;
    height: 40px;
    background: #00A3FF;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.personal-api-check {
    cursor: pointer;
    width: 40px;
    height: 100%;
    line-height: 40px;
    text-align: center;
    border-left: 1px solid #000;
    border-radius: 5px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}
.personal-api .profile-personal-data-info-link {
    background: #ffffff;
}
.profile-faq {
    width: 424px;
    height: auto;
}
.profile-faq p {
    margin: 10px 0;
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.profile-faq-link {
    cursor: pointer;
    margin: 10px 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    border: none;
    background: none;
    color: #00A3FF;
}
.faq-modal {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 876px;
    height: auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 5px;
    background: #fff;
    z-index: 2;
    display: none;
    transition: all 0.4s ease;
}
.faq-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}
.faq-modal-header h4 {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}
.faq-modal-text {
    width: 388px;
    height: auto;
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
}
.faq-modal-text p {
    font-family: 'PT Root UI_Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}
.faq-modal-text b {
    display: block;
    margin: 8px 0;
}
.faq-modal-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.faq-modal-header span {
    cursor: pointer;
}
.profile-content-item-card .profile-faq  {
    width: 100%;
}
.registration-card-checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#registration-label {
    width: 20px;
    height: 20px;
}
.rewievs-section-publish-footer {
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    .exchange-section-conventer form {
        flex-direction: column;
        align-items: center;
    }
    .exchange-section-conventer-card {
        margin: 10px auto;
    }
    .conventer-button {
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .conventer-button img {
        transform: rotate(90deg);
    }
    .exchange-section-arrow {
        width: 90%;
    }
    .exchange-section-info-first {
        align-items: stretch;
    }
    .exchange-section-info-desc {
        height: auto;
    }
    .exchange-section-info-first::after {
        right: 10px;
    }
    .exchange-section-info-first p {
        width: 300px;
        padding: 0; 
        margin: 20px 0;
        margin-left: 10px;
    }
    .exchange-section-info-second p {
        width: 420px;
    }
    .prices-header-title p {
        width: 300px;
        font-size: 18px;
    }
    .exchange-section-prices-body {
        justify-content: space-evenly;
    }
    .exchange-footer-content {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .footer h2 {
        margin-left: 90px;
    }
    .exchange-footer-partners {
        margin: 10px 0;
    }
    .exchange-section-items ._details {
        justify-content: space-evenly;
    }
    ._details .prices-body-details-input {
        width: 293px;
    }
    .prices-body-details-input {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .rates-section-price {
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .rates-section-price  .exchange-section-prices-body {
        width: 100%;
        justify-content: space-evenly;
    }
    .news-section-cards {
        justify-content: space-evenly;
    }
    .rewievs-section {
        flex-direction: column;
    }
    .rewievs-section-publish {
        margin: 20px 0;
    }
    ._chat-footer-item, ._chat-footer-btn {
        width: 30%;
    }
    ._chat .rewievs-section-publish {
        margin: 0 auto;
    }
    .profile-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    .profile-content-item {
        width: auto;
    }

}
@media only screen and (max-width: 900px) {
    .container {
        max-width: 760px;
    }
    .exchange-logo h1 a {
        font-size: 24px;
    }
    .exchange-link {
        margin-left: 10px;
    }
    .navbar a {
        font-size: 16px;
    }
    .navbar-active::before {
        border: 1px solid #000;
    }
    .exchange-section-card {
        width: 50%;
    }
    .exchange-section-card p {
        margin-right: 50px;
    }
    .exchange-section-arrow {
        width: 85%;
    }
    .exchange-section-info-first p {
        width: 250px;
        font-size: 14px;
    }
    .exchange-section-info-second p {
        width: 300px;
        font-size: 14px;
    }
    .rewievs-section-slider {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }
    .rewievs-section-slider-content {
        justify-content: space-evenly;
    }
    .slider-content-element {
        width: 313px;
    }
    .slider-content-element-description {
        padding-right: 50px;
    }
    .rewievs-section-publish {
        margin: 20px auto;
    }
    ._chat-footer-item, ._chat-footer-btn {
        font-size: 14px;
    }

}
@media only screen and (max-width: 767px) {
    .container {
        max-width: 460px;
    }
    .exchange-top-header {
        flex-direction: column;
        align-items: center;
    }
    .navbar {
        width: 450px;
        margin: 10px 0;
    }
    .navbar a {
        font-size: 14px;
    }
    .exchange-section-conventer-card {
        width: 420px;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }
    .conventer-cards {
        width: auto;
    }
    .exchange-section-arrow {
        width: 80%;
    }
    ._first {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .exchange-section-info-desc {
        width: 100%;
        height: 54px;
    }
    .exchange-section-info-first {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .exchange-section-info-first::after {
        display: none;
    }
    .exchange-section-info-first p, .exchange-section-info-second {
        width: 100%;
        margin: 10px 0;
        padding: 10px;
    }
    .exchange-section-info-second  p {
        width: 100%;
    }
    .exchange-section-card p {
        margin-right: 0;
        padding-right: 10px;
    }
    .exchange-section-prices-header {
        flex-direction: column;
    }
    .prices-header-title {
        margin: 20px 0;
        text-align: center;
        flex-direction: column;
    }
    .prices-header-title h2 {
        padding: 0;
    }
    .prices-header-title p {
        width: 100%;
    }
    .prices-header-title h2 {
        width: 80%;
        height: auto;
    }
    .prices-header-title  h2::before {
        width: 100%;
        height: 0;
        left: 0;
        top: -10px;
    }
    .exchange-section-conventer-card-part {
        width: 100%;
    }
    .xchange-section-conventer-alert {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    .xchange-section-conventer-alert p {
        width: 80%;
        margin: 0 auto;
    }
    .conventer-cards-items {
        flex-direction: column;
        align-items: center;
    }
    .button-next {
        transform: translate(0);
    }
    .exchange-section-conventer .conventer-button {
        display: none;
    }
    .exchange-section-items form h2 {
        text-align: center;
    }
    .prices-body-details-input {
        margin: 10px 0;
    }
    .rates-section-statistics {
        width: 100%;
        margin: 0 auto;
    }
    .rates-section-statistics-footer::before {
        width: 40%;
    }
    ._chat-foooter {
        width: 100%;
        flex-direction: column;
    }
    ._chat-footer-item, ._chat-footer-btn {
        width: 90%;
        margin: 10px auto;
    }
}    
@media only screen and (max-width: 480px) {
    .container {
        max-width: 280px;
        margin: 0 auto;
    }
    .navbar ul {
        flex-direction: column;
    }
    .navbar ul li {
        margin: 8px 0;
    }
    .exchange-section-card {
        width: 100%;
        text-align: center;
    }
    .exchange-section-conventer-card {
        width: 100%;
    }
    .conventer-cards {
        width: 100%;
    }
    .conventer-cards input {
        width: 100%;
    }
    .exchange-section-arrow {
        width: 60%;
    }
    .footer h2 {
        margin: 10px auto;
        text-align: center;
    }
    .exchange-footer-partners {
        width: 100%;
    }
    .exchange-footer-content {
        width: 100%;
    }
    .footer-partners-header {
        width: 100%;
        margin: 0 auto;
    }
    .exchange-footer-partners p, .exchange-footer-partners a , .exchange-footer-partners button  {
        margin-left: 10px;
    }
    .exchange-footer-content ._partners p , .exchange-footer-content ._partners span , .exchange-footer-content ._partners h3 {
        margin-right: 10px;
    }
    .conventer-cards-items-part {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .button-next {
        margin: 0 auto;
    }
    .conventer-cards-items .conventer-card-header {
        text-align: center;
        flex-direction: column;
    }
    .prices-body-details-input input {
        width: 100%;
    }
    .exchange-section-items .exchange-section-info ._details {
        flex-direction: row-reverse;
    }
    ._details .prices-body-details-input {
        width: 100%;
    }
    .exchange-complate , .exchange-complate-header p {
        width: 100%;
        height: auto;
    }
    .exchange-complate-boby-content-qr {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .exchange-complate-body-content-qr-bar {
        margin: 10px 0;
    }
    .exchange-complate-boby-link {
        width: 100%;
    }
    .rates-section-statistics-header h2,  .rates-section-statistics-header p , .rates-section-statistics-footer , .rates-section-statistics-head {
        font-size: 18px;
    }
    .rates-section-statistics-body {
        font-size: 14px;
    }
    .rates-section-statistics-footer::before {
        width: 25%;
    }
    .news-section-card, .slider-content-element, .rewievs-section-publish form input  {
        width: 90%;
    }
    .news-section-card-img {
        width: auto;
    }
    .rewievs-section-slider-nav ul li, .rewievs-section-slider-nav button {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 4px 0;
        font-size: 14px;
    }
    .rewievs-section-slider-nav {
        width: 100%;
        height: auto;
        margin: 10px 0;
        flex-direction: column;
    }
    .registration-card, .rewievs-section-publish-footer, .rewievs-section-publish, .rewievs-section-publish-btn, .help-section-chat {
        width: 100%;
    }
    .help-section-chat-text-sending {
        transform: translate(0);
    }
    .help-section-chat-text {
        align-items: center;
    }
    .help-section-chat-footer input {
        width: 90%;
    }
    .registration-card-footer {
        width: 100%;
    }
    .registration-card-footer .button-green {
        margin: 0;
    }
    .conventer-next {
        transform: translateX(130px);
    }
    ._chat h2 {
        text-align: center;
    }
    .rewievs-section-publish form input {
        font-size: 14px;
    }
}