/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');

:root {
  --theme-color: #000;
  --theme-color-second: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 14px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 14px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 41px;
}

h3 {}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* navbar */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #2a6da3;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #fe8a02;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    overflow: hidden;
    color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Small Header */
.small {
  display: none;
}

/* Main Header */
.header_menu {
  background: #fff;
  color: #000;
}

a.navbar-brand img {
  width: 130px;
}

.header_menu li a {
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    padding: 29px 9px;
    display: inline-block;
    letter-spacing: 1px;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
}

a.comon-btn {
  background: #ffffff;
  color: #000;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 200px;
  text-align: center;
}

a.comon-btn:hover {
  background: #121212;
  color: #fff;
}

a.comon-btn2 {
  background: #2a6da3;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 0px;
  border-radius: 45px;
  width: 195px;
  justify-content: center;
  display: flex;
  gap: 7px;
  align-items: center;
  text-transform: uppercase;
}

a.comon-btn2:hover {
  background: #121212;
  color: #fff;
}

a.comon-btn2 img {
  width: 25px;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

/* Banner Section  */
.banner_sec {
  padding: 80px 0 40px;
}

.banner_sec .banner_heading h1 b {
  font-size: 98px;
  font-weight: 700;
}

.banner_sec .banner_heading h1 {
  margin-bottom: 4px;
}

.banner_sec .banner_heading p {
  margin-bottom: 12px;
}

.banner_sec .btom_content img {
  width: 195px;
  margin-top: 135px;
}

/* Home Section 1 */
a.comon-btn3 {
  background: #2a6da3;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0px;
  border-radius: 45px;
  width: 195px;
  justify-content: center;
  display: flex;
  gap: 7px;
  align-items: center;
  text-transform: uppercase;
}

a.comon-btn3:hover {
  background: #121212;
  color: #fff;
}

/* About Section */
.about_sec p {
  font-size: 15px;
}

/* Home SEction 2 */
.home_sec2 {
  padding: 95px 0 115px;
}

/* Services Section */
.services_sec .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.services_sec .content {
  background: #fff;
  padding: 13px;
  border-radius: 8px;
}

.services_sec .content img {
  margin-bottom: 22px;
}

.services_sec h5 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 1.4;
}

.services_sec .content p {
  color: #515151;
  margin-bottom: 15px;
}

.services_sec .btom_content a.comon-btn2 {
  background: #0f3451;
  color: #fff;
}

.services_sec .btom_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Home Section 6 */
.Why_choose_sec .heading ul li {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 28px;
}

.Why_choose_sec .heading ul li h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.Why_choose_sec .btom_content_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Why_choose_sec a.comon-btn {
  background: #172836;
  color: #fff;
}

.Why_choose_sec a.comon-btn:hover {
  background: #000;
  color: #fff;
}

.Why_choose_sec .heading ul li img {
  width: 42px;
}

.Why_choose_sec .left_content .top_img {
  position: absolute;
  top: -45px;
  left: -45px;
}

.Why_choose_sec .left_content .top_img img {
  width: 200px;
}

/* HOme SEction 3 */
.home_sec3 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_sec3 .heading h2 {
  font-size: 48px;
  line-height: 1;
}

.home_sec3 img {
  width: 175px;
}

.home_sec3 {
  padding: 480px 0 40px;
}

/* faq-content */


.faq-contact .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-contact .get-intouch {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 24px;
  border: 1px solid #000;
  margin: 0 55px;
}

.faq-contact .get-intouch input {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
}

.faq-contact .get-intouch textarea {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
}

.faq-contact .get-intouch button {
  background-color: #001a32;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: none;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  border-bottom: 1px solid #000;
  border-radius: 0 !important;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
}

.accordion-body {
  padding: 0;
  padding-top: 15px;
}

.faq-contact .accordion-item p {
  margin-bottom: 0;
}

/* testimonial_sec */

.testimonial_sec .review {
  background-color: #fff;
  border-radius: 5px;
  padding: 48px 22px 25px;
  margin: 3px;
  box-shadow: rgba(100, 100, 111, 0.27) 0px 0 11px 0px;
  /* box-shadow: 0px 0px 8px #6c6c6c4f; */
  /* border: 1px solid #c00101; */
  position: relative;
  z-index: 111111 !important;
  margin-top: 10px;
}

.testimonial_sec .review .review_box {
  margin-bottom: 20px;
}

.testimonial_sec .review .review_box h6 {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 19px;
  color: #000;
}

.testimonial_sec .review .quote {
  display: flex;
}

.testimonial_sec .review img {
  width: 40px !important;
  margin-bottom: 20px;
  margin-left: 30px;
}

.testimonial_sec .review .review_box ul {
  display: flex;
}

.testimonial_sec .review li i {
  color: #ffe234;
  font-size: 16px;
}

.testimonial_sec .testimonial_slider .owl-stage {
  padding: 10px 0;
  position: relative;
}

.testimonial_sec .testimonial_slider .owl-nav img {
  width: 20px !important;
  height: 50px !important;
}

.testimonial_sec .testimonial_slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial_sec .testimonial_slider .owl-next {
  right: -30px;
}

.testimonial_sec .testimonial_slider .owl-prev {
  left: -30px;
}

.testimonial_sec .review .top_img img {
  position: absolute;
  left: -10px;
  top: -20px;
  z-index: 1111;
  width: 45px !important;
}

.testimonial_sec .btom_content img {
  width: 130px;
  margin-bottom: 12px;
}

/* Contact Us */
.home_sec5 form input {
  width: 100%;
  outline: none;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 12px 13px;
  font-size: 14px;
  color: #000000c2;
  font-weight: 400;
  background: #fff;
}

