/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* #Site Styles
================================================== */
:root {
  --width-base: 1440px;
  --white: #fff;
  --black: #000;
  --black-100: #191a19;
  --red: #db2828;
  --yellow: #fbbd08;
  --green: #21ba45;
  --light-grey: #e3e4e3;
  --mail-red: #ff5555;
  --font-grey: #7d837e;
  --font-red: #ee4545;
  --font-green: #8db52d;
  --font-blue: #2e89e2;
  --weborigin-blue: #2572ce;
  --weborigin-green: #b1d358;
  --base-duration: all 0.3s ease-in-out;
  --font-family-base: "DM Sans", sans-serif;
  --font-family-icon: "icomoon";
  --font-size-base: 18px;
  --line-height-base: 1.8;
  --line-height-heading: 1.2;
  --font-size-h1: 50px;
  --font-size-h2: 40px;
  --font-size-h3: 30px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --w-100: 100%;
  --h-100: 100%;
  --transition: all 0.3s;
}

/* ### general ### */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: #808182;
  line-height: var(--line-height-base);
}
body {
  background: var(--white-color);
}
input,
select,
textarea {
  padding: 10px 20px;
  width: var(--w-100);
  min-height: 60px;
  font-family: var(--font-family-base);
  font-size: 18px;
  border-radius: 0;
  border: 0;
  color: #073a6c;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) ;

}
input::placeholder,
textarea::placeholder {
  color: #073a6c;
}
textarea {
  padding: 20px;
  height: 150px;
  resize: none;
}
select {
  cursor: pointer;
}
img {
  display: block;
  max-width: var(--w-100);
  border: 0;
}
ul,
li {
  list-style: none;
}
:focus {
  outline: none;
}
p {
  margin-bottom: 0;
  color: var(--font-grey);
}
a {
  display: inline-block;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-bold);
  color: #073a6c;
}
h1 {
  font-size: var(--font-size-h1);
}
h2 {
  font-size: var(--font-size-h2);
}
h3 {
  font-size: var(--font-size-h3);
}
h4 {
  font-size: var(--font-size-h4);
}
h5 {
  font-size: var(--font-size-h5);
}
h6 {
  font-size: var(--font-size-h6);
}

/* ### global classes ### */
.clear {
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
}
.center {
  margin: 0 auto;
  position: relative;
  max-width: var(--width-base);
}
.centered {
  padding-right: calc((100% - var(--width-base)) / 2);
  padding-left: calc((100% - var(--width-base)) / 2);
}
.read-more {
  color: #808182;

  text-decoration: underline;
}
.holder {
  display: flex;
  flex-wrap: wrap;
}

/* ### button ### */
.button {
  padding: 20px 25px;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #073a6c;
  background-color: #073a6c;
  transition: all 0.3s;
}
.button-outline {
  border: 1px solid #fff;
  background-color: transparent;
}
.button-outline:hover {
  color: #000;
  background-color: #fff;
}

/* ### wrapper ### */
#wrapper {
  padding-top: 192px;
  position: relative;
  overflow: hidden;
  display: block;
  width: var(--w-100);
  min-height: var(--h-100);
}

/* ### main container ### */
#mainCntr {
  width: var(--w-100);
}
/* ### header container ### */
#headerCntr {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: var(--w-100);
  box-shadow: 0 6px 5px 0 rgba(0,0,0,0.2);
  transition: var(--base-duration);
}
#headerCntr.sticky {
  transform: translateY(-63px);
}
.headerBox::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: '';
}
.headerBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
#headerCntr .logo {
  position: relative;
  z-index: 3;
  max-width: 100px;
  left: -15px;
}
#headerCntr .logo img {
  max-width: 150px;
}

