@charset "UTF-8";
/*
Theme Name: Buroshade
Author: Ian Loats - Design Motive
Author URI: https://designmotive.co.uk/
Description: Custom WordPress themes, by Design Motive.
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;800&display=swap");
/* Text size - Large */
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #707070;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  letter-spacing: -0.7px;
}

html, body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000000;
}

h1 {
  font-size: 70px;
  line-height: 75px;
  padding: 0 0 0.5em;
  font-weight: 800;
}

h2 {
  font-size: 70px;
  line-height: 75px;
  padding: 0 0 0.75em;
  color: #ee2560;
  font-weight: 800;
  text-align: center;
}

h3 {
  font-size: 28px;
  line-height: 35px;
  padding: 0 0 0.5em;
  color: #ee2560;
  font-weight: 800;
  text-align: center;
}

h4 {
  font-size: 28px;
  line-height: 35px;
  padding: 0 0 0.5em;
  color: #ee2560;
  font-weight: 400;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 35px;
  font-weight: 300;
  padding: 0 20px 1em;
  text-align: center;
  color: #002749;
}

p.sml, ul.sml, .blogpost .blogsig p.sml {
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #002749;
  text-decoration: none;
}

a:hover {
  color: #ee2560;
  text-decoration: none;
}

strong {
  font-weight: 800;
}

main ul, main ol {
  padding: 0 0 0.75em 2em;
}

main li {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 35px;
  font-weight: 300;
  padding: 0;
  text-align: left;
  color: #002749;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(112, 112, 112, 0.5);
  margin: 3em 0 1em;
}

/* menu start */
#sidebarMenu {
  height: calc(100% - 91px);
  position: fixed;
  right: 0;
  top: 91px;
  width: 100vw;
  transform: translateX(100vw);
  transition: transform 250ms ease-in-out;
  background: #002749;
  z-index: 100;
}

.sidebarMenuInner {
  margin: 2.5vh 0 0;
  padding: 0;
}

.sidebarMenuInner li {
  list-style: none;
  padding: 1vh 20px;
  cursor: pointer;
  text-align: center;
}

.sidebarMenuInner li ul {
  padding: 1vh 0 0;
}

.sidebarMenuInner li li {
  padding: 0.25vh 20px;
}

