* {
    flex-shrink: 0;
}
body {
    margin: 0;
    padding: 0;
}

body.no-scroll {
    height: 100vh;
    overflow: hidden;
}
.container {
    margin: 0 auto;
    max-width: 980px;
    padding: 0 10px;
}
.btn {
    line-height: 34px;
    padding: 10px 20px;
    background-color: #ffd100;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}
.btn:hover {
    background-color: #ffd000a7;
}
.header {
    padding: 20px;
    background: #e7f0f2;
}
.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero {
    background: #e7f0f2;
    padding: 20px 0;
}

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

.hero__left {
    width: 49%;
}

.hero__left h1 {
    color: #0f5563;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero__left p {
    font-weight: 300;
    font-size: 24px;
    color: #4a4a4a;
}

.hero__right {
    width: 450px;
}

.hero__right img{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.list {
    padding: 50px 0;
}

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

.list__item {
    border: 2px #cccccc solid;
    border-radius: 5px;
    text-align: center;
    width: 18%;
    padding-bottom: 1.5rem;
    padding: 20px;
}

.list__title {
    margin-bottom: 20px;
}

.list__item-img {
    padding: 20px;
}

.list__item-img img{
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.why {
    padding: 50px 0;
}

.why__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.why__icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.why__icon img{
    width: 100%;
}

.contact {
    padding: 50px 0;
}

.contact__title {
    text-align: center;
}

.contact__form {
    width: 500px;
    margin: auto;
}

.input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.form__btn {
    width: 100%;
    border: none;
}

.footer {
    background: #e7f0f2;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__info-top {
    margin-bottom: 10px;
}

.footer__info-bottom a{
    color: #0f5563;
    text-decoration: none;
}
.copy {
    padding: 10px 0;
    text-align: center;
}

.disclamer {
    color: #0f5563; 
    cursor: pointer;
}

.popup__close {
    width: 20px;
    height: 20px;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: .3s;
}

.popup__close:hover {
    opacity: .7;
}

.popup__close svg{
    width: 100%;
    height: 100%;
}

.pop-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    opacity: 0;
    z-index: -99999;
    visibility: hidden;
    background-color: #000000f2;
}
.pop-wrapper.active{
    opacity: 1;
    z-index: 99999;
    visibility: visible;
}

.popup {
    display: none;
    position: relative;
    width: 500px;
    max-width: 500px;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: white;
}

@media(max-width: 768px) {
    .popup {
        width: 100%;
    }
}

.popup.active {
    display: block;
}

.editor {
    padding: 20px;
}