@keyframes moveArrow {
  0% {
    right: 0;
  }
  100% {
    right: -7px;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Footer
2. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Footer
--------------------------------------------------------------*/
footer {
  background-color: #ffffff;
  padding: 50px 0 30px 0;
}
footer .wrap {
  padding-left: 30px;
  padding-right: 30px;
}
footer .footer-middlebar {
  margin-bottom: 150px;
}
footer .footer-middlebar .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
footer .footer-middlebar .footer-middlebar-2,
footer .footer-middlebar .footer-middlebar-3 {
  margin-top: 48px;
}
footer .footer-middlebar .widget_sd_widget_logo,
footer .footer-middlebar h3.widget-title {
  position: relative;
  margin-bottom: 60px;
}
footer .footer-middlebar .widget_sd_widget_logo:after,
footer .footer-middlebar h3.widget-title:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -30px;
  height: 1px;
  width: 100%;
  background-color: #c2c2c2;
}
footer .footer-middlebar .widget_sd_widget_logo {
  height: 80px;
}
footer .footer-middlebar .widget_sd_widget_logo svg {
  height: 80px;
}
footer .footer-middlebar h3.widget-title {
  font-size: 27px;
  color: #1a1a1a;
}
footer .footer-middlebar .widget_nav_menu ul.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 0;
}
footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75%;
}
footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #e86052;
}
footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item:after {
  content: "";
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='15px' height='15px' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 384.1'%3E%3Cpath fill='%23e86052' d='M438.6,214.7c12.5-12.5,12.5-32.8,0-45.3L278.6,9.4c-12.5-12.5-32.8-12.5-45.3,0s-12.5,32.8,0,45.3l105.5,105.4H32c-17.7,0-32,14.3-32,32s14.3,32,32,32h306.7l-105.3,105.4c-12.5,12.5-12.5,32.8,0,45.3s32.8,12.5,45.3,0l160-160h0Z'/%3E%3C/svg%3E");
  display: block;
  width: 15px;
  height: 15px;
  background-position: center center;
  background-size: contain;
}
footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item:hover:after {
  animation-name: moveArrow;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-out;
}
footer .footer-middlebar .sd-block-best-blog-overview .sd-blog-tile {
  margin-bottom: 10px;
}
footer .footer-middlebar .sd-block-best-blog-overview .sd-blog-tile .sd-block-button.type-text-link.color-salmon-pink .inner-button {
  line-height: 27px;
}
footer .footer-middlebar .sd-block-best-blog-overview .sd-blog-tile:last-child {
  margin-bottom: 0;
}
footer .footer-bottombar ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 65px;
  row-gap: 15px;
  list-style: none;
}
footer .footer-bottombar ul li,
footer .footer-bottombar ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #2e2e2e;
}
footer .footer-bottombar ul li {
  position: relative;
}
footer .footer-bottombar ul li a {
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  text-decoration: underline 1px solid;
}
footer .footer-bottombar ul li a:hover {
  color: #e86052;
  text-decoration: underline 2px solid;
}
footer .footer-bottombar ul li:not(:last-of-type):after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  right: -35px;
  width: 5px;
  height: 5px;
  background-color: #c2c2c2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/*--------------------------------------------------------------
2. Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  footer {
    padding: 42px 0 25px 0;
  }
  footer .footer-middlebar {
    margin-bottom: 125px;
  }
  footer .footer-middlebar .wrap {
    gap: 50px;
  }
  footer .footer-middlebar .footer-middlebar-2 {
    margin-top: 40px;
  }
  footer .footer-middlebar .footer-middlebar-3 {
    margin-top: 40px;
  }
  footer .footer-middlebar .widget_sd_widget_logo {
    margin-bottom: 50px;
    height: 66px;
  }
  footer .footer-middlebar .widget_sd_widget_logo svg {
    height: 66px;
  }
  footer .footer-middlebar .widget_sd_widget_logo:after {
    bottom: -25px;
  }
  footer .footer-middlebar h3.widget-title {
    margin-bottom: 50px;
    font-size: 22px;
  }
  footer .footer-middlebar h3.widget-title:after {
    bottom: -25px;
  }
  footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item a {
    font-size: 16px;
  }
  footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item:after {
    width: 12px;
    height: 12px;
  }
  footer .footer-bottombar ul {
    column-gap: 54px;
  }
  footer .footer-bottombar ul li:not(:last-of-type):after {
    top: 8px;
    right: -29px;
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 1400px) {
  footer {
    padding: 37px 0 22px 0;
  }
  footer .footer-middlebar {
    margin-bottom: 110px;
  }
  footer .footer-middlebar .wrap {
    gap: 44px;
  }
  footer .footer-middlebar .footer-middlebar-2 {
    margin-top: 35px;
  }
  footer .footer-middlebar .footer-middlebar-3 {
    margin-top: 35px;
  }
  footer .footer-middlebar .widget_sd_widget_logo {
    margin-bottom: 44px;
    height: 60px;
  }
  footer .footer-middlebar .widget_sd_widget_logo svg {
    height: 60px;
  }
  footer .footer-middlebar .widget_sd_widget_logo:after {
    bottom: -22px;
  }
  footer .footer-middlebar h3.widget-title {
    margin-bottom: 44px;
    font-size: 20px;
  }
  footer .footer-middlebar h3.widget-title:after {
    bottom: -22px;
  }
  footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item:after {
    width: 11px;
    height: 11px;
  }
  footer .footer-bottombar ul {
    column-gap: 47px;
  }
  footer .footer-bottombar ul li:not(:last-of-type):after {
    top: 7px;
    right: -26px;
  }
}
@media screen and (max-width: 1600px) {
  footer .footer-bottombar ul {
    column-gap: 55px;
  }
  footer .footer-bottombar ul li:not(:last-of-type):after {
    top: 9px;
    right: -30px;
  }
  footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item {
    max-width: 75%;
  }
}
@media screen and (max-width: 1400px) {
  footer .footer-bottombar ul {
    column-gap: 49px;
  }
  footer .footer-bottombar ul li:not(:last-of-type):after {
    right: -27px;
  }
  footer .footer-middlebar .widget_nav_menu ul.menu li.menu-item {
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  footer .footer-middlebar {
    margin-bottom: 44px;
  }
  footer .footer-middlebar .wrap {
    display: grid;
    grid-template-columns: 1fr;
  }
  footer .footer-middlebar .wrap:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottombar ul li {
    display: flex;
    width: 100%;
  }
  footer .footer-bottombar ul li:not(:last-of-type):after {
    display: none;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Input
2. Messages
3. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Input
--------------------------------------------------------------*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: inherit;
  color: #2e2e2e;
}

::-moz-placeholder { /* Firefox 19+ */
  font-size: inherit;
  color: #2e2e2e;
}

:-ms-input-placeholder { /* IE 10+ */
  font-size: inherit;
  color: #2e2e2e;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: inherit;
  color: #2e2e2e;
}

input[type=week],
input[type=url],
input[type=time],
input[type=password],
input[type=number],
input[type=color],
input[type=search],
input[type=month],
input[type=datetime-local],
input[type=text],
input[type=email],
input[type=tel] {
  border: #2e2e2e 1px solid;
  display: block;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f2f2f2;
  border: 0 none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: block;
  padding: 0 15px;
  height: 50px;
  width: 100%;
}

textarea {
  background: #f2f2f2;
  border: 0 none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: block;
  padding: 15px;
  height: 150px;
  width: 100%;
  resize: vertical;
}

.single-product .product-container .summary.entry-summary button,
.single-product .product-container .summary.entry-summary input[type=button],
.single-product .product-container .summary.entry-summary button[type=submit],
.single-product .product-container .summary.entry-summary input[type=submit] {
  background: #e86052;
  padding: 0 30px;
  line-height: 50px;
  font-size: 18px;
  height: auto;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.single-product .product-container .summary.entry-summary button:hover,
.single-product .product-container .summary.entry-summary input[type=button]:hover,
.single-product .product-container .summary.entry-summary button[type=submit]:hover,
.single-product .product-container .summary.entry-summary input[type=submit]:hover {
  background-color: #ffffff;
  color: #e86052;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button,
input[type=button],
button[type=submit],
input[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  max-width: 100%;
  text-decoration: none;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 0 30px;
  font-size: 18px;
  line-height: 50px;
  background-color: #e86052;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
button svg,
input[type=button] svg,
button[type=submit] svg,
input[type=submit] svg {
  position: relative;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
}
button span,
input[type=button] span,
button[type=submit] span,
input[type=submit] span {
  display: inline-flex;
  align-items: center;
}
button:hover,
input[type=button]:hover,
button[type=submit]:hover,
input[type=submit]:hover {
  background-color: #e86052;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
button:hover svg,
input[type=button]:hover svg,
button[type=submit]:hover svg,
input[type=submit]:hover svg {
  animation-name: moveArrow;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-out;
}

@keyframes moveArrow {
  0% {
    right: 0;
  }
  50% {
    right: -7px;
  }
  100% {
    right: 0;
  }
}
.wpcf7,
.sd-form {
  gap: 30px;
}

/* Start privacy checkbox */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.sd-form .SD-type-checkbox {
  padding: 0 0 0 30px;
  margin: 0;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item a,
.sd-form .SD-type-checkbox a {
  color: #e86052;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input,
.sd-form .SD-type-checkbox input {
  opacity: 0;
  position: absolute;
  display: block;
  left: 1px;
  top: 9px;
  z-index: -1;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label:before, .wpcf7 .wpcf7-checkbox .wpcf7-list-item input:checked + label:before,
.sd-form .SD-type-checkbox input:checked + .wpcf7-list-item-label:before,
.sd-form .SD-type-checkbox input:checked + label:before {
  background-color: #e86052;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .SD-label,
.sd-form .SD-type-checkbox .wpcf7-list-item-label,
.sd-form .SD-type-checkbox .SD-label {
  position: relative;
  font-size: 18px;
  font-weight: normal;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .SD-label:before,
.sd-form .SD-type-checkbox .wpcf7-list-item-label:before,
.sd-form .SD-type-checkbox .SD-label:before {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  left: -30px;
  top: 5px;
  border-radius: 5px;
  border: 1px solid #e86052;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:hover:before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .SD-label:hover:before,
.sd-form .SD-type-checkbox .wpcf7-list-item-label:hover:before,
.sd-form .SD-type-checkbox .SD-label:hover:before {
  background-color: #f2f2f2;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  padding-left: 0;
}

/* End privacy checkbox */
/* Start whitelabel CF7 */
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
}

/* End whitelabel CF7 */
/* Start whitelabel CF7 */
.type-file input[type=file] {
  display: none;
}
.type-file label > span:not(.wpcf7-form-control-wrap) {
  display: flex;
  align-items: center;
  color: #2e2e2e;
  cursor: pointer;
  padding: 0 15px;
  height: 50px;
  background-color: #f2f2f2;
  font-family: "PT Serif", serif;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.type-file label:hover > span:not(.wpcf7-form-control-wrap) {
  color: #ffffff;
  background-color: #2e2e2e;
}

/* End whitelabel CF7 */
/*--------------------------------------------------------------
2. Messages
--------------------------------------------------------------*/
/* Start success messages  */
.wpcf7 form.sent .wpcf7-response-output,
.sd-success-message-container {
  background-color: #73ff88;
  padding: 20px 43px 20px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  border: 2px solid #0eb427;
  margin-bottom: 20px;
}

.sd-success-message {
  font-weight: 200;
  font-size: 18px;
}
.sd-success-message::before {
  content: "";
  background-image: url("../icons/success.svg");
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 7px;
}

/* End success messages  */
/* Start notification messages  */
.sd-notification-message::before {
  content: "";
  background-image: url("../icons/info.svg");
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 7px;
}

/* End notification messages  */
/* Start error messages */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.sd-error-message-container {
  background-color: #ffa1a0;
  padding: 20px 43px 20px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid #DD4847;
}

.sd-error-message-general {
  font-weight: 200;
  font-size: 18px;
}
.sd-error-message-general:before {
  content: "";
  background-image: url("../icons/error.svg");
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 7px;
}

/* End error messages */
.wpcf7 .ajax-loader {
  vertical-align: middle;
}

/*--------------------------------------------------------------
3. Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  input[type=week], input[type=url], input[type=time], input[type=password], input[type=number], input[type=color], input[type=search], input[type=month], input[type=datetime-local], input[type=text], input[type=email], input[type=tel] {
    padding: 0 12px;
    height: 33px;
  }
  select {
    padding: 0 12px;
    height: 33px;
  }
  textarea {
    padding: 12px;
    height: 125px;
  }
  button, input[type=button], button[type=submit], input[type=submit] {
    padding: 0 8px;
    height: 33px;
    font-size: 16px;
  }
  .single-product .product-container .summary.entry-summary button[type=submit] {
    padding: 0 8px;
    line-height: 37px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1400px) {
  input[type=week], input[type=url], input[type=time], input[type=password], input[type=number], input[type=color], input[type=search], input[type=month], input[type=datetime-local], input[type=text], input[type=email], input[type=tel] {
    padding: 0 11px;
    height: 29px;
  }
  select {
    padding: 0 11px;
    height: 29px;
  }
  textarea {
    padding: 11px;
    height: 110px;
  }
  button, input[type=button], button[type=submit], input[type=submit] {
    padding: 0 7px;
    height: 29px;
  }
  .single-product .product-container .summary.entry-summary button[type=submit] {
    padding: 0 7px;
  }
}
@media screen and (max-width: 767px) {
  #filter-anchor {
    display: none;
  }
  .filter-toggle {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-color: #4f4f4f;
    z-index: 99;
    padding: 15px 0;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 20px;
    cursor: pointer;
  }
  .filter-toggle:hover {
    color: #ffffff;
    background-color: #393939;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Navigation
2. Header
3. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Navigation
--------------------------------------------------------------*/
.main-navigation ul {
  display: flex !important;
  align-items: center;
  gap: 60px;
  list-style: none;
  /* Sub Menu */
}
.main-navigation ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation ul li a:hover {
  color: #e86052;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation ul li.current_page_parent.menu-item-has-children > a, .main-navigation ul li.current-menu-item > a {
  color: #c2c2c2;
}
.main-navigation ul li.current_page_parent.menu-item-has-children > a:after, .main-navigation ul li.current-menu-item > a:after {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23c2c2c2' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
}
.main-navigation ul li.menu-item-has-children:hover > ul.sub-menu {
  left: 0;
}
.main-navigation ul li.menu-item-has-children:hover > ul.sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  width: 100%;
  height: 30px;
  left: 0;
}
.main-navigation ul li.menu-item-has-children > a:hover:after {
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23e86052' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
}
.main-navigation ul li.menu-item-has-children > a:after {
  content: "";
  width: 15px;
  height: 15px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  top: 50%;
  position: absolute;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231a1a1a' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.main-navigation ul ul.sub-menu {
  padding: 10px;
  border: 1px #c2c2c2 solid;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  top: 50px;
  -webkit-box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
  -moz-box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
  box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
}
.main-navigation ul ul.sub-menu li a {
  white-space: nowrap;
}
.main-navigation ul li.menu-item-has-children.focus:before,
.main-navigation ul li.menu-item-has-children:hover:before,
.main-navigation ul li.menu-item-has-children.focus:after,
.main-navigation ul li.menu-item-has-children:hover:after,
.main-navigation ul li.page_item_has_children.focus:before,
.main-navigation ul li.page_item_has_children:hover:before,
.main-navigation ul li.page_item_has_children.focus:after,
.main-navigation ul li.page_item_has_children:hover:after {
  display: none;
}

/*--------------------------------------------------------------
2. Header
--------------------------------------------------------------*/
header.site-header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 1px #c2c2c2 solid;
  -webkit-box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
  -moz-box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
  box-shadow: 0 0 20px rgba(26, 26, 26, 0.15);
}
header.site-header.fixed .wrap {
  max-width: unset;
  padding: 0 60px;
}
header.site-header.fixed .header-middlebar-wrap-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-header.fixed .header-middlebar-wrap-inner .header-middlebar-1 {
  display: flex;
  align-items: center;
}
header.site-header.fixed .header-middlebar-wrap-inner .header-middlebar-1.search-open {
  width: 100%;
}
header.site-header.fixed .header-middlebar-wrap-inner .buttons-container .custom-html-widget {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.admin-bar header.site-header.fixed {
  top: 32px;
}

/*--------------------------------------------------------------
3. Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  .main-navigation ul {
    gap: 50px;
  }
  header.site-header.fixed .wrap {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1400px) {
  .main-navigation ul {
    gap: 44px;
  }
  header.site-header.fixed .wrap {
    padding: 0 44px;
  }
}
@media screen and (max-width: 1400px) {
  header.site-header.fixed .header-middlebar-wrap-inner .header-middlebar-3 .buttons-container .sd-block-button.color-linkedin-blue {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  header.site-header.fixed .buttons .color-gray {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .main-navigation,
  .header-middlebar-2 {
    display: none !important;
  }
  header.site-header.fixed.mobile-nav-bottom {
    top: unset;
    bottom: 0;
  }
  header.site-header.fixed .header-middlebar-wrap-inner .header-middlebar-3 {
    display: flex;
  }
  header.site-header.fixed .header-middlebar-wrap-inner .header-middlebar-3 .buttons-container {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  header.site-header.fixed .wrap {
    padding: 0 15px;
  }
  header.site-header.fixed .header-middlebar-1 {
    display: flex;
    height: 50px;
  }
  header.site-header.fixed .header-middlebar-3 .buttons-container {
    display: none;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Lay-out
2. Visual Composer
3. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Lay-out
--------------------------------------------------------------*/
html.overlay-enabled {
  overflow: hidden;
}
html.overlay-enabled.menu-open:after {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  background-color: #2e2e2e;
  position: fixed;
  top: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 11;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wrap {
  max-width: 1660px;
}

embed,
iframe,
object {
  width: 100%;
}

.marginbottom-0px {
  margin-bottom: 0;
}

.marginbottom-30px {
  margin-bottom: 30px;
}

.marginbottom-45px {
  margin-bottom: 45px;
}

.marginbottom-60px {
  margin-bottom: 60px;
}

.site-content-contain {
  margin-top: 80px;
}

.mobile-nav-bottom + .site-content-contain {
  margin-top: 0;
}

.mobile-nav-bottom + .site-content-contain + footer {
  margin-bottom: 125px;
}

/*--------------------------------------------------------------
2. Visual Composer
--------------------------------------------------------------*/
.vc_row-fluid:not(.vc_inner) {
  padding-top: 50px;
  padding-bottom: 50px;
}

.vc_row-fluid.vc_inner {
  padding-top: 0;
  padding-bottom: 0;
}

.vc_col-has-fill > .vc_column-inner,
.vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}

.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper {
  height: 100%;
}

.wpb_content_element.marginbottom-45px {
  margin-bottom: 45px;
}

/*--------------------------------------------------------------
3. Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  .marginbottom-30px {
    margin-bottom: 25px;
  }
  .marginbottom-45px {
    margin-bottom: 37px;
  }
  .marginbottom-60px {
    margin-bottom: 50px;
  }
  .wpb_content_element.marginbottom-45px {
    margin-bottom: 37px;
  }
  .vc_row-fluid:not(.vc_inner) {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
@media screen and (max-width: 1400px) {
  .marginbottom-30px {
    margin-bottom: 22px;
  }
  .marginbottom-45px {
    margin-bottom: 33px;
  }
  .marginbottom-60px {
    margin-bottom: 44px;
  }
  .wpb_content_element.marginbottom-45px {
    margin-bottom: 33px;
  }
  .vc_row-fluid:not(.vc_inner) {
    padding-top: 37px;
    padding-bottom: 37px;
  }
}
@media screen and (max-width: 1600px) {
  .wrap {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1400px) {
  .wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .vc_row .vc_column_container > .vc_column-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .vc_row.product-container > .vc_column_container > .vc_column-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .mobile_marginbottom-0px {
    margin-bottom: 0;
  }
  .mobile_marginbottom-30px {
    margin-bottom: 22px;
  }
  .mobile_marginbottom-45px {
    margin-bottom: 33px;
  }
  .mobile_marginbottom-60px {
    margin-bottom: 44px;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Loading
2. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Navigation
--------------------------------------------------------------*/
.sd-loading {
  font-size: 0;
  opacity: 0.1;
  -webkit-animation: sd-loading 1.5s linear infinite;
}
.sd-loading.sd-loading-grid {
  display: grid;
  gap: 20px;
}
.sd-loading.sd-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.sd-loading.sd-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.sd-loading.sd-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.sd-loading.sd-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.sd-loading .sd-loading-single {
  padding: 20px;
  background-color: #2e2e2e;
}
.sd-loading .loading-separator {
  height: 30px;
}
.sd-loading .loading-button {
  height: 50px;
  margin-bottom: 15px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: #2e2e2e;
}
.sd-loading .loading-title {
  width: 65%;
  height: 30px;
  margin-bottom: 15px;
  background-color: #2e2e2e;
}
.sd-loading .loading-input {
  width: 100%;
  height: 56px;
  margin-bottom: 15px;
  background-color: #2e2e2e;
}
.sd-loading .loading-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sd-loading .loading-checkbox > span:first-child {
  height: 24px;
  width: 30px;
  margin-right: 12px;
  background-color: #2e2e2e;
}
.sd-loading .loading-checkbox > span:last-child {
  height: 16px;
  width: 150px;
  background-color: #2e2e2e;
}
@-webkit-keyframes sd-loading {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}

.sd-spinner {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
  color: #008000;
}

/*--------------------------------------------------------------
2. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Pagination
2. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Pagination
--------------------------------------------------------------*/
.sd-pagination {
  margin-top: 30px;
  position: relative;
  text-align: center;
  font-size: 0;
}
.sd-pagination .page-numbers {
  font-size: 16px;
  margin-right: 5px;
  color: #1a1a1a;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.sd-pagination .page-numbers:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #1a1a1a;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -5px;
}
.sd-pagination .page-numbers.current {
  color: #e86052;
}
.sd-pagination .page-numbers.current:after {
  content: none;
}
.sd-pagination .page-numbers.prev, .sd-pagination .page-numbers.next {
  height: 40px;
  position: absolute;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #1a1a1a;
}
.sd-pagination .page-numbers.prev:after, .sd-pagination .page-numbers.next:after {
  content: none;
}
.sd-pagination .page-numbers.prev svg, .sd-pagination .page-numbers.next svg {
  height: 15px;
  width: 15px;
}
.sd-pagination .page-numbers.prev:hover, .sd-pagination .page-numbers.next:hover {
  background-color: #1a1a1a;
  color: #f2f2f2;
}
.sd-pagination .page-numbers.prev {
  left: 0;
}
.sd-pagination .page-numbers.next {
  right: 0;
}

/*--------------------------------------------------------------
2. Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  .sd-pagination {
    margin-top: 25px;
  }
  .sd-pagination .page-numbers.prev {
    height: 33px;
    width: 33px;
  }
  .sd-pagination .page-numbers.next {
    height: 33px;
    width: 33px;
  }
}
@media screen and (max-width: 1400px) {
  .sd-pagination {
    margin-top: 22px;
  }
  .sd-pagination .page-numbers.prev {
    height: 29px;
    width: 29px;
  }
  .sd-pagination .page-numbers.next {
    height: 29px;
    width: 29px;
  }
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Tabs
2. Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Tabs
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2. Responsive
--------------------------------------------------------------*/
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/PTSerif-Regular.eot");
  src: url("../fonts/PTSerif-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerif-Regular.woff2") format("woff2"), url("../fonts/PTSerif-Regular.woff") format("woff"), url("../fonts/PTSerif-Regular.ttf") format("truetype"), url("../fonts/PTSerif-Regular.svg#PTSerif-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/PTSerif-Italic.eot");
  src: url("../fonts/PTSerif-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerif-Italic.woff2") format("woff2"), url("../fonts/PTSerif-Italic.woff") format("woff"), url("../fonts/PTSerif-Italic.ttf") format("truetype"), url("../fonts/PTSerif-Italic.svg#PTSerif-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/PTSerif-BoldItalic.eot");
  src: url("../fonts/PTSerif-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerif-BoldItalic.woff2") format("woff2"), url("../fonts/PTSerif-BoldItalic.woff") format("woff"), url("../fonts/PTSerif-BoldItalic.ttf") format("truetype"), url("../fonts/PTSerif-BoldItalic.svg#PTSerif-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/PTSerif-Bold.eot");
  src: url("../fonts/PTSerif-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerif-Bold.woff2") format("woff2"), url("../fonts/PTSerif-Bold.woff") format("woff"), url("../fonts/PTSerif-Bold.ttf") format("truetype"), url("../fonts/PTSerif-Bold.svg#PTSerif-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  font-family: "PT Serif", serif;
  font-size: 20px;
  color: #2e2e2e;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "PT Serif", serif;
  font-weight: bold;
}

h1 {
  font-size: 50px;
  line-height: 55px;
}

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

h3 {
  font-size: 27px;
  line-height: 32px;
}

h4 {
  font-size: 22px;
  line-height: 27px;
}

h5, h6 {
  font-size: 18px;
  line-height: 23px;
}

p {
  font-size: 20px;
  padding: 0;
  margin: 0 0 30px 0;
  line-height: 30px;
}

p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1600px) {
  html, body {
    font-size: 17px;
  }
  h1 {
    font-size: 42px;
    line-height: 46px;
  }
  h2 {
    font-size: 29px;
    line-height: 33px;
  }
  h3 {
    font-size: 22px;
    line-height: 27px;
  }
  h4 {
    font-size: 18px;
    line-height: 22px;
  }
  h5, h6 {
    font-size: 16px;
    line-height: 21px;
  }
  p {
    font-size: 17px;
    margin: 0 0 25px 0;
    line-height: 25px;
  }
}
@media screen and (max-width: 1400px) {
  html, body {
    font-size: 16px;
  }
  h1 {
    font-size: 37px;
    line-height: 40px;
  }
  h2 {
    font-size: 26px;
    line-height: 29px;
  }
  h3 {
    font-size: 20px;
    line-height: 23px;
  }
  h4 {
    font-size: 16px;
    line-height: 20px;
  }
  p {
    font-size: 16px;
    margin: 0 0 22px 0;
  }
}

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