* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: url(images/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-color: aquamarine;
}

.op-container {
    width: 95%;
    min-height: 100rem;
    /* background-color: rgb(255, 255, 255); */
    margin: 2rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0rem 0rem 1rem .2rem #000c;
}

/* ---------------------------------------- logo ----------------------------------------------- */
.op-container .op-logo-container {
    width: 100%;
    height: 6rem;
    display: flex;
    flex-direction: row;
    background-color: white;
    overflow: hidden;
}

.op-container .op-logo-container .op-logo {
    display: flex;
    align-items: center;
    width: 50%;
    cursor: pointer;
}



.op-container .op-logo-container .op-logo h1 {
    font-family: var(--Alice);
    font-size: 3.2rem;
    color: var(--blue-color);
    user-select: none;

}

.op-container .op-logo-container .op-logo img {
    height: 90%;
    margin: 0 1rem 0 3rem;
    user-select: none;

}

.op-container .op-logo-container .op-tag-line {
    background-color: var(--blue-color);
    width: 50%;
    transform: skewX(45deg) translateX(3rem);
    display: flex;
    align-items: center;

}

.op-container .op-logo-container .op-tag-line h2 {
    color: black;
    transform: skewX(-45deg);
    font-family: var(--Alice);
    font-size: 1.5rem;
    letter-spacing: .2rem;
    margin: 0 6rem;
}

/* -----------------x---------------------- logo --------------------------x--------------------- */





/* --------------------------------------Navigation-------------------------------------------------- */

.op-navigation {
    background-color: rgba(0, 0, 0, .3);
    border-top: .3rem solid rgba(255, 255, 255);
    border-bottom: .3rem solid rgb(255, 255, 255);
    font-family: Alice;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: .1rem;
}

.op-navigation ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    text-transform: uppercase;
}

.op-navigation ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    /* ama hamw li  akan alkene bayakawa*/
    border-right: 1px solid #0000;
    border-left: 1px solid #0000;
    text-transform: uppercase;

}

.op-navigation ul li:hover {
    background-color: var(--blue-color);
    border-right: 1px solid #0003;
    border-left: 1px solid #0003;
}

.op-navigation ul li.active {
    background-color: var(--blue-color)
}

.op-navigation ul li a {
    /* awa bzana tag y (a) transform akan hichian warnagret   */
    text-decoration: none;
    color: white;
    padding: 1rem 4rem;
    cursor: pointer;
}


/* -------------------------------  Sticky Navigation ------------------------------------ */

.sticky {
    position: fixed;
    top: 0;
    width: 95%;
    z-index: 10;
    background-color: #084c77;
}

.sticky~.op-products {
    padding-top: 4.5rem;
}



/* -------------------------------  Sticky Navigation ------------------------------------ */


/* ---------------------x-----------------Navigation----------------------x------------------------ */

/* ----------------------------- products --------------------------------- */


/*     ------------------- left side nav ----------------------- */
.op-container .op-products {
    width: 100%;
    min-height: 50rem;
    background-color: #e2e1e0;
}

.op-container .op-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-transform: uppercase;
    background-color: #292929;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    border-top: 2px solid rgba(0, 0, 0, .2);
}

.op-container .op-title h1 {
    color: rgb(255, 255, 233);
    font-family: var(--Alice);
}

.op-products .op-grid-container {
    display: grid;
    grid-template-columns: 23% 1fr;
}

.op-products .op-grid-container .op-left {
    background-color: rgb(240, 242, 241);
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.12), 1px 0px 2px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 12rem;
    transition: all .4s ease;
}



.op-products .op-grid-container .op-left .op-filter {
    color: rgb(0, 0, 0);
    font-family: Alice;
}

.op-products .op-grid-container .op-left .op-filter>ul {
    list-style: none;

}

.op-products .op-grid-container .op-left .op-filter>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.op-products .op-grid-container .op-left .op-filter>ul>li:hover h1 {
    background-color: var(--blue-color);
}

.op-products .op-grid-container .op-left .op-filter>ul>li>h1 {
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all .7s ease;
}

.op-products .op-grid-container .op-left .op-filter>ul>li>ul {
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: .5s ease all;

}

