/*
Theme Name: Expert Videographer Studio
Theme URI: https://www.logicalthemes.com/products/free-expert-videographer-studio-wordpress-theme/
Author: LogicalThemes
Author URI: https://www.logicalthemes.com
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 7.2
Version: 0.1
License: GNU General Public License v3.0 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: expert-videographer-studio

Expert Videographer Studio WordPress Theme has been created by LogicalThemes(logicalthemes.com), 2022.
Expert Videographer Studio WordPress Theme is released under the terms of GNU GPL
*/

/*@font-face {*/
/*  font-family: Lato;*/
/*  font-style: normal;*/
/*  font-weight: 400;*/
/*  font-display: swap;*/
/*  src: url("assets/webfonts/Lato-Regular.woff2");*/
/*}*/

/*@font-face {*/
/*  font-family: Lato;*/
/*  font-style: normal;*/
/*  font-weight: 600;*/
/*  font-display: swap;*/
/*  src: url("assets/webfonts/Lato-Bold.woff2");*/
/*}*/

* {
  outline: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #282828;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Lato',sans-serif;
  line-height: 1.5;
  background-color: #fff;
  overflow-x: hidden;
}
body.admin-bar {
  min-height: calc(100vh - 32px);
}
body.mobilemenu-open {
  overflow-y: hidden;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
img, svg {
  vertical-align: middle;
}
h1,h2,h3,h4,h5,h6{
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: 48px; }
h2 { font-size: 42px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

table, 
select {
  width:100%;
}
.button,
input[type='submit'],
.wp-block-button__link {
  display: inline-block;
  color: #ffef3e;
  font-weight: 500;
  line-height: 1em;
  background-color: #323942;
  border: 1px solid #323942;
  border-radius: 30px;
  padding: 15px 20px;
  transition: all .5s ease;
  cursor: pointer;
}
.button:hover,
input[type='submit']:hover,
.wp-block-button__link:hover {
  color: #323942;
  background-color: #ffef3e;
  border-color: #323942;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea{
  border:1px solid #bcbcbc;
  width:100%;
  font-size:16px;
  padding:10px 10px;
  margin:0 0 23px 0;
  height:auto;
}
textarea{
  height: 111px;
}
.center{
  text-align:center;
  margin-bottom:40px;
}
.wp-caption{ 
  font-size:13px;
  max-width:100%;
}
/*wide block*/
.alignfull img {
  width: 100vw;
} 
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
.alignleft,img.alignleft {
  display: inline;
  float: left;
  margin-right: 45px;
  margin-top: 4px;
  margin-bottom: 20px;
  padding: 0;
}
.alignright,img.alignright { 
  display: inline;
  float: right;
  margin-left:45px;
  margin-top:4px;
  margin-bottom:20px;
  padding:0;
}
.aligncenter,img.aligncenter { 
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top:0;
}

/* --------- Header --------- */
#header {
  padding: 15px 0;
  background: #323942;
  gap: 30px;
}
#header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .site-logo {
  display: block;
  max-width: 250px;
  height: auto;
}
#header .site-title {
  display: block;
  color: #ffef3e;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}
#header .toggle-menu,
#header .closebtn {
  display: none;
}
.primary-navigation .menu {
  list-style: none;
}
.primary-navigation .menu li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}
.primary-navigation .menu li a {
  display: block;
  color: #fff;
  text-transform: capitalize;
  transition: all .5s ease;
}
.primary-navigation .menu > li:hover > a,
.primary-navigation .menu > li:focus > a,
.primary-navigation .menu li.current-menu-item > a {
  color: #ffef3e;
}
.primary-navigation .sub-menu {
  position: absolute;
  display: none;
  width: 200px;
  top: 100%;
  left: 0;
  background-color: #000;
  z-index: 9999;
}
.primary-navigation .menu > li:hover > .sub-menu {
  display: block;
}
.primary-navigation .menu > li:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.primary-navigation .sub-menu li {
  display: block;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #fff;
}
.primary-navigation .sub-menu li:last-child{
  border-bottom: 0;
}
.primary-navigation .sub-menu li a {
  padding: 10px;
}
.primary-navigation .sub-menu li a:hover,
.primary-navigation .sub-menu li a:focus,
.primary-navigation .sub-menu li.current-menu-item a {
  background-color: #ffef3e;
  color: #000;
}

