@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500');
*{
  margin:0;
  padding: 0;
  outline: none;
  border:none;
  text-decoration : none;
}
img {
  max-width: 100%;
  display: block;
}
a{
  text-decoration:none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
    position: relative;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.wrapper{
  float: left;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.content {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-top .content {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
}

/* ========== Header STYLES // START ========== */
header {
  width: 100%;
  float: left;
}

header .header-top {
  width: 100%;
  float: left;
}

.logo {
  float: left;
  margin-top: 16px;
  width: 320px;
  margin-left: 6px;
}

.quick-links-top {
  float: right;
  margin-top: 82px;
  padding-right: 2px;
}

.quick-links-top ul {
  list-style: none;
}

.quick-links-top ul li {
  float: left;
}

.quick-links-top ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #0d0d0d !important;
  padding-left: 13px;
  padding-right: 10px;
  position: relative;
  text-transform:  uppercase;
}

.quick-links-top ul li:first-child a {
  padding-left: 0;
}

.quick-links-top ul li a:before {
  content: '';
  width: 4px;
  height: 4px;
  display: block;
  background: #25aae2;
  border-radius: 50%;
  position: absolute;
  top: 32%;
}

.quick-links-top ul li:last-child a {
  padding-right: 0px;
}

.quick-links-top ul li:first-child a:before {
  display: none;
}
.feature{
  font-family: "Roboto", sans-serif;
}
.feature ul{
  margin-left: 25px;
}
.feature h1, p{
  margin: 25px 0px 15px 0px;
}
nav {
  float: left;
  width: 100%;
  position:  relative;
  background: #03035e;
  margin-top: 2px;
}

.nav-container {
  width: 100%;
  max-width: 100%;
}

nav input[type=checkbox] {
  display: none;
}

#nav-icon {
  float: left;
  width: 26px;
  height: 22px;
  position: relative;
  margin-left: 0;
  margin-right: 8px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span {
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  height: 4px;
  width: 100%;
  border-radius: 9px;
  background: #fff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 8px;
}

#nav-icon span:nth-child(4) {
  top: 16px;
}

nav input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}


nav .menu {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .menu li {
  position: relative;
}

nav .menu li a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  display: block;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s;
  padding-left: 4px;
  padding-right: 4px;
  height: 46px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing:  border-box;
}

nav .menu li:first-child a {
  padding-left: 0;
}

nav .menu li:last-child a {
  width: 127px;
  font-size: 17px;
  font-weight: 900;
  text-shadow: 1px 1px 3px #000000;
  background: #000000;
}

nav .menu li a:hover {
  color: #dedede !important;
}

nav .menu li:last-child a:hover {
  color: #25aae2 !important;
}

.closemenu,
.burgermenu {
  display: none;
}

/* ========== Header STYLES // END ========== */
/* ========== Features Main STYLES // START ========== */

.features-main {
  width: 100%;
  float: left;
  background: #e3e6e8;
  padding-top: 10px;
  padding-bottom: 10px;
}

.features-main .content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.features-main .feature-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
  margin-top: 2px;
  margin-bottom: 7px;
}

.features-main .feature-box:last-child {
  padding-right: 0;
}

.features-main .feature-box img {
  margin-right: 10px;
}

.features-main .feature-box h4 {
  font-size: 14px;
  font-weight: 400;
  color: #898989;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2px;
}

/* ========== Features Main STYLES // END ========== */
/* ========== Subscribe STYLES // START ========== */
.subscribe {
  width: 100%;
  float: left;
  padding-top: 24px;
  padding-bottom: 14px;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(3,3,94,1) 20%, rgba(0,212,255,1) 50%, rgba(3,3,94,1) 80%);
}