.op-products .op-grid-container .op-left .op-filter>ul>li>ul>li {
    padding: .5rem 5% .5rem 25%;
    cursor: pointer;
    transition: all .7s ease;
}

.op-products .op-grid-container .op-left .op-filter>ul>li>ul>li:hover {
    color: var(--blue-color);
}

.op-products .op-grid-container .op-left .op-filter>ul>li>ul>li.active {
    color: var(--blue-color);
}

.op-products .op-grid-container .op-left .op-filter>ul>li.active ul {
    max-height: 20rem;
}

.op-products .op-grid-container .op-left .op-filter>ul>li>h1 i {
    transition: all ease .5s;
    user-select: none;
    transform-origin: 50% 45%;
}

.op-products .op-grid-container .op-left .op-filter>ul>li>h1 {
    padding: .5rem 5% .5rem 20%;
}

.op-products .op-grid-container .op-left .op-filter>ul>li.active i {
    transform: rotate(180deg);
}

.op-products .op-grid-container .op-left .op-filter>ul>li.active h1 {
    background-color: var(--blue-color);
}


/* ----------------- New Items --------------------- */

.op-new-items {
    display: flex;
    flex-direction: column;
    margin-top: 10rem;
}

.op-new-items .op-new-title {
    width: 100%;
    height: 3rem;
    background-color: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Alice;
    color: white;
}

.op-new-items .op-new-mask {
    width: 100%;

    position: relative;
    overflow: hidden;
}

.op-new-items .op-new-mask .op-new-slider {
    width: 300%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: all ease .5s;
}

.op-new-items .op-new-mask .op-new-slider .op-new-item {
    /* flex-grow: 1; */
    padding: 1rem 2rem;

}

.op-new-items .op-new-mask .op-new-slider .op-new-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all .5s ease;
    border-radius: .2rem;
}

.op-new-items .op-new-mask .op-new-slider .op-new-image-container:hover {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.op-new-items .op-new-mask .op-new-slider .op-new-image-container .op-new-unit-price {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--blue-color);
    width: 6rem;
    height: 3rem;
    transform: rotate(-45deg) translate(-20%, -70%);
    display: flex;
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: flex-end;
    padding-bottom: .3rem;
    font-size: 1rem;
    z-index: 3;
    font-weight: bolder;
}

.op-new-items .op-new-mask .op-new-slider .op-new-image {
    width: 100%;
    height: 13rem;
    overflow: hidden;
}

.op-new-items .op-new-mask .op-new-slider .op-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all .5s ease;
}

.op-new-items .op-new-mask .op-new-slider .op-new-image-container:hover img {
    transform: scale(1.1);
}

.op-new-items .op-new-mask .op-new-slider .op-new-name {
    padding: .5rem;
    font-size: 1.2rem;
    transition: all .2s ease;
    text-align: center;
    font-family: Alice;
    cursor: pointer;
}

.op-new-items .op-new-mask .op-new-slider .op-new-name:hover {
    color: rgb(37, 92, 194);
}

.op-new-items .op-new-mask .op-new-next,
.op-new-items .op-new-mask .op-new-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
    transition: all ease .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-new-items .op-new-mask .op-new-next span,
.op-new-items .op-new-mask .op-new-prev span {
    user-select: none;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-size: 2rem;

}

.op-new-items .op-new-mask .op-new-next {
    right: 0;
}

.op-new-items .op-new-mask .op-new-prev {
    left: 0;

}

.op-new-items .op-new-mask .op-new-next:hover,
.op-new-items .op-new-mask .op-new-prev:hover {
    background-color: var(--blue-color);
}

/* ---------x------- New Items -----------x--------- */

/*     ----------x--------- left side nav -------x---------------- */

/* --------------------- Search ----------------------- */

.op-search {
    display: flex;
    justify-content: center;
    padding: 1rem;

}

.op-search .op-search-input {
    background-color: white;
    width: 80%;
    height: 3rem;
    border-radius: 3rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.op-search .op-search-input.active {
    border: 2px solid var(--blue-color);
}

.op-search .op-search-input input {
    border: none;
    outline: none;
    width: 95%;
    font-size: 1rem;
    font-family: Alice;
    padding-left: 1rem;
}


.op-search .op-search-input span {
    font-size: 2rem;
    transition: all ease .1s;
    user-select: none;
    cursor: text;
    align-self: center;
}


/* -----------x--------- Search ------------x---------- */

/* -------------------- Items ------------------------- */

.op-products .op-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 7.2rem;
    font-family: Alice;
}

