/*!
Theme Name: Squee V2
Theme URI: https://squee.design
Author: Joseph Collett
Author URI: https://squee.design
Description: Version 2 of Squee
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: squee
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.

squee 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/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */


/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  margin-top: 0px !important;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}


/* Grouping content
	 ========================================================================== */


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */


/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */


/* Elements
--------------------------------------------- */
body {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  flex-grow: 1;
}




dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}


figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */


/* Forms
--------------------------------------------- */

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: flex;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* 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 !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex='-1']:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
.custom-logo {
  max-height: 35px;
  width: auto;
}
.word-highlight {
  position: relative;
  z-index: 1;
  white-space: pre-wrap;
}
.word-highlight:after {
  background: #fddfec;
  content: ' ';
  width: 111%;
  height: 50%;
  position: absolute;
  left: -4%;
  top: 57%;
  z-index: -1;
}
a.email-us:hover,
a.email-us:focus,
a.email-us:active {
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.bg-grey {
  background: #f8f8f8;
}
.bg-transparent {
  background: transparent !important;
}
.thumbnails {
  max-height: 450px;
  object-fit: cover;
  height: 35vw;
  min-height: 250px;
}
.thumbnail-container {
  overflow: hidden;
  position: relative;
}
.blog-area .thumbnail-container > img {
  transition: transform 1s;
  max-height:250px;
}
.thumbnail-container > img {
  transition: transform 1s;
}
.thumbnail-container:hover > img {
  transform: scale(1.1);
}
.post,
.page {
  margin: 0;
}
header {
  position: relative;
  z-index: 101;
}
.page-header-margin {
  margin-top: 90px;
}
.container-margin {
  margin-left: 4vw !important;
  margin-right: 4vw !important;
}
.row {
  margin-left: -2rem;
  margin-right: -2rem;
}
col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
}
.menu-bar-mobile {
  opacity: 0;
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transition: 0.3s;
}
.menu-bar-mobile.show {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  transition: 0.3s;
}
.sticky_logo_class {
  max-height: 35px;
  position: absolute;
  left: 16px;
  z-index: -1;
  opacity: 0;
}
.sticky_logo_class.show {
  z-index: 1;
  opacity: 1;
}
.custom-logo {
  opacity: 1;
  z-index: 1;
}
.custom-logo.hide {
  opacity: 0;
  z-index: 0;
}
.main-home-image {
  width: 60vw;
  max-width: 850px;
  min-width: 380px;
  /* margin-top: -15rem;
  margin-bottom: -3rem; */
  visibility: hidden;
}
.btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
}
.btn:hover {
  text-decoration: none;
}
.btn-animate {
  visibility: hidden;
}
.btn-dark a,
.btn-dark:a:visited {
  color: #fff;
}
.btn-dark a:visited {
  color: #fff;
}
.card-body {
  font-size: 1rem;
}
.bg-danger {
  background: #f8d7da !important;
}
.bg-success {
  background: #f0f8e8 !important;
}
.post-info {
  font-size: 0.8rem !important;
}
.btn-outline-primary {
  color: #c71371 !important;
  border-color: #c71371 !important;
  font-weight: 600;
  border-width: 2px;
}
.btn-outline-primary:hover {
  color: #fff !important;
  background-color: #c71371 !important;
  border-color: #c71371 !important;
}
.text-primary {
  color: #c71371;
}
.remove-button-animation {
  visibility: visible;
  animation: none;
}
.site-header.show i#menu-icon {
  color:#fff;
}


#menu-icon {
  flex-direction: column;
  width: 70px;
  cursor: pointer;
}

.site-header label{
  display:flex;
   flex-direction:column;
   width:40px;
   cursor:pointer;
 }
 
 .site-header label span{
   background: #FAFAFA;
   border-radius:10px;
   height:3px;
   margin: 3px 0;
   transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
 
 }

 .site-header.show label span {
  background: #fff;
 }
 
 
 .site-header input[type="checkbox"]{
   display:none;
 }
 
 
 .site-header input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px,-2px);
}
 
 
 .site-header input[type="checkbox"]:checked ~ span:nth-of-type(2){
   
   transform-origin:top;
   transform:rotatez(-45deg)
 }
 
 
 .site-header input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(18px,-3px) rotatez(45deg);
}
 

