/*!
Theme Name: Zellimar Group
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: zellimar-group
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Zellimar Group is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-color);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
li {
  list-style: none;
}
.d-none {
  display: none;
}
:root {
  --zellimar-primary: #ab8d47;
  --zellimar-blue: #000a45;
  --zellimar-light-blue: #9aa0bf;
  --text-color: #808080;
  --bg-color: #f0f4fd;
  --border-size: 60px;
}
@media (max-width: 1024px) {
  :root {
    --border-size: 100px;
  }
}
/* Font Face */
@font-face {
  font-family: "Axiforma";
  src: url("fonts/Axiforma/Axiforma-Bold.woff2") format("woff2"),
    url("fonts/Axiforma/Axiforma-Bold.woff") format("woff"),
    url("fonts/Axiforma/Axiforma-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: "Axiforma";
  src: url("fonts/Axiforma/Axiforma-Medium.woff2") format("woff2"),
    url("fonts/Axiforma/Axiforma-Medium.woff") format("woff"),
    url("fonts/Axiforma/Axiforma-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
	font-display: swap;
}
.container {
  max-width: 1360px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
/* Slick Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Slick Slider */
.zellimar_primary_btn,
.zellimar_secondary_btn {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--zellimar-primary);
  color: #fff;
}
.zellimar_primary_btn {
  background-color: var(--zellimar-primary);
}
.zellimar_secondary_btn {
  color: var(--zellimar-primary);
}
.zellimar_primary_btn svg,
.zellimar_secondary_btn svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
.zellimar_secondary_btn svg {
  fill: var(--zellimar-primary);
}
/* Header Styling */
header.main_header {
  position: relative;
  background-color: var(--zellimar-blue);
  padding: 20px 0;
  z-index: 999;
  transition: all .3s ease-in-out;
}
header.main_header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
.main_header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo_container {
  max-width: 270px;
}
.nav_menu_container ul {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 14px;
  color: var(--zellimar-light-blue);
}

.nav_menu_container .menu li:last-child{
	display:none;
}

.header_cta_wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header_phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.contact_cta_wrapper a,
.header_phone .ph_no_wrapper a {
  font-size: 14px;
  color: var(--zellimar-light-blue);
}
.header_phone svg {
  fill: var(--zellimar-primary);
  width: 23px;
  height: 23px;
  vertical-align: middle;
}
/* Hero Section Styling */
section {
  padding: 60px 0;
}
#shadow-host-companion{
  padding: 0 !important;
}
.hero_section {
  position: relative;
  padding-bottom: 150px;
}
.hero_section::before {
  content: "";
  position: absolute;
  top: 100px;
  left: -615px;
  background-image: url(../../../wp-content/uploads/2023/05/pattern-side.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 830px;
  width: 100%;
  aspect-ratio: 1;
}
.hero_section .container {
  position: relative;
}

.hero_section .container:before,
.internal_page_banner .container:before,
.internal_page_banner .container:after{
  content: "";
  position: absolute;
  top: -360px;
  left: -50px;
  background-image: url(../../../wp-content/uploads/2023/05/pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 710px;
  width: 100%;
  aspect-ratio: 1;
	z-index: -1;
}
.internal_page_banner .container:before{
  background-image: url(../../../wp-content/uploads/2023/06/innerleftdots.png);
}

.internal_page_banner .container:after{
  background-image: url(../../../wp-content/uploads/2023/06/innerrightdots.png);
}

.hero_section .hero_section_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.hero_section .hero_section_wrapper h1 {
  font-size: 48px;
  color: var(--zellimar-blue);
  font-weight: 300;
}
.hero_section .hero_section_wrapper h1 :is(strong, b) {
  color: var(--zellimar-primary);
}
.hero_section .hero_section_wrapper .hero_content {
  position: relative;
  padding: 30px 90px 50px 0;
}
.hero_section .hero_section_wrapper .hero_content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 156px;
  height: 1px;
  background-color: #c4cbd9;
}
.hero_cta_button_wrapper {
  padding-top: 50px;
}
.hero_cta_button_wrapper > p {
  font-size: 18px;
  font-style: italic;
  color: var(--zellimar-primary);
  padding-bottom: 25px;
}
.hero_cta_button_wrapper .hero_cta_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hero_cta_button_wrapper .hero_cta_buttons a {
  width: 100%;
}
.hero_img_wrapper {
  position: relative;
}
.hero_img_wrapper img {
  position: relative;
  z-index: 2;
}
.hero_img_wrapper:before {
  content: "";
  position: absolute;
  top: 210px;
  right: -310px;
  background-image: url(../../../wp-content/uploads/2023/05/pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 710px;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
}
/* Business Section Styling */
section .service_wrapper .service_img_wrapper {
  padding: 65px;
}
section .service_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-auto-flow: dense;
}
section .service_wrapper .service_header_title {
  display: flex;
  align-items: center;
  gap: 25px;
}
section .service_wrapper .service_header_title img {
  width: 80px;
  height: 100%;
}
section h2.service_title {
  font-family: "Axiforma";
  font-size: 38px;
  line-height: 1.2;
  font-weight: bold;
  color: var(--zellimar-blue);
}
section .service_title span {
  color: var(--zellimar-primary);
}
section .service_wrapper .service_content_wrapper {
  padding-top: 60px;
}
section .service_wrapper .service_content_wrapper .service_content {
  line-height: 30px;
}
section .service_wrapper .service_content_wrapper .service_content ul {
  padding: 40px 0 20px 30px;
}
section .service_wrapper .service_content_wrapper .service_content ul li {
  position: relative;
}
section
  .service_wrapper
  .service_content_wrapper
  .service_content
  ul
  li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -30px;
  width: 20px;
  height: 20px;
  background-image: url(../../../wp-content/uploads/2023/05/list_bullet.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
section .service_wrapper .service_content_wrapper .service_cta {
  padding-top: 20px;
}
section.odd {
  position: relative;
  padding: 100px 0 150px;
  background-color: var(--bg-color);
}
section.even {
  padding: 100px 0;
  position: relative;
}
section.wy_choose_us:before,
section.even:before,
section.odd:before,
.contact_us:after{
  content: "";
  position: absolute;
  top: calc(-1 * var(--border-size) + 1px);
  left: 0;
  right: 0;
  border-style: solid;
  border-width: var(--border-size) 0 0 100vw;
  border-color: transparent transparent transparent var(--bg-color);
}
section.even:before {
  border-color: transparent transparent transparent rgb(255, 255, 255);
}
.contact_us:after{
	top: auto;
	bottom: calc(-1 * var(--border-size) + 1px);
	border-color: var(--bg-color) transparent transparent;
	z-index: 9;
}
section.even .service_wrapper .service_img_wrapper {
  grid-column: 2;
}
section.even .service_wrapper .service_main_wrapper {
  grid-column: 1;
}
/* Why Choose Us Styling */
section.wy_choose_us {
  position: relative;
  background-color: var(--zellimar-blue);
  padding: 100px 0 240px;
}
section.wy_choose_us:before {
  border-color: transparent transparent transparent var(--zellimar-blue);
}
section.wy_choose_us h2.service_title {
  position: relative;
  color: #fff;
  text-align: center;
  padding-bottom: 35px;
}
section.wy_choose_us h2.service_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
  height: 1px;
  background-color: #c4cbd9;
}
.why_choose_us_wrapper .why_choose_us_tab_wrapper {
  padding-top: 100px;
}
.why_choose_us_tab_title .wcu_tab_titles {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title {
  padding: 0 10px 30px;
  cursor: pointer;
}
.why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title{
  border-bottom: 5px solid transparent;
}
.why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title.active {
  border-color: var(--zellimar-primary);
}
.why_choose_us_tab_title .wcu_tab_titles .tab_img {
  display: grid;
  place-content: center;
  max-width: 70px;
  width: 100%;
  margin: 0 auto 35px;
  padding: 5px;
  border: 3px solid var(--zellimar-primary);
  aspect-ratio: 1;
  transform: rotate(45deg);
}
.why_choose_us_tab_title .wcu_tab_titles .tab_img img {
  width: 40px;
  height: auto;
  object-fit: contain;
  transform: rotate(-45deg);
}
.why_choose_us_tab_title .wcu_tab_titles .tab_main_title {
  font-family: "Axiforma", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  color: #fff;
}
.why_choose_us_tab_wrapper .why_choose_us_tab_contents {
  padding: 15px;
  border: 1px solid var(--text-color);
  margin-top: -2.7px;
}
.why_choose_us_tab_wrapper
  .why_choose_us_tab_contents
  .wcu_tabs_contents
  .wcu_tab_contents {
  padding: 30px;
  background-color: rgb(255 255 255 / 0.11);
  line-height: 32px;
  color: #fff;
  display: none;
}
.why_choose_us_tab_wrapper
  .why_choose_us_tab_contents
  .wcu_tab_contents.active {
  display: block;
}
section .service_wrapper .service_content_wrapper .service_content p {
  padding-bottom: 20px;
}
.service_main_wrapper .service_header_title {
  position: relative;
}
.service_main_wrapper .service_header_title:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 156px;
  height: 1px;
  background-color: #c4cbd9;
}
.connect_sw_section .service_title {
  margin-right: -70px;
}
.connect_sw_section .service_img_wrapper img {
  filter: drop-shadow(0 0 87px rgba(153, 157, 182, 0.31));
}
/* Contact Us Styling */
.contact_us_section h2.service_title {
  text-align: center;
}
.contact_us_section .contact_us_wrapper {
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contact_us_section .contact_us_wrapper .contact_us_title {
  position: relative;
  padding-bottom: 40px;
}
.contact_us_section .contact_us_wrapper .contact_us_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
  height: 1px;
  background-color: #c4cbd9;
}
.contact_us_section .contact_us_wrapper .contact_subtitle {
  padding: 40px 0;
}
.contact_us_ctas .phone_number_container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  gap: 20px;
}
.contact_us_ctas .phone_number_container .icon_wrapper svg {
  width: 40px;
  height: 40px;
  fill: var(--zellimar-primary);
}
.contact_us_ctas .phone_number_container {
  font-size: 50px;
  font-family: "Axiforma";
  font-weight: 700;
  color: var(--zellimar-primary);
}
/* Footer Styling */
footer.main_footer {
  background-color: var(--zellimar-blue);
  padding: 50px 0 0;
}
footer .footer_wrapper {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  justify-content: space-between;
  padding-bottom: 50px;
}
footer .footer_wrapper .footer_menu {
  padding-bottom: 30px;
}
footer .footer_wrapper .footer_menu ul {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
}

.footer_menu .menu>li:last-child{
	display:none;
}

.logo_address_wrapper .address_wrapper {
  padding-top: 30px;
}
footer .footer_wrapper .social_media_wrapper {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
footer .footer_wrapper .social_media_wrapper .social_item svg {
  width: 25px;
  height: 25px;
  fill: var(--zellimar-light-blue);
}
footer .menu_social_wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.copyright {
  font-size: 12px;
  text-align: center;
  padding: 15px 0;
  background-color: rgb(255 255 255 / 0.1);
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hamburger {
    padding: 10px;
    display: flex;
  }
  .hamburger svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    transition: 0.3s all ease-in-out;
  }
  .hamburger .close{
    width: 0;
    opacity: 0;
  }
  .hamburger.active .close{
    width: 25px;
    opacity: 1;
  }
  .hamburger.active .ham{
    width: 0;
    opacity: 0;
  }
  
  .nav_menu_container,.header_cta_wrapper {
    display: none;
  }
	
  .nav_menu_container {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--zellimar-blue);
    z-index: -1;
  }
	
	.nav_menu_container .menu li:last-child a{
		width:unset;
	}
	
	.nav_menu_container .menu li:last-child{
		width:unset;
		display:inline-block;
		padding:11.2px 24px;
		color:var(--zellimar-light-blue);
}

  .menu-main-menu-container {
      height: 100%;
  }
  /* Mobile Menu CSS */
  .nav_menu_container.active{
    display: block;
  }
  .nav_menu_container ul{
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .nav_menu_container ul li a,
  .nav_menu_container ul li{
    width: 100%;
  }
  .nav_menu_container ul li a{
    display: inline-block;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }
  /* Mobile Menu CSS */
  .hero_section .hero_section_wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero_section .hero_section_wrapper .hero_content:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero_section .container:before {
    left: -270px;
    z-index: -1;
  }
  section .service_wrapper {
    grid-template-columns: 1fr;
  }
  section .service_wrapper .service_main_wrapper {
    display: contents;
  }
  section .service_wrapper .service_header_title {
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
  }
  section .service_wrapper .service_content_wrapper {
    padding-top: 0;
  }
  section .service_wrapper .service_img_wrapper {
    padding: 75px 65px;
    grid-row: 2;
  }
  section.even .service_wrapper .service_img_wrapper {
    grid-column: unset;
  }
  section.even,
  section.odd {
    padding: 50px 0 200px;
  }
  .why_choose_us_tab_title .wcu_tab_titles {
    gap: 20px;
    flex-direction: column;
  }
  .why_choose_us_tab_title .wcu_tab_titles .tab_main_title {
    font-size: 18px;
    padding: 0;
    line-height: 26px;
  }
  .why_choose_us_tab_wrapper .why_choose_us_tab_contents {
    display: none;
  }
  .why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding-bottom: 50px;
    cursor: unset;
  }
  .why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title.active {
    border-bottom: 0;
  }
  .why_choose_us_tab_title .wcu_tab_titles .tab_main_title {
    text-align: left;
  }
  .why_choose_us_tab_title .wcu_tab_titles .tab_img {
    margin: 0;
  }
  .why_choose_us_tab_title .wcu_tab_titles .wcu_tab_title .wcu_tab_contents {
    flex-basis: calc(100% + 20px);
    background-color: rgb(255 255 255 / 0.11);
    padding: 20px;
    color: #fff;
    line-height: 30px;
    margin: 30px -10px 0;
  }
  section.even.contact_us_section {
    padding: 100px 0;
  }
  .connect_sw_section .service_title {
    margin-right: 0;
  }
  footer .footer_wrapper {
    gap: 50px;
    grid-template-columns: 0.7fr 1fr;
  }
  footer .menu_social_wrapper {
    flex-direction: row;
  }
  footer .footer_wrapper .social_media_wrapper,
  footer .footer_wrapper .footer_menu ul {
    flex-direction: column;
    gap: 15px;
  }
  footer .footer_wrapper .social_media_wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
  section {
    padding: 50px 0;
  }
  .hero_section .hero_section_wrapper h1 {
    font-size: 32px;
    line-height: 39px;
  }
  .hero_section .hero_section_wrapper .hero_content {
    padding-inline: 0;
    padding-bottom: 30px;
  }
  .hero_cta_button_wrapper{
    padding-top: 30px;
  }
  .hero_cta_button_wrapper .hero_cta_buttons{
    grid-template-columns: 1fr;
  }
  .hero_section .container:before {
    top: -220px;
    left: -150px;
}
.hero_section {
  padding-bottom: 120px;
}
section.wy_choose_us,
section.even, section.odd {
  padding: 30px 0 170px;
}
section h2.service_title {
  font-size: 32px;
}
section.wy_choose_us h2.service_title{
  padding-bottom: 20px;
  text-align: left;
}
section.wy_choose_us h2.service_title:after{
  left: 0;
  transform: unset;
}
.why_choose_us_tab_title .wcu_tab_titles .tab_img{
  max-width: 80px;
  width: 100%;
}
.why_choose_us_tab_title .wcu_tab_titles .tab_img img {
  width: 60px;
  height: 50px;
}
.why_choose_us_tab_title .wcu_tab_titles .tab_main_title{
  flex-basis: calc(100% - 160px);
  font-size: 16px;
  margin-left: 15px;
}
section .service_wrapper .service_img_wrapper {
  padding: 50px 0;
}
.contact_us_section h2.service_title{
  font-size: 30px;
}
.contact_us_ctas .phone_number_container,
.contact_us_section .contact_us_wrapper .contact_us_title{
  padding-bottom: 30px;
}
.contact_us_section .contact_us_wrapper .contact_subtitle{
  padding: 30px 0;
  font-size: 16px;
}
.contact_us_ctas .phone_number_container {
  font-size: 34px;
}
section.even.contact_us_section {
  padding: 50px 0;
}
footer .footer_wrapper {
  grid-template-columns: 1fr;
}
footer .menu_social_wrapper {
  flex-direction: column;
  gap: 40px;
}
footer .footer_wrapper .social_media_wrapper{
  flex-direction: row;
}
}