.headerBox {
  padding-top: 15px;
  padding-bottom: 15px;
}
.topBox {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #808182;
}
.topBox .info {
  display: flex;
  flex-wrap: wrap;
}
.topBox .info > li {
  margin-right: 30px;
}
.topBox .info > li:last-child {
  margin-right: 0;
}
.topBox .info > li > a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}
.topBox .info > li > a i {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.topBox .social-media {
  display: flex;
  flex-wrap: wrap;
}
.topBox .social-media > li {
  margin-right: 30px;
}
.topBox .social-media > li:last-child {
  margin-right: 0;
}
.topBox .social-media > li > a {
  color: #fff;
}

/* ### menu box ### */
.menuBox {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
.menuBox ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.menuBox ul > li {
  margin-right: 40px;
  list-style: none;
  transition: 0.3s;
}
.menuBox ul > li > a {
  padding: 5px 0;
  position: relative;
  text-decoration: none;
  color: #808182;
  transition: var(--base-duration);
}
.menuBox ul > li > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #808182;
  transition: var(--base-duration);
  content: '';
}
.menuBox ul > li > a.active, 
.menuBox ul > li:hover > a {
  color: #808182;
}
.menuBox ul > li > a.active::after,
.menuBox ul > li:hover > a::after {
  width: 100%;
}
.menuBox ul > li:last-child {
  margin-right: 0;
  padding-right: 0;
}

/* ### mobileMenu ### */
.mobileMenu {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 15;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(-50%);
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.mobileMenu span {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  text-indent: -9999px;
  border-radius: 0;
  background: #3a3a3b;
  transition: 0.2s;
}
.mobileMenu span:before,
.mobileMenu span:after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background-color: #3a3a3b;
  transition-duration: 0.2s, 0.2s;
  content: "";
}
.mobileMenu span:before {
  top: -6px;
  left: 0;
}
.mobileMenu span:after {
  bottom: -6px;
}
.mobileMenu.active span {
  background: none;
}
.mobileMenu.active span:before,
.mobileMenu.active span:after {
  left: 0;
  transition-delay: 0s, 0.2s;
}
.mobileMenu.active span:before {
  top: 0;
  transform: rotate(45deg);
}
.mobileMenu.active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ### mobile-links ### */
.mobile-links {
  display: none;
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translatey(-50%);  
}

.mobile-links ul > li a{
  font-size: 18px;
  color: #e6492d;
}

/* ### content container ### */
#contentCntr {
  width: 100%;
}

/* ### hero ### */
.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-color: #808182;
  content: '';
}
.hero-text {
  padding-right: 50px;
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-text h1 {
  margin-bottom: 25px;
  color: #fff;
}
.hero-text h1 span {
  font-weight: 400;
}
.hero-text p {
  margin-bottom: 25px;
  color: #fff;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ### hero ### */
.banner {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}
.banner::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-color: #808182;
  content: '';
}
.banner-text {
  padding-right: 50px;
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.banner-text h1 {
  margin-bottom: 25px;
  color: #fff;
}
.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ### text Box ### */
.textBox {
  padding-top: 100px;
}
.textBox .holder {
  align-items: center;
}
.textBox .image {
  padding-right: 40px;
  width: 50%;
}
.textBox .column {
  position: relative;
}
.textBox .column::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #808182;
  content: '';
}
.textBox .image img {
  width: 100%;
  object-fit: cover;
  min-height: 400px;
}
.textBox .content {
  width: 50%;
  max-width: 800px;
}
.textBox h2 {
  margin-bottom: 25px;
  text-align: left !important;
}
.textBox p {
  margin-bottom: 25px;
}
.textBox p:last-child {
  margin-bottom: 0;
}
.textBox.inner .holder {
  flex-direction: row-reverse;
}
.textBox.inner .image {
  padding-right: 0;
  padding-left: 40px;
}

/* ### service ### */
.service {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
}
.service h2 {
  text-align: center;
}
.service .holder {
  margin: 0 -20px;
}
.service .slick-list {
  margin: 0 -20px;
  display: grid;
}
.service-slide {
  padding: 10px 20px;
}
.service-column {
  margin-bottom: 20px;
  padding: 10px 20px;
  width: 33.33%;
}
.service.inner { 
  padding-bottom: 0;
}
.service-dots {
  padding-top: 20px;
  width: 100%;
}
.service-arrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.slick-arrow{
  transition: 0.3s;
}
.slick-arrow:hover {
  background-color: #073a6c;
}
.service-arrow .slick-prev {
  margin-right: 10px;
}
.card-service {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.card-service-image {
  position: relative;
}
.card-service-image::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-color: #808182;
  content: '';
}
.card-service-image img {
  width: 100%;
}
.card-service-content {
  padding: 30px;
}
.card-service-content h6 {
  margin-bottom: 25px;
  font-size: 30px;
  color: #073a6c;
}
.card-service-content p {
  margin-bottom: 25px;
  color: #808182;
}

/* ### about ### */
.about {
  padding-bottom: 100px;
}
.about .holder {
  align-items: center;
}
.about-image {
  padding-left: 40px;
  width: 45%;
}
.about-image .support {
  position: relative;
}
.about-image .support img {
  width: 100%;
}
.about-image .support::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-color: #808182;
  content: '';
}
.about-content {
  width: 55%;
}
.about-content h3 {
  margin-bottom: 30px;
}
.about-content p {
  margin-bottom: 30px;
}
.about-content h5 {
  margin-bottom: 20px;
}
.about-content ul > li {
  display: flex;  
}
.about-content ul > li span {
  width: 150px;  
  display: block;
}
.about-content ul > li em {  
  font-style: normal;
  font-weight: 700;
  color: red;
}

