@font-face {
  font-family: "socialico";
  src: url("fonts/socialico-webfont.woff2") format("woff2"),
    url("fonts/socialico-webfont.woff") format("woff");
}
@font-face {
  font-family: "Aero";
  src: url("fonts/Aero.ttf") format("truetype"),
     url("fonts/Aero.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

.suspension-contain {
  max-height: 980px;
  overflow: hidden;
  position: relative;
}
html.suspended {
  background: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
/*html{overflow-x: hidden;}*/
body {
  max-width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  color: #1f1f2d;
  font-size: 18px;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all ease-out 0.3s;
  word-break: break-all;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 20px;
  line-height: 120%;
  font-family: "Aero";
  font-weight: 400;
  color: #ff0000;
}
h2 span {
  color: #1f1f2d;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 52px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 32px;
}
h5 {
  font-size: 26px;
}
h6 {
  font-size: 20px;
}
ul {
  padding-left: 25px;
  margin-top: 0;
}
p {
  margin: 0 0 20px;
  line-height: 120%;
}
.row {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}

/*button*/
.btn {
  display: flex;
  min-width: 245px;
  min-height: 55px;
  border: 0;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  transition: all ease 0.3s;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  background: #ff0000;
  padding: 10px 30px;
  border-radius: 55px;
  font-family: "Montserrat", sans-serif;
  max-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn:hover {
  background: #1f1f2d;
}

/*image*/
img {
  display: block;
  max-width: 100%;
}
.img-responsive {
  width: 100%;
}

/*floats*/
.fl {
  float: left;
}
.fr {
  float: right;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
}

/*typography*/
.text-primary {
  color: #ff0000;
}
.text-bold {
  font-weight: 700;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/*clearings*/
.clear {
  clear: both;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}
.clearfix {
  display: block;
}

/*cookie*/
.cc-animate.cc-revoke.cc-bottom {
  font-size: 14px;
  padding: 5px 10px;
  position: fixed;
  display: block !important;
  transform: none !important;
  bottom: 0 !important;
  left: 20px !important;
}

/*call to action*/
.destroy-on-load,
.cta {
  display: none;
}

/*contact form messages*/
form .messages p {
  display: none;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  font-size: 16px !important;
}
form .loading {
  display: none;
}
form .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
form .alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
form .alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
form [type="submit"] {
  margin: 0 auto;
}
/*.home form [type="submit"]{margin: 0 auto;}*/

/*gallery*/
#content .gallery-container {
  text-align: center;
}
#content .gallery {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#content .gallery li {
  display: inline-block;
}
#content .thumbnail {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
  line-height: 0.42857;
  margin-bottom: 20px;
  padding: 4px;
  transition: border 0.5s ease-in-out 0s;
}
#content .thumbnail img {
  height: 225px;
  width: 225px;
  object-fit: cover;
}
#content .thumbnail:hover {
  transform: scale(1.02);
}
#content .page_navigation {
  display: inline-block;
}
#content .page_link,
#content .previous_link,
#content .next_link,
#content .first_link,
#content .last_link,
#content .ellipse {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #0275d8;
  display: inline-block;
  line-height: 1.25;
  margin-left: -1px;
  padding: 0.5rem 0.75rem;
  position: relative;
}
#content .page_navigation > a:hover,
.page_navigation > a.active_page {
  background-color: #eceeef;
  border-color: #ddd;
  color: #014c8c;
  text-decoration: none;
}

/*header*/
#header {
  padding-top: 20px;
  background: url("../images/common/hd-bg.png") center center no-repeat;
  background-size: cover;
  min-height: 1032px;
  color: #fff;
  position: relative;
}
#header .row {
  max-width: 1800px;
}
#header .top {
  margin-bottom: 50px;
}
#header .content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
#header .more {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 1065px;
  max-width: 100%;
  align-items: flex-start;
  align-items: center;
}
#header .bot .txt {
  width: 650px;
  max-width: 100%;
  margin: 0 0 0 80px;
}
#header .bot h2 {
  line-height: 105%;
  font-size: 71px;
  color: #fff;
  margin-bottom: 10px;
}
#header .bot p {
  font-size: 19px;
  font-weight: 600;
  line-height: 173%;
  font-family: "Poppins", sans-serif;
  margin-bottom: 50px;
}
#header nav {
  width: 720px;
  max-width: 100%;
  margin: 0 auto;
}
#header nav a#pull {
  display: none;
}
#header ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}
#header ul li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #333;
  display: block;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