.sidebarMenuInner li a {
  font-size: 28px;
  line-height: 35px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.sidebarMenuInner li li a {
  font-size: 18px;
  line-height: 23px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.sidebarMenuInner li a:hover {
  color: #ee2560;
  text-decoration: none;
}

input[type=checkbox]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 700;
  height: 100%;
  width: 100%;
  top: 40px;
  right: 40px;
  height: 22px;
  width: 22px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}

/* menu end */
.header {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  position: fixed;
  height: auto;
  overflow: hidden;
  z-index: 110;
}

header.navigation {
  display: block;
  margin: 0 auto;
  width: auto;
  box-shadow: none;
  position: fixed;
  height: 91px;
  overflow: hidden;
  z-index: 99999;
  top: 0;
  transition: top 0.2s ease-in-out;
}

header.nav-up, .menu.pos-fixed.nav-up {
  top: -91px;
}

header svg {
  margin: 13px 40px;
  width: 246px;
  height: 64px;
  z-index: 9999999;
}

body.home .menu ul li.home a, body.home ul.mainmenu li.home a {
  color: #ee2560;
}

body.fabric-range .menu ul li.fabric-range a, body.fabric-range ul.mainmenu li.fabric-range a {
  color: #ee2560;
}

body.about-us .menu ul li.about-us a, body.about-us ul.mainmenu li.about-us a {
  color: #ee2560;
}

body.contact .menu ul li.contact a, body.contact ul.mainmenu li.contact a {
  color: #ee2560;
}

body.product-range .menu ul li.product-range > a, body.product-range ul.mainmenu li.product-range > a, body.product-range .menu ul li.product-range-overview a, body.product-range ul.mainmenu li.product-range-overview a {
  color: #ee2560;
}

body.roller-blinds .menu ul li li.roller-blinds a, body.roller-blinds ul.mainmenu li li.roller-blinds a, body.roller-blinds .menu ul li.product-range > a, body.roller-blinds ul.mainmenu li.product-range > a {
  color: #ee2560;
}

body.cassette-roller-blinds .menu ul li li.cassette-roller-blinds a, body.cassette-roller-blinds ul.mainmenu li li.cassette-roller-blinds a, body.cassette-roller-blinds .menu ul li.product-range > a, body.cassette-roller-blinds ul.mainmenu li.product-range > a {
  color: #ee2560;
}

body.horizontal-rooflight-blinds .menu ul li li.horizontal-rooflight-blinds a, body.horizontal-rooflight-blinds ul.mainmenu li li.horizontal-rooflight-blinds a, body.horizontal-rooflight-blinds .menu ul li.product-range > a, body.horizontal-rooflight-blinds ul.mainmenu li.product-range > a {
  color: #ee2560;
}

body.external-blinds .menu ul li li.external-blinds a, body.external-blinds ul.mainmenu li li.external-blinds a, body.external-blinds .menu ul li.product-range > a, body.external-blinds ul.mainmenu li.product-range > a {
  color: #ee2560;
}

.mobile-menu {
  display: none;
}

.menu {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  background-color: rgba(0, 39, 73, 0.45);
  transition: top 0.2s ease-in-out;
}

.menu:hover {
  background-color: #002749;
}

.menu h3 {
  font-weight: normal;
}

.menu a {
  border-color: transparent;
}

.menu a:hover {
  -webkit-transition: border-color 0.3s, background 0.3s;
  -moz-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}

.menu ul,
.menu ul li,
.menu ul li a {
  position: relative;
}

.menu ul {
  z-index: 1;
  text-align: right;
}

.mrt {
  margin-right: 20px;
}

.menu ul li a {
  display: block;
  padding: 34px 15px;
  font-size: 18px;
  line-height: 23px;
  text-decoration: none;
}

.menu > ul > li > a {
  color: #ffffff;
}

.menu ul ul li:hover > a,
.menu ul ul li.active > a,
.menu > ul > li:hover > a,
.menu > ul > li.active > a {
  color: #ee2560;
}

@media only screen and (min-width: 900px) {
  .menu-button {
    display: none;
  }

  .menu.pos-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
  }

  .menu a {
    white-space: nowrap;
  }

  .menu ul li {
    display: inline-block;
  }

  .menu ul li.submenu:hover > a:before,
.menu ul li.submenu:hover > a:after {
    bottom: -20px;
    opacity: 0;
  }

  /*** Submenu ***/
  .menu ul ul, .menu ul .menu-wrapper {
    position: absolute;
    display: block;
    visibility: hidden;
    z-index: 1;
    height: auto;
    left: 3px;
    top: 100%;
    margin: 0;
    padding: 0;
    background-color: #002749;
    opacity: 0;
  }

  .menu ul li:hover > ul, .menu ul li:hover > .menu-wrapper {
    -webkit-transition: opacity 0.3s, padding 0.3s;
    -moz-transition: opacity 0.3s, padding 0.3s;
    transition: opacity 0.3s, padding 0.3s;
    visibility: visible;
    padding: 10px 0;
    opacity: 1;
  }

  .menu ul ul li {
    display: block;
    overflow: hidden;
    height: auto;
    padding: 10px;
  }

  .menu ul ul li a {
    color: #ffffff;
    padding: 25px 20px;
    font-size: 50px;
    line-height: 70px;
    font-weight: 300;
  }

  .menu ul ul li:hover > a,
.menu ul ul li.current > a {
    color: #ee2560;
  }

  .menu ul li:hover ul li {
    overflow: visible;
    padding: 0 10px;
  }

  .menu ul ul li.submenu > a:before,
.menu ul ul li.submenu > a:after {
    left: auto;
    top: 50%;
    right: 0;
    background: #ccc;
  }

  .menu ul ul li.submenu > a:before {
    margin-top: -1px;
  }

  .menu ul ul li.submenu > a:after {
    margin-top: 2px;
  }

  .menu ul ul li.submenu > a:hover:before,
.menu ul ul li.submenu > a:hover:after {
    right: -13px;
  }

  .menu ul ul ul {
    left: 100%;
    top: -11px;
  }

  /* Megamenu */
  .menu ul li.menu-item-has-children {
    position: static;
  }

  .menu ul .menu-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    width: 100%;
  }

  .menu ul .menu-wrapper a {
    white-space: inherit;
  }

  .menu ul .menu-wrapper .menu-col {
    position: relative;
    float: left;
    width: 100%;
    margin: 0;
  }

  .menu ul .menu-wrapper h3 {
    margin: 20px 15px;
    font-size: 18px;
    line-height: 22px;
    color: #000;
  }

  .menu ul .menu-wrapper ul {
    position: relative;
    visibility: hidden;
    height: 100vh;
    border: 0;
    opacity: 1;
    background: transparent;
    text-align: center;
    padding-top: 10vh;
  }

  .menu ul li:hover > .menu-wrapper ul {
    visibility: visible;
  }

  .menu ul .menu-wrapper ul li {
    padding: 0 10px;
  }

  .menu .show-submenu {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .menu.clr-white {
    background: #fff;
  }

  .menu.clr-white h3,
.menu.clr-white ul li a {
    color: #000;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .menu.clr-white h3 {
    background: rgba(0, 0, 0, 0.05);
  }

  .menu.clr-white ul li:hover a,
.menu.clr-white ul li.current a {
    background: rgba(0, 0, 0, 0.1);
  }

  .menu.clr-white ul li li:hover a,
.menu.clr-white ul li li.current a {
    background: rgba(0, 0, 0, 0.2);
  }

  .menu.clr-white ul li li li:hover a,
.menu.clr-white ul li li li.current a {
    background: rgba(0, 0, 0, 0.3);
  }

  .menu {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu-button, .menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
  }

  input.menu-button {
    display: none;
  }

  label.menu-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    cursor: pointer;
    text-indent: -9999px;
  }

  label.menu-button:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 5px;
    left: 10px;
    bottom: 13px;
    border-top: 13px double #fff;
    border-bottom: 4px solid #fff;
    z-index: 1;
  }

  .menu {
    overflow: auto;
    left: -100%;
    top: 0;
    width: 55%;
    height: 100%;
    opacity: 0;
    -webkit-transition: left 0.8s, opacity 0.5s;
    -moz-transition: left 0.8s, opacity 0.5s;
    transition: left 0.8s, opacity 0.5s;
  }

  #mobile-nav:checked + .menu {
    visibility: visible;
    left: 0;
    opacity: 1;
  }

  .menu h3, .menu ul li a {
    color: #fff;
  }

  .menu h3 {
    font-size: 18px;
    line-height: 1em;
    margin: 0;
    padding: 20px 0 20px 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu ul {
    margin: 0;
    padding: 0;
  }

  .menu li, .menu a {
    display: block;
  }

  .menu li {
    position: relative;
  }

  .menu li:hover > a,
.menu li.current > a {
    background: rgba(255, 255, 255, 0.2);
  }

  .menu li li:hover > a,
.menu li li.current > a {
    background: rgba(255, 255, 255, 0.4);
  }

  .menu li li li:hover > a,
.menu li li li.current > a {
    background: rgba(255, 255, 255, 0.6);
  }

  .menu ul > li {
    padding-bottom: 0;
  }

  .menu ul ul a {
    padding-left: 40px;
  }

  .menu ul ul ul a {
    padding-left: 55px;
  }

  .menu ul ul ul ul a {
    padding-left: 70px;
  }

  .menu ul ul li a {
    font-size: 14px;
  }

  .menu ul li.submenu > a:before,
.menu ul li.submenu > a:after {
    top: 50%;
    left: auto;
    right: 12px;
  }

  .menu.clr-white ul li.submenu a:before,
.menu.clr-white ul li.submenu a:after {
    background: #999;
  }

  .menu ul li.submenu > a:before {
    margin-top: -2px;
  }

  .menu ul li.submenu > a:after {
    margin-top: 1px;
  }

  .menu .show-submenu {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    min-width: 100%;
    min-height: 40px;
    margin: 0;
    opacity: 0;
    -webkit-appearance: none;
  }

  .menu .show-submenu + ul,
.menu .show-submenu + .menu-wrapper {
    display: none;
    visibility: hidden;
  }

  .menu .show-submenu:checked + ul,
.menu .show-submenu:checked + .menu-wrapper {
    display: block;
    visibility: visible;
  }
}
@media only screen and (max-width: 480px) {
  .menu {
    width: 70%;
  }
}
.half-hero {
  height: 50vh;
  position: relative;
  overflow: hidden;
  background-color: #002749;
  background: #002749;
  background-size: 120vh;
  background-position: center center;
}