/* --------- Content --------- */
#main {
  flex: 1;
  margin-bottom: 60px;
}
.entry-content {
  margin-top: 50px;
}
.entry-content .alignwide {
  margin-left  : -80px;
  margin-right : -80px;
}
.entry-content .alignfull {
  margin-left  : calc( -100vw / 2 + 100% / 2 );
  margin-right : calc( -100vw / 2 + 100% / 2 );
  max-width    : 100vw;
}
.entry-content > * {
  margin-bottom: 24px;
}
.entry-content p a,
.entry-content table a {
  text-decoration: underline;
}
.entry-content p a:hover,
.entry-content table a:hover {
  text-decoration: none;
}
.entry-content ul {
  padding-left: 30px;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: normal;
}

/* --------- Banner --------- */
.banner {
  width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #616161;
  background-blend-mode: multiply;
}
.banner .banner__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.banner .banner__title {
  color: #fff;
  font-size: 60px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.secure-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 580px;
  background-color: #0c0c01;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 168, 83, .6);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4), 0 0 25px rgba(52, 168, 83, .25), inset 0 1px 0 rgba(255, 255, 255, .1);
  padding: 22px 28px;
  margin-bottom: 60px;
  overflow: hidden;
  transition: .3s;
}
.secure-block:before {
  position: absolute;
  display: block;
  content: '';
  top: -50%;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .05), transparent);
  animation: 3s infinite shimmer;
  pointer-events: none;
  z-index: -1;
}
.secure-block .secure-block__google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(52, 168, 83, .3);
  transition: .3s;
}
.secure-block .secure-block__text {
  flex: 1;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  transition: .3s;
}
.secure-block .secure-block__icon {
  line-height: 1;
}
.secure-block .secure-block__icon svg {
  fill: none;
  stroke: #34A853;
  stroke-width: 2;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* --------- Page 404 --------- */
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404 .entry-content {
  text-align: center;
}
.error-404 h1 {
  font-size: 60px;
}
.error-404 p {
  margin-bottom: 0;
}
.error-404 .button {
  margin-top: 50px;
}

/* --------- Footer --------- */
#footer {
  position: relative;
  background-color: #323942;
  padding: 30px;
}
#footer .copyright {
  color: #fff;
  text-align: center;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
}
.mobilemenu-open #overlay {
  opacity: 1;
  visibility: visible;
}

/* --------- Container --------- */
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto
}
@media (min-width: 992px) {
  .container {
    max-width: 960px
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px
  }
}
@media (min-width:1400px) {
  .container {
    max-width: 1320px
  }
}

/* --------- Media Queries --------- */
@media screen and (max-width: 991px) {
  #header .toggle-menu {
    display: block;
    background: transparent;
    border: none;
    margin: 0 0;
    padding: 5px;
    cursor: pointer;
  }
  #header .toggle-menu svg {
    width: 36px;
    height: 36px;
    fill: #ffef3e;
  }
  #header .closebtn {
    position: absolute;
    display: block;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
  }
  #header .closebtn svg {
    width: 40px;
    height: 40px;
    fill: #ffef3e;
  }
  #menu-sidebar {
    position: fixed;
    height: 100%;
    width: 300px;
    top: 0;
    right: -300px;
    background-color: #101010;
    box-shadow: -3px 0 10px 0 #000;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    z-index: 9999999;
  }
  body.mobilemenu-open #menu-sidebar {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .primary-navigation {
    height: calc(100% - 120px);
    margin: 70px 0 50px;
    overflow-y: auto;
  }
  .primary-navigation .menu li {
    display: block;
    margin-bottom: 10px;
  }
  .primary-navigation .menu li a {
    font-size: 18px;
    padding: 10px;
  }
  .primary-navigation .sub-menu {
    position: relative;
    display: block;
    width: 100%;
    background-color: transparent;
    padding-left: 20px;
  }
  .primary-navigation .sub-menu li {
    border-bottom: none;
  }
  .primary-navigation .sub-menu li a:hover,
  .primary-navigation .sub-menu li a:focus,
  .primary-navigation .sub-menu li.current-menu-item a {
    color: #ffef3e;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .entry-content .alignwide {
    margin-left: 5px;
    margin-right: 5px;
  }
  .banner {
    height: auto;
  }
  .banner .banner__title {
    font-size: 36px;
  }
  .secure-block {
    gap: 15px;
  }
  .secure-block .secure-block__google-icon {
    width: 32px;
    height: 32px;
  }
  .secure-block .secure-block__text {
    font-size: 14px;
  }
  .error-404 h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .wp-block-table .has-fixed-layout {
    table-layout: auto;
  }
  .wp-block-table td,
  .wp-block-table th {
    min-width: 100px;
  }
  .secure-block {
    padding: 18px 20px;
    gap: 12px;
  }
  .secure-block .secure-block__google-icon {
    width: 28px;
    height: 28px;
  }
  .secure-block .secure-block__text {
    font-size: 13px;
    line-height: 1.3;
  }
}
