/*
Theme Name: coin
Theme URI: /
Description: coin
Version:  1.0
Author: Bads
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap');
* {
    box-sizing: border-box;
}
input,
button {
    outline: none;
}
body {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    background-color: #1e1c1e;
    color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.head_menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.head_menu ul li a {
    color: #fff;
    font-weight: 700;
    padding: 0 24px;
    text-decoration: none;
}
.head_menu ul li a:hover {
    color: #f7b91a;
}
.head_nav a {
    background: hsla(0,0%,91%,.08);
    border-radius: 50%;
    display: flex;
    height: 56px;
    transition: .3s;
    width: 56px;
    align-items: center;
    justify-content: center;
}
.head_nav a:hover {
    background: hsla(0,0%,91%,.2);
}
.wrp {
    margin: 0 auto;
    max-width: 1270px;
    padding: 0 15px;
    width: 100%;
}
.body_obm {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}
.body_obm_in {
    width: 49%;
}
.body_obm_in_ttl {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 35px;
    display: inline-block;
    position: relative;
}
.body_obm_in_ttl::after {
    border: 5px solid transparent;
    content: "";
    filter: blur(0.5px);
    position: absolute;
    right: -35px;
    top: 19px;
    border-right: 5px solid #89d33f;
}
.body_obm_in:first-child .body_obm_in_ttl::after {
    border-left: 5px solid #fa5255;
    border-right: 0;
}
.body_obm_in_input {
    padding: 29px;
    background: rgba(244,245,255,.2);
    border: 1px solid hsla(0,0%,100%,.2);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.body_obm_in:first-child .body_obm_in_input::before {
    content: '';
    background-image: url(img/arrows.svg);
    position: absolute;
    width: 35px;
    height: 35px;
    right: -31px;
    background-size: contain;
    z-index: 1;
    top: 27px;
}
.body_obm_in:last-child .body_obm_in_input::before {
    content: '';
    position: absolute;
    background: linear-gradient(135deg,#ffbd81,#ff7a00);
    border-radius: 50%;
    box-shadow: 2px 6px 10px rgba(93,57,193,.25);
    height: 50px;
    width: 50px;
    left: -39px;
    top: 20px;
}
.body_obm_in_input::after {
    border: 7px solid transparent;
    border-top: 7px solid #bdbdbd;
    content: "";
    filter: blur(0.7px);
    position: absolute;
    left: 90px;
    top: 43px;
}
.body_obm_in_input img {
    max-width: 32px;
    max-height: 32px;
}
.body_obm_in_input input {
    color: #fff;
    font-size: 24px;
    padding-left: 40px;
    width: 40%;
    margin-left: 60px;
    background: none;
    border: 0;
    border-left: 3px solid hsla(0,0%,91%,.08);
}
.body_obm_in_input span {
    font-size: 24px;
    text-align: right;
    width: 50%;
}
.body_obm_in_dop {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.body_obm_in_dop div span {
    color: #f7b91a;
}
.body_bts {
    text-align: center;
    margin-top: 65px;
}
.body_bts button {
    box-shadow: 0 13px 20px 0 rgba(250,183,82,.25);
    background: #f7b91a;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    height: 56px;
    max-width: 350px;
    min-width: 120px;
    transition: .3s;
    width: 100%;
    border: 0;
    font-size: 1rem;
}
.body_bts button:hover {
    color: #212529;
    box-shadow: 0 13px 20px 0 rgba(250,183,82,.424);
}
.body_bts a {
    margin-top: 25px;
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: #f7b91a;
    transition: .3s;
}
.body_bts a:hover {
    color: #d79c07;
}
.pro {
    margin: 100px 0;
}
.pro_ttl {
    text-align: center;
    font-size: 32px;
}
.pro_txt {
    font-size: 22px;
    color: #f7b91a;
}
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.foot_l {
    color: #77737e;
    font-size: 12px;
}
.foot_r ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.foot_r ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 0 20px;
    transition: .3s;
    text-decoration: none;
}
.foot_r ul li a:hover {
    color: #f7b91a;
}
@media(max-width: 950px) {
    header {
        flex-direction: column;
    }
    .head_nav a {
        margin-top: 30px;
    }
    .body_obm {
        margin-top: 50px;
        flex-direction: column;
        gap: 15px;
    }
    .body_obm_in {
        width: 100%;
    }
    .body_obm_in:first-child .body_obm_in_input::before,
    .body_obm_in:last-child .body_obm_in_input::before {
        display: none;
    }
}
@media(max-width: 670px) {
    .head_menu ul {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
    .foot {
        flex-direction: column;
        gap: 15px;
    }
    .body_obm_in_input {
        padding: 20px 5px;
    }
    .body_obm_in_input input {
        padding-left: 15px;
        margin-left: 30px;
    }
    .body_obm_in_input span {
        font-size: 16px;
    }
    .body_obm_in_input::after {
        left: 45px;
    }
    .foot_r ul {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
}