@import url('https://fonts.googleapis.com/css2?family=Duru+Sans&family=Luckiest+Guy&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.no-scroll {
  overflow: hidden;
}
:root {
  --primary1: #094a25ff;
  --primary2: #0c6b37ff;
  --primary3: #f8b324ff;
  --primary4: #eb442cff;
  --primary5: #f03b3b;
  --black0: #000;
  --black1: #111;
  --black2: #222;
  --black3: #333;
  --black4: #444;
  --black5: #555;
  --grey1: #ccc;
  --grey2: #ddd;
  --grey3: #eee;
  --grey4: #f1f1f1;
  --grey5: #f7f7f7;
  --white: #fff;
}
:root.dark {
  background: rgba(25, 25, 25, 0.998);
}
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  color: #373c3e;
  font-family: "Duru Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Luckiest Guy", cursive;
  line-height: 1.2;
}
h4,
h5,
h6 {
  line-height: 1.5;
}
h1 {
  font-weight: 800;
}
h2 {
  font-weight: 700;
}
h3 {
  font-weight: 600;
}
h4 {
  font-weight: 500;
}
h5 {
  font-weight: 400;
  letter-spacing: -0.02em;
}
h6 {
  font-weight: 300;
}
.fw9 {
  font-weight: 900;
}
.fw8 {
  font-weight: 800;
}
.fw7 {
  font-weight: 700;
}
.fw6 {
  font-weight: 600;
}
.fw5 {
  font-weight: 500;
}
.fw4 {
  font-weight: 400;
}
.fw3 {
  font-weight: 300;
}
.lh10 {
  line-height: 1;
}
.lh15 {
  line-height: 1.5;
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
.lh2 {
  line-height: 2;
}
a,
.link {
  color: var(--primary5);
  font-family: "Prompt", sans-serif;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
}
b,
strong,
.bold {
  font-weight: 700;
}
a:hover,
.link:hover {
  color: var(--primary3);
}
p {
  line-height: 1.4;
  margin-bottom: 10px;
}
ul li {
  list-style: disc;
  line-height: 1.8;
  margin-left: 15px;
}
ul.nolist li {
  list-style: none;
  margin-left: 0;
}
fieldset {
  border: none;
}
/* ======== COMPONENTS ========== */
input[type="email"],
input[type="url"],
input[type="date"],
input[type="text"],
input[type="password"] {
  border-radius: 3px;
  border: 1px solid #ddd;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  left: 0;
  background: transparent;
  color: #272727;
  background-clip: text;
}
input[type="date"] {
  width: auto;
  border: 1px solid #ddd;
}
input[type="email"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border: 1px solid #ccc;
}
input[type="checkbox"] {
  accent-color: var(--primary4);
}
select {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  color: #555;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
}
select:hover {
  background: #fff;
  cursor: pointer;
}
select:focus,
textarea:focus {
  border-color: var(--primary2);
}
select:disabled {
  cursor: default;
}
.option select {
  height: 32px;
}
textarea {
  border: 1px solid #ddd;
  height: 100px;
  max-height: 220px;
  min-height: 100px;
  padding: 7px;
  resize: vertical;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Prompt", sans-serif;
}
.searchForm input:focus,
.searchForm select:focus,
.searchForm textarea:focus {
  border: none;
}
/* =============== COLORS ================= */
.primary1BG {
  background-color: var(--primary1);
}
.primary2BG {
  background-color: var(--primary2);
}
.primary3BG {
  background-color: var(--primary3);
}
.primary4BG {
  background-color: var(--primary4);
}
.primary5BG {
  background-color: var(--primary5);
}
.black0BG {
  background-color: var(--black0);
}
.black1BG {
  background-color: var(--black1);
}
.black2BG {
  background-color: var(--black2);
}
.black3BG {
  background-color: var(--black3);
}
.grey1BG {
  background-color: var(--grey1);
}
.grey2BG {
  background-color: var(--grey2);
}
.grey3BG {
  background-color: var(--grey3);
}
.grey4BG {
  background: var(--grey4);
}
.whiteBG {
  background-color: var(--white);
}
.primary1C {
  color: var(--primary1);
}
.primary2C {
  color: var(--primary2);
}
.primary3C {
  color: var(--primary3);
}
.primary4C {
  color: var(--primary4);
}
.primary5C {
  color: var(--primary5);
}
.black0C {
  color: var(--black0);
}
.black1C {
  color: var(--black1);
}
.black2C {
  color: var(--black2);
}
.black3C {
  color: var(--black3);
}
.black4C {
  color: var(--black4);
}
.black5C {
  color: var(--black5);
}
.white {
  color: #fff;
}
.bs1 {
  box-shadow: 1px 1px 1px 0 #333;
}
.bs2 {
  box-shadow: 1px 1px 3px -1px #555;
}
.ts1 {
  text-shadow: 1px 1px 1px #000;
}
.ts2 {
  text-shadow: 1px 1px 2px #000;
}
.bb1 {
  border-bottom: 1px solid #eee;
}
.bl1 {
  border-left: 1px solid #eee;
}
.b0 {
  border: none;
}
.uc {
  text-transform: uppercase;
}
.cap {
  text-transform: capitalize;
}
.b1 {
  border: 1px solid #ccc;
}
.disabled {
  pointer-events: none;
}
button.disabled {
  background: #999;
}

/* ==================== FONT SIZES ==================== */
.f1 {
  font-size: 0.1rem;
}
.f2 {
  font-size: 0.2rem;
}
.f3 {
  font-size: 0.3rem;
}
.f4 {
  font-size: 0.4rem;
}
.f5 {
  font-size: 0.5rem;
}
.f6 {
  font-size: 0.6rem;
}
.f7 {
  font-size: 0.7rem;
}
.f8 {
  font-size: 0.8rem;
}
.f9 {
  font-size: 0.9rem;
}
.f10 {
  font-size: 1rem;
}
.f11 {
  font-size: 1.1rem;
}
.f12 {
  font-size: 1.2rem;
}
.f13 {
  font-size: 1.3rem;
}
.f14 {
  font-size: 1.4rem;
}
.f15 {
  font-size: 1.5rem;
}
.f16 {
  font-size: 1.6rem;
}
.f17 {
  font-size: 1.7rem;
}
.f18 {
  font-size: 1.8rem;
}
.f19 {
  font-size: 1.9rem;
}
.f20 {
  font-size: 2rem;
}
.f21 {
  font-size: 2.1rem;
}
.f22 {
  font-size: 2.2rem;
}
.f23 {
  font-size: 2.3rem;
}
.f24 {
  font-size: 2.4rem;
}
.f25 {
  font-size: 2.5rem;
}
.f26 {
  font-size: 2.6rem;
}
.f27 {
  font-size: 2.7rem;
}
.f28 {
  font-size: 2.8rem;
}
.f29 {
  font-size: 2.9rem;
}
.f30 {
  font-size: 3rem;
}
.f31 {
  font-size: 3.1rem;
}
.f32 {
  font-size: 3.2rem;
}
.f33 {
  font-size: 3.3rem;
}
.f34 {
  font-size: 3.4rem;
}
.f35 {
  font-size: 3.5rem;
}
.f36 {
  font-size: 3.6rem;
}
.f37 {
  font-size: 3.7rem;
}
.f38 {
  font-size: 3.8rem;
}
.f39 {
  font-size: 3.9rem;
}
.f40 {
  font-size: 4rem;
}
/* ==================== POSITION ==================== */
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top0 {
  top: 0;
}
.left0 {
  left: 0;
}
.right0 {
  right: 0;
}
.bottom {
  bottom: 0;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
/* ==================== DISPLAY ==================== */
.flex,
.horizontal {
  display: flex;
}
.between {
  justify-content: space-between;
}
.around {
  justify-content: space-around;
}
.evenly {
  justify-content: space-evenly;
}
.wrap {
  flex-wrap: wrap;
}
.alignB {
  align-items: baseline;
}
.alignC {
  align-items: center;
}
.alignS {
  align-items: flex-start;
}
.alignE {
  align-items: flex-end;
}
.justS {
  justify-content: flex-start;
}
.justC {
  justify-content: center;
}
.justE {
  justify-content: end;
}
.block {
  display: block;
}
/* ==================== PADDING ==================== */
.p1 {
  padding: 1px;
}
.p2 {
  padding: 2px;
}
.p3 {
  padding: 3px;
}
.p5 {
  padding: 5px;
}
.p5-0 {
  padding: 5px 0;
}
.p0-5 {
  padding: 0 5px;
}
.p7 {
  padding: 7px;
}
.p8 {
  padding: 8px;
}
.p8-0 {
  padding: 8px 0;
}
.p5-10 {
  padding: 5px 10px;
}
.p10 {
  padding: 10px;
}
.p10-5 {
  padding: 10px 5px;
}
.p15-0 {
  padding: 15px 0px;
}
.p0-10 {
  padding: 0 10px;
}
.p0-15 {
  padding: 0 15px;
}
.p10-0 {
  padding: 10px 0;
}
.p10-15 {
  padding: 10px 15px;
}
.p10-30 {
  padding: 10px 30px;
}
.p20-0 {
  padding: 20px 0;
}
.p30-0 {
  padding: 30px 0;
}
.p0-30 {
  padding: 0 30px;
}
.p50-0 {
  padding: 50px 0;
}
.p70-0 {
  padding: 70px 0;
}
.p100-0 {
  padding: 100px 0;
}
.p150-0 {
  padding: 150px 0;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p30 {
  padding: 30px;
}
.p40 {
  padding: 40px;
}
.p50 {
  padding: 50px;
}
.p70 {
  padding: 70px;
}
.p0-20 {
  padding: 0 20px;
}
.p5-20 {
  padding: 5px 20px;
}
.p20-50 {
  padding: 20px 50px;
}
.p5-15 {
  padding: 5px 15px;
}
.p10-20 {
  padding: 10px 20px;
}
.p20-5 {
  padding: 20px 5px;
}
.p20-10 {
  padding: 20px 10px;
}
.pb5 {
  padding-bottom: 5px;
}
.pr50 {
  padding-right: 50px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb50 {
  padding-bottom: 50px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt100 {
  padding-top: 100px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb150 {
  padding-bottom: 150px;
}
.pl10 {
  padding-left: 10px;
}
.pl20 {
  padding-left: 20px;
}
.pl30 {
  padding-left: 30px;
}
.pl50 {
  padding-left: 50px;
}
.pr10 {
  padding-right: 10px;
}
.pr20 {
  padding-right: 20px;
}
.pr30 {
  padding-right: 30px;
}
/* ==================== MARGINS ==================== */
.auto {
  margin: auto;
}
.m0 {
  margin: 0;
}
.m0-5 {
  margin: 0 5px;
}
.m0-10 {
  margin: 0 10px;
}
.m10 {
  margin: 10px;
}
.m15-10 {
  margin: 15px 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr15 {
  margin-right: 15px;
}
.ml5 {
  margin-left: 5px;
}
.mb1 {
  margin-bottom: 1px;
}
.mb2 {
  margin-bottom: 2px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb7 {
  margin-bottom: 7px;
}
.mr10 {
  margin-right: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb100,
.mmb100 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb200 {
  margin-bottom: 200px;
}
.mr20 {
  margin-right: 20px;
}
.mr50 {
  margin-right: 50px;
}
.mp1 {
  margin: 1%;
}
.mb1p {
  margin-bottom: 1%;
}
.mb2p {
  margin-bottom: 2%;
}
.mb3p {
  margin-bottom: 3%;
}
.mb4p {
  margin-bottom: 4%;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt100 {
  margin-top: 100px;
}
.mt3p {
  margin-top: 3%;
}
.ml10 {
  margin-left: 10px;
}
/* ==================== COLUMNS ==================== */
.mc {
  width: max-content;
}
.col5 {
  width: 5%;
}
.col8 {
  width: 12.5%;
}
.col10 {
  width: 10%;
}
.col11 {
  width: 11.111111111%;
}
.col15 {
  width: 15%;
}
.col16 {
  width: 16.66666%;
}
.col20 {
  width: 20%;
}
.col22 {
  width: 22%;
}
.col25 {
  width: 25%;
}
.col30 {
  width: 30%;
}
.col33 {
  width: 33.333333%;
}
.col35 {
  width: 35%;
}
.col40 {
  width: 40%;
}
.col45 {
  width: 45%;
}
.col50 {
  width: 50%;
}
.col56 {
  width: 56%;
}
.col55 {
  width: 55%;
}
.col60 {
  width: 60%;
}
.col65 {
  width: 65%;
}
.col70 {
  width: 70%;
}
.col75 {
  width: 75%;
}
.col80 {
  width: 80%;
}
.col85 {
  width: 85%;
}
.col90 {
  width: 90%;
}
.col95 {
  width: 95%;
}
.col100 {
  width: 100%;
}
/* ================= SPAN WIDTHS ================= */
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w90 {
  width: 90px;
}
.w100 {
  width: 100px;
}
.w110 {
  width: 120px;
}
.w120 {
  width: 120px;
}
.w130 {
  width: 130px;
}
.w140 {
  width: 140px;
}
.w150 {
  width: 150px;
}
.w160 {
  width: 160px;
}
.w170 {
  width: 170px;
}
.w180 {
  width: 180px;
}
.w190 {
  width: 190px;
}
.w200 {
  width: 200px;
}
.w220 {
  width: 220px;
}
.w250 {
  width: 250px;
}
/* ==================== ALIGNMENT ==================== */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ==================== BORDER RADIUS ==================== */
.br3 {
  border-radius: 3px;
}
.br5 {
  border-radius: 5px;
}
.br7 {
  border-radius: 7px;
}
.br10 {
  border-radius: 10px;
}
.br15 {
  border-radius: 15px;
}
.br20 {
  border-radius: 20px;
}
.br50 {
  border-radius: 50px;
}
/* ==================== ELEMENTS ==================== */
button {
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  min-width: 80px;
  transition: all 0.2s;
}
.button:hover,
button:hover {
  background: var(--black3);
  border: 1px solid var(--black3);
  color: var(--primary3);
}
.pointer {
  cursor: pointer;
}

/* ==================== IMAGE SIZES ==================== */
.h100p {
  height: 100%;
}
.h50 {
  height: 50px;
}
.h60 {
  height: 60px;
}
.h70 {
  height: 70px;
}
.h80 {
  height: 80px;
}
.h100 {
  height: 100px;
}
.h110 {
  height: 110px;
}
.h120 {
  height: 120px;
}
.h150 {
  height: 150px;
}
.h180 {
  height: 180px;
}
.h200 {
  height: 200px;
}
.h250 {
  height: 250px;
}
.h300 {
  height: 300px;
}
.h400 {
  height: 400px;
}
.h500 {
  height: 500px;
}
.h550 {
  height: 550px;
}
.h600 {
  height: 600px;
}
.h700 {
  height: 700px;
}
.h100p {
  height: 100%;
}
.contain {
  object-fit: contain;
}
.cover {
  object-fit: cover;
}
.fitTop {
  object-position: top;
}
.fitCenter {
  object-position: center;
}
.fitBottom {
  object-position: bottom;
}
/* =======================================================================
  CUSTOM CSS STARTS HERE
  =======================================================================*/
.hidden {
  display: none;
}
.custom-logo {
  height: auto;
  max-width: 150px;
}
.headerWrap {
  background: #000;
}
#mainmenu li {
  min-width: 140px;
  text-align: center;
}
.contactUs {
  padding: 15px 0 10px;
  background: #f03b3b;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}
.mobile-menu-block {
  display: none;
}
.mobileBtn {
  display: none;
}
.slideoverlay {
  top: 30%;
  z-index: 9999;
  width: 70%;
  left: 15%;
}
.serviceB .textwidget {
  min-height: 180px;
}
.overlayWrap {
  background: rgba(0, 0, 0, 0.7);
  width: 52%;
  min-height: 340px;
}
#discount {
  bottom: 0;
  text-align: center;
  width: 100%;
  padding: 20px;
  color: #fff;
  font-size: 29px;
}
.overlayWrap h2 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: 900;
}
.overlayWrap h3 {
  color: var(--primary5);
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 900;
}
.overlayWrap p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.overlayWrap h3.getStarted {
  font-size: 16px;
  color: #fff;
  padding: 10px 15px;
  background: var(--primary5);
  width: max-content;
  border-radius: 5px;
  font-weight: 500;
}
#legalNotice {
  background: #000;
  color: #fff;
}
footer {
  padding: 50px 0;
  background: #b5b5b5;
}
#footerRow .col {
  padding: 0 30px;
}
.featImg {
  width: 100%;
  text-align: center;
  left: 0;
  top: -50px;
}
.featureCol {
  position: relative;
  min-height: 240px;
}
#whyChoose h2,
#testimonials h3 {
  margin-bottom: 80px;
  font-size: 50px;
  text-align: center;
  font-weight: 800;
}
.featureB h3 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--primary5);
  text-transform: uppercase;
  font-weight: 800;
}
#about h2, #contactDetails h2, #footerRow h2, .serviceB h2, #beforeTitle h2, #afterTitle h2 {
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 32px;
  color: var(--primary5);
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
  width: max-content;
}
#contactDetails li {
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 15px;
}
#contactDetails li span {
  font-weight: 700;
}
#testimonials .strong-view.wpmtst-default .wpmtst-testimonial-heading {
  margin-top: 0;
  padding-left: 40px;
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary5);
  margin-bottom: 30px;
}
#removeJunk {
  width: 50%;
  left: 25%;
  text-align: center;
  padding: 30px;
  top: 150px;
}
#removeJunk h2 {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 55px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 2px #000;
}
#removeJunk h3 {
  color: var(--primary5);
  font-size: 26px;
}
#testimonials .strong-view.wpmtst-default .wpmtst-testimonial-inner {
  border: none;
}
#contactForm input, #contactForm textarea {
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid #8c8c8c;
  background: none;
  resize: vertical;
  color: #fff;
}
#contactForm .wpcf7-submit {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  background: var(--primary5);
  color: #fff;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #f2f2f2;
}
/*========================================================================
  RESPONSIVE CSS 
  =======================================================================*/

