/*
Theme Name: Zenos Theme
Author: Zenos Technology
Author URI: https://zenos.co.uk/
Description: A theme by Zenos Technology
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, white, light, one-column, two-columns, left-sidebar, fluid-layout, responsive-layout, custom-menu, featured-images
*/


/* Main width/padding start */

.row {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.no-max {
  max-width: 100%;
}

.content-container {
  margin: 0 auto;
  padding: 0 15px;
  width: 1200px;
}

@media (max-width: 1200px) {
.content-container {
    width: 970px;
}
}

@media (max-width: 1000px) {
.content-container {
    width: 750px;
}
}

@media (max-width: 780px) {
.content-container {
    width: 100%;
}
}
/* Main width/padding end */


/* Columns Start */

.columns {
  margin: 0;
  padding: 0;
}

.column {
  width: 100%;
  float: left;
}

.column-primary {
  width: 68%;
  float: left;
}

.column-secondary {
  width: 28%;
  float: right;
}

.column-sixth {
  width: 16.666%;
}

.column-fifth {
  width: 20%;
}

.column-third {
  width: 33.333%;
}

.column-twothird {
  width: 66.666%;
}

.column-half {
  width: 50%;
}

/* Columns End */


/* Colours Start */

/* Variables Start */

:root {
  --color--white: #FFFFFF;
  --color--grey-light: #f0f2ff;
  --color--grey-mid: #c4c4c4;
  --color--grey-dark: #2E2E3A;
  --color--teal: #2ecec6;
  --color--green-bright: #2ECE76;
  --color--green-dark: #29B96A;
  --color--coral-bright: #FF6B6B;
  --color--coral-pale: #FFF5F5;
  --color--blue-bright: #2C4DF1;
  --color--blue-pale: #F0F2FF;
  --typography--font-family: 'Commissioner', Arial, Helvetica, sans-serif;
  --typography--font-size--x-small: 14px;
  --typography--font-size--small: 16px;
  --typography--font-size--medium: 20px;
  --typography--font-size--large: 35px;
  --typography--font-size--x-large: 45px;
  --typography--font-size--button: 18px;
  --typography--line-height--heading: 1.2;
  --typography--line-height--parapraph: 1.4;
  --typography--font-weight--black: 900;
  --typography--font-weight--x-bold: 800;
  --typography--font-weight--bold: 700;
  --typography--font-weight--semibold: 600;
  --typography--font-weight--medium: 500;
  --typography--font-weight--regular: 400;
  --typography--font-weight-light: 300;
  --typography--font-weight--x-light: 200;
  --typography--font-weight--thin: 100;
}

/* Colours End */

/* Typography Start */

h1, h2, h3, h4, h5, h6, p, a, span, input, label, select, div, ul, ol, li {
	font-family: var(--typography--font-family);
	font-weight: var(--typography--font-weight--regular);
	margin:0px;
	padding:0px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	text-decoration: none;
	letter-spacing: 0.2px;
	color: var(--color--grey-dark);
  text-align: left;
}

h1 {
	font-size: var(--typography--font-size--x-large);
	line-height: var(--typography--line-height--heading);
  font-weight: var(--typography--font-weight--bold);
  margin-bottom: 30px;
}

h2 {
  font-size: var(--typography--font-size--large);
	line-height: var(--typography--line-height--heading);
  font-weight: var(--typography--font-weight--bold);
	margin-bottom: 60px;
}

h3 {
  font-size: var(--typography--font-size--medium);
	line-height: var(--typography--line-height--parapraph);
  font-weight: var(--typography--font-weight--semibold);
	margin-bottom: 20px;
}

h4 {
  font-size: var(--typography--font-size--medium);
	line-height: var(--typography--line-height--parapraph);
  font-weight: var(--typography--font-weight--semibold);
	margin-bottom: 10px;
}

h5 {
  font-size: var(--typography--font-size--small);
	line-height: var(--typography--line-height--parapraph);
  font-weight: var(--typography--font-weight--medium);
	margin-bottom: 10px;
}

h6 {
  font-size: var(--typography--font-size--small);
	line-height: var(--typography--line-height--parapraph);
  font-weight: var(--typography--font-weight--medium);
}

p {
  font-size: var(--typography--font-size--medium);
	line-height: var(--typography--line-height--parapraph);
  font-weight: var(--typography--font-weight--regular);
  margin-bottom: 25px;
}

p.large {
	display: block;
  font-size: var(--typography--font-size--large);
	line-height: var(--typography--line-height--heading);
  font-weight: var(--typography--font-weight--regular);
  max-width: 800px;
  margin: 0 auto;
}

p a {
  font-family: 'Commissioner', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-weight: normal;
}

ul, ol {
  list-style-position: outside;
}

.primary ul, ol {
  margin-bottom: 30px;
  margin-left: 16px;
}

.primary ul, ol li {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

/* Typography End */

/* Buttons/Links Start */

a {
	-webkit-transition: 0.2s all linear;
	-o-transition: 0.2s all linear;
	transition: 0.2s all linear;
}

.button, .wp-block-button__link {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 280px;
	padding: 0 45px;
	height: 50px;
	line-height: 50px;
	background-color: #ff6b6b;
	border-radius: 50px;

	font-family: 'Commissioner', Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #ffffff;
}

.button:hover, .wpcf7-submit:hover, .button:focus, .wpcf7-submit:focus, .wp-block-button__link:hover, .wp-block-button__link:focus {
	background-color: #de5050;
  color: #ffffff;
}

.text-link {
  display: block;
  float: left;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
	color: #ff6b6b;
	text-decoration: none;
  margin-top: 20px;
}

.text-link:hover, .text-link:focus {
	color: #fc4545;
}

/* Buttons/Links End */

/* Logo + Nav Start */

header .custom-logo {
  float: left;
  margin: 10px 0px 0px;
  width: 140px;
}

header {
  background: transparent;
  position: absolute;
  top: 40px;
  z-index: 99999;
}

.header-top {
  width: 100%;
  float: right;
  text-align: right;
  margin: 45px 0 25px;
}

.header-top a {
  text-align: right;
  color: #ffffff;
  margin-left: 40px;
  font-size: 16px;
  line-height: 18px;
}

.header-top a i {
  font-size: 20px;
  margin-right: 3px;
}

nav {
  display: block;
  float: right;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

nav ul {
  list-style: none;
  margin: 0px 0;
  padding: 0;
}

ul.main-nav {
  display: block !important;
}

nav li {
  display: inline-block;
  float: left;
  text-align: right;
  position: relative;
}

nav li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 0px 15px 40px;
  width: 100%;
}

nav li a:hover {
  color: #ff6b6b;
}

nav ul li ul {
  width: 220px;
  position: absolute;
  top: 55px;
  left: -10px;
  margin: 0 !important;
  z-index: 999;
  background-color: rgba(255,255,255,1);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

}

nav ul li ul li, nav ul li ul li ul li {
  position: unset;
  text-align: left;
}

nav ul li ul li, nav ul li ul li a, nav ul li ul li ul li, nav ul li ul li ul li a {
  padding: 10px 14px;
  color: #2e2e3a;
  width: auto;
  white-space: nowrap;
}

nav ul li ul li a {
  padding: 5px 5px;
}

nav li:hover>ul {
  opacity: 1;
  visibility: visible;
  display: block!important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul li ul li ul, nav ul li ul li:hover>ul {
  left: 220px;
  top: 0;
}

.hamburger {
    display: none
}

/* Logo + Nav End */

/* Homepage Start */


.homepage-header {
  width: 100%;
  height: 540px;
  background-color: #2e2e3a;
}

.header-content {
  width: 100%;
  max-width: 720px;
  margin: 220px auto 0;
}

.homepage-header p {
  color: #ffffff;
  max-width: 400px;
  margin: 0px auto 35px;
  text-align: center;
}

.homepage-intro {
  background-color: #f0f2ff;
  padding: 90px 20px 80px !important;
}

.homepage-intro .wp-block-group {
  margin-bottom: 20px;
  float: left;
}

.homepage-intro .wp-block-group:last-child {
  margin-bottom: 0px;
}

.homepage-intro h2 {
  text-align: left;
  margin-top: 0px;
  margin-bottom: 20px;
}

.homepage-intro p {
  font-size: 17px;
  line-height: 24px;
}

.homepage-intro .button {
  float: left;
}

figure {
  margin: 0;
}

.homepage-covid {
  background-color: #762ece;
  padding: 40px 20px !important;
}

.homepage-covid p {
  text-align: center;
  margin-bottom: 0;
  color: #ffffff;
}

.homepage-covid p a {
  color: #ffffff;
}

.homepage-solutions, .cyber-solutions {
  padding: 80px 20px 0 !important;
}

.cyber-solutions {
  padding: 50px 20px 0 !important;
}

.cyber-solutions h2 {
  margin-bottom: 30px;
}

.homepage-solutions .solutions-container, .cyber-solutions .solutions-container {
  display: block;
  padding: 0;
}

.homepage-solutions .wp-block-column, .cyber-solutions .wp-block-column {
  display: block;
  float: left;
  width: calc(33.333% - 70px);
  height: 370px;
  margin: 0px 35px 80px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
}

.cyber-solutions .wp-block-column {
  height: auto;
  margin-bottom: 40px;
}

.homepage-solutions img, .cyber-solutions img {
  display: block;
  height: 140px;
  margin: 0 auto 20px;
}

.homepage-solutions p, .cyber-solutions p {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.cyber-solutions h3, .cyber-solutions p {
  text-align: left;
}

.homepage-solutions .text-link, .cyber-solutions .text-link {
  float: none;
}

.cyber-solutions .text-link {
  text-align: left;
}

.section-klarna {
  background-color: #ffb3c7;
  padding: 40px 20px !important;
  text-align: center;
}

.section-klarna h2 {
  display: inline;
  font-size: 30px;
  line-height: 41px;
}

.section-klarna figure, .section-klarna figure img {
  display: inline;
  width: 140px;
  max-width: 140px;
  height: auto;
  vertical-align: top;
}

.section-klarna p {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-klarna .button {
  background-color: #2e2e3a;
}

.homepage-posts {
  padding: 80px 20px 40px !important;
}

.homepage-posts article {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

.homepage-posts .uagb-post__inner-wrap {
  background-color: #ffffff !important;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
}

.homepage-posts .uagb-post-grid-byline span {
  display: none;
}

.homepage-posts h4 {
  margin-bottom: 0px !important;
}

.homepage-posts .uagb-post-grid-byline time {
  margin-right: 0 !important;
  font-family: 'GilroyBold', Arial, sans-serif;
  font-size: 15px;
  line-height: 18px;
  color: #8c8c9c;
  text-transform: none;
}

.homepage-posts .uagb-post__excerpt {
  font-family: 'Commissioner', Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
}

.homepage-posts .wp-block-button__link {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  text-align: left;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.section-testimonials {
  background-color: #762ece;
  padding: 55px 20px 60px !important;
}

.section-testimonials .icon-testimonials {
  width: 70px;
  display: block;
  margin: 0 auto;
}

.section-testimonials h2, .section-testimonials p {
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-testimonials h2 {
  margin: 25px auto;
}

.events-twitter {
  padding: 80px 20px 60px !important;
}

.homepage-events article {
  width: 100% !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.homepage-events .uagb-post__inner-wrap {
  background-color: #ffffff !important;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
}

.homepage-events .uagb-post-grid-byline span {
  display: none;
}

.homepage-events .wp-block-button__link {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  text-align: left;
  color: #ff6b6b;
}

.homepage-tweets iframe .timeline-InformationCircle-widgetParent {
  display: none !important;
}

.section-newsletter {
  background-color: #f0f2ff;
  padding: 60px 20px 60px !important;
}

.section-newsletter h2 {
  margin-bottom: 30px;
}

.section-newsletter p {
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.section-partners {
  margin: 60px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.section-partners .wp-block-image {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-evenly;
  max-width: 100%;
  position: relative;
  align-content: center;
  padding: 0px 30px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 0 !important;
}



/* Homepage End */


/* Single Page Start */

.page-header {
  background-image: url('/wp-content/uploads/2020/08/header.jpg');
  background-position: center;
  background-size: cover;
  height: 360px;
}

.page-header .content-inner {
  background: -moz-linear-gradient(45deg,  rgba(6,6,57,0.9) 1%, rgba(3,70,67,0.9) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(6,6,57,0.9) 1%,rgba(3,70,67,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(6,6,57,0.9) 1%,rgba(3,70,67,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6060639', endColorstr='#e6460318',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  width: 100%;
  height: 360px;
  padding-top: 200px;
}

.cyber-security .page-header .content-inner {
  background: -moz-linear-gradient(45deg,  rgba(6,6,57,0.9) 1%, rgba(70,3,24,0.9) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(6,6,57,0.9) 1%,rgba(70,3,24,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(6,6,57,0.9) 1%,rgba(70,3,24,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6060639', endColorstr='#e6460318',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.page-header h1 {
  color: #ffffff;
}

.page-content {
  padding: 60px 20px 40px !important;
}

.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6, .page-content p {
  text-align: left;
}

.page-content h2 {
  margin-bottom: 20px;
}

.page-content h3 {
  font-size: 26px;
  line-height: 36px;
}

.page-content p {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 20px;
}

.content-group {
  margin-bottom: 30px;
}

.page-content .column-right {
  background-color: #ff6b6b;
  border-radius: 20px;
  padding: 30px 20px 10px;
  margin-left: 60px;
}

.page-content .column-right h3, .page-content .column-right p, .page-content .column-right label {
  color: #ffffff;
}

.page-content .column-right label {
  font-size: 15px;
}

.column-contact .wpcf7 input:not([type=submit]), .column-contact .wpcf7 select {
  background-color: #ffffff !important;
  border: 1px solid #fafafa;
  border-radius: 45px !important;
  height: 45px;
  width: 100%;
  font-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance:none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.column-contact .wpcf7 input:not([type=submit]):focus, .column-contact .wpcf7 select:focus {
  border-radius: 45px !important;
  outline: none;
  border: 1px solid #2e2e3a;
}

.column-contact .wpcf7 select {
  padding: 5px 35px 5px 5px;
  background-image: url('/wp-content/uploads/2020/08/arrow.svg');
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: 95% center;
}

.column-contact .wpcf7 select::-ms-expand {
    display: none; /* Remove default arrow in Internet Explorer 10 and 11 */
}

/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
  .column-contact .wpcf7 select {
      background: none\9;
      padding: 5px\9;
  }
}

.column-contact .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span {
  background-image: url('/wp-content/uploads/2020/08/checkWhite.svg');
  background-size: 19px auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 5px;
  vertical-align: middle;
  cursor: pointer;
  height: auto;
  padding-top: 4px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.column-contact .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span a {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.column-contact .wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked + span {
  background-position: 0px -104px
}

.column-contact .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before {
  display: none;
}

.column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit:disabled, .column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit:disabled:hover, .column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit:disabled:focus {
  background-color: #666666 !important;
  cursor: not-allowed;
}

.column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit {
	display: block !important;
	margin: 0 auto !important;
	width: 100% !important;
	max-width: 200px !important;
	padding: 0 35px !important;
	height: 50px !important;
	line-height: 50px !important;
	background-color: #2ece76 !important;
	border-radius: 50px !important;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
  transition: 0.2s all linear;
  cursor: pointer;

	font-family: 'Commissioner', Arial, Helvetica, sans-serif !important;
	font-size: 18px !important;
	color: #ffffff !important;
  border: none !important;
}

.column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit:hover, .column-contact .wpcf7 input.wpcf7-form-control.wpcf7-submit:focus {
  outline: none;
  background-color: #29b96a !important;
}

.column-contact .wpcf7 input:not([type=submit]), .column-contact .wpcf7 select {
  width: 100%;
  max-width: 100%;
  border-radius: 50px !important;
}

.column-contact span.wpcf7-not-valid-tip {
  color: #ffffff !important;
  font-weight: bold;
}

.wpcf7-response-output, .wpcf7 .ajax-loader {
  display: none;
}

.security-solutions {
  padding: 0px 20px 0 !important;
}

.security-solutions .solutions-container {
  display: block;
  padding: 0;
}

.security-solutions .wp-block-column, .cyber-solutions .wp-block-column {
  display: block;
  float: left;
  width: calc(33.333% - 40px);
  height: 360px;
  margin: 0px 20px 80px;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
  border-bottom: 3px solid #ff6b6b;
}

.security-solutions h3 {
  text-align: left;
  font-size: 18px;
  color: #ff6b6b;
}

.security-solutions p {
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}

.uagb-icon-list__label {
  font-size: 15px;
  line-height: 20px;
}


/* Single Page End */

/* Blog Start */

.blog .page-header, .single-post .page-header {
  margin-bottom: 60px;
}

.blog article {
  float: left;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(8,8,92,0.1);
  margin-bottom: 40px;
  width: 100%;
}

.blog article .text-container {
  padding: 20px;
}

.blog article .text-container p {
  font-size: 17px;
  line-height: 27px;
}

.single-post .img-container {
  background-color: #f0f2ff;
}

.single-post .img-container img {
  display: block;
  margin: 0 auto;
}

.single-post .page-header {
  background-size: cover;
}

/* Blog End */


/* Footer Start */

footer {
  position: relative;
  bottom: 0;
  background-color: #2e2e3a;
}

.footer-top {
  padding: 80px 0px 60px 0px;
}

.footer-block {
  float: left;
}

.footer-one {
  width: 275px;
}

.footer-two {
  width: 465px;
}

.footer-three {
  width: 245px;
}

.footer-four {
  width: 215px;
}

.footer-one img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-block h4 {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-block p, .footer-block a {
  font-family: 'Commissioner', Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
  text-decoration: none;
}

.footer-two .widget {
  float: left;
  width: 65%;
}

.footer-two > .widget {
  width: 45%
}

.footer-copyright {
  background-color: #101017;
  padding: 18px 0px;
}

.footer-copyright .content-container {
  padding: 0;
}

.footer-copyright p {
  display: inline-block;
}

.footer-copyright p, .footer-copyright a {
  font-family: 'Commissioner', Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
  text-decoration: none;
  margin: 0;
  padding: 12px 0px;
}

.footer-social {
  display: inline-block;
  float: right;
}

.footer-social a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  text-align: center;
  margin-left: 15px;
  font-size: 23px;
  line-height: 47px;
  color: #101017;
  padding: 0;
  background-color: #ffffff;
  transition: 0.2s all linear;
}


/* Footer End */


/* Responsive Styles Start */

@media (max-width: 1200px) {
  .footer-one {
    width: 220px;
  }

  .footer-two {
    width: 380px;
  }

  .footer-three {
    width: 200px;
  }

  .footer-four {
    width: 170px;
  }

  .security-solutions .solutions-container {
    width: 900px;
    margin: 0 auto;
  }

  .security-solutions .wp-block-column {
    height: 450px;
    width: calc(33.33% - 20px);
    margin: 0px 10px 50px;
  }
}

@media (max-width: 1000px) {

.hamburger {
    display: inline-block;
    height: auto;
    padding: 12px 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0 auto;
    width: 40px;
    position: absolute;
    top: 90px;
    right: 30px;
}

.hamburger-inner {
    margin: 0 auto;
}

.hamburger .line-container {
    width: 25px;
    display: inline-block;
}

.hamburger .line {
    background: #ffffff;
    display: block;
    height: 3px;
    margin: 3px 0 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 24px;
    border-radius: 3px;
}

.hamburger:hover {
    cursor: pointer;
}

header .mainnav .sub-menu li,header .mainnav .sub-menu li:hover {
    width: 100%;
}

header nav ul li ul {
    width: 100%;
    position: static;
    top: 0;
    padding: 0;
    overflow: hidden;
    height: 0;
    margin: 0!important;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
}

.menu-item-has-children a.is-active~.sub-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

header .menu-item-has-children:after {
    display: none;
}

header nav li:hover>ul,header nav li>ul {
    display: block!important;
}

.mainnav>ul>li {
    margin-left: 0!important;
}

header .mainnav .sub-menu li {
    padding: 0;
}

header nav {
    position: static;
    width: 100%;
    margin-top: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

header nav ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
    height: auto;
    float: left;
    background-color: #ffffff;
    border-radius: 20px;
}

header nav li a:after {
    content: none;
}

header nav ul.is-active {
    display: block;
}

header nav ul li,header nav .nav-home {
    border-bottom: 1px solid rgba(0,0,0,.1);
    width: 100%;
}

header nav ul li:last-child {
    border-bottom: none;
}

header .menu-item a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 100%;
    color: #2e2e3a;
}

.homepage-solutions .wp-block-column {
  width: calc(33.333% - 40px);
  margin: 0px 20px 50px;
}

.homepage-posts article {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.footer-top, .footer-copyright .content-container {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-one, .footer-three {
  width: 40%;
  min-height: 235px;
}

.footer-two, .footer-four {
  width: 60%;
  min-height: 235px;
}

.footer-social {
  display: block;
  float: left;
}

.footer-social a {
  margin: 10px 15px 20px 0;
}

.security-solutions .solutions-container {
  width: 700px;
  margin: 0 auto;
}

.security-solutions .wp-block-column {
  height: 380px;
  width: calc(50% - 20px);
  margin: 0px 10px 50px;
  float: left;
}

}

@media (max-width: 780px) {

  .homepage-intro {
    padding: 60px 20px !important;
  }

  .homepage-intro .column-left {
    flex-basis: 100% !important;
  }

  .homepage-intro .column-right {
    display: none;
  }

  .homepage-solutions .wp-block-column {
    width: calc(50% - 20px);
    margin: 0px 10px 50px;
  }

  .security-solutions .solutions-container {
    width: 100%;
    margin: 0 auto;
  }

  .security-solutions .wp-block-column {
    width: 100%;
    height: auto;
    margin: 0px 0px 30px;
  }

}

@media (max-width: 650px) {
  .column-third {
    width: 50%;
  }

}

@media (max-width: 570px) {

  .column-third {
    width: 100%;
  }

  .homepage-solutions .wp-block-column {
    width: 100%;
    margin: 0px 0px 30px;
  }

  .footer-top {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .footer-one, .footer-three, .footer-two, .footer-four {
    width: 100%;
    min-height: auto;
    margin-bottom: 40px;
  }

}

/* Responsive Styles End */