.bgred {
  background-color: #ee2560;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.page-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #002749;
  background-size: 120vh;
  background-position: center center;
}

.hero-content {
  height: calc(100vh - 60px);
  width: 100vw;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: left;
}

.hero-content > div p {
  text-align: left;
  padding: 0;
}

.hero-content > div {
  flex: 0 0 50%;
}

video[poster] {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.arrow {
  height: 60px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg .svgar {
  stroke: #ffffff;
  fill: none;
  transition: transform 0.2s ease;
}

.arrow a:hover svg .svgar {
  stroke: #ffffff;
  fill: none;
  transform: translateY(10px);
}

section.pagehero {
  min-height: 450px;
  margin: 80px 20px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section {
  padding: 0;
  margin: 2em 0;
}

footer {
  background: #002749;
  padding: 20px 0;
}

footer p, footer a {
  color: #ffffff;
}

footer p {
  padding: 0 0 1em 0;
  font-size: 21px;
  line-height: 27px;
  text-align: left;
  letter-spacing: 0;
}

footer svg {
  margin: 0;
  width: 246px;
  height: 64px;
}

footer strong, footer a {
  letter-spacing: 0;
}

footer .footcol {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  margin: 0;
}

footer .footcol > div:nth-child(1) {
  flex: 0 0 100%;
}

footer .footcol > div:nth-child(2) {
  flex: 0 0 calc(100% - 246px);
}

footer .footcol > div:nth-child(3) {
  flex: 0 0 246px;
}

footer .footcol > div:nth-child(2) svg {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

footer .footcol > div:nth-child(2) a:hover svg path {
  fill: #ee2560;
}

section.hero {
  padding: 0 0;
  margin: 0;
}

section.hero h1 {
  color: #ffffff;
  text-align: left;
  padding: 0 40px;
}

section#map {
  margin: 80px 20px 2em;
  height: 450px;
}

.wrap {
  max-width: 1900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

figure {
  background-color: #ededed;
  margin: 0 calc(-50vw + 573px);
  padding: 4em 0;
  text-align: center;
  border-left: 17px solid #ffffff;
  border-right: 17px solid #ffffff;
}

figure img {
  margin-top: 1em;
}

figure.wp-block-embed {
  margin: 1em 0 2em;
  border: 0;
  padding: 1em 0 0.5em;
}

figure.wp-block-embed figcaption {
  padding-bottom: 0;
}

blockquote {
  max-width: 1164px;
  margin: 0 auto;
  text-align: center;
}

blockquote p {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 35px;
  padding: 0 2em 1em;
}

blockquote p::before {
  content: "“";
}

blockquote p::after {
  content: "”";
}

figcaption {
  max-width: 1164px;
  margin: 0 auto;
  text-align: center;
  color: #002749;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding-bottom: 1.5em;
}

button {
  background-color: #ffffff;
  color: #002749;
  padding: 0.65em 1em;
  border: 0;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 27px;
  font-weight: 400;
  margin: 1em 40px 40px;
  cursor: pointer;
  border-radius: 3em;
}

button:hover {
  color: #ee2560;
}

button.rev, section.wpane button {
  background-color: #002749;
  color: #ffffff;
  letter-spacing: 0;
  font-size: 21px;
  line-height: 27px;
}

button.rev:hover, section.wpane button:hover {
  color: #ee2560;
}

section.wpane {
  padding: 40px 0;
}

section.wpane .wrap {
  max-width: 1215px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

section.newspane {
  padding: 0 0;
}

section.newspane .wrap {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

section#map {
  height: 50vh;
}

.gpane {
  background-color: #ededed;
}

.gpane h2 {
  text-align: left;
  padding: 40px 20px;
}

.gpane p {
  text-align: left;
  color: #002749;
  font-weight: 800;
  padding: 0.5em 20px;
}

.two-col {
  display: flex;
  flex-flow: row wrap;
}

.two-col > div {
  flex: 0 0 50%;
  margin: 0;
}

.three-col {
  display: flex;
  flex-flow: row wrap;
  margin: 2em 0;
}

.three-col > div {
  flex: 0 0 33.33%;
  margin: 0;
}

.three-col .roundel {
  position: relative;
  max-width: 256px;
  max-height: 256px;
  overflow: hidden;
  border-radius: 50%;
  margin: 2em auto;
}

.three-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.three-col p {
  font-size: 21px;
  line-height: 27px;
  padding: 0 20px;
  text-align: center;
}

.three-col img.tcsvg {
  margin: 40px 0 0;
  width: 54px;
  height: 54px;
}

.gallery {
  margin: -10px;
}

.gallery > div {
  margin: 10px;
  flex: 0 0 calc(33.33% - 20px);
}

.boxes {
  display: flex;
  flex-flow: row wrap;
  margin: -10px;
}

.boxes > div {
  flex: 0 0 calc(50% - 20px);
  background-color: #002749;
  margin: 10px;
  display: flex;
  flex-flow: column wrap;
}

.boxes > div h2 {
  text-align: left;
  padding: 40px 20px;
}

.boxes > div p {
  text-align: left;
  color: #ffffff;
}

.boxes button {
  margin: 0.5em 0;
  min-width: 250px;
}

.boxes > div:nth-child(2), .boxes > div:nth-child(3), .boxes > div:nth-child(6) {
  background-color: #ffffff;
}

.boxes > div:nth-child(5) {
  background-color: #ededed;
}

.boxes > div:nth-child(5) p {
  color: #002749;
}

.boxes > div:nth-child(1), .boxes > div:nth-child(4), .boxes > div:nth-child(5) {
  padding-bottom: 40px;
}

.pboxes {
  display: flex;
  flex-flow: row wrap;
  margin: -10px;
}

.pboxes > div {
  flex: 0 0 calc(50% - 20px);
  background-color: #002749;
  margin: 10px;
  display: flex;
  flex-flow: column wrap;
  background-repeat: no-repeat;
  background-position: bottom 20px right 20px;
}

.pboxes.pimgs > div {
  padding-bottom: 100px;
}

.pboxes > div h2 {
  text-align: left;
  padding: 20px;
}

.pboxes > div p {
  text-align: left;
  color: #ffffff;
}

.pboxes > div button {
  margin-left: 0;
}

.pboxes > div.grabg {
  background-color: #ededed;
}

.pboxes > div.grabg p {
  color: #002749;
}

.pboxes > div.grabg button {
  background-color: #002749;
  color: #ffffff;
}

.pboxes > div.grabg button:hover {
  color: #ee2560;
}

.pboxes > div.whtbg {
  background-color: #ffffff;
}

.pboxes > div.redbg {
  background-color: #ee2560;
}

.pboxes > div.redbg h2 {
  color: #ffffff;
}

.pboxes > div.redbg p {
  color: #002749;
}

.pboxes > div h2.name {
  padding-bottom: 0;
}

.pboxes > div h3 {
  text-align: left;
  padding-left: 20px;
  padding-bottom: 40px;
}

.pboxes > div img {
  width: 273px;
  height: 273px;
  margin: 20px;
  display: inline-flex;
  align-self: flex-end;
}

.pboxes.sml > div h2 {
  font-size: 38px;
  line-height: 40px;
}

.pboxes.sml > div p {
  font-size: 21px;
  line-height: 27px;
  padding-right: 20%;
}

.pboxes.sml > div {
  min-height: 360px;
}

.pboxes.sml > div.fianfi {
  background: #ededed url("img/fixtures-and-fittings.png") no-repeat top right;
  background-size: contain;
}

.pboxes.sml > div.vifara {
  background: #002749 url("img/view-our-fabric-range.png") no-repeat top right;
  background-size: contain;
}

.pboxes.sml > div.tradis {
  background: #ee2560 url("img/trade-discount.svg") no-repeat bottom 20px right 20px;
  background-size: 120px 120px;
}

.pboxes.sml > div.procat {
  background: #ededed url("img/product-catalogue.svg") no-repeat bottom 20px right 20px;
  background-size: 120px 120px;
}

.pboxes.sml > div.prilis {
  background: #002749 url("img/price-list.svg") no-repeat bottom 20px right 20px;
  background-size: 120px 120px;
}

.pboxes.sml > div.newhed {
  background: #ee2560 url("img/new-heading.svg") no-repeat bottom 20px right 20px;
  background-size: 120px 120px;
}

.fboxes {
  display: flex;
  flex-flow: column wrap;
}

.fboxes > div {
  flex: 0 0 100%;
  background-color: #002749;
  margin: 10px 0;
}

.fboxes > div:nth-child(odd) {
  background-color: #ededed;
}

.fboxes > div h2 {
  text-align: left;
  padding: 40px 20px 20px;
}

.fboxes > div p {
  text-align: left;
  color: #ffffff;
}

.fboxes > div:nth-child(odd) p {
  color: #002749;
}

.fboxes > div button {
  margin: 1em 20px 40px 0;
}

.fboxes > div:nth-child(odd) button {
  background-color: #002749;
  color: #ffffff;
}

.fboxes > div:nth-child(odd) button:hover {
  color: #ee2560;
}

.icon-row {
  display: flex;
  flex-flow: row wrap;
}

.pboxes > div img.icon {
  width: 62px;
  height: 62px;
  align-self: flex-start;
  margin: 0 0 20px 20px;
}

.swatches {
  display: flex;
  flex-flow: row wrap;
  margin: 20px;
}

.swatches > div {
  flex: 0 0 calc(10% - 10px);
  height: auto;
  margin: 5px;
}

.halfswatch > div {
  flex: 0 0 calc(5% - 10px);
}

.swatches p {
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  padding: 0.25em 1em 1em 0;
}

.swatches > div > div.swatch {
  height: 70px;
  width: 100%;
}

section.vid {
  padding: 0 0;
}

.slides p {
  font-size: 70px;
  line-height: 75px;
  padding: 0.5em 0 1em 0;
  font-weight: 800;
  color: #002749;
}

.slick-dots li button:before {
  font-size: 20px !important;
}

form {
  padding-bottom: 40px;
}

input[type=text], input[type=email], input[type=tel], select, textarea {
  font-weight: 300;
  font-size: 21px;
  line-height: 27px;
  color: #002749;
  border: 0;
  border-bottom: 1px solid #002749;
  padding: 0.5em 0;
  height: auto;
  width: calc(100% - 40px);
  background: #ededed;
  margin: 20px 0;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=submit] {
  background-color: #002749;
  color: #ffffff;
  padding: 0.65em 1em;
  border: 0;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 27px;
  font-weight: 400;
  margin: 1em 20px;
  cursor: pointer;
  border-radius: 3em;
  min-width: 250px;
  -webkit-appearance: none;
}

input[type=submit]:hover {
  color: #ee2560;
}

input[type=text]:focus {
  border: 0;
  outline: 0;
}

input[type=radio] {
  margin-right: 10px;
  margin-bottom: 0;
  margin-left: 0;
}

.wpcf7-radio {
  display: flex;
  flex-flow: column;
}

.wpcf7-not-valid-tip {
  font-size: 21px;
}

.wpcf7-list-item {
  margin: 0;
}

label {
  font-weight: 300;
  font-size: 21px;
  line-height: 27px;
  color: #002749;
}

::placeholder {
  color: #002749;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #002749;
}

::-ms-input-placeholder {
  color: #002749;
}

section.latest {
  margin: 2em 0;
  padding: 4em 0;
  background-color: #ededed;
}

.blogroll {
  display: flex;
  flex-flow: row wrap;
  margin: 1em -17px -17px;
}

.blogpost {
  height: auto;
  background-color: #ffffff;
  flex: 0 0 calc(33.33% - 34px);
  padding: 0;
  margin: 17px;
  display: inline-flex;
  flex-flow: column;
}

.blog .blogroll .blogpost:nth-child(1), .blog .blogroll .blogpost:nth-child(2) {
  flex: 0 0 calc(50% - 34px);
}

.blog .blogroll .blogpost:nth-child(1) > div:nth-child(1) > a img, .blog .blogroll .blogpost:nth-child(2) > div:nth-child(1) > a img {
  height: 500px;
}

.blogpost img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blogpost p, .blogpost h4 {
  padding: 0.5em 17px;
  text-align: left;
}

.blogpost p, .single main .blogpost p {
  font-size: 21px;
  line-height: 27px;
  padding: 0 20px 1em;
}

.blogpost .blogsig p.sml {
  padding-bottom: 0;
}

.blogpost h4 {
  font-weight: 800;
}

.blogpost > div:nth-child(1) {
  flex: 0 0 calc(100% - 89px);
  padding-bottom: 3em;
}

.blogsig {
  display: inline-flex;
  flex-flow: row;
  width: 100%;
  margin: 0 0 17px;
}

.blogsig > div {
  flex: 0 0 calc(100% - 89px);
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
}

.blogsig > div:nth-child(2) {
  position: relative;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 72px;
  margin: 0 17px 0 0;
}

.blogsig > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.twothirds {
  display: flex;
  flex-flow: row wrap;
}

.twothirds article {
  flex: 0 0 75%;
  padding-right: 17px;
  margin-bottom: 3em;
}

.twothirds aside {
  flex: 0 0 25%;
  padding-left: 17px;
}

article img {
  margin-bottom: 3em;
  width: 100%;
  height: 60vh;
  max-height: 780px;
  object-fit: cover;
}

.single main aside p {
  padding: 0.5em 0;
}

aside > div:nth-child(1) div {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 100px;
  margin: 0;
  padding: 0;
}

aside > div:nth-child(1) div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

aside > div {
  background-color: #ededed;
  padding: 17px;
}

aside div.relarticle {
  padding: 0 0 17px;
}

aside div.relarticle img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

aside div.relarticle p, aside div.relarticle h4 {
  padding: 0.5em 17px;
}

aside h3 {
  padding: 1em 0 0.25em;
}

body.blog, body.tag {
  background-color: #ededed;
}

.single main, .blog main, .search main, .error404 main, .tag main {
  margin-top: 150px;
}

.single main h1, .blog main h1, .tag main h1 {
  text-align: left;
  font-size: 70px;
  line-height: 75px;
  color: #ee2560;
  padding: 0 0 0.5em;
}

.single main h2 {
  text-align: left;
  font-size: 38px;
  line-height: 40px;
  padding: 1em 0 0.5em;
  color: #002749;
}

.single main p {
  text-align: left;
  font-size: 27px;
  line-height: 37px;
  padding: 0 0 0.5em;
}

.single h3 {
  color: #002749;
  font-size: 38px;
  line-height: 40px;
  text-align: left;
  padding-top: 2em;
}

figure.wp-block-image {
  margin: 1.5em 0;
  padding: 0;
  border: 0;
}

figure.wp-block-image img {
  width: auto;
  height: auto;
  margin: 2em 0 0;
  padding: 0;
}

.pagenavigation {
  margin: 2em 0;
  text-align: left;
}

.pagenavigation ul {
  padding: 0;
}

.pagenavigation li a,
.pagenavigation li a:hover,
.pagenavigation li.active a,
.pagenavigation li.disabled {
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  line-height: 27px;
}

.pagenavigation li {
  display: inline;
  line-height: 250%;
}

.pagenavigation li a,
.pagenavigation li a:hover,
.pagenavigation li.active a,
.pagenavigation li.disabled {
  background-color: #002749;
  border-radius: 26px;
  cursor: pointer;
  padding: 0.35em 0.75em;
}

.pagenavigation li a:hover,
.pagenavigation li.active a {
  background-color: #ee2560;
}

section.gra {
  background-color: #ededed;
  padding-bottom: 4em;
  margin: 2em 0 0;
}

.swift-control-widgets .swift-control-widget-setting .swift-control-widget-link {
  background-color: #ee2560 !important;
}

.swift-control-widgets .swift-control-widget-setting::after {
  color: #ee2560 !important;
}

.wp-block-tag-cloud a {
  font-size: 16px !important;
  line-height: 20px !important;
}

aside > div:nth-child(2) {
  margin-top: 2em;
}

aside > div:nth-child(2) h2 {
  padding-top: 0.5em;
}

.wp-block-tag-cloud p {
  padding: 0;
}

/* media queries */
@media (max-width: 1280px) {
  /* Text size - Medium */
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 40px;
    line-height: 45px;
  }

  h3 {
    font-size: 21px;
    line-height: 26px;
  }

  h4 {
    font-size: 21px;
    line-height: 26px;
  }

  p {
    font-size: 21px;
    line-height: 26px;
  }

  .single main h2 {
    font-size: 21px;
    line-height: 26px;
  }

  .single main p {
    font-size: 21px;
    line-height: 26px;
  }

  main li {
    font-size: 21px;
    line-height: 26px;
  }

  .slides p {
    font-size: 40px;
    line-height: 45px;
  }

  label {
    font-size: 17px;
    line-height: 21px;
  }

  input[type=text], input[type=email], input[type=tel], select, textarea {
    font-size: 17px;
    line-height: 21px;
  }

  .pboxes > div {
    background-size: 200px 200px;
  }

  .pboxes.pimgs > div {
    padding-bottom: 200px;
  }

  .single main h1, .blog main h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .blogpost p, .single main .blogpost p {
    font-size: 17px;
    line-height: 21px;
  }

  p.sml, ul.sml, .blogpost .blogsig p.sml {
    font-size: 15px;
    line-height: 20px;
  }

  .single h3 {
    font-size: 21px;
    line-height: 26px;
  }

  .pagenavigation li a,
.pagenavigation li a:hover,
.pagenavigation li.active a,
.pagenavigation li.disabled {
    font-size: 17px;
    line-height: 21px;
  }

  .halfswatch > div {
    flex: 0 0 calc(10% - 10px);
  }
}
@media (max-width: 900px) {
  header.navigation {
    width: 100%;
    max-width: 100%;
    background-color: rgba(0, 39, 73, 0.75);
  }

  header.navigation:hover {
    background-color: #002749;
  }

  .mobile-menu {
    display: inherit;
  }

  .boxes > div, .pboxes > div {
    flex: 0 0 calc(100% - 20px);
  }

  .three-col {
    margin: 1em 0;
  }

  .three-col > div {
    flex: 0 0 100%;
  }

  .three-col.gallery > div {
    flex: 0 0 calc(50% - 20px);
  }

  .two-col > div {
    flex: 0 0 100%;
  }

  .blogpost {
    flex: 0 0 calc(100% - 34px);
  }

  .blog .blogroll .blogpost:nth-child(1), .blog .blogroll .blogpost:nth-child(2) {
    flex: 0 0 calc(100% - 34px);
  }

  .blog .blogroll .blogpost:nth-child(1) > div:nth-child(1) > a img, .blog .blogroll .blogpost:nth-child(2) > div:nth-child(1) > a img {
    height: 300px;
  }

  .single main, .blog main, .search main, .error404 main {
    margin-top: 120px;
  }

  .twothirds article {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .twothirds aside {
    flex: 0 0 100%;
    padding-left: 0;
  }

  .swatches > div {
    flex: 0 0 calc(20% - 10px);
  }

  .halfswatch > div {
    flex: 0 0 calc(20% - 10px);
  }
}
@media (max-width: 600px) {
  /* Text size - Mobile */
  h1 {
    font-size: 32px;
    line-height: 35px;
  }

  h2 {
    font-size: 32px;
    line-height: 35px;
  }

  h3 {
    font-size: 21px;
    line-height: 26px;
  }

  h4 {
    font-size: 21px;
    line-height: 26px;
  }

  p {
    font-size: 21px;
    line-height: 26px;
  }

  .single main h2 {
    font-size: 21px;
    line-height: 26px;
  }

  .single main p {
    font-size: 21px;
    line-height: 26px;
  }

  main li {
    font-size: 21px;
    line-height: 26px;
  }

  .slides p {
    font-size: 32px;
    line-height: 35px;
  }

  section.hero h1 {
    padding: 0 20px;
  }

  button {
    margin: 1em 20px;
    font-size: 17px;
    line-height: 21px;
    min-width: auto;
  }

  button.rev {
    font-size: 17px;
    line-height: 21px;
  }

  button.rev, section.wpane button {
    font-size: 17px;
    line-height: 21px;
  }

  .boxes button {
    min-width: auto;
  }

  input[type=submit] {
    font-size: 17px;
    line-height: 21px;
    min-width: auto;
  }

  header svg {
    margin: 29px 20px;
    width: 154px;
    height: 40px;
  }

  .sidebarIconToggle {
    right: 20px;
  }

  .three-col .roundel {
    max-width: 200px;
    max-height: 200px;
  }

  .wrap {
    padding: 0 10px;
  }

  .pboxes {
    margin: -5px;
  }

  .pboxes > div {
    flex: 0 0 calc(100% - 10px);
    margin: 5px;
  }

  section.wpane .wrap, section.newspane .wrap {
    padding: 0 10px;
  }

  section.wpane, section.newspane {
    padding: 2em 0;
  }

  footer .footcol > div:nth-child(2) {
    flex: 0 0 100%;
    padding-bottom: 1em;
  }

  footer .footcol > div:nth-child(3) {
    flex: 0 0 100%;
    text-align: right;
  }

  footer p {
    font-size: 17px;
    line-height: 21px;
  }

  .hero-content > div {
    flex: 0 0 100%;
  }

  .pboxes.sml > div h2 {
    font-size: 26px;
    line-height: 30px;
  }

  .pboxes > div {
    background-size: 120px 120px;
  }

  .pboxes.pimgs > div {
    padding-bottom: 140px;
  }

  .pboxes.sml > div.tradis {
    background-size: 80px 80px;
    padding-bottom: 100px;
  }

  .pboxes.sml > div.procat {
    background-size: 80px 80px;
    padding-bottom: 100px;
  }

  .pboxes.sml > div.prilis {
    background-size: 80px 80px;
    padding-bottom: 100px;
  }

  .pboxes.sml > div.newhed {
    background-size: 80px 80px;
    padding-bottom: 100px;
  }

  .single main h1, .blog main h1 {
    font-size: 32px;
    line-height: 35px;
  }

  .blogpost p, .single main .blogpost p {
    font-size: 17px;
    line-height: 21px;
  }

  p.sml, ul.sml, .blogpost .blogsig p.sml {
    font-size: 15px;
    line-height: 20px;
  }

  .single h3 {
    font-size: 21px;
    line-height: 26px;
  }

  .pagenavigation li a,
.pagenavigation li a:hover,
.pagenavigation li.active a,
.pagenavigation li.disabled {
    font-size: 17px;
    line-height: 21px;
  }
}

/*# sourceMappingURL=style.css.map */