@media (min-width: 768px) {
  body50
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 1.1rem;
  }
  .main-home-image {
    /* margin-top: -20rem;
    margin-bottom: -8rem; */
  }
  .container-margin {
    margin-left: 8vw !important;
    margin-right: 8vw !important;
  }
  .btn {
    padding: 15px 40px;
  }
  .menu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
  }
  .custom-logo,
  .sticky_logo_class {
    max-height: 45px;
  }
}
.top-55 {
  top:45%;
}
.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.image-container::after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-container img {
  z-index: 2;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas:
      "image2 image2 image2 image1 image1"
      "image3 image3 image4 image4 image4";
  grid-gap: 10px;
}

.grid-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:#f8f9fa!important;
  display: flex;
  align-items: center;
}

.item1 {
  grid-area: image1;
}

.item2 {
  grid-area: image2;
}

.item3 {
  grid-area: image3;
}

.item4 {
  grid-area: image4;
}

.item5 {
  grid-area: image5;
}
.opacity-50 {
   opacity: 70%;
}

.circle {
  width: 45px; /* Width of the circle */
  height: 45px; /* Height of the circle */
  background-color: #E50380; /* Background color */
  border-radius: 50%; /* Makes the div a circle */
  display: flex; /* Uses flexbox for alignment */
  justify-content: center; /* Center align horizontally */
  align-items: center; /* Center align vertically */
  color: white; /* Color of the text */
  font-size: 1.6rem; /* Size of the letter */
  color:#333;
  font-weight: bold;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
  color: #666;
  border: 1px solid #f7f7f7;
  border-radius: 0px;
  padding: 4px 5px;
  background: #f0f0f0;
  height: calc(1.5em + 0.75rem + 8px);
}
textarea.form-control {
  color: #666;
  border: 1px solid #f7f7f7;
  border-radius: 0px;
  padding: 4px 5px;
  background: #f0f0f0;
}
.form-group label {
  font-size: 0.9rem;
}
.blog-post a, .blog-post a:visited {
  color:#E6057E;
}
.blog-post h3 {
  margin-bottom: 20px;
  color: #000;
}
/* Pagination base styles */
.nav-links {
  display: flex;
  justify-content: center; /* Center pagination */
  list-style: none; /* Removes default list style */
  padding-left: 0; /* Removes default padding */
}

/* Style for all the items including prev and next */
.nav-links > * {
  margin: 0 5px; /* Spacing between pagination items */
}

/* Style for the page numbers and prev/next buttons */
.nav-links a, .nav-links span {
  color: #000; /* Black color for text */
  background-color: #fff; /* White background */
  border-radius: 50%; /* Makes it circular */
  width: 35px; /* Fixed width */
  height: 35px; /* Fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; /* Removes underline from links */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  font-weight:600;
}

/* Styles for the current page */
.nav-links .current {
  color: #c71371; /* White color for text */
  border: 2px solid #c71371; /* Black border */
}

/* Hover styles */
.nav-links a:hover {
  color: #fff; /* White text on hover */
  background-color: #c71371; /* Black background on hover */
  border-color: #c71371; /* Black border on hover */
}

/* Adjustments for the prev and next buttons to make them oval */
.nav-links .prev, .nav-links .next {
  border-radius: 30px; /* More oval shape */
  border: 2px solid #000; /* Black border */
}
.nav-links .prev:hover, .nav-links .next:hover {
  border-radius: 30px; /* More oval shape */
  border: 2px solid #000; /* Black border */
  background-color: #000;
}

/* If you want to hide the ... when there are many pages, add this */
.nav-links .dots {
  display: none; /* Hide dots */
}
#cookieConsentContainer {
  z-index: 1000;
  font-size: 14px;
  line-height: 1.5;
}

#cookieConsentContainer button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#cookieConsentContainer button:hover {
  background-color: #005077;
}
@media (max-width: 992px) {
  .remove-padding-for-mobile {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

/* Add this to your theme's style.css file */
.svg-container {
  height: 6rem; /* 24 * 0.25rem = 6rem */
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-container svg {
  height: 100%;
  width: auto;
}
.menu-open {
	z-index:60;
}