#header ul li:hover a,
#header ul li.active-menu a {
  color: #ff0000;
}
#header .head-contact {
  margin: 45px 0 0 0;
}
#header .head-contact p {
  line-height: 0.1px;
}

/*banner*/
.header-social {
  display: flex;
  gap: 20px;
}
.header-social img {
  width: 35px;
}

/*content*/
#welcome {
  padding: 200px 0 120px;
  background: url("../images/common/wc-bg.png") top left no-repeat;
  margin-top: -52px;
}
#welcome .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 70px;
}
#welcome .txt {
  width: 660px;
  max-width: 100%;
  margin-right: -35px;
}
#welcome .img {
  margin-left: 60px;
}
#welcome h2 {
  margin-bottom: 0;
}
#welcome strong {
  font-size: 19px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#welcome p {
  line-height: 189%;
  letter-spacing: 0.028em;
  margin: 20px 0 30px;
}
#welcome .items {
  max-width: 1320px;
  margin: 0 auto;
}
#welcome .slick-next:before {
  content: url("../images/common/right.png");
}
#welcome .slick-prev:before {
  content: url("../images/common/left.png");
}
#welcome .slick-prev:before,
#welcome .slick-next:before {
  font-size: 0;
  opacity: 1;
}
#welcome .slick-prev,
#welcome .slick-next {
  height: 37px;
  width: 37px;
  z-index: 1;
}
#welcome .slick-prev {
  left: -15px;
}
#welcome .slick-next {
  right: -15px;
}
#welcome .slick-slide img {
  margin: 0 auto;
}
#welcome .items .item h2 {
  color: #fff;
  position: relative;
  top: -115px;
  text-align: center;
  font-size: 40px;
}

#services {
  padding: 180px 0 40px;
  background: url("../images/common/sv-bg.png") center center no-repeat;
  color: #fff;
  min-height: 1034px;
  position: relative;
}
#services .txt {
  width: 770px;
  max-width: 100%;
}
#services h2 span {
  color: #fff;
}
#services ul {
  column-count: 2;
  font-size: 18px;
  font-weight: 700;
  line-height: 217%;
  letter-spacing: 0.16em;
  margin-bottom: 40px;
}
#services p {
  /* font-size: 14px; font-weight: 600; */
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
}

#services p a {
  font-size: 32px;
  font-weight: 400;
  font-family: "Aero";
  color: #ff0000;
}
#services p.sv-btn {
  display: flex;
  min-height: 55px;
  border: 0;
  font-weight: 800;
  font-size: 15px;
  color: #000;
  transition: all ease 0.3s;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  background: #f9f9f9;
  padding: 10px 30px;
  border-radius: 55px;
  font-family: "Montserrat", sans-serif;
  max-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#testimonials {
  padding: 255px 0 40px;
  background: url("../images/common/tt-bg.png") top left no-repeat;
  margin-top: -65px;
  min-height: 1055px;
}
#testimonials h2 {
  margin: 30px 0 40px;
}
#testimonials .name {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 700;
}
#testimonials .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
#testimonials .txt {
  width: 730px;
  max-width: 100%;
  margin: 0 0 0 auto;
}
#testimonials .txt p {
  line-height: 200%;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
}
#testimonials .txt p:last-of-type {
  margin: 0;
}
#testimonials .slick-next:before {
  content: url("../images/common/right.png");
}
#testimonials .slick-prev:before {
  content: url("../images/common/left.png");
}
#testimonials .slick-prev:before,
#testimonials .slick-next:before {
  font-size: 0;
  opacity: 1;
}
#testimonials .slick-prev,
#testimonials .slick-next {
  height: 37px;
  width: 37px;
  z-index: 1;
  top: initial;
  bottom: -76px;
}
#testimonials .slick-prev {
  left: 0;
}
#testimonials .slick-next {
  left: 57px;
}