/* ### care ### */
.trusted {
  padding-bottom: 100px;
}
.trusted h2 {
  margin-bottom: 30px;
  text-align: center;
}
.trusted .holder {
  margin: 0 -20px;
}
.trusted-column {
  padding: 0 20px;
  width: 50%;
}
.trusted-image {
  position: relative;
}
.trusted-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #808182;
  content: '';
}
.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trusted-text {
  position: absolute;
  bottom: -28px;
  left: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.trusted-text span {
  padding: 10px 30px;
  background-color: #fff;
  display: inline-block;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

/* ### care ### */
.care {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  background-color: #000;
  text-align: center;
  overflow: hidden;
}
.care .sub-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.care .title {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  max-width: 600px;
  line-height: 1.2;
}
.care-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.care-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #808182;
  content: '';
}
.care-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ### team ### */
.team {
  padding-top: 100px;
  padding-bottom: 100px;
}
.team h2 {
  margin-bottom: 30px;
  text-align: center;
}
.team .slick-list {
  margin: 0 -20px;
}
.team-column {
  padding: 0 20px;
  text-align: center;
}
.team-image {
  margin-bottom: 20px;
}
.team-image img {
  margin: 0 auto;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 6px 5px 0 rgba(0,0,0,0.2);
}
.team-text h6 {
  font-size: 24px;
}
.team-founder {
  margin-bottom: 10px;
  font-weight: 700;
  color: #3a3a3b;
}
.team-text ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-text ul > li {
  margin-right: 15px;
}
.team-text ul > li:last-child {
  margin-right: 0;
}
.team-text ul > li > a {
  color: #000;
  transition: var(--base-duration);
}
.team-text ul > li > a:hover {
  color: #526e91;
}
.team-dots {
  padding-top: 20px;
  width: 100%;
}
.team-arrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.team-arrow .slick-prev {
  margin-right: 10px;
}

/* ### footer container ### */
.need {
  padding-top: 100px;
}
.need .slick-list {
  margin: -20px;
}
.need .slide {
  padding: 10px 20px;
}
.need-dots {
  padding-top: 20px;
  width: 100%;
}
.need-arrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.need-arrow .slick-prev {
  margin-right: 10px;
}
.card-need {
  padding: 30px;
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  border: 1px solid #808182;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.card-need .icon {
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.card-need .icon.blue {
  background-color: #6758f31a;
}
.card-need .icon.green {
  background-color: #37af471a;
}
.card-need .icon.red {
  background-color: #e6492d1a;
}
.card-need .icon img {
  width: 52px;
}
.card-need h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

/* ### department ### */
.department {
  padding-top: 100px;
 padding-bottom: 100px;
}
.department .slide {
  padding: 0 15px;
}
.card-department {
  padding: 30px 15px;
  display: block;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
.card-department .icon svg {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  fill: #fff;
}
.card-department .title {
  font-weight: 700;
}
.card-department.green {
  background-color: #0cb8b6;
}
.card-department.pink {
  background-color: #e6492d;
}
.card-department.light-green {
  background-color: #37af47;
}
.card-department.blue {
  background-color: #1665d8;
}
.card-department.orange {
  background-color: #f6ab2f;
}
.card-department.light {
  background-color: #9ea0a5;
}

/* ### partner container ### */
.partner {
  padding-bottom: 100px;
}
.partner .slide {
  padding: 0 20px;
}
.partner .slide img {
  margin: 0 auto;
  width: 150px;
  height: 150px;
}

/* ### news container ### */
.news {
  padding-top: 100px;
}
.news h2 {
  margin-bottom: 30px;
  text-align: center;
}
.news .holder {
  margin: 0 -20px
}
.news-column {
  margin-bottom: 20px;
  padding: 10px 20px;
  width: 33.33%;
}

.card-news {
  display: block;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) ;
}
.card-news-content {
  padding: 30px;
}
.card-news-content .date {
  margin-bottom: 8px;
}
.card-news-content .title {
  margin-bottom: 15px;
  display: block;
  color: #073a6c;
  font-size: 30px;
  font-weight: 700;
}
.card-news-content p {
  margin-bottom: 15px;
}
.card-news-content p:last-child {
  margin-bottom: 0;
}

/* ### contact container ### */
.contact {
  padding-top: 100px;
}
.contact h2 {
  margin-bottom: 30px;
  text-align: center;
}
.contact .holder {
  margin: 0 -20px;
}
.contact-column {
  padding: 10px 20px;
  width: 50%;
}
.contact-box {
  padding: 50px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) ;
}
.contact-links {
 margin-bottom: 20px;
}
.contact-links > li > a {
 color: #073a6c;
 transition: var(--transition);
}
.contact-links > li > a i {
  margin-right: 10px;
 display: inline-block;
}
.contact-box address {
  margin-bottom: 20px;
 color: #073a6c;
 font-style: normal;
}
.contact-box p {
  color: #073a6c;
}
.contact-box h3 {
  margin-bottom: 30px;
}
.contact-box-field {
  margin-bottom: 20px;
}
.contact-box-submit .button {
  width: 100%;
}

/* ### location box ### */
.locationBox iframe {
  width: 100%;
  height: 600px;
}

/* ### footer ### */
.footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #808182;
}
.footer .holder {
  margin: 0 -20px;
}
.footer-column {
  padding: 0 20px;
  width: 25%;
}
.footer-title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.footer-links > li > a {
  color: #fff;
  transition: var(--base-duration);
}
.footer-links > li > a:hover {
  color: #000;
}
.footer .location {
  margin-bottom: 20px;
}
.footer .location:last-child {
  margin-bottom: 0;
}
.footer .location strong {
  display: block;
  font-size: 20px;
  color: #fff;
}
.footer .location address {
  color: #fff;
  font-style: normal;
}
.footer .location ul > li {
  color: rgba(255,255,255,0.6);
}
.footer .location ul > li > a {
  color: #fff;
  transition: var(--base-duration);
}
.footer .location ul > li > a:hover {
  color: #526e91;
}
.footer-column p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
}
.footer-social-media {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footer-social-media > li {
  margin-right: 15px;
}
.footer-social-media > li:last-child {
  margin-right: 0;
}
.footer-social-media > li > a {
  color: #fff;
  transition: var(--base-duration);
}
.footer-social-media > li > a:hover {
  color: #000;
}
.footer-column .button {
  padding: 10px 35px;
}

.copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
.copyright .holder {
  justify-content: space-between;
}
.copyright p {
  margin-bottom: 0;
}
.copyright a {
  color: #808182;
  transition: var(--transition);
}
.copyright a:hover {
  color: #073a6c;
}

.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  color: #fff;
  background-color: #808182;
}
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.slick-dots > li {
  margin-right: 15px
}
.slick-dots > li:last-child {
  margin-right: 0;
}
.slick-dots > li.slick-active button {
  background-color: #808182;
}
.slick-dots > li button {
  width: 15px;
  height: 15px;
  border: 2px solid #808182;
  font-size: 0;
  border-radius: 25px;
  background-color: transparent;
}