.op-products .op-items .op-item {
    display: flex;
    flex-direction: column;
    width: 13rem;
    padding-bottom: .3rem;
    cursor: pointer;
    margin: .5rem;
}

.op-products .op-items .op-item .op-image-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all .5s ease;
    border-radius: .2rem;
}

.op-products .op-items .op-item .op-image-container:hover {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.op-products .op-items .op-item .op-unit-price {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--blue-color);
    width: 6rem;
    height: 3rem;
    transform: rotate(-45deg) translate(-20%, -70%);
    display: flex;
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: flex-end;
    padding-bottom: .3rem;
    font-size: 1rem;
    z-index: 3;
    font-weight: bolder;
}


.op-products .op-items .op-item .op-image {
    width: 100%;
    height: 14rem;
    overflow: hidden;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-products .op-items .op-item .op-image img {
    /* width: 90%; */
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all .5s ease;
}

.op-products .op-items .op-item .op-image:hover img {
    transform: scale(1.1);
}


.op-products .op-items .op-item .op-item-name {
    padding: 1rem .2rem 2rem .2rem;
    font-size: 1.2rem;
    transition: all .2s ease;
    text-align: center;
}

.op-products .op-items .op-item .op-item-name:hover {
    color: rgb(37, 92, 194);
}

/* -----------x-------- Items ------------x------------ */


/* -----------------------------------Pagination-------------------------------- */
.op-products .op-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem 5rem 3rem;

}

.op-products .op-pagination ul {
    list-style: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 1rem;
    display: flex;
}

.op-products .op-pagination ul li {
    background-color: white;
    padding: .5rem 1rem;
    border-right: 1px solid rgba(0, 0, 0, .2);
    cursor: pointer;
    user-select: none;
}

.op-products .op-pagination ul li.active {
    background-color: var(--blue-color);
}

.op-products .op-pagination ul li:hover {
    background-color: var(--blue-color);
}

.op-products .op-pagination ul li:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.op-products .op-pagination ul li:last-child {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

/* -----------------------------------Pagination-------------------------------- */


/* ---------------x-------------- products ---------------x------------------ */




/* ----------------------------- contact us --------------------------------- */
/* ----------------------------- contact us --------------------------------- */

.op-contact-us .op-contact-ways {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem 1rem 5rem 1rem;
    /* background-color: rgb(240 242 241); */
    font-family: Alice;
    background: url(images/contact-us-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;

}

.op-contact-us .op-contact-ways h2 {
    text-transform: uppercase;
    padding: .5rem;
}

.op-contact-us .op-contact-ways span a {
    text-decoration: none;
    color: white;
    line-height: 1.4rem;
    transition: all .5s ease;
}

.op-contact-us .op-contact-ways span a:hover {
    color: var(--blue-color)
}

.op-contact-us .op-contact-ways .op-address {
    text-align: center;
}

.op-contact-us .op-contact-ways .op-phone {
    text-align: center;
}

.op-contact-us .op-contact-ways .op-email {
    text-align: center;
}

.op-contact-us .op-contact-ways .op-address svg {
    width: 5rem;
    fill: var(--blue-color);
}

.op-contact-us .op-contact-ways .op-phone svg {
    width: 4.5rem;
    fill: var(--blue-color);
    margin-top: .5rem;
}

.op-contact-us .op-contact-ways .op-email svg {
    width: 5rem;
    fill: var(--blue-color);
}

.op-map {
    width: 100%;
    height: 30rem;
    background-color: rgb(255, 255, 255);
    border-top: 2px solid var(--blue-color);
    border-bottom: 2px solid var(--blue-color);
    box-shadow: 0 -.2rem .4rem rgba(54, 54, 54, .2);
}

.op-map iframe {
    width: 100%;
    height: 100%;

}


/* ----------------x------------- contact us ----------------x----------------- */

/* ------------------ About us ---------------------- */


.op-about-us .op-content ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.op-about-us .op-content ul li {

    height: 30rem;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    transition: all ease .5s;
}

.op-about-us .op-content ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(15, 82, 126);
    opacity: .8;
    z-index: 1;
}

.op-about-us .op-content ul li.active::after {
    width: 0;
}

.op-about-us .op-content ul li.active {

    flex-grow: 3;
    opacity: 1;
}

.op-about-us .op-content ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50rem;
    height: 100%;
}

