@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  position: relative;
  margin: 0px;
  width: 100%;
  height: 100%;
}

body {
  margin: 0px;
  width: 100%;
  height: auto;
  font-size: 18px;
  font-family: "Montserrat, serif";
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

* {
  line-height: 1.3;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

*:focus {
  outline: none;
}

b, strong {
  font-weight: 500;
}

i {
  font-style: italic;
}

b i {
  font-style: italic;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #555;
}
a:hover {
  text-decoration: none;
}
a i {
  margin-right: 10px;
}

p:has(img) {
  margin: 0;
  padding: 0;
}

p:empty {
  display: none;
}

.animate {
  visibility: hidden;
}

.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.visibility-none {
  visibility: hidden;
}

.visibility {
  visibility: visible;
}

section {
  position: relative;
  height: auto;
}

.section-content-wrap {
  position: relative;
  width: 100%;
}

.section-bg-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.section-bg-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-bg-colour {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px !important;
  font-size: 14px !important;
  line-height: 1;
  letter-spacing: 2px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  border: none;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-transform: uppercase;
  background: none;
  font-weight: 500;
}

.btn-outline-white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover {
  border: 1px solid #15d3ff;
  color: #15d3ff;
}

.btn-outline-blue {
  border: 1px solid #15d3ff;
  color: #15d3ff;
}
.btn-outline-blue:hover {
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
}

.btn-fill-blue {
  background: #15d3ff;
  color: #1e1e1e;
}
.btn-fill-blue:hover {
  background: #1e1e1e;
  color: #ffffff;
}

.hidden {
  display: none;
}

h1 {
  font-size: 50px;
  font-weight: bold;
}

h2 {
  font-size: 40px;
  font-weight: bold;
}

h3 {
  font-size: 30px;
  font-weight: bold;
}

h4 {
  font-size: 25px;
  font-weight: bold;
}

/* ---------------------------------------------- /*
 * Pagination
/* ---------------------------------------------- */
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.pagination div, .page-numbers {
  position: relative;
  display: inline-flex;
  margin: 3px;
  text-decoration: none;
  width: auto;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.pagination .number, .page-numbers .number {
  position: absolute;
}

.pagination div:hover, .page-numbers:hover {
  color: #fff;
}

.pagination .current, .page-numbers.current {
  color: #fff;
}

.pagination-arrows {
  margin: 3px;
  text-decoration: none;
  width: auto;
  color: #555 !important;
  background: transparent !important;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.pagination-arrows:hover {
  color: #0078de !important;
}

.animsition-overlay-slide {
  position: fixed;
  z-index: 110 !important;
  background-color: #ddd;
}

.section-background-wrap {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* ---------------------------------------------- /*
 * Owl Carousel
/* ---------------------------------------------- */
.owl-carousel {
  position: relative;
  margin: auto;
  width: 100%;
}
.owl-carousel .owl-item {
  position: relative;
  display: block;
  float: left;
  height: 100%;
  overflow: hidden;
}
.owl-carousel .owl-item img {
  width: 100%;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 100;
}
.owl-carousel .owl-nav button {
  background: none;
  border: none;
  width: 50px;
  height: 50px;
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 0;
}
.owl-carousel .owl-nav .arrows:hover i {
  color: #233562;
  cursor: pointer;
}
.owl-carousel .owl-nav .arrows i {
  font-size: 30px;
  color: #233562;
}
.owl-carousel .owl-dots {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: inline-flex;
  max-width: 50%;
  width: 100%;
  margin: 50px auto 0;
}
.owl-carousel .owl-dots .owl-dot {
  background-color: #203864;
  width: 100%;
  height: 5px;
  border: 0;
  margin: 0;
  border-radius: 0;
  padding: 0;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #ddd;
}
.owl-carousel .disabled {
  display: none;
}
.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

/* ---------------------------------------------- /*
 * Header
/* ---------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  background: #1E1E1E;
  padding: 10px 5%;
  z-index: 10;
}
header .inner-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header-button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-button-wrap .header-button {
  margin: 0;
  padding: 0;
}
header .header-button-wrap .header-button li {
  list-style: none;
  margin: 0 !important;
}

#logo {
  max-width: 180px;
}
#logo img {
  width: 100%;
}

/* ---------------------------------------------- /*
 * Menu
/* ---------------------------------------------- */
#nav-wrap ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
}
#nav-wrap ul li {
  list-style: none;
  margin: 0 5px;
}
#nav-wrap ul li a {
  position: relative;
  padding: 0 5px;
  font-weight: 500;
  list-style: none;
  font-size: 18px;
  color: #ffffff;
}
#nav-wrap .main-menu li {
  padding: 20px 10px;
}
#nav-wrap .main-menu li:hover .sub-menu-inner {
  display: block !important;
}
#nav-wrap .main-menu a, #nav-wrap .main-menu .nav-title {
  position: relative;
}
#nav-wrap .main-menu a:after, #nav-wrap .main-menu .nav-title:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px solid;
  transition: 0.3s ease-in-out;
}
#nav-wrap .main-menu a:hover:after, #nav-wrap .main-menu .nav-title:hover:after {
  width: 100%;
}
#nav-wrap .blue-header a, #nav-wrap .blue-header .nav-title {
  color: #203864;
}
#nav-wrap .blue-header .sub-menu-inner a, #nav-wrap .blue-header .sub-menu-inner .nav-title {
  color: #fff;
}
#nav-wrap .white-header a, #nav-wrap .white-header .nav-title {
  color: #fff;
}