.fixed-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: #25d366;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

/* #Media Queries
================================================== */
@media only screen and (max-width: 1440px) {
  .centered {
    padding-right: 20px;
    padding-left: 20px;
  }
 .menuBox ul > li {
    margin-right: 25px;
  }
  .menuBox ul > li > a {
    font-size: 18px;
  }
  .btn-primary {
    font-size: 20px;
    width: 180px;
  }

  .footerBox .wrap {
    padding-top: 30px;
  }
  .footerBox .wrap .left .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footerBox .wrap .right {
    padding-left: 20px;
  }

  .footerBox p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .service-nav {
    display: flex;
  }
  .service-column {
    width: 50%;
  }
  
  .about .holder {
    align-items: unset;
  }
  .team {
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .team-nav {
    display: flex;
  }
  .care {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .news-column {
    width: 50%;
  }
  .locationBox iframe {
    height: 500px;
  }
  .contact-box {
    padding: 40px 30px;
  }
  .footer-column {
    margin-bottom: 30px;
    width: 50%;
  }
  
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 18px;
  }

  #wrapper {
    padding-top: 150px;
  }
  #headerCntr.sticky {
  transform: translateY(-53px);
  }
  #headerCntr .headerBox {
    display: block;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .topBox {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #headerCntr .logo img {
    max-width: 100px;
  }
  
  .topBox .info > li > a span {
    display: none;
  }
  
  .mobileMenu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-links {
    display: block;  
  }
  .menuBox {
    padding: 140px 20px 30px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    flex-wrap: unset;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    overflow-y: scroll;
    background-color: var(--white);
    height: 100vh;
    transition: all 0.3s;
  }
  .menuBox.active {
    opacity: 1;
    visibility: visible;
  }
  .menuBox ul {
    display: block;
    width: 100%;
  }
  .menuBox ul > li {
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 0;
    display: block;
    width: 100%;
  }

  .menuBox ul > li > a.mob {
    display: block;
  }
  .menuBox ul.nav-items {
    padding-top: 0;
  }
  .menuBox ul > li > ul {
    padding: 0;
    position: relative;
    width: 100%;
    transition: unset;
    display: none;
  }
  .menuBox ul > li > ul > li {
    padding: 0;
  }
  .menuBox .button {
    padding-left: 0;
    padding-top: 10px;
  }
  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .banner {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .textBox {
    padding-top: 70px;
  }
  .textBox .image {
    margin-bottom: 40px;
    padding-right: 0;
    width: 100%;
  }
  .textBox .image img {
    min-height: 250px;
  }
  .textBox.inner .image {
    padding-left: 0;
  }
  
  .textBox .content {
    width: 100%;
  }
  .textBox h2 {
    margin-bottom: 25px;
  }
  .service {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .service-column {
    width:1050%;
  }
.about {
    padding-bottom: 70px;
  }
  .about-image {
    order: 1;
    margin-bottom: 40px;
    padding-left: 0;
    width: 100%;
  }
  .about-content {
    order: 2;
    width: 100%;
  }
  .trusted-column {
    margin-bottom: 60px;
    width: 100%;
  }
  .trusted-column:last-child {
    margin-bottom: 0;
  }
  .trusted-image img {
    min-height: 200px;
  }
  .care {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .care .title {
    font-size: 40px;
  }
  .locationBox iframe {
    height: 300px;
  }
  .need {
    padding-top: 70px;
  }
  .department {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .card-department {
    padding: 20px 15px;
    font-size: 16px;
  }
  .news-column {
    width: 100%;
  }
  .contact {
    padding-top: 80px;
  }
  .contact-column {
    margin-bottom: 40px;
    width: 100%;
  }
  .contact-column:last-child {
    margin-bottom: 0;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-column {
    width: 100%;
  }
  .footer-column:last-child {
    margin-bottom: 0;
  }
  .copyright  {
    font-size: 14px;
  }
  .copyright p {
    font-size: 14px;
  }
  .fixed-whatsapp {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  } 
}

@media only screen and (max-width: 768px) {
  .hero-text {
    padding-right: 10px;
  }
}