#gallery {
  background: url("../images/common/g-bg.jpg") center bottom no-repeat;
  background-size: cover;
  margin-top: -60px;
}
#gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}
#gallery .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
#gallery .items {
  margin-bottom: 40px;
}
#gallery .items img {
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
  height: 645px;
  width: 1200px;
}
#gallery .slider-nav img {
  height: 164px;
  width: 164px;
  object-fit: cover;
}
#gallery .slider-nav .item {
  margin: 0 5px;
}
#gallery .slick-next:before {
  content: url("../images/common/right.png");
}
#gallery .slick-prev:before {
  content: url("../images/common/left.png");
}
#gallery .slick-prev:before,
#gallery .slick-next:before {
  font-size: 0;
  opacity: 1;
}
#gallery .slick-prev,
#gallery .slick-next {
  height: 37px;
  width: 37px;
  z-index: 1;
}
#gallery .slick-prev {
  left: 0;
}
#gallery .slick-next {
  right: 0;
}

#about {
  padding: 235px 0 0;
  background: url("../images/common/ab-bg.png") center right no-repeat;
  min-height: 915px;
  margin-top: -110px;
}
#about .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#about h2 {
  font-size: 64px;
  line-height: 117%;
  padding-left: 40px;
}
#about h2 span {
  display: block;
  margin-left: -40px;
}
#about .desc {
  font-family: "Poppins", sans-serif;
  line-height: 173%;
  margin: 0 0 30px 90px;
  max-width: 530px;
  font-size: 19px;
  font-weight: 600;
}
#about p {
  font-size: 14px;
  margin-left: 140px;
  font-weight: 600;
}
#about p:nth-of-type(2) a {
  font-size: 32px;
  font-weight: 400;
  font-family: "Aero";
  color: #ff0000;
}
#about p:nth-of-type(3) {
  margin-left: 160px;
}

/*form*/
.ctc-form {
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.ctc-form input[type="text"],
.ctc-form textarea {
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  height: 45px;
  display: block;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 0 0 10px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  color: #000;
  background: #f6f6f6;
}
.ctc-form input[type="text"],
.ctc-form textarea {
  border: 1px solid #333;
}
.ctc-form label {
  height: auto;
}
.ctc-form textarea {
  height: 180px;
  padding-top: 10px;
  width: 100%;
}
.ctc-form ::placeholder {
  color: #000;
}
.ctc-form .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.ctc-form .flex label {
  width: 100%;
}
.ctc-form span {
  display: none;
}
.ctc-form label {
  font-size: 0;
}
.ctc-form .recap {
  display: inline-block;
}
.ctc-form .flex .captcha {
  width: auto;
}
.ctc-form .g-recaptcha {
  padding: 0;
}
.ctc-form .g-recaptcha div {
  line-height: 0;
  margin: 0 auto;
}
.ctc-form .ctc-hide {
  display: none;
}
.ctc-form .cap {
  margin-bottom: 10px;
}
.ctc-form .consent {
  margin: 10px 0;
  font-size: 16px;
}
.ctc-form .btn {
  margin: 10px auto 0;
  min-width: 220px;
}

/*footer*/
.inner #footer {
  margin-top: 125px;
}
#footer {
  padding: 0 0 35px;
  background: url("../images/common/ft-bg.jpg") top 125px center no-repeat;
  background-size: cover;
  margin-top: -125px;
  color: #fff;
}
#footer .row {
  max-width: 1280px;
}
#footer .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
#footer .info .item {
  width: 330px;
  max-width: 100%;
  font-weight: 600;
  font-size: 19px;
}
#footer .info .item span {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
}
#footer .info .item > .in:first-of-type {
  margin-bottom: 50px;
}
#footer .info .item:first-of-type .in:first-of-type a {
  font-size: 22px;
  font-weight: 700;
}
#footer .form {
  background: #fff;
  min-height: 535px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #333;
  margin: 0 auto 50px;
  border-radius: 0;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.15);
}
#footer .form .in {
  width: 1045px;
  max-width: 100%;
}
#footer .form h2 {
  margin-bottom: 0;
}
#footer .form p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
#footer .form .consent {
  text-align: left;
}
#footer .form form .flex {
  justify-content: space-between;
}
#footer nav {
  width: 650px;
  max-width: 100%;
  margin: 60px auto 30px;
}
#footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0 auto 40px;
}
#footer ul li a {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}
#footer ul li:hover a,
#footer ul li.active-menu a {
  color: #ff0000;
}
#footer .social {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 70px;
}
#footer .copy {
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 500;
}
#footer .copy img {
  vertical-align: middle;
  display: inline-block;
  height: 25px;
  margin-left: 5px;
}
#footer .sched ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}
#footer .map {
  margin-top: -40px;
}
#footer .info .item:last-child {
  width: 330px;
  max-width: 100%;
  font-weight: 600;
  font-size: 16px;
}