.main-nav li .sub-menu-inner:first-of-type {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  padding: 50px;
  display: none;
}
.main-nav li .sub-menu-inner .sub-menu {
  display: inline-flex !important;
  gap: 50px;
}
.main-nav li .sub-menu-inner li {
  position: relative;
  padding: 0 !important;
  margin: 10px 0 !important;
}
.main-nav li .sub-menu-inner li .sub-menu-inner {
  position: relative;
  padding: 0 !important;
  top: 0;
}
.main-nav li .sub-menu-inner li .sub-menu-inner .sub-menu {
  display: block !important;
}
.main-nav li .back-menu {
  display: none;
}

.mobile-nav-wrap {
  padding: 0;
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile-nav-wrap li {
  display: list-item;
}

.mobile-menu {
  position: relative;
  list-style: none;
  padding: 0;
}
.mobile-menu li {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 10px auto;
  opacity: 0;
  padding: 0;
  left: 70%;
  list-style: none;
}
.mobile-menu li a, .mobile-menu li .nav-title {
  position: relative;
  padding: 2px 0;
  font-weight: 400;
  color: #fff;
  font-size: 30px;
  list-style: none;
}
.mobile-menu li .nav-title {
  justify-content: space-between;
  display: flex;
}
.mobile-menu li .nav-title i {
  font-size: 16px;
}
.mobile-menu .top-level-menu {
  position: relative;
}
.mobile-menu .top-level-menu .sub-menu-inner {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 100%;
  top: 0;
  z-index: 1;
  background-color: #1e1e1e;
  transition: 0.3s ease-in-out;
}
.mobile-menu .top-level-menu .sub-menu-inner.sub-menu-open {
  left: 0;
}
.mobile-menu .top-level-menu .sub-menu-inner .sub-menu {
  margin: 100px 0 50px;
  padding: 0;
}

#mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background-color: #1e1e1e;
  z-index: 9;
}

#nav-icon-wrap{
	  display: none;
}

#nav-icon {
  width: 40px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;

}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon.blue span {
  background: #254075;
}

#nav-icon.nav-open span {
  background: #fff;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.social-icons {
  margin: 0;
  padding: 0;
}
.social-icons li {
  display: inline-flex;
  list-style: none;
  font-size: 30px;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
.social-icons li a {
  color: #fff;
}

#main-menu .current-menu-item a,
#main-menu .current-page-ancestor a,
#main-menu .current-post-ancestor a {
  background-color: transparent !important;
}

