/*font family for website*/

@font-face {
    font-family: 'Quicksand';
    src: url('../Fonts/Quicksand/Quicksand-SemiBold.woff2') format('woff2'),
        url('../Fonts/Quicksand/Quicksand-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('../Fonts/Helvetica_Neue_LT/HelveticaNeueLT-W05-55-Roman.woff2') format('woff2'),
        url('../Fonts/Helvetica_Neue_LT/HelveticaNeueLT-W05-55-Roman.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face { /*--- Added ---*/
    font-family: 'Helvetica Neue LT Bold';
    src: url('../Fonts/Helvetica_Neue_LT/HelveticaNeueLT-65Md.woff2') format('woff2'),
        url('../Fonts/Helvetica_Neue_LT/HelveticaNeueLT-65Md.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
body{
    max-width: 905px;
    width: 100%;
    box-shadow: 0 0 7px grey;
}
.site-page{
    display: flex;
    align-items: center;
}
.flex{
    display: flex;
    position: relative;
}


/*header section*/

.log0 img { /*--- Added---*/
   max-width:85px; 
}
.description-icon_price img, .description-icon_volume img, .description-icon_protein img, .description-icon_amino img, .description-icon_energy img, .description-icon_footer img { /*--- Add ---*/
max-width: 18px;
}

header{
    max-width: 389px;
    width: 100%;
    background-color: #005f86;
    display: flex;
    align-items: center;
    padding: 8px 17px;
}
h1{
    font-family: "Quicksand";
    font-size: 17px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
hr{
    margin: 0 10px;
    min-height: 36px;
    min-width: 1px;
    color: #ffffff;
    border: none; 
    background-color: #ffffff; 
}

/*price-per-ton-section*/

.pricing-per-ton-section{
    max-width: 389px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 17px;
    background-color: #efefef;

}
.description-icon_price{
    display: none;
}
.inner-section{
    width: 100%;
}
.container{
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 12PX;
}
.heading-section{
        margin-left: 0;
        MAX-WIDTH: 128PX;
        WIDTH: 100%;
}
.price-section{
    margin-left: 0;
}
strong { 
    font-family: "Helvetica Neue LT Bold";
}

h2{
    font-family: "Quicksand";
    font-size: 20px;
    line-height: 23px;
    font-weight: 700;
    letter-spacing: 0px;   
    color: #005f86;
}
h3{
    font-family: "Quicksand";
    font-size: 53px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    color: #658d1b;
    text-align: center;
}
.range-slider{
        
    border-radius: 20px;
    padding: 2px;
}
.range{
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    outline:none;
    border-radius: 20px;
    filter: drop-shadow(0 5px 5px #d6d6d6);  
}
.range:hover{
    opacity: 1;
}
.range::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    background: #ddd;
    cursor: pointer;
    border-radius: 20px;
    filter: drop-shadow(0px 3px 4px rgba(0,0,0,0.2));
    border: 2px solid #ffffff;
}
.range::-moz-range-thumb{
    width: 40px;
    height: 40px;
    background: #ddd;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #ffffff;
}

/*volume-section*/

.volume-section{
    max-width: 389px;
    width: 100%;
    padding: 3px 17px 8px; 
    background-color: #efefef;
}
.container2 {
    padding: 15px;
    border-radius: 15px;
    background: #f1f1f1;
    box-shadow: -2px -2px 3px 2px #fbfbfb;  
    filter: drop-shadow(0px 3px 4px rgba(0,0,0,0.2));  
}
.heading{
    margin-left: 0;
}
.description-icon_volume{
    display: none;
}
.options{
    display: flex;
    margin-top: 8px;  
    gap: 12px;
}
.box{
    display: flex;
    flex-direction: column;
    max-width: 109px;
    width: 100%;
    gap: 10px;
    position: relative;
}
.box input[type="radio"]{
    width: 28px;
    height: 28px;
    border: 1px solid #cccccc;
    background-color: #ddd;
    transition: all 0.2s ease;

}
.box input[type="radio"]{
    display: none;
}
span.dott{
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: -2px -1px 0px #fff;
    transition: all 0.2s ease;
    margin-bottom: 2px; 
}
#max-volume:checked~.max-volume .dott::before,
#min-volume:checked~.min-volume .dott::before,
#none-volume:checked~.none-volume .dott::before{
    content: '';
    background: #658d1b;
    position: absolute;
    width: 12px;
    height:12px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#max-volume:checked~.max-volume .dott,
#min-volume:checked~.min-volume .dott,
#none-volume:checked~.none-volume .dott{
    background-color: #fff;
    box-shadow: 0px 0px 0px #fff;
    border: none;

} 
.box label{
    cursor: pointer;
}
.options label{
    display: flex;
    flex-direction: column;
    font-family: "Quicksand";
    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    color: #539636;
    text-align: center;
}

/*protein-level-section*/

.protein-level-section{
    max-width: 389px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4px 17px 12px; 
    background-color: #efefef;
}
#protein{
    font-family: "Quicksand";
    font-size: 53px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    color: #658d1b;
    text-align: center;  
}
#yes:checked~.yes .dott::before,
#no:checked~.no .dott::before,
#not-sure:checked~.not-sure .dott::before{
    content: '';
    background: #658d1b;
    position: absolute;
    width: 12px;
    height:12px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#yes:checked~.yes .dott,
#no:checked~.no .dott,
#not-sure:checked~.not-sure .dott{
    background-color: #fff;
    box-shadow: 0px 0px 0px #fff;
    border: none;

}
.description-icon_protein{
    display: none;
}

/*Balancing-Amino-section*/

.balancing-Amino-section{
    max-width: 389px;
    width: 100%;
    background-color: #efefef;
    padding: 3px 17px 8px; 
}
.description-icon_amino{
    display: none;
}

/*Energy-level-section*/

.energy-level-section{
    max-width: 389px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #efefef;
    padding: 10px 17px; 

}
.energy-level-section .heading-section{
    max-width: 70px;
    width: 100%;
    margin-left: 0;
}
.description-icon_energy{
    display: none;
}
h2 span{
    font-size: 16px;
    font-weight: 400;
}
.options-for-energy{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 35px;
}
.options-for-energy label {
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    min-height: 30px;
    padding: 6px 14px;
    color: #658d1b;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    box-shadow: -1px -1px 4px 2px #fff;
    filter: drop-shadow(-2px 3px 2px rgba(0,0,0,0.2)); 
    transition: all 0.2s ease;
    background-color: #efefef; 
}
.text{
    font-family: "Quicksand";
    font-size: 19px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    color: inherit;

}
.text span{
    font-size: 14px;
    font-weight: 300;
}
#high:checked ~.high,
#medium:checked ~.medium,
#low:checked ~.low{
    background-color: #658d1b;
    color: #fff;
    box-shadow: none; 
    filter: none; 
}
.options-for-energy input[type="radio"]{
    display: none;
}

/*footer*/

.inner-footer{
    max-width: 389px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #658d1b;
    padding: 18px;
    position: relative;
    overflow: hidden;
}
.description-icon_footer{
    display: none;
}
.footer-container{
    max-width: 225px;
    width: 100%;
}
footer img.test{
    position: absolute;
    left: -128px;
    bottom: -103px;
}
h4{
    font-family: "Quicksand";
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
}
.output{
    font-family: "Quicksand";
    font-size: 54px;
    line-height: 64px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 20px;
    max-width: 179px;
    width: 100%;
    min-height: 54px;
    margin:14px auto;
}
.footer-container p {
    font-family: "Helvetica Neue LT";
    font-size: 11px;
    line-height: 13px;
    letter-spacing: .05em;
    color: #ffffff;
    text-align: center;
}

/*website-description-section*/

.description-header{
    max-width: 515px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    margin-left: 0;
    background-color: #efefef;  
}
h6{
    font-family: "Helvetica Neue LT";
    font-size: 23px;
    line-height: 24px; /*---Edit---*/
    color: #005f86;
    font-weight: 500; 
    margin-left: 0;
    margin-top: 3px;
}

/*price-selection-description*/

.price-selection-description{
    display: flex;
    align-items:center;
    max-width: 515px;
    width: 100%;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
    min-height: 117px;
}
.website-description p{
    font-family: "Helvetica Neue LT";
    font-size: 16px;
    line-height: 20px;
    color: #474c55;  
}

/*volume-selecction-description*/

.volume-selecction-description{
    display: flex;
    align-items:center;
    max-width: 515px;
    width: 100%;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
    min-height: 116px;
}

/*protein-selecction-description*/

.protein-selecction-description{
    display: flex;
    align-items:center;
    max-width: 515px;
    width: 100%;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
    min-height: 114px;
}
.protein-level-section .price-section { 
    margin-top: 10px; 
} 

/*amino-selecction-description*/

.amino-selecction-description{
    display: flex;
    align-items:center;
    max-width: 515px;
    width: 100%;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
    min-height: 100px;
}

/*energy-selecction-description*/

.energy-selecction-description{
    display: flex;
    align-items:center;
    max-width: 515px;
    width: 100%;
    padding: 20px 28px; 
    border-bottom: 1px solid #ddd;
    min-height: 150px;
}

/*footer-description*/

.footer-description{
    max-width: 515px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 28px;
    min-height: 205px;
}
.footer-description-heading{
    padding: 5px 0 10px; 
}
p{
    font-family: "Helvetica Neue LT";
    font-size: 16px;
    line-height: 20px;
    color: #474c55;

}

/*responsive web designing*/

@media only screen and (max-width: 755px){
.text{
    min-height: 35px;
}
footer img.test {
    position: absolute;
    left: -148px;
    bottom: -103px;
}
    
}
@media only screen and (max-width: 655px){
    footer img.test {
        position: absolute;
        left: -164px;
        bottom: -81px;
    }
}
@media only screen and (max-width: 576px){
    header{
        max-width: 100%;
    }
    .description-header{
        display: none;
    }
    .pricing-per-ton-section{
        max-width: 100%;
    }
    .inner-section{
        position: relative;
    }
    .description-icon_price{
        display: block;
        position: absolute;
        right: 10px;
    }
    .price-selection-description{    
        display: none;
    }
    .description-icon_price:hover .tooltip-text{
        visibility: visible;
    }
    .volume-section{
        max-width: 100%;
    }
    .container2{
        position: relative;
    }
    .container2 .description-icon{
        position: absolute;
        right: 10px;
    }
    .volume-selecction-description{
        display: none;
    }
    .tooltip-text {
        font-size: 16px;
        line-height: 20px;
        font-family: "Helvetica Neue LT";
        color: #fff;
        visibility: hidden;
        position: absolute;
        background-color: #658d1b;
        border-radius: 16px;
        width: 320px;
        margin: 10px;
        padding: 10px 10px 10px 15px; 
        right: 20px;
        z-index: 1;
        top: -38px;
    }
    .tooltip-text::after {
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        top: 24px; /*---Edit---*/
        right: -7px;
        background-color: #658d1b;
        transform: rotate(45deg); 
        z-index: -1;
    }
    .description-icon_volume {
        display: block;
        position: absolute;
        right: 10px;
        top: 9px;
        transition: all;
    }
    .description-icon_volume:hover .tooltip-text{
        visibility: visible;
    }
    .protein-level-section{
        max-width: 100%;
    }
    .protein-selecction-description{
        display: none;
    }
    .description-icon_protein:hover .tooltip-text{
        visibility: visible;
    }
    .description-icon_protein{
        display: block;
        position: absolute;
        right: 10px;
    }
    .balancing-Amino-section{
        max-width: 100%;
    }
    .amino-selecction-description{
        display: none;
    }
    .description-icon_amino:hover .tooltip-text{
        visibility: visible;
    }
    .description-icon_amino{
        display: block;
        position: absolute;
        right: 10px;
    }
    .description-icon_amino .tooltip-text{
        top: -62px;
    }
    .description-icon_amino .tooltip-text::after{
        top: 53px;
    }

    .energy-level-section{
        max-width: 100%;
        position: relative;
    }
    .energy-level-section .description-icon{
        position: absolute;
        right: 25px;
        top: 10px;
    }
    .description-icon_energy .tooltip-text{
        top: -62px;
    }
    .description-icon_energy .tooltip-text::after{
        top: 53px;
    }

    .description-icon_energy{
        display: block;
        position: absolute;
        right: 25px;
        top:15px;
    }
    .text{
        min-height: auto;
    }
    .energy-selecction-description{
        display: none;
    }
    .description-icon_energy:hover .tooltip-text{
        visibility: visible;
    }
    .description-icon_energy:hover .energy-selecction-description{
        visibility: visible;
    }
    .inner-footer{
        max-width: 100%;
    }
    .inner-footer .description-icon_footer{
        display: block;
        position: absolute;
        top: 20px;
        right: 24px;
        z-index: 106;
        transition: all 0.5s ease;
    }
    .inner-footer .description-icon_footer img{
        position: sticky;
    }
    .footer-description{
        display: none;
    }
    .description-icon_footer:hover .tooltip-text_footer{
        visibility: visible;
    }
    .tooltip-text_footer {
        font-size: 16px;
        line-height: 20px;
        font-family: "Helvetica Neue LT";
        width: 327px;
        visibility: hidden;
        border-radius: 16px;
        margin: 10px;
        top: -27px;
        right: 22px;
        z-index: 99;
        position: absolute;
        background: #fff;
        font-size: 15px;
        color: #474c55;
        padding: 10px;
    }
    .tooltip-text_footer::after {
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        top: 20px;
        right: -10px;
        background-color: #ffff;
        transform: rotate(33deg);
        z-index: -1;
    }
     .footer-description-heading{
        padding: 2px 0;
     }
     h6{
        font-size: 18px;
        line-height: 16px;
     }
    footer img.test{
        position: absolute;
        left: -136px;
        bottom: -98px;
    }
}
@media only screen and (max-width: 380px){
    .inner-section::before{
        top: -5px;
        right: 6px;
    }
    .container2::before{
        top: 6PX;
        right: 6PX;
    }
    .energy-level-section::before {
        right: 23px;
        top: 6px;
    }
    h2{
        max-width: 230px;
        width: 100%;
        margin-left: 0;
        font-size: 18px;
        line-height: 20px;
    }
    h3{
        font-size: 40px;
    }
    .options-for-energy {
        margin-left: 3px;
    }
    .volume-selecction-description{
        max-width: 250px;   
    }
    .energy-level-section .heading-section {
        margin-right: 16px;
    }
    .description-icon_energy {
        top: 11px;
    }
    .description-icon_price {
        top: -8px;
    }
    .description-icon_protein {
        top: -6px;
    }
    .description-icon_amino {
        top: 6px;
    }
    .inner-footer .description-icon_footer{ 
        top: 13px;
    }
    .tooltip-text{
        font-size: 14px;
        line-height: 20px;
        width: 250px;
    }
    .tooltip-text_footer {
        font-size: 14px;
        line-height: 17px;
        color: #474c55;
        width: 250px;
        top: -28px;
        padding: 4px;
    }
    .tooltip-text_footer:after{
        top: 18px;
    }
    .text{
        font-size: 16px;
    }
    .options-for-energy label{
        padding: 6px;
    }

}