.op-about-us .op-content ul li:nth-child(1)::before {
    background: url("images/about-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100%;
}

.op-about-us .op-content ul li:nth-child(2)::before {
    background: url("images/about-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
}

.op-about-us .op-content ul li:nth-child(3)::before {
    background: url("images/about-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    width: 100%;
}

.op-about-us .op-content ul li h1 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    text-transform: uppercase;
    font-family: Alice;
    color: white;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.op-about-us .op-content ul li p {
    position: absolute;
    bottom: 5%;
    left: 5%;
    /* transform: translateX(-50%); */
    z-index: 5;
    background-color: rgba(235, 234, 208, .8);
    width: 20rem;
    padding: 1rem;
    border-radius: .5rem;
    font-family: Alice;
    opacity: 0;
    transition: all, .5s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.op-about-us .op-content ul li:nth-child(2) p {
    left: auto;
    right: 5%;
}

.op-about-us .op-content ul li.active p {
    opacity: 1;
}

/* --------x--------- About us ---------x------------ */



/* -------------------------------footer ---------------------------- */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    background-color: #292929;
    padding: 1rem;
    color: rgb(255, 255, 233);
    font-family: var(--Alice);
    border-top: 2px solid rgba(0, 0, 0, .3);
}
footer a{
    color: white;
    text-decoration: none;
}

/* -------------------------------footer ---------------------------- */



/* -------------------------------pop-up ---------------------------- */
.op-pop-up {
    width: 50%;
    height: 93%;
    position: fixed;
    top: 50%;
    border-radius: .8rem;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    z-index: 100;
    overflow: auto;
    /* wata agar content akani nawy la height aka ziatrbw bika ba scroll boman */
    display: flex;
    flex-direction: column;
    animation: popup-opacity .5s ease;
    visibility: hidden;
}

.op-pop-up-title-cross {
    display: flex;
    flex-direction: row;
}

.op-pop-up-title {
    width: 100%;
    background-color: var(--blue-color);
    padding: 1rem .2rem;
    text-align: center;
    font-family: Alice;
}

.op-pop-up-title h1 {
    font-size: large;
}

.op-pop-up-cross {
    background-color: rgb(248, 0, 0);
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
}

.op-pop-up-item {
    display: flex;
    flex-direction: row;
}

.op-pure-content {
    width: 50%;
    height: 20rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-pure-content img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.op-pop-up-prices {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.op-pop-up-info {
    display: flex;
    flex-direction: column;
    font-family: Alice;
}

.op-pop-up-info .op-pop-up-info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.op-pop-up-info .op-pop-up-info-title p {
    width: 35%;
    height: .2rem;
    background-color: var(--blue-color);
}

.op-pop-up-info-content {
    padding: 1rem;
}


.op-pop-up-policy {
    display: flex;
    flex-direction: column;
    font-family: Alice;
}

.op-pop-up-policy .op-pop-up-policy-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.op-pop-up-policy .op-pop-up-policy-title p {
    width: 35%;
    height: .2rem;
    background-color: var(--blue-color);
}

.op-pop-up-policy-content {
    padding: 1rem;
}




.op-pop-up-close {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .6;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    animation: popup-opacity .5s ease;
}

@keyframes popup-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .6;
    }
}

/* ----------x----------------pop-up -----------x---------------- */


/* ------------------------ Toggle button --------------------- */
#op-toggle {
    width: 100%;
    height: 2rem;
    background-color: rgb(0, 204, 255);
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
    overflow: hidden;
}

#op-toggle .material-icons {
    transition: all .5s ease;
    font-size: 3rem;
    user-select: none;
}

#op-toggle.active .material-icons {
    transform: rotateX(-180deg)
}


/* -----------x------------- Toggle button ---------x------------ */




/* --------------------------------------- Responsive ------------------------------------------ */