/* ---------------------------------------------- /*
 * Post
/* ---------------------------------------------- */
.post-content-wrap {
  padding: 0 5%;
  margin: 50px auto 100px;
  max-width: 1400px;
}
.post-content-wrap .content .wp-block-image {
  margin: 40px 0;
}
.post-content-wrap .content img {
  position: relative;
}
.post-content-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content-wrap .feature-img {
  padding-top: 100%;
  width: 100%;
}
.post-content-wrap .img-feat-top {
  position: relative;
  height: auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
.post-content-wrap .img-feat-top img {
  position: relative !important;
}
.post-content-wrap .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-content-wrap .grid-item hr {
  width: 100%;
}
.post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
  margin-top: 30px;
  margin-bottom: 0px;
}
.post-content-wrap p:last-of-type {
  margin-bottom: 0;
}
.post-content-wrap a {
  margin-top: 40px;
}

.related-posts {
  padding: 100px 5% 100px;
}
.related-posts h2 {
  text-align: center;
  font-family: Futura New;
  font-size: 4rem;
  margin-top: 0;
}
.related-posts .related-post-grid {
  text-align: center;
}
.related-posts .related-post-grid h2 {
  font-family: unset;
  font-size: 25px;
  text-transform: uppercase;
  margin: 30px;
}
.related-posts .related-post-grid .grid-item:nth-child(even) {
  margin-top: 50px;
}
.related-posts .related-post-grid .grid-item:nth-child(even) .post-feat-img {
  border-top-left-radius: 50% 50%;
  border-top-right-radius: 50% 50%;
}
.related-posts .related-post-grid .post-feat-img {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
}
.related-posts .related-post-grid .post-feat-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------------------------- /*
 * Content
/* ---------------------------------------------- */
.page-banner-wrap .page-banner-text {
  text-shadow: 0px 0px 3px #000000;
}
.page-banner-wrap .page-title {
  position: absolute;
  bottom: 0;
  left: 5%;
  top: 50%;
}
.page-banner-wrap .page-title h1 {
  margin: 0;
  color: #ffffff;
}
.page-banner-wrap .page-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  overflow: hidden;
}
.page-banner-wrap .page-banner .banner-image {
  min-height: 400px;
}
.page-banner-wrap .page-banner .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner-wrap .page-banner .banner-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.4;
}
.page-banner-wrap .page-banner .banner-image .images-lines-h-b {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  background-size: auto 100%;
}
.page-banner-wrap .page-banner.banner-style-video {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}
.page-banner-wrap .page-banner.banner-style-video .banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-banner-wrap .page-banner.banner-style-video .banner-video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.3;
}
.page-banner-wrap .page-banner.banner-style-video .banner-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner-wrap .page-banner.banner-style-video .banner-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner-wrap .page-banner img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------- /*
 * Footer
/* ---------------------------------------------- */
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
footer a {
  position: relative;
  color: #fff;
}
footer a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
  border-bottom: 3px solid;
  transition: 0.3s ease-in-out;
}
footer a:hover:after {
  width: 100%;
}
footer h2, footer h3, footer h4 {
  font-size: 16px;
  letter-spacing: 2px;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  margin-top: 0;
  color: #fff !important;
}
footer .wp-block-image img {
  border: 1px solid #fff;
}
footer .copyright-text {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .current-menu-item a,
footer .current-page-ancestor a,
footer .current-post-ancestor a {
  background-color: transparent !important;
}
footer .current-menu-item a:hover,
footer .current-page-ancestor a:hover,
footer .current-post-ancestor a:hover {
  background-color: transparent !important;
}
footer .footer-inner {
  padding: 100px 5% 50px;
  margin: auto;
  width: 100%;
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
  margin: 10px 0;
}
footer .footer-bar {
  margin: 0 5%;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}

#menu-footer-menu {
  margin: 0;
  padding: 0;
}
#menu-footer-menu li {
  list-style: none;
  margin: 0 0 5px;
}
#menu-footer-menu li a {
  font-size: 16px;
}