.subscribe h4 {
  font-size: 21px;
  font-weight: 900;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.subscribe .btn-sub {
  display: block;
  width: 166px;
  height: 43px;
  line-height: 43px;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(40,40,189,1) 0%, rgba(3,3,94,1) 50%, rgba(40,40,189,1) 100%);
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff !important;
  font-family: "Oswald", sans-serif;
  transition: all 0.5s;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.subscribe .btn-sub:hover {
  color: #dedddd !important;
}

/* ========== Subscribe STYLES // END ========== */
/* ========== Footer STYLES // START ========== */

footer {
  width: 100%;
  float: left;
}

footer .footer-top {
  width: 100%;
  float: left;
  background: #ffffff;
  padding-top: 28px;
  font-family: "Roboto", sans-serif;
}

footer .footer-top .sect-links {
    width: 17.3%;
    display: inline-block;
    padding: 10px 10px 17px 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #03035e;
    color: #ffffff;
    font-weight: bolder;
}

footer .footer-top .sect-links.sect-links-large {
  width: 48.6%;
}
footer .footer-top h4 {
  font-size: 15px;
  font-weight: 900;
  color: #000000;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 11px;
  width:  100%;
  float:  left;
}

footer .footer-top ul {
  list-style: none;
  float: left;
  width: 100%;
}

footer .footer-top .sect-links-large ul {
  width: 50%;
  padding-right:  10px;
  box-sizing:  border-box;
}

footer .footer-top ul li a {
  font-size: 13px;
  font-weight: 400;
  color: #000000 !important;
  font-family: "Roboto", sans-serif;
  line-height: 26px;
  text-transform:  uppercase;
  letter-spacing: 0.1px;
}

footer .footer-top .sect-links.sect-links-large ul:last-child li a {
  text-transform: none;
}

footer .footer-top .payment-info-img {
  float: left;
  margin-top: 7px;
  margin-bottom: 39px;
}

footer .footer-top .shipping-info-img {
  float: left;
}

footer .footer-bottom {
  width: 100%;
  float: left;
  background: #fff;
  padding-top: 17px;
  padding-bottom: 40px;
  text-align: center;
}

footer .footer-bottom .copyrights {
  font-size: 13px;
  font-weight: 300;
  color: #000000;
  font-family: "Roboto", sans-serif;
  margin-top: 8px;
}

/* ========== Footer STYLES // END ========== */
/* ========== Listing Page STYLES // START ========== */
.image-gallery{ position:relative; width:100%; margin:2em auto auto } .image-gallery img{ margin:0 auto } .imgthumb{ width:100%; display:inline-block; padding-top:400px; text-align:center; } .imgthumb .imgdetails{ width:100%; position:absolute; left:0; top:0; transition:all .5s; text-align:center; max-height:570px; transition:all .5s; z-index:22; height:400px; background:#fff } .imgthumb .imgdetails img{ max-width:100%; max-height:398px; } .imgthumb input[name='imgswitch']{ display:none } .imgthumb label{ margin-right:11px; display:inline-block; cursor:pointer; transition:all .5s; opacity:1; margin-bottom:1em } .imgthumb span{ display:table-cell; width:90px; height:90px; text-align:center; border:1px solid #cdcdce; vertical-align:middle; } .imgthumb span:has(img[src*="Liquid"]){ display:none } .imgthumb label img{ max-width:99%; width:auto; margin: -1px; padding:1px; max-height:88px } .imgthumb img[src*="Liquid"]{ display:none } .imgthumb input[name='imgswitch']:checked+label{ opacity:1 } .imgthumb input ~ .imgdetails{ margin-bottom:0 } .imgthumb input[name='imgswitch'] ~ .imgdetails{ opacity:0; display:none } .imgthumb input[name='imgswitch']:checked + label + .imgdetails{ opacity:1; display:block; transform:scale(1) } .imgthumb #id1 + label + .imgdetails{ opacity:1; display:block; transform:scale(1) } @media screen and (max-width: 767px){ .imgthumb{ padding-top:320px; width:100%; position:relative } .imgthumb .imgdetails,.imgthumb .imgdetails img{ max-height:300px } .imgthumb label{ margin-right:12px } .imgthumb span{ width:66px; height:66px } .imgthumb label img{ max-height:64px } } @media (max-width: 1210px) and (min-width: 1140px) { .imgthumb{ padding-top:495px } .imgthumb .imgdetails,.imgthumb .imgdetails img{ max-height:443px } } @media(min-width:992px) and (max-width:1140px) { .imgthumb #id1 + label + .imgdetails:hover,.imgthumb input[name='imgswitch']:checked+label+ .imgdetails:hover{ transform:scale(1.1); border:1px solid #ababab } } @media (max-width: 992px) { .imgthumb{ padding-top:495px } .imgthumb .imgdetails,.imgthumb .imgdetails img{ max-height:443px } } @media (max-width: 939px) { .imgthumb{ padding-top:220px } .imgthumb .imgdetails,.imgthumb .imgdetails img{ max-height:210px } } @media(width: 768px) { .imgthumb{ padding-top:390px } .imgthumb .imgdetails,.imgthumb .imgdetails img{ max-height:370px } .imgthumb label{ margin-right:14px } .imgthumb span{ width:81px; height:81px } .imgthumb label img{ max-height:79px } }

.descr-container {
  width: 100%;
  float: left;
  margin-top: 8px;
  background: #fff;
  box-sizing: border-box;
}

.descr {
  width: 510px;
  float: left;
  position: relative;
  margin-top: 23px;
}

.descr-detail {
  width: 44.4%;
  float: right;
  margin-top: 24px;
}

.descr-detail h1 {
  float: left;
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  line-height: 34px;
  margin-top: 21px;
  box-sizing: border-box;
  letter-spacing: -0.1px;
  font-family:  "Roboto", sans-serif;
}

.descr-detail .price {
  font-size: 36px;
  font-weight: 600;
  color: #03035e;
  float: left;
  width: 100%;
  margin-top: 35px;
  box-sizing: border-box;
  letter-spacing: -0.3px;
  font-family: "Roboto", sans-serif;
}

.descr-detail .desc {
  width: 100%;
  float: left;
  margin-top: 40px;
}

.descr-detail .desc h6 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  font-family: "Roboto", sans-serif;
  margin-bottom: 14px;
}

.descr-detail .desc ul {
  list-style: none;
}

.descr-detail .desc ul li {
  padding-left: 13px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1px;
}

.descr-detail .desc ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  background: #25aae2;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}

.tabs-container {
  width: 100%;
  float: left;
  background: #e3e6e8;
  margin-top: 50px;
  border-top: 1px solid #b3b3b3;
  padding-bottom: 33px;
}

.tabs-container .content {
  overflow: visible;
}

.tabs {
  width: 100%;
  float: left;
  margin-top: -50px;
  box-sizing: border-box;
}

.tabs:after {
  content: '';
  display: table;
  clear: both;
}

.tabs input[type=radio] {
  display: none;
}

.tabs label {
  float: left;
  font-size: 15px;
  font-weight: 900;
  color: #000000;
  height: 49px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  background: #fff;
  padding-left:  5px;
  padding-right: 5px;
  border-top: 1px solid #b3b3b3;
  border-left: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  position: relative;
  top: 1px;
  font-family: "Roboto", sans-serif;
  text-transform:  uppercase;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-right: 0.1%;
}

.tabs .tab1,
.tabs .tab2,
.tabs .tab3,
.tabs .tab4,
.tabs .tab5,
.tabs .tab6 {
  width: 21.7%;
}

.tabs [id^="tab"]:checked + label {
  color: #000;
  font-weight: 600;
  background: #e3e6e8;
  z-index: 1;
}

.tab-content {
  display: none;
  width: 100%;
  float: left;
  padding: 45px 2.8% 32px 4px;
  min-height: 168px;
  box-sizing: border-box;
  border-top: 1px solid #b3b3b3;
  background: #e3e6e8;
  top: 0px;
  position:  relative;
}

#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4,
#tab5:checked ~ #tab-content5,
#tab6:checked ~ #tab-content6 {
  display: block;
  text-align: justify;
}