@media only screen and (min-width: 1500px) {

    .op-carousel .carousel{
        height: 40rem;
    }

    .op-map{
        height: 40rem;
    }

    .op-about-us .op-content ul li{
        height: 40rem;
    }

}

@media only screen and (min-width: 2000px) {

    .op-carousel .carousel{
        height: 50rem;
    }

    .op-map{
        height: 50rem;
    }

    .op-about-us .op-content ul li{
        height: 50rem;
    }

}

@media only screen and (max-width: 1226px) {
    .op-container .op-logo-container .op-logo h1 {
        font-size: 3rem;
    }

    .op-container .op-logo-container .op-tag-line h2 {
        margin: 0 5rem;
    }

    .op-container .op-logo-container .op-tag-line h2 {
        font-size: 1.2rem;
    }

}

@media only screen and (max-width: 1136px) {

    .op-navigation ul li a{
        padding: 1rem 3rem;
        font-size: 1.2rem;
    }

    .op-navigation ul {
        font-size: .8rem;
    }

    .op-container .op-logo-container .op-logo h1 {
        font-size: 2.2rem;
    }

    .op-container .op-logo-container .op-tag-line h2 {
        font-size: 1.1rem;
        margin: 0 3rem;
    }

    .op-container .op-logo-container {
        height: 4rem;
    }

    .carousel {
        height: 25rem;
    }

    .op-container .op-title {
        padding: .5rem 1rem;
        text-transform: uppercase;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li>h1 {
        font-size: 1rem;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li>ul>li {
        padding: .3rem 5% .3rem 25%;
        font-size: .8rem;
    }

    .op-new-items .op-new-mask .op-new-slider .op-new-image {
        height: 11rem;
    }

    .op-new-items .op-new-mask .op-new-slider .op-new-name {
        font-size: .9rem;
    }

    .op-container .op-title h1 {
        font-size: 1.5rem;
    }

    .op-about-us .op-content ul li {
        font-size: .8rem;
    }

    .op-carousel section:nth-child(1) .op-ad {
        font-size: 1.4rem;
    }
    .op-carousel section:nth-child(2) .op-ad {
        font-size: 1.2rem;
    }
    .op-carousel section:nth-child(3) .op-ad {
        font-size: 1.2rem;
    }

    .op-about-us .op-content ul li {
        height: 21rem;
    }

    .op-map {
        width: 100%;
        height: 20rem;
    }
  
}

@media only screen and (max-width: 955px) {

    .op-navigation ul li a{
        font-size: 1rem;
    }
    

    .op-search .op-search-input {
        height: 2.5rem
    }

    .op-container .op-logo-container .op-tag-line h2 {
        font-size: .8rem;
    }

    .op-container .op-logo-container {
        height: 3rem;
    }

    .op-products .op-items {
        padding: 1rem 5.2rem;
    }

   

    .op-navigation ul {
        font-size: .6rem;
        height: 2.3rem;
    }

    .op-container .op-title h1 {
        font-size: 1rem;
    }

    .op-new-items .op-new-mask .op-new-slider .op-new-name {
        font-size: .7rem;
    }

    .op-contact-us .op-contact-ways h2 {
        text-transform: uppercase;
        font-size: 1rem;
    }

    .op-contact-us .op-contact-ways span a {
        font-size: .9rem;
    }

    .carousel {
        height: 21rem;
    }

    .op-products .op-items .op-item {
        display: flex;
        flex-direction: column;
        width: 16rem;
        height: 21rem;
    }

    .op-carousel section:nth-child(1) .op-ad {
        font-size: 1.2rem;
    }

    .op-map {
        height: 20rem;
    }

    .op-contact-us .op-contact-ways {
        padding: 2rem 1rem 3rem 1rem;
    }

    .op-contact-us .op-contact-ways .op-phone svg {
        width: 3.5rem;
    }

    .op-contact-us .op-contact-ways .op-address svg {
        width: 4rem;
    }

    .op-contact-us .op-contact-ways .op-email svg {
        width: 4rem;
    }

    

    .op-about-us .op-content ul li {
        height: 21rem;
    }
}

@media only screen and (max-width: 826px) {

    .op-container .op-logo-container .op-logo h1 {
        font-size: 1.2rem;
    }

    .op-container .op-logo-container .op-tag-line h2 {
        font-size: .80rem;
        margin: 0px 1rem;
    }

    .carousel {
        height: 17rem;
    }

    .op-container .op-logo-container {
        height: 2.4rem;
    }

    .op-carousel section:nth-child(1) .op-ad {
        font-size: 1rem;
    }

    .controls .arrow.left {
        left: 10px;
        top: 42%;
        transform: scale(.8);
    }

    .controls .arrow.right {
        right: 10px;
        top: 42%;
        transform: scale(.8);
    }

    .op-navigation ul {
        font-size: .4rem;
        height: 1.7rem;
    }

    .op-container .op-title h1 {
        font-size: .6rem;
    }

    .op-new-items {
        display: none;
    }

    .op-products .op-grid-container {
        display: flex;
        flex-direction: column;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li>ul>li {
        padding: .2rem 0rem;
        text-align: center;
        font-size: .9rem;
        color: #004e66;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li>h1 {
        font-size: .8rem;
        justify-content: center;
        padding: .2rem;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li>h1 i {
        display: none;
    }

    .op-products .op-grid-container .op-left .op-filter>ul>li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        padding: .2rem;
    }

    #op-toggle {
        display: flex;
    }

    .op-products .op-grid-container .op-left {
        background-color: rgb(226 225 224);
        box-shadow: none;
        overflow: hidden;
        min-height: auto;
        max-height: 0;

    }

    .op-products .op-grid-container .op-left.active {
        max-height: 18rem;
    }

    .op-navigation ul {
        font-size: .4rem;
    }

    .op-products .op-items {
        padding: 1rem 3.6rem;
    }
    #op-toggle {
        color: white;
        background-color: rgb(0 90 128);
     text-shadow: .1rem .1rem .5rem rgba(0, 0, 0,.7);
    }
    .op-navigation ul {
        font-size: .8rem;
    }
    .op-navigation ul li a {
        padding: 0px;
    }
    .op-container .op-title h1 {
        font-size: .9rem;
    }
}

@media only screen and (max-width: 742px) {
    .op-container .op-logo-container .op-tag-line h2 {
        font-size: .70rem;
        margin: 0px .5rem;
        font-weight: bold;
    }
    .op-carousel section:nth-child(1) .op-ad {
        font-size: 1rem;
    }
    .op-carousel section:nth-child(2) .op-ad {
        font-size: 1rem;
    }
    .op-carousel section:nth-child(3) .op-ad {
        font-size: 1rem;
    }
    .op-products .op-items {
        padding: 1.3rem;
    }
    .op-products .op-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        transform: scale(.8);
        padding: 1rem 3rem 4rem 3rem;
    }
    .op-contact-us .op-contact-ways {
        padding: .5rem 1rem .5rem 1rem;
    }
    .op-contact-us .op-contact-ways .op-phone svg {
        width: 2.5rem;
    }
    .op-contact-us .op-contact-ways .op-address svg {
        width: 3rem;
    }
    .op-contact-us .op-contact-ways .op-email svg {
        width: 3rem;
    }
    .op-contact-us .op-contact-ways span a {
        font-size: .8rem;
    }
    .op-map {
        height: 15rem;
    }
    .op-about-us .op-content ul li {
        height: 15rem;
    }
    footer{
        font-size: .8rem;
    }
    .op-pop-up-item {
        flex-direction: column;
    }
    .op-pure-content {
        align-self: center;
    }
    .op-pop-up-prices h1{
        padding: .4rem;
    }
    .op-pop-up-prices {
        align-self: center;
        padding-bottom: 2rem;
    }
    .op-pop-up-info-title h2{
        font-size: 1rem;
    }
    .op-pop-up-policy-title h2{
        font-size: 1rem;
    }
    .op-pop-up-info-content p{
        font-size: .8rem;
    }
    .op-pop-up-policy-content p{
        font-size: .8rem;
    }
    .op-pop-up-title h1 {
        font-size: medium;
    }

    .op-container .op-logo-container .op-tag-line h2{
        letter-spacing: 0;
        text-align: center;
        font-size: .8rem;
        margin-right: 4rem;
    }

    .op-container .op-logo-container .op-tag-line{
        display: flex;
        justify-content: center;
    }

    .op-pop-up{
        width: 70%;
    }
}