.home_sec5 form textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ebede9;
  border-radius: 6px;
  padding: 13px;
  font-size: 15px;
  color: #000000c2;
  font-weight: 400;
  background: #ebede9;
}

.home_sec5 form select {
  width: 100%;
  outline: none;
  border: 1px solid #000000d6;
  border-radius: 6px;
  padding: 14px 13px;
  font-size: 15px;
  color: #000000c2;
  font-weight: 400;
  opacity: 0.6;
}

.home_sec5 form .form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.home_sec5 form button {
  background: #2a6da3;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 14px 0px;
  border-radius: 50px;
  font-weight: 300;
  border: none;
  transition: 0.8s;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0;
}

.home_sec5 form button:hover {
  background: #121212;
  color: #fff;
}

/* blog-sec */

.blog-sec .blog-box a p span {
  color: #5d7970;
  font-size: 21px;
  margin-right: 6px;
}

.blog-sec .blog-box a p {
  color: #505050;
  font-size: 14px;
}

.blog-sec .blog-box img {
  border-radius: 7px;
}

.blog-sec h2 {
  margin-bottom: 9px;
}

.blog-sec a.comon-btn i {
  font-size: 18px;
}

.blog-sec .blog-box a h5 {
  font-weight: 400;
  color: #000000;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 6px;
  /* font-family: "Inter", sans-serif; */
}

#bg-blue .blog-box {
  text-align: center;
  padding: 13px;
  background: #fff;
  border-radius: 7px;
  padding-bottom: 30px;
}

/* footer */


.footer {
  background-color: #e3ecf3;
  padding: 75px 0 45px;
  color: #0f3451;
}

.footer .heading h4 {
  font-size: 38px;
  color: #f2e0e2;
}

.footer .heading h5 {
  color: #0f3451;
  margin-bottom: 18px;
}

.footer .btom_content {
  display: flex;
  gap: 110px;
}

.footer .heading ul li a {
  display: inline-flex;
  align-items: start;
  gap: 10px;
  color: #000;
}

.footer .heading ul li a i {
  font-size: 17px;
  color: #0f3451;
}

.footer .heading ul li {
  margin-bottom: 14px;
}

.footer .social h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #0f3451;
}

.footer .social {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer .social a {
  color: #0f3451;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 60px;
  border: 2px solid #0f3451;
}

.footer hr {
  color: #0f3451 !important;
  opacity: 1;
}

.footer .left_logo_content .ft_logo {
  width: 220px;
  margin-bottom: 20px;
  display: block;
}

/* Inner Banner */

.inner-banner h1 {
 font-size: 52px;
/*     color: #242121; */
    text-shadow: 3px 3px 10px #110218;
}
.inner-banner {
	padding: 150px 0px !important;
	
}

/* Contact Page  */
.get-in-touch-2 .new-max {
  border: 2px solid var(--theme-color);
}

.get-in-touch-2 .new-max h4 {
  font-size: 44px;
}

.get-in-touch-2 .contact-info a {
  /* letter-spacing: 1px; */
  font-size: 15px;
  color: #222222;
  /* font-weight: 600; */
}

.get-in-touch-2 .contact-info h5 {
  margin-bottom: 10px;
  color: #001a32;
}

.get-in-touch-2 form input, .get-in-touch-2 form select {
  padding: 12px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid;
  border-color: #001a32;
  background: transparent;
  padding-left: 0;
  color: #858585;
}

.get-in-touch-2 form textarea {
  padding: 12px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid;
  border-color: #001a32;
  background: transparent;
  height: 100px;
  padding-left: 0;
  color: #858585;

}

.get-in-touch-2 form button {
  background-color: #000000;
  width: 100%;
  border: none;
  color: #ffffff;
  padding: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

/* inner-blog */

.blog-section h4 {
  font-size: 28px;
}

.blog-section h4 a {
  color: #828282;
}

.blog-section .sidebar-option {
  padding-left: 6px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #056839;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest .title {
  font-size: 20px;
  color: var(--theme-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 16px;
  color: var(--theme-blue);
  line-height: 20px;
  margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-text h6 {
  margin-bottom: 4px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 14px;
  color: #888888;
}

.class-item .class-item-text span {
  font-size: 16px;
}

.sidebar-option .so-latest .latest-item .li-pic img {
  width: 105px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
/* Gallery Page */

.gallery img {
/*   height: 250px; */
  object-fit: cover;
}


#logo-sec h5{
  text-transform: capitalize!important;
  margin-bottom: 25px!important;
}

#logo-sec img{
  height: 255px;
  object-fit: cover;
}

#manufecture img{
  height: 250px;
  object-fit: cover;
}

.porter img{
  height: 250px;
  object-fit: cover;
}

.porter ul li{
  margin-bottom: 5px;
  background-color: #0054f12d;
  padding: 5px 18px;
}

/* Blog Leave A Comment */
.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #FF6601;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}
div#respond label {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

div#respond input,  div#respond textarea{
    padding: 10px;
    border-radius: 6px;
}

div#respond input#wp-comment-cookies-consent {
    width: 20px;
    height: 17px;
}

div#respond p.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: nowrap;
} 

div#respond p.comment-form-cookies-consent  label{
margin:0px!important;
}

div#respond input#submit {
    background: #4ac1e7;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}



.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #cce9ef;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}

/* ===home page service */
.page-id-9 .row.align-items-center {
    justify-content: space-between;
}

form.wpcf7-form.init p {
    margin-bottom: 0px !important;
}