/*inner pages*/
.inner #content {
  min-height: 300px;
  padding: 60px 0;
  text-align: center;
}
.inner #content .row {
  max-width: 1230px;
  margin: 0 auto;
}
.inner #content ul li {
  text-align: left;
}
.inner #content h1 {
  padding: 0;
  margin: 0 0 20px;
  line-height: 120%;
  text-transform: uppercase;
}
.inner #content h2 {
  padding: 0;
  margin: 0 0 20px;
  line-height: 120%;
}
.inner #content h3 {
  padding: 0;
  margin: 0 0 20px;
  line-height: 120%;
}
.inner #content p {
  text-align: left;
}
.inner .test .item {
  border-radius: 0;
  background: #fff;
  color: #000;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  border-top: 5px solid #333;
}
.inner .test .item:not(:last-of-type) {
  margin-bottom: 20px;
}
.inner .test h2 {
  margin-bottom: 40px;
  color: #333;
}
.inner .test span {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}
.inner .test p {
  font-style: italic;
  line-height: 32px;
  letter-spacing: 0.03em;
}
.inner .svc .item {
  border-radius: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  border-top: 5px solid #333;
}
.inner .svc .item:not(:last-of-type) {
  margin-bottom: 20px;
}
.inner .svc h2 {
  margin-bottom: 40px;
  color: #333;
}
.inner .svc span {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}
.inner .svc p:last-of-type {
  margin: 0;
}
.inner .google {
  margin: 0 auto 20px;
  display: block;
}

.inner #services table {
  display: contents;
}
.inner #services table th {
  padding: 15px 0 0 0;
}

#contact-detail {
  font-weight: 700;
  margin: 40px 200px -165px;
}
#contact-detail .detail-item {
  justify-content: flex-start;
}
#contact-detail .in {
  text-align: left;
}
#contact-detail .detail-item .sched ul {
  list-style: none;
  line-height: 2em;
}

table tr th {
  width: 100%;
  text-align: left;
}
table tr td {
  width: 100%;
  text-align: left;
  line-height: 1.5em;
  white-space: nowrap ;
}


/*privacy policy*/
.inPrivacyBox {
  max-width: 850px;
  margin: 0 auto 20px;
}
.inPrivacyBox p {
  text-align: justify !important;
}

.flexbox {
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
  row-gap: 20px;
  justify-content: center;
}
.flexbox .item {
  max-width: 50%;
}
.flexbox img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  margin: 0 auto 20px;
}
.flexbox .btn {
  margin: 0 auto;
}

.m-a {
  margin: 0 auto;
}
.r-i {
  margin: 0 auto 20px;
}
.mobile {
  display: none;
}

.svc-list {
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.svc-list > div {
  width: 590px;
  max-width: 100%;
}
.inner #content .svc-item h3 {
  padding: 10px 0;
  background-color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.svc-item ul {
  padding: 0;
  margin: 20px 0 !important;
  list-style: none;
}
.svc-content {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
  min-height: 275px;
}
.svc-content p:last-of-type {
  margin: 0;
}

.services-page #header {
  padding-top: 20px;
  background: url(../images/common/hd-bg.png) center center no-repeat;
  background-color: #000;
  background-size: cover;
  min-height: 1032px;
  color: #fff;
  position: relative;
  margin-bottom: -15px;
}

.services-page #services {
  padding: 180px 0 125px;
  margin-bottom: -252px;
  background: url(../images/common/sv-bg.png) center center no-repeat;
  background-color: #000;
  color: #fff;
  min-height: 1034px;
  position: relative;
}
/* tbody>tr>:nth-child(2) {
  color: red;
  width: 200px;
  text-align: center;
} */