@media only screen and (max-width: 560px) {

    .op-container .op-logo-container .op-logo img{
        margin: 0 1rem 0 1rem;
    }
    .op-container .op-logo-container .op-logo h1{
        font-size: 1rem;
    }

    .carousel{
        height: 12rem;
    }

    .controls ul{
        display: none;
    }

    .controls .arrow i{
        font-size: 1.5rem;
    }

    .controls .arrow:hover i{
        font-size: 1.8rem;
    }

    .op-carousel .op-ad{
        width: 10rem;
        font-size: .8rem !important;
        border-top-right-radius: .4rem;
        border-bottom-right-radius: .4rem;
        border-left: .2rem solid var(--blue-color);
    }

    .op-navigation ul li a{
        font-size: .9rem;
        letter-spacing: 0;
    }

    .op-products .op-items{
        justify-content: center;
    }

    .op-pure-content{
        width: 100%;
    }

    .op-pop-up-prices{
        width: 100%;
    }

    .op-pop-up-prices h4{
        margin: .5rem 0;
    }

    .op-pop-up-info .op-pop-up-info-title p{
        width: 30%;
    }

    .op-pop-up-policy .op-pop-up-policy-title p{
        width: 30%;
    }


    .op-about-us .op-content ul{
        flex-direction: column;
        height: 25rem;
    }

    .op-about-us .op-content ul li{
        height: auto;
    }

    .op-contact-us .op-contact-ways .op-phone svg {
        width: 2rem;
    }
    .op-contact-us .op-contact-ways .op-address svg {
        width: 2rem;
    }
    .op-contact-us .op-contact-ways .op-email svg {
        width: 2rem;
    }
    .op-contact-us .op-contact-ways {
        flex-direction: column;
        justify-content: center;
    }

    .op-contact-us .op-contact-ways h2{
        display: none;
    }

    .op-contact-ways>div{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 1rem 0 1rem 5.5rem;
    }

    .op-contact-ways>div span{
        margin-left: 1rem;
        text-align: left;
    }

    .op-about-us .op-content ul li p{
        width: 14rem;
        font-size: .7rem;
    }

    .op-contact-ways>div a{
        line-height: 1rem !important;
    }
}