/*================================================================
  MOBILE PHONES
  ============================================================= */
@media screen and (min-width: 300px) and (max-width: 760px) {
  #mainmenu {
    display: none;
  }
  .social a {
    display: none;
  }
  .mobileBtn {
    display: block;
  }
  .col70,
  .col15 {
    width: 100%;
  }
  .mobileBtn img {
    max-width: 33px;
  }
  .overlayWrap {
    width: 100%;
  }
  .sow-slider-image {
    min-height: 370px;
  }
  .sow-slider-background-image {
    min-height: 370px;
    object-fit: cover;
  }
  .slideoverlay {
    top: 14%;
    width: 90%;
    left: 5%;
  }
  .col60 {
    width: 98%;
  }
  #menu-mobile {
    padding: 10px;
  }
  .mobile-menu-block {
    position: fixed;
    top: -500px;
    z-index: 99991;
    background: #fff;
    width: 100%;
  }
  .mobile-menu-block.show {
    top: 90px;
	display:block;
  }
  #services .so-panel {
    margin: 0 0 50px 0 !important;
  }
  #about h2,
  #contactDetails h2,
  #footerRow h2,
  .serviceB h2 {
    width: 100%;
    text-align: center;
  }
  #footerRow {
    flex-flow: column;
  }
  .col33 {
    width: 100%;
  }
  #removeJunk {
    width: 90%;
    left: 5%;
    padding: 10px;
    top: 20px;
  }
  #removeJunk h2 {
    font-size: 43px;
  }
  .overlayWrap {
    width: 100%;
    min-height: 280px;
    padding: 10px;
  }
  .overlayWrap h2 {
    font-size: 28px;
  }
  .overlayWrap h3 {
    font-size: 20px;
  }
}
/*================================================================
  PHABLETS OR SMALL TABLETS
  ============================================================= */
@media screen and (min-width: 761px) and (max-width: 1279px) {
  #removeJunk {
    width: 90%;
    left: 5%;
  }
  .col15 {
    width: 25%;
  }
  .mobile-menu-block {
    display: none;
  }
  .slideoverlay {
    top: 12%;
    width: 100%;
    left: 5%;
  }
  .overlayWrap {
    width: 60%;
  }
  .sow-slider-image {
    min-height: 500px;
  }
  .sow-slider-background-image {
    min-height: 500px;
    object-fit: cover;
  }
  #mainmenu li {
    min-width: 120px;
  }
  .col60,
  .col70 {
    width: 98%;
  }
  #servicesRow {
    flex-wrap: nowrap !important;
  }
  #servicesRow {
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  #servicesRow .panel-grid-cell {
    padding: 0 !important;
    margin: 0 7px;
    flex: 0 0 30% !important;
  }
}

/*================================================================
  LAPTOPS
  ============================================================= */
@media screen and (min-width: 1280px) and (max-width: 1600px) {
}
/*=============================================================
  FULL HD RESPONSIVE CODE
  =============================================================*/
@media screen and (min-width: 1601px) and (max-width: 2400px) {
}