.tab-content * {
  -webkit-animation: scale 0.7s ease-in-out;
  -moz-animation: scale 0.7s ease-in-out;
  animation: scale 0.7s ease-in-out;
}

.tab-content h1, .tab-content h2, .tab-content h3, .tab-content h4, .tab-content h5  .tab-content h6 {
  color: #111111;
  margin: 15px 0px;
  letter-spacing: 1px;
}

.tab-content h1 {
  font-size: 26px;
}

.tab-content h2 {
  font-size: 24px;
}

.tab-content h3 {
  font-size: 22px;
}

.tab-content h4 {
  font-size: 20px;
}

.tab-content h5 {
  font-size: 18px;
}

.tab-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  margin-bottom: 28px;
}

.tab-content p {
  padding: 5px 0;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family:  "Roboto", sans-serif;
}

.tab-content p {
  color: #111111;
}
.tab-content a {
	color:#03F;
}

.tab-content ol,
.tab-content ul {
  margin-left: 30px;
  font-size: 14px;
  color: #111111;
  line-height: 28px;
  letter-spacing: 0.1px;
}

.tab-content ol ol li {
  list-style-type: lower-alpha;
}

.tab-content ol ol ol li {
  list-style-type: lower-roman;
}

.tab-content ul {
  padding-bottom: 6px;
}

.tab-content ul ul li {
  list-style-type: circle;
}

.tab-content ul ul ul li {
  list-style-type: square;
}

@keyframes scale {
  0% { 
  transform: scale(0.9);
  opacity: 0;
    }

  50% {
  transform: scale(1.01);
  opacity: 0.5;
    }

  100% { 
  transform: scale(1);
  opacity: 1;
  }
}