.terms {
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
  font-size: 14px;
  text-align: center;
}
.terms li {
  margin: 0 10px;
  list-style: none;
}

.social-links ul {
  display: inline-flex;
  padding: 0;
  margin: 0;
  gap: 20px;
}
.social-links ul li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links ul li a {
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
  text-decoration: none;
}
.social-links ul li a::after {
  display: none;
}


.call-btn{
	position: fixed;
	bottom: 180px;
	right: 10px;
	z-index: 200;
	width: 55px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 60px;
	background-color: #15d3ff;
	font-size: 30px;
	color: #fff;
}

.call-btn i{
	margin: 0;
}


.mobile{
	display: none;
}

.mobile-call-btn .call-btn{
	position: relative;
	bottom: initial;
	right: 0px;
	margin-right: 10px;
	z-index: 200;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: #15d3ff;
	color: #fff;
}

.mobile-call-btn .call-btn i{
	font-size: 20px;
}

/* ---------------------------------------------- /*
 * custom scrollbar
/* ---------------------------------------------- */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
  overflow: hidden;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  overflow: hidden;
}

/* Handle on hover */
/* ---------------------------------------------- /*
 * CONTACT PAGE ===== Contact Form
/* ---------------------------------------------- */
.fa-map-marked-alt, .fa-phone, .fa-fax {
  font-size: 30px;
}

.wpcf7-form-control.wpcf7-text {
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  text-indent: 10px;
  border: 1px solid #aaa;
}

.wpcf7-form-control select {
  width: 100%;
  height: 40px;
  font-size: 16px;
  text-indent: 10px;
}

.wpcf7-textarea {
  width: 100%;
  padding: 10px !important;
  font-size: 16px; /* Safari/Chrome, other WebKit */ /* Firefox, other Gecko */
  box-sizing: border-box;
  border-color: #ccc;
  height: 150px;
  text-indent: 0px !important;
}

.wpcf7-not-valid-tip {
  font-size: 16px !important;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 53px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #000;
  font-weight: 400;
  background-color: #f4f4f4;
  background-image: none;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  text-align: center;
  color: #f00;
  border: none !important;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border: none !important;
}

div.wpcf7-mail-sent-ok {
  text-align: center;
  border: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

.wpcf7-select, .wpcf7-date {
  height: 41px;
  width: 100%;
}

.wpcf7-submit:hover {
  cursor: pointer;
}

::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
  font-family: "Montserrat", serif !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
  font-family: "Montserrat", serif !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ccc;
  font-family: "Montserrat", serif !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #ccc;
  font-family: "Montserrat", serif !important;
}

.contact-form {
  padding: 20px;
}
.contact-form p {
  padding-bottom: 20px;
}

#newsletter-form p {
  display: flex;
  flex-direction: column;
}
#newsletter-form .button {
  max-width: 100%;
}
#newsletter-form .button:hover {
  background: #ffffff;
  color: #1e1e1e;
}

.form-wrap div {
  font-size: 15px;
}

.form-wrap .wpcf7-response-output {
  color: #ffffff;
}

.form-wrap .button:hover {
  background: #ffffff;
  color: #1e1e1e;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 15px;
}
.form-grid p {
  margin-bottom: 0;
}

/* ---------------------------------------------- /*
 * Animation
/* ---------------------------------------------- */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
/* Internet Explorer */
/* ---------------------------------------------- /*
 * Responsive
/* ---------------------------------------------- */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 16px;
  }
  #nav-wrap ul li {
    display: none;
  }
  #nav-wrap ul #nav-icon-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
  }
	
	#nav-wrap ul .mobile-call-btn{
		 display: block;
	}
	
  .form-grid {
    grid-template-columns: 100%;
    grid-gap: 0 15px;
  }
  footer .footer-inner {
    padding: 50px 5%;
  }
  footer .footer-widgets {
    grid-gap: 20px 0;
  }
  footer .copyright-text {
    justify-content: center;
  }

	.mobile{
		display: flex;
	}
	.desktop{
		 display: none;
	 }
}/*# sourceMappingURL=styles.css.map */