@media only screen and (max-width: 410px) {

    .op-container .op-logo-container .op-tag-line{
        display: none;
    }

    .op-container .op-logo-container .op-logo{
        width: 100%;
        justify-content: center;
    }

    .op-container .op-logo-container .op-logo h1{
        font-size: 1rem;
    }

    .op-container .op-logo-container{
        justify-content: center;
    }

    .op-container .op-logo-container .op-logo img{
        margin: .3rem .3rem;
    }

    .op-navigation ul li a{
        font-size: .7rem;
    }

    .carousel{
        height: 8rem;
    }

    .op-carousel .op-ad{
        width: 7rem;
        font-size: .5rem;
    }

    .op-navigation ul li a{
        font-size: .5rem;
    }

    .op-container{
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    .op-container .op-title{
        padding: .2rem;
    }

    .op-container .op-title h1{
        font-size: .6rem;
    }

    #op-toggle{
        height: 1.5rem;
    }

    #op-toggle .material-icons{
        font-size: 2rem;
    }

    .op-search .op-search-input{
        height: 2rem;
        width: 20rem;
    }

    .op-search .op-search-input span{
        font-size: 1.5rem;
    }

    .op-search .op-search-input input{
        font-size: .8rem;
    }

    .op-products .op-pagination ul li{
        font-size: .7rem;
    }

    .op-contact-ways>div{
        margin: 1rem 0 1rem 1.5rem;
    }

    .op-contact-ways>div a{
        line-height: 1rem !important;
    }

    footer {
        font-size: .5rem;
    }

    .sticky{
        width: 100%;
    }

    .op-pop-up-title{
        padding: .5rem .2rem;
    }


    .op-pure-content{
        height: 14rem;
    }

    .op-pop-up-info .op-pop-up-info-title p{
        width: 20%;
    }

    .op-pop-up-policy .op-pop-up-policy-title p{
        width: 20%;
    }

    .op-pop-up-info-content p{
        font-size: .6rem;
    }
}

/* --------------------------------------- Responsive ------------------------------------------ */