/* ========== Listing Page STYLES // END ========== */
/* ========== Responsive Items Style // START ========== */
@media (max-width: 1100px) {
  .features-main .feature-box h4 {
    font-size: 12px;
  }
}

@media (max-width: 1050px) {
  .descr-detail {
    width: 36%;
  }
}

@media (max-width: 980px){
   nav {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
  }

  nav .burgermenu {
    display: block;
    width: 100px;
    float: left;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 0 7px;
  }

  nav .burgermenu img {
    display: inline-block;
    width: 22px;
    margin-right: 5px;
  }

  .menu {
    display: none;
  }

  nav .menu {
    width: 100%;
    float: left;
    padding-top: 5px;
    display: none;
    padding-bottom: 5px;
  }

  nav .menu li {
    width: 100%;
  }

  nav .menu li a {
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: left;
    padding-left:  0;
    padding-right:  0;
  }

  nav .menu li:last-child a {
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #000000;
  }

  nav input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .tabs .tab1, .tabs .tab2, .tabs .tab3, .tabs .tab4, .tabs .tab5, .tabs .tab6 {
    width: 23%;
  }
}

@media (max-width: 900px) {
  .logo {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width:  100%;
    max-width: 320px;
  }

  .quick-links-top {
    margin-top: 32px;
    width: 100%;
  }

  .quick-links-top ul {
    text-align: center;
  }

  .quick-links-top ul li {
    float: none;
    display: inline-block;
  }
  .descr,
  .descr-detail {
    width: 100%;
  }

  .descr-container .descr {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .descr-container .descr, .descr-detail {
    margin-top: 30px;
  }

}

@media (max-width: 812px){
body {
    margin: 0 5px 5px 5px !important;
    overflow-x: hidden !important;
}
}
@media (max-width: 800px){

}

@media (max-width: 768px){

 .features-main .content {
    flex-wrap: wrap;
  }

  .features-main .feature-box {
    flex-basis: 33.33%;
    box-sizing: border-box;
  }
}


@media (max-width: 736px){
 .tabs .tab1, .tabs .tab2, .tabs .tab3, .tabs .tab4, .tabs .tab5, .tabs .tab6 {
    width: 100%;
    border-radius: 0;
  }
}
 

@media (max-width: 667px){
  
}
@media (max-width: 640px) {
  footer .footer-top .sect-links,
  footer .footer-top .sect-links:last-child {
    width: 48%;
    max-width: 100%;
  }

  footer .footer-top .sect-links.sect-links-large {
    width: 67%;
  }

  footer .footer-top .sect-links:first-child {
    width: 33%;
  }

}



@media (max-width: 568px) {
  .quick-links-top ul li{
    width: 100%;
    background: #e3e6e8;
    margin-bottom: 3px;
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
   }
  .quick-links-top ul li a{
    width: 100%;
    display: block;
    font-size: 13px;
  }
  .quick-links-top ul li a:hover {
    background: #ddd;
    color: #fff;
  }
  .quick-links-top ul li a {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-links-top ul li a:before {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-main {
    padding-bottom: 0;
  }
  
  .features-main .content {
    display: block;
  }

  .features-main .feature-box {
    width: 50%;
    float: left;
    display: block;
    margin-bottom: 10px;
  }

  .features-main .feature-box img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }

  .features-main .feature-box h4 {
    text-align: center;
  }

  .descr-container .descr {
    max-width: 326px;
  }
  .descr-detail h1 {
    font-size: 28px;
  }

  .descr-detail .price {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  
}

@media (max-width: 424px)
{
.footer {
    width:100%;
}
}

@media (max-width: 414px)
{   
  .sect-title h2 {
    font-size: 22px;
  }

  .categories .cat-single .cat-link {
    font-size: 15px;
    height: 34px;
  }

  footer .footer-top .sect-links:first-child,
  footer .footer-top .sect-links.sect-links-large {
    width: 100%;
  }
.footer {
    width:100%;
}
}


@media (max-width: 400px) {
.footer {width:100%;}
}

@media (max-width: 384px){
.footer {width:100%;}
}

@media (max-width: 375px) {
  .descr-container .descr {
    max-width: 280px;
  }
}

@media (max-width: 360px) {
.footer {
    width:100%;
}
}

@media (max-width: 320px) {
.wrapper{/* width: 315px; */height: auto;padding: 0 5px;}
body {margin: 0 0px 5px 5px !important;}
}
/* ========== Responsive Items Style // END ========== */








