@import url('https://fonts.googleapis.com/css2?family=Mukta+Mahee:wght@200;300;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    position: relative;
    width: 100%;
    z-index: 1;
    /*font-family: 'Mukta Mahee', sans-serif; */
    font-family: 'Rajdhani', sans-serif;

}
li{
    list-style: none;
}
:root{
    --primary-color: #0fa1ea;
    --font-color:#003242;
    --secondary-font: 'Mukta Mahee', sans-serif;
}
.secondary-font{
    font-family: var(--secondary-font);
}
h2{
    color: var(--font-color);
    font-weight: 500;
    border-bottom: 1px solid var(--font-color);
    padding: 6px 0;
}
a{
    text-decoration: none;
    color: unset;
    display: block;
}
nav{
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
    background-size: 300% 100%;
    z-index: 100;
}
svg{
    max-width: 100%;
}
.header{
    position: relative;
    z-index: 1;
}
.fejlec-content .container svg{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 1;
    max-height: 105%;
}
header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}
header:after{
    display: block;
    content: '';
    padding-bottom: 50%;
}
header h1{
    color: #013243;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(28px, 3vw, 60px);
}
.container, .fejlec-content{
    width: 100%;
    max-width: 1400px;
    padding: 10px;
    margin: auto;
    position: relative;
}
nav .container{
    display: flex;
}
.menu-btn{
    flex:1;
}
.hamburger{
    width: 32px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.hamburger span{
    width: 100%;
    height: 2px;
    background: white;
    position: relative;
}
.hamburger span:after{
    position: absolute;
    top: -8px;
    width: 100%;
    content: '';
    height: 2px;
    background: white;
}
.hamburger span:before{
    position: absolute;
    bottom: -8px;
    width: 100%;
    content: '';
    height: 2px;
    background: white;
}
.logo{
    flex: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.cart-btns{
    flex: 1;
    text-align: right;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 20rem;
    background: var(--font-color);
    height: 100vh;
    padding-top: 70px;
    text-align: right;
    transform: translateX(-20rem);
    transition: .3s;
    z-index: 100;
    overflow: scroll;
}
.back{
    position: absolute;
    right: 10px;
    top: 10px;
}
.back svg{
    fill: white;
    height: 30px;
}
.social-box{
    display: flex;
    margin: 15px auto;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.social-box a{
    flex: 1;
    display: block;
    color: white;
    text-align: center;
    font-size: 14px;
}
.social-box a svg{
    height: 25px;
    fill: white;
    display: block;
    margin: 4px auto;
}
.menu::-webkit-scrollbar{
    display: none;
}
.menu-active{
    transform: translateX(0rem);
}
.menu li{
    margin: 5px;
}
.menu li a{
    margin: 5px;
    padding: 6px;
    color: white;
    font-family: 'Mukta Mahee', sans-serif;
    font-size: 17px;
}
.overlay{
    z-index: -2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.overlay-active{
    z-index: 2;
}
.cart{
    position: relative;
}
.cart svg{
    fill: white;
    height: 25px;
}
.count{
    position: absolute;
    width: 15px;
    height: 15px;
    background: black;
    border-radius: 50%;
    color: white;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    bottom: 0;
    right: -6px;
}
.slide{
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}
.image-box{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgb(241, 241, 241);
}
.image-box:after{
    padding-bottom: 90%;
    content: '';
    display: block;
}
.item-box-desc h3{
    color: #003242;
    font-size: 18px;
    line-height: normal;
    margin: 0 0 5px;
    letter-spacing: 1px;
    font-weight: 600;
}
.item-box-desc h4{
    font-size: 16px;
}
.header{
    width: 100%;
    height: 260px;
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
    background-size: 300% 100%;
    border-radius: 20px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    color: white;

}
.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
.btn{
    background: var(--font-color);
    border: 2px solid var(--font-color);
    color: white;
    padding: 12px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 10px auto;
    font-weight: 600;
    appearance: none;
}
.c-btn{
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5) !important;
    border: none;
}
input[type='submit']{
    width: 100%;
}
.bordered-btn{
    border: 2px solid var(--font-color);
    color: var(--font-color);
    padding: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 10px auto;

}
.custom-mask{
    background: white;
    text-align: center;
    padding: 70px 0;
    border-radius: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #e5f2f5;
}
.custom-mask-secondary{
    background: rgb(197, 241, 227);
    text-align: center;
    padding: 40px 0;
    padding: 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.custom-mask .background{
    opacity: .5;
}
footer{
    background: #013243;
    color: white;
}
footer .container ul{
    margin: 20px auto;
    text-align: center;
}
footer .container ul h3{
    margin: 15px auto;
}
p{
    margin: 10px auto;
    line-height: 1.6em;
}
.why-us{
    background: rgb(245, 245, 245);
    text-align: center;
    color: var(--font-color);
}
.why-section{
    margin: 20px auto;
}
.icon svg{
    fill: #058fc5;
    height: 100px;
}
.outline-btn{
    border: 1px solid #013243;
    color: #013243;
    font-weight: 700;
    border-radius: 30px;
    width: max-content;
    padding: 10px 20px;
    margin: 12px auto;
}
.product-grid{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    width: 100%;
    grid-gap: .7em;
}
button{
    appearance: none!important;
}
.owl-dots{
    text-align: center;
    padding: 10px 0;
}
.owl-dot{
    width: 8px;
    height: 8px;
    margin: 4px;
    border-radius: 50%;
    background: rgb(169, 192, 185)!important;
}
.owl-dots .active{
    background: rgb(34, 54, 48)!important;

}
.form-control{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control-textarea{
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control-select{
    display: inline-block;
    flex: 1;
    height: 50px;
    padding: 6px 3px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(41, 84, 139);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.w-100{
    width: 100%;
}
.row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
    margin: 20px auto;
}
.review-box{
    display: flex;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 10px auto;
}
.review-box a{
    margin: auto 5px;
    text-decoration: underline;
    color: #585858;
}
.product-page-description h3{
    color: var(--font-color);
    font-size: 24px;
    margin: 15px auto;
}
.price-color{
    color: #058fc5!important;
}
.size-qty-box{
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.size-qty{
    border: 1px solid var(--primary-color);
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 5px;
    color:  white;
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
}
.quantity {
    display: inline-block;
    margin: auto 0;
    flex: 1;
}
.quantity .input-text.qty {
    width: 35px;
    height: 35px;
    padding: 0 5px;
    font-size: 15px;
    text-align:center;
    background-color: transparent!important;
    border: 1px solid var(--primary-color);
}
.quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top; 
}

.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}
.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    padding: 7px 14px 8px;
    height: 35px;
    border: 1px solid var(--primary-color);
    cursor:pointer;
    background: transparent;

}
.quantity.buttons_added .minus {
    border-right: 0; 

}
.quantity.buttons_added .plus {
    border-left: 0; 
    background: transparent;
}
.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
    color: white; 
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}
.pay-method{
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin: auto;
}
.type-method{
    border: none;
    border-radius: none;
}
.pay-method .cont{
    height: 50px;
}
.pay-method .cont .checkmark{
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    background: #f7f7f7;
    overflow: hidden;
}
.pay-method .cont:nth-child(even){
    background: unset;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
}
.cont {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 100%;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgb(248, 248, 248);
}
.type {
  position: relative;
  cursor: pointer;
  height: 200px;
  width: 100%;
  margin: 10px;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgb(248, 248, 248);
  border-radius: 10px;
  overflow: hidden;

}
.cont:nth-child(even){
    background-color: rgb(233, 233, 233);
}
.type:nth-child(even){
    background-color: rgb(233, 233, 233);
}
.cont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.type input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 5px;
  z-index: 1;
  transition: .2s;
}
.checkmark img{
    width: 100%;
    max-width: 240px;
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: .6;
    z-index: -1;
}
.type .checkmark{
    font-size: 22px;
    font-weight: bolder;
}
.cont:hover input ~ .checkmark {
  background-color: rgb(253, 231, 231);
}
.type:hover input ~ .checkmark {
  background-color: rgb(253, 231, 231);
}
.cont input:checked ~ .checkmark {
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
  color: white;
}
.type input:checked ~ .checkmark {
    background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5);
  color: white;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cont input:checked ~ .checkmark:after {
  display: block;
}
.size-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.product{
    padding: 5px 15px;
    margin: 5px;
    background: rgb(240, 240, 240);
    border-radius: 2px;
    position: relative;
}
.product button{
    position: absolute;
    top: 0px;
    right: 0px;
    background: red;
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    z-index: 100;

}
.line{
    background: #c4c4c4;
    width: 100%;
    height: 1px;
    margin: 10px auto;
}
.grand-total{
    display: flex;
}
.grand-total h3{
    flex: 1;
    font-size: 22px;
}
.grand-total h3:nth-child(2){
    text-align: right;
}
.alert-success{
    padding: 10px;
    background: rgb(204, 255, 238);
    border-radius: 5px;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  text-align: center;
  padding: 5px;
  font-size: 12px;

}
header svg{
    width: 100%;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

@media (min-width: 768px){
    .product-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px){
    .product-page{
        display: flex;
    }
    .product-page-image, .product-page-description{
        flex: 1;
    }
    .product-page-image img{
        position: sticky;
        position: -webkit-sticky;
        top: 60px;
        width: 100%;
    }
    .product-grid{
        grid-template-columns: repeat(5, 1fr);
    }
    .fejlec-content{
        display: flex;
    }
    .fejlec-content .container{
        flex: 1;
    }
    .header, .custom-mask{
        height: 300px;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
    .why-us .container{
        display: flex;
    }
    .why-section{
        flex: 1;
    }
    footer .container{
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        padding: 30px 10px;
    }
}