/** Responsive
-------------------------------------------------------*/
@media screen and (max-width: 1600px) {
  /* temporary // you can remove this  */
  .btn {
    font-size: 10px;
  }
  /* #services {
    background: url(../images/common/sv-bg.png) center center no-repeat;
    background-size: 100% 100%;
  } */
    #services {
      padding: 180px 0 40px;
      background: url(../images/common/sv-bg.png) center center no-repeat;
      color: #fff;
      min-height: 1034px;
      position: relative;
    }
        #services ul {
          column-count: 2;
          font-size: 18px;
          font-weight: 700;
          line-height: 217%;
          letter-spacing: 0.16em;
          margin-bottom: 40px;
          background: #00000026;
        }
  #welcome .txt {
    width: 660px;
    max-width: 100%;
    margin-right: 0;
  }
    .services-page #services {
      padding: 180px 0 125px;
      margin-bottom: -252px;
      background: url(../images/common/sv-bg.png) right no-repeat;
      background-color: #000;
      color: #fff;
      min-height: 1034px;
      position: relative;
    }
         .services-page .row {
          max-width: 1420px;
          margin: 0 auto;
          padding: 0 10px;
          width: 100%;
          background: #00000026;
        }
}
@media screen and (max-width: 1024px){
	body {min-width: 320px}
	.row {width: 100%}

  .inner #services table {
    display: unset;
  }
}
@media screen and (max-width: 1199px){
  h1,h2,h3,h4,h5,h6{text-align: center !important; letter-spacing: initial !important; margin-bottom: 20px !important; line-height: 120% !important;}
  h1 span,h2 span{letter-spacing: initial !important;}
  h1 small,h2 small{letter-spacing: initial !important;}
  small{text-align: center; display: block;}
  .btn{margin: 0 auto !important;}
  p{letter-spacing: initial !important; line-height: 150% !important;}
  a{word-break: break-word;}
  .desktop{display: none;}
  .mobile{display: block;}
  .btn{margin-left: auto; margin-right: auto;}
  .btns{flex-wrap: wrap; justify-content: center !important; align-items: center !important; margin: 0 auto;}
  .btns .btn{margin: 0 !important;}
  .ctc-form .flex{flex-wrap: wrap; gap: 0;}
  .inner #content{padding: 40px 0;}
  .btn{margin: 0 auto;}
  #header {padding: 60px 15px 20px; position: relative; z-index:999;}
  #header .row{flex-wrap: wrap; padding: 0;}
  #header nav {display: block;height: auto;position: fixed;width: 100%;top: 0;box-shadow: 0 0 5px rgb(0 0 0 / 70%); left: 0; margin: 0;}
  #header nav ul {  display: none; height: auto;border-bottom:5px solid #333; margin: 0; width: 100%; border-radius: 0; background: #111;}
  #header nav ul li { width: 100%;position: relative; }
  #header nav ul li a {float:none; padding: 10px 20px; border-radius: 0; width: 100%; display: block; color: #FFF; height: auto; min-height: auto; text-align: left; background: none; line-height: initial;}
  #header ul li:hover a, #header ul li.active-menu a{background: none;  height: auto;}
  #header nav a {text-align: left; width: 100%;}
  #header nav a strong {position: absolute; top: 50%; transform: translateY(-50%); left: 15px;}
  #header nav a#pull {display: block; color: #fff;height: 40px;padding: 10px 15px; width: 100%; position: relative; font-size: 20px; line-height: 1; z-index: 999;}
  #header nav a#pull:after { content:""; background: url('../images/nav-icon.png') no-repeat; width: 20px; height: 20px; display: inline-block; position: absolute; right: 15px; top: 50%; transform: translateY(-50%);}
  .cta{box-shadow: 0 0 5px #000; background: #333  url("../images/common/phonecall.png") no-repeat center center;border-bottom-left-radius: 40px;border-top-left-radius: 40px;bottom: 1%;display: block;height: 80px;position: fixed;right: 0;text-decoration: none; text-indent: -9999em;width: 100px;z-index: 999;}
  .content{justify-content: center !important; align-items: center !important; flex-wrap: wrap; gap: 20px !important;}
  #about, #reviews, #footer, #welcome, #services{padding: 40px 0; margin: 0; min-height: auto;}
  p{text-align: center;}
  #footer{margin: 0; padding: 40px 0 20px; background-position: center center;}
  #footer nav{display: none;}
  #footer .deets{margin: 0;}
  #footer .top{padding: 0 0 20px;}
  #footer .item .logo img{margin: 0 auto 20px;}
  #footer .form{margin: 0 auto 20px; min-height: auto;}
  #map iframe{height: 300px;}
  #about{margin: 0;}
  #about .box:before{display: none;}
  #banner{min-height: auto; padding: 40px 0;}
  #header ul li:after, #header ul li:not(:last-of-type):before{display: none;}
  #footer .bot .content ul, #footer .content{flex-direction: column;}
  #welcome .btns{gap: 10px;}
  #header .bot .txt{width: unset; margin: 0;}
  #header .bot h2{font-size: 32px;}
  #header .top{margin-bottom: 30px;}
  #header .bot p{margin-bottom:10px;}
  #header .head-contact{margin-top: 10px;}
  .header-social {justify-content: center; padding-top: 10px;}
  #header{min-height: 100%; padding-bottom: 60px;}
  img[alt~="logo"] {
   width: 300px;
}
img[alt~="welcome"] {
  width: 300px;
  margin: auto;
}
#welcome .txt{
  width: 100%;
  text-align: center;
}
#services .txt{width: unset;}
#services p.sv-btn {
  margin: auto;
}
#testimonials{
  padding: 70px 0;
  margin: 0;
  min-height: 100%;
}
#gallery{
  margin: 0;
}
#testimonials .txt{
  width: 100%;
}
.txt{
  background: black;
  padding: 20px;
  border-radius: 20px;
  -moz-box-shadow: 10px 10px 5px 0px rgba(255,255,255,0.75);
  box-shadow: 0px 0px 10px 2px rgba(255,255,255,0.75);
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255,255,255,0.75);
  -moz-box-shadow: 0px 0px 10px 2px rgba(255,255,255,0.75);
}


