/*
Theme Name: Seemore Graphics
Text Domain: Seemore Graphics
Version: 1.0
Description: Responsive WordPress Theme
Author: Seemore Graphics
Author URI: https://seemoregraphics.co.uk/

*/

@font-face {
    font-family: "Inter";
    src: url(/wp-content/themes/assets/fonts/Inter-VariableFont.ttf) format("truetype");
}

@font-face {
    font-family: "Inter Italic";
    src: url(/wp-content/themes/assets/fonts/Inter-Italic-VariableFont.ttf) format("truetype");
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "articulat-cf", sans-serif;
  font-size: 16px;
  background-color: #1C1A1F;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin: 0px;
  overflow-x: hidden;
  position: relative;
  clear: both;
  width: 100%;
}

.material-symbols-outlined {
  vertical-align: middle;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-weight: 700;

}

a {
  color: #1F1C59;
}

embed, iframe, object, video {
  max-width: 100%;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.potree-container {
  width: 100%;
  height: 100vh;
  display: block;
}

.potree-container iframe {
  width: 100%;
  height: 100%;
}

input:focus {
  outline: none;
}

input, select, textarea {
  font-size: 16px;
}

.wpcf7 input[type=text], .wpcf7 select, .wpcf7 textarea,
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 input[type="number"] {
  width: 100%;
  padding: 12px; 
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.wpcf7 input[type=submit] {
  background-color: #FFD226;
  color: #5a5a5a;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.wpcf7 input[type=submit]:hover {
  background-color: #edbf1a;
}

.wpcf7 p {
  margin: 0px;
}

.button,
.wp-block-button a {
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid #416AB3;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button:after,
.wp-block-button a:after {
    content: "";
    border-radius: 5px;
    background-color: #ffe54c;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

.alt-button {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  color: #fff;
}

.button:hover,
.button:focus,
.wp-block-button a:focus,
.wp-block-button a:hover {

}

.button:hover:after,
.wp-block-button a:hover:after {
    top: 0px;
    left: 0px;
}

.slider-content-container .alt-button:hover,
.slider-content-container .alt-button:focus {
  border: 2px solid #668FD6;
  background-color: #668FD6;
}

.entry-content ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.site-header {
  width: 100%;
  clear: both;
  position: fixed;
  float: left;
  background-color: rgba(255, 255, 255, 0);
  z-index: 99;
}

.header-logo {
  max-width: 150px;
  width: 100%;
  float: left;
  height: auto;
  position: fixed;
  top: -200px;
  left: 20px;
  transition: all 0.3s ease-out;
}

.shrink .header-logo {
  top: 10px;
}

.navigation-container {
  display: none;
}

nav.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height:0px;
  position: absolute;
  top: -200px;
  left: 0;
  transition: all 0.3s ease-out;
  z-index: -1;
   transform: translateY(-100%);
   visibility: hidden;
}

nav.main-menu .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1);

}

nav.main-menu.show {
  visibility: visible;
  clear: both;
  position: absolute;
  top:0px;
  height: auto;
  transform: translateY(0);
  z-index:8;
  padding: 20px;
}

nav.main-menu a {
  color: #fff;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

nav.main-menu a:hover,
nav.main-menu a:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

nav.main-menu .quote-button a {
  background-color: #416AB3;
  border-radius: 3px;
  color: #fff;
  padding: 15px 20px;
}
nav.main-menu .quote-button a:hover,
nav.main-menu .quote-button a:focus {
  background-color: #668FD6;
}

.menu-toggle {
  display: block;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  margin-top: 15px;
  z-index:9;
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: #fff;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: #fff;
}

.entry-title-container {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: 0px;
}

.entry-title-content h1 {
  width: auto;
  display: block;
  float: none;
  padding: 20px 0px;
  margin: 0px auto;
  text-align: center;
  font-size: 32px;
  color: #fff;
}

.entry-title-content {
  max-width: 100%;
  float: none;
  margin: 0px auto;
  display: block;
  overflow: hidden;
  padding-top: 0px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
  padding-top: 0px;
}

.page-entry-wrap,
.wrap {
  max-width: 1280px;
  width: auto;
  margin: 0 auto;
  float: none;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

h2.featured-cat-title {
  font-size:  38px;
  margin-bottom: 0px;
}

.wrap {
  padding: 20px;
}

.footer-credits {
  width: 100%;
  clear: both;
  color: #fff;
  padding: 10px;
}

.footer-credits p {
  color: #fff;
  text-align: center;
  opacity: 0.8;
}

.footer-credits a {
  color: #fff;
}

.archive .page-entry-wrap,
.search .page-entry-wrap {
  max-width: 1660px;
}

.home .page-entry-wrap {
  max-width: 100%;
  padding: 0px;
}

.footer-widgets-area {
  clear: both;
  background-color: #363733;
  margin: 40px;
  margin-bottom: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 15px;
  overflow: hidden;
}

.footer-widgets {
  width: 100%;
  margin: 0 auto;
  float: none;
  padding: 40px;
  overflow: hidden;
  clear: both;
  color: #fff;
}

.footer-widgets a {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease-out;
}

.footer-widgets a:hover,
.footer-widgets a:focus {
  opacity: 1;
}

.footer-widgets .wp-block-heading {
  color: #fff;
}

.social-icons img {
  margin: 0 10px 0px 0;
}
.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer-widgets .social-icons {
  justify-content: flex-start;
}

.social-icons a {
  padding: 3px;
  position: relative;
  display: block;
  width: auto;
  height: 100%;
}

.nav-links {
  clear: both;
  width: 100%;
  margin-top: 40px;
}
.nav-links .page-numbers {
  text-decoration: none;
  color: #5A5A5A;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  margin-right: 5px;
  transition: all 0.3s ease-out;
  border: 1px solid #fff;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #000;
}

.nav-links .current {
  color: #ccc;
  border: 1px solid #fff !important;
}

.breadcrumb,
.rank-math-breadcrumb {
  border-bottom: 0px solid #eee;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
}

.breadcrumb a,
.rank-math-breadcrumb a {
    color: #fff;
}

.page-entry-wrap .sidebar {
  width: 100%;
  float: left;
}

.page-entry-wrap .content-area {
  width: 100%;
  float: left;
}

.page-entry-wrap ol li {
  margin-bottom: 30px;
}

.checkatrade-logo {
  max-width: 250px;
  margin: 10px auto;
  float: none;
  display: block;
}

.sg-wrap {
  max-width: 1140px;
  width:  100%;
  margin: 0 auto;
  float:  none;
  padding: 20px;
}

.wpcf7 .newsletter-sign-up input[type=submit] {
  position: relative;
  background-image: url(/wp-content/uploads/2024/08/send.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  margin: 5px;
  background-color: #282560;
}

.wpcf7 .newsletter-sign-up input[type=submit]:hover,
.wpcf7 .newsletter-sign-up input[type=submit]:focus {
  background-color: #416AB3;
}


.wpcf7 .newsletter-sign-up input[type="email"] {
  margin: 0px;
  border: 0px solid #fff;
}

.wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  right: 0px;
}

.appear {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.appear.inview {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 31, 31, 0.2);
  top: 0px;
  left: 0px;
  transition: all 0.3s ease-in-out;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -20px;
  text-align: center;
}

.scroll-down a {
  color: #fff;
}

.scroll-down a span {
  font-size: 48px;
}
.scroll-down a:hover,
.scroll-down a:focus {
  color: #4c4abf;
}

.video-text {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  padding: 0px 5%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-text img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  float:  none;
  margin-bottom: 20px;
}

.video-text h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 300;
  text-align: center;
}


.home-video-container {
    height: 75vh;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .home-video {
    z-index: -999;
    width: 1000%;
    height: 100%;
    padding-bottom: 56.25%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/wp-content/uploads/2024/08/seemoregraphics-bg.webp);
  }

.footer-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}

.footer-logos img {
  height: 100px;
  width: auto;
}

.header-top {
  display: none;
}


@media only screen and (min-width: 768px) {  

  .header-top {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    padding: 5px;
    padding-right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
    opacity: 0.6;
    text-align: center;

  }

  .header-top p, .header-top p a {
    margin: 0px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    display: inline-block;
  }

  .header-top p a {
    padding: 7px;
    border-radius: 5px;
    transition: all 0.3s ease-out;
  }

  .header-top p a:hover,
  .header-top p a:focus {
    background-color: rgba(255, 255, 255, 0.4);
  }

  .site-header {
    display: flex;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .entry-title-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .entry-title-content h1 {
    padding: 20px 0px 20px 0px;
  }

  .menu-toggle {
    display: none;
  }

  nav.main-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
    position: fixed;
    top: 80px;
    transition: all 0.3s ease-out;
    z-index: 9;
    transform: initial;
    visibility: visible;
  }

  .shrink nav.main-menu {
    top: 20px;
  }

  nav.main-menu .menu {
    width: auto;
    padding: 5px;
    border-radius: 5px;
    flex-direction: row;
  }

   nav.main-menu .menu-item {
    display: inline-block;
    margin-right: 0px;
   }

   nav.main-menu .quote-button {
    margin-right: 0px;
   }

  nav.main-menu a {
      color: #fff;
      text-decoration: none;
      padding: 10px 15px;
      display: block;
      font-size: 16px;
  }

    nav.main-menu a:hover,
    nav.main-menu a:focus {
      text-decoration: none;
    }

  .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      position: absolute;
      top: 10px;
      right: 10px;
  }

  .home-content .sg-wrap {
    flex-direction: row;
  }

  .page-entry-wrap .content-area {
    width:100%;
    float: right;
  }

  .footer-widget {
    display: block;
    width: 50%;
    float: left;
  }
  .footer-logos {
    flex-direction: row;
  }

  .header-contact a {
    margin-right: 10px;
  }

  .header-margin {
    display: block;
    width: 100%;
    clear: both;
    padding: 40px;
  }

  .home-video-container {
    max-height: 85vh;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }

  .home-video {
    position: relative;
    max-height: 85vh;
    padding: 56.25% 0px 0px;
    overflow: hidden;
    border-radius: 15px;
  }

  .home-video iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }


  .video-text {
    position: absolute;
    color: #fff;
    height: 85%;
  }

  .video-text h1 {
    font-size: 42px;
    color: #fff;
  }

  .video-text h1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 50px;
  }

  .hero-text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-text h1 span.slide-up {
    display: inline-block;
    overflow: hidden;
    animation: slideleft 10s infinite;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .video-text h1 span.slide-right {
    display: inline-block;
    overflow: hidden;
    animation: slideright 7s infinite;
  }

  @keyframes slideleft {
      0% { top:-400px; opacity: 0; }
      5% { top:-400px; opacity: 0; }
      15% { top:0px; opacity: 1; }
      90% { top:0px;opacity: 1; }
      100% { top:400px;opacity: 0; }
  }

  @keyframes slideright {
      0% { margin-right:-800px; }
      10% { margin-right:-800px; }
      20% { margin-right:0px; }
      100% { margin-right:0px; }
  }

}

@media screen and (max-width: 768px) {

}