* {
    font-family: Noto Sans Armenian, Noto Sans, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
header{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20% 2px 20%;
    background: #232323;
}

.logo img{
    width: 90px;
    height: auto;
}
.navlist{
    display: flex;
}
.navlist a{
    color: rgb(173, 173, 173);
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}
.navlist a:hover{
    border-bottom: 2px solid #FFC100;
}
#menu-icon{
    color: white;
    font-size: 25px;
    z-index: 100001;
    cursor: pointer;
    display: none;

}
section{
    padding: 30px 30%;
}
.hero-text h1{
    font-size: 40px;
    font-weight: 700;
    color: #232323;
    margin: 0 0 45px;
}
.hero{
    background:linear-gradient(245.59deg, #ffffff 0%, #fefefe 28.53%, #eeeeee 75.52%);
    
}
.banner{
    height: 350px;
    background-size: cover;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("/img/calculatorBackground.jpg");
    background-color: #292929;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.banner h1{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.today{
    font-size: small;
    font-weight: 400;
    font-style: italic;
}
@media(max-width: 1560px){
    header{
        padding: 5px 10% 2px 10%;
    }
}
@media(max-width: 1340px){
    .hero-img img{
        width: 100%;
        height: auto;
    }
    .hero-text h1{
        font-size: 25px;
        font-weight: 700;
        margin: 0 0 30px;
    }
    .hero-text h5{
        margin-bottom: 25px;
    }
}
@media (max-width: 1160px) {
    section{
        padding: 30px 10%;
        transition: .2s;
    }
    header{
        padding: 5px 3% 2px 3%;
        transition: .2s;
    }
    .hero{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 300px;
        height: 100vh;
        background:#232323;
        display: flex;
        align-items:center;
        flex-direction: column;
        padding: 50px 20px;
        transition: all .55s ease;
    }
    .navlist a{
        display: block;
        margin-left: 0;
        margin: 10px 0;

    }
    .navlist.open{
        right: 0;
    }
    
}
@media (max-width: 840px){
    section{
        padding: 30px 0%;
        transition: .2s;
    }
    .hero-text{
        margin: 5%;
    }
    .banner{
        height: 330px;
    }
} 



.form-control {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: none!important;
    box-sizing: border-box;
    color: #001931;
    font-size: 16px;
    font-weight: 500;
    line-height: 1!important;
    margin: 10px auto;
    min-height: 46px;
    outline: none!important;
    width: 100%;
    padding: 12px 20px !important;
    border: 2px solid #0019311A !important;
}

.form-control:focus {
    border-color: #FFC100 !important;
}

.has-checkbox {
    display: none;
}

.checkbox {
    align-items: center;
    cursor: pointer;
    display: flex!important;
    font-weight: 400;
    line-height: 1;
    margin: 0!important;
    min-height: 22px;
    padding: 0 0 0 25px!important;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.checkbox:before {
    border-radius: 3px;
    box-sizing: border-box;
    content: "";
    height: 18px;
    left: 0;
    margin: 0!important;
    max-height: 18px;
    max-width: 18px;
    min-height: 18px;
    min-width: 18px;
    position: absolute;
    transition: -webkit-transform .28s ease;
    transition: transform .28s ease,-webkit-transform .28s ease;
    width: 18px;
    background: #FFFFFF !important;
    border: 2px solid #0019311A !important;
    color: #001931 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.checkbox:after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    box-sizing: border-box;
    content: "";
    display: block;
    height: 5px;
    left: 5px;
    position: absolute;
    -webkit-transform: rotate(-45deg) scale(0) translateY(-10%);
    transform: rotate(-45deg) scale(0) translateY(-10%);
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease,-webkit-transform .25s ease;
    width: 8px;
}

input[type=checkbox]:checked ~ label:before {
    border-color: #FFC100 !important;
    background-color: #FFC100 !important;
}

input[type=checkbox]:checked~label:after {
    -webkit-transform: rotate(-45deg) scale(1) translateY(-10%);
    transform: rotate(-45deg) scale(1) translateY(-10%);
}

input[type=radio]:before {
    border-radius: 50%;
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    background: #FFFFFF !important;
}

input[type=radio] {
    align-items: center;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    margin-right: 7px;
    margin-top: 0;
    max-height: 18px;
    max-width: 18px;
    min-height: 18px;
    min-width: 18px;
    outline: none;
    position: relative;
}

input[type=radio]:checked {
    background: #FFC100 !important;
    border: 2px solid transparent!important
}

.checkbox-toggle-wrapper {
    margin: 0 0 0 10px;
    position: relative;
    align-items: center;
    display: flex;
}

.checkbox-toggle-wrapper label {
    background: #ccc;
    border-radius: 46px;
    display: inline-block;
    height: 24px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 45px;
}

.checkbox-toggle-wrapper input:checked + label{
    background: #FFC100 !important;
}

.checkbox-toggle-wrapper input {
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
}

.checkbox-toggle-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.checkbox-toggle-wrapper label:after {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    content: "";
    height: 18px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: .4s;
    width: 18px;
    z-index: 2;
}

.checkbox-toggle-wrapper input:checked+label:after {
    left: 24px;
    top: 4px
}

.checkbox-toggle-wrapper input[type=checkbox] {
    display: inline;
    margin-right: 10px;
    font-size: 16px;
}

.hidden {
    display: none!important;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
}

.summary-row .second {
    flex: 1;
    border-bottom: 1px dotted;
    margin: 0 10px;
}

.buttons {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: white;
    padding: 0 10px;
}

.buttons svg {
    cursor: pointer;
    opacity: .5;
}

.buttons svg:hover {
    opacity: 1;
}

.number-input {
    position: relative;
}
/*
.width-50 {
    padding: 15px;
    width: 50%;
}*/

.title {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #001931 !important;
    margin-bottom: 10px;
    display: inline-block;
}

.desc {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #00193180 !important;
}

.values-section>div {
    margin-bottom: 15px;
}

.values-section label {
    display: block;
    margin-bottom: 13px;
    font-size: 14px;
}

/* .values-section label span {
    vertical-align: middle;
} */

.summary-footer {
    margin-top: 40px;
}

.summary-total {
    color: #001931 !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.text-red {
    color: #d94141;
}

table {
    border-collapse: collapse;
    width: 100%;
}
th,
td {
    padding: 1rem 0.2rem;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    font-weight: 400;
}
td:not(td:first-child) {
    text-align: center;
}
th {
    font-weight: normal;
    font-size: .875rem;
    color: #666;
    background: #eee;
    position: sticky;
    top: 0;
}
.footerTime {
    font-weight: normal;
    font-size: .875rem;
    color: #FFFFFF00;
    background: #eee;
    position: sticky;
    top: 0;
}
#cmd{
    padding: 8px 15px;
    margin: 20px;
    background: #FFC100;
    color:#232323;
    border-radius: 30px ;
    border: 1px solid #FFC100;
    font-size: 14px;
    font-weight: 600;
}
#offer{
    padding: 8px 15px;
    margin: 20px;
    background: #FFC100;
    color:#232323;
    border-radius: 30px ;
    border: 1px solid #FFC100;
    font-size: 14px;
    font-weight: 600;
}
.line{
    width:95%;
    border: 1px solid #FFC100;
    margin:30px auto;
}
/* .summaryHeader{
    display: none;
} */
#content td img{
    width: 120px;
    height: auto;
}
#content td{
    background:transparent;
}
.summaryTitle{
    font-size: 18px;
    font-weight: 700;
}