#testimonials{
  background: unset;
}
#testimonials img{
  margin: auto;
}
#testimonials .name{
  flex-direction: column;
}
/* #testimonials .slick-prev, #testimonials .slick-next{
  position: unset;
} */
#header{
  background-size: unset;
}
#welcome{
  background: unset;
  background-image: url('../images/content/automobbg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
#welcome span{
  color: white;
}
#welcome p{
  color: white;
}
#welcome strong{
  color: white;
}
#testimonials{
  background-image: url('../images/content/armz.jpg');
  background-size: cover;
  background-repeat: no-repeat;

}
#testimonials span{
  color: white;
}
#testimonials .name{
  color: white;
}
#testimonials p{
  color: white;
}
#about h2{
  font-size: 32px;
  padding: unset;
}
#about h2 span{
  color: white;
  margin: unset;
}
#about p{
  color: white;
  margin: unset;
  padding: unset;
}
#about .desc{
  max-width: 100%;
  margin: unset;
}
#about p:nth-of-type(3){
  margin: unset;

}
#header nav{
  background-color: #000;
}

}


@media screen and (max-width: 425px){
  #footer .info .item{
    width: 100%;
    text-align: center;
  }
  #footer .info .item:last-child{
    width: 100%;
    text-align: center;
  }
  #footer .social{
    margin: auto;
    padding:20px 0;
  }
  #footer .info{
    display: unset;
  }
  #welcome .img{
    margin: auto;
  }
  #services ul{
    column-count: 1;
    text-align: center;
  }
  #services{
    background: unset;
  }
  swiper-container{
    display: unset !important;
  }
  #gallery .items{
    display: none;
  }
  #gallery .slider-nav{
    display: none;
  }
  swiper-container img{
    margin: auto;
  }
h2{
  font-size: 32px;
}
p{
  font-size: 18px !important;
}
li{
  font-size: 16px;
}
#about p:nth-of-type(2) a {
  font-size: 18px;
}
table tr td {
font-size: 13px;

}


}

@media screen and (max-width: 320px){
  .ctc-form .g-recaptcha>div{
    margin-left: -20px;
  }
}

swiper-container{
  display: none;
}