/* BODY */
* {
  outline: none !important;
}

body {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262d57;
}

body, html {
  height: 100%;
}

h1 {
  font-family: "Playfair Display", serif;
}

/* CONTAINER */
.container {
  max-width: 1240px;
}

/* CUSTOM HTML */
.tooltip-inner {
  border-radius: 0;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.form-group {
  margin-bottom: 15px;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

/* LINKS */
a {
  color: #262d57;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
a:hover {
  color: #f65935;
}

/* HTML TAGS */
img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 26px;
  color: #9aa0ae;
}

/* ALERTS */
.alert {
  display: block;
  border-radius: 0;
  padding: 30px;
  font-weight: 600;
}

.alert-success {
  border: none;
  background: #2ca549;
  color: #fff;
}

.alert-danger {
  border: none;
  background: #f1293c;
  color: #fff;
}

/* FORM ELEMENTS */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=text], input[type=number],
.form-control {
  height: 54px;
  border: 1px solid #eaebee;
  padding: 0 20px;
  border-radius: 0;
}

input[type=password],
.form-control {
  height: 54px;
  border: 1px solid #eaebee;
  background-color: #fff;
  padding: 0 20px;
}

input[type=search],
.form-control {
  height: 54px;
  border: 1px solid #eaebee;
  background-color: #fff;
  padding: 0 20px;
}

input[type=email],
.form-control {
  height: 54px;
  border: 1px solid #eaebee;
  background-color: #fff;
  padding: 0 20px;
}

input[type=checkbox] {
  width: 14px;
  height: 14px;
  float: right;
  margin-top: 3px;
  margin-left: 10px;
  border: 1px solid #eaebee;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=checkbox]:checked {
  background: #405089;
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
  -moz-box-shadow: inset 0px 0px 0px 3px #fff;
  box-shadow: inset 0px 0px 0px 3px #fff;
}

input[type=radio] {
  width: 13px;
  height: 13px;
  float: right;
  margin-left: 10px;
  border: 1px solid #eaebee;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 50%;
}

input[type=radio]:checked {
  background: #131314;
  -webkit-box-shadow: inset 0px 0px 0px 2px #fff;
  -moz-box-shadow: inset 0px 0px 0px 2px #fff;
  box-shadow: inset 0px 0px 0px 2px #fff;
}

/* input[type=submit] {
  height: 54px;
  border: 1px solid #eaebee;
  color: #405089;
  background: #fff;
  padding: 0 40px;
  font-weight: 600;
} */

textarea {
  height: 144px;
  border: 1px solid #eaebee;
  background: #fff;
  padding: 20px;
}

.select-box .custom-select {
  width: 100%;
  height: 54px;
  border: 1px solid #eaebee;
  background-color: #fff;
  position: relative;
  border-radius: 0;
  box-shadow: none;
}

select {
  width: 100%;
  height: 52px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 0 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 20px;
}

label {
  display: block;
  font-weight: 600;
}

/* SECTION TITLE */
.text-primary {
  color: #f65935 !important;
}
.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 50px;
}
.section-title span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
.section-title h2 {
  display: block;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #f65935;
  margin-bottom: 20px;
}
.section-title h6 {
  font-size: 19px;
  color: #9aa0ae;
  line-height: 30px;
  margin-bottom: 0;
}
.section-title.light {
  color: #fff;
}
.section-title.light h2 {
  color: #fff;
}
.section-title.light span {
  color: #fff;
  opacity: 0.7;
}
.section-title.light h6 {
  color: #fff;
}
.section-title.dark span {
  color: #979797;
  opacity: 0.7;
}
.section-title.dark h6 {
  color: #979797;
}


/* HEADER */
.header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.header .navbar {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}
.header .navbar .container {
  position: relative;
}
.header .navbar .container .logo {
  margin-right: auto;
}
.header .navbar .container .logo a {
  float: left;
}
.header .navbar .container .logo a img {
  height: 41px;
  filter: brightness(100);
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  position: relative;
  z-index: 0;
  margin-top: -66px;
  background: #405089;
}
.slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}
.slider .swiper-slide h6 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.slider .swiper-slide h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}
.slider .swiper-slide h2 span {
  color: #f65935;
  font-family: Georgia;
}
.slider .swiper-slide p {
  max-width: 600px;
  display: inline-block;
  margin-bottom: 40px;
}
.primary-outline-btn,
.slider .swiper-slide a {
  display: inline-block;
  height: 60px;
  line-height: 58px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 44px;
  font-size: 13px;
  font-weight: 600;
}
.primary-outline-btn:hover,
.primary-outline-btn:focus,
.slider .swiper-slide a:hover {
  color: #f65935;
  text-decoration: none;
  border-color: #f65935;
}
.primary-btn {
  display: inline-block;
  height: 60px;
  line-height: 58px;
  background-color: #f65935;
  border: 1px solid #f65935;
  color: #fff;
  padding: 0 44px;
  font-size: 13px;
  font-weight: 600;
}
.primary-btn:hover,
.primary-btn:focus {
  color: #fff;
  background-color: #405089;
  text-decoration: none;
  border-color: #405089;
}
.slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.slider .swiper-custom-pagination {
  width: 100%;
  max-width: 1210px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: -150px;
  display: flex;
  flex-wrap: wrap;
}
.slider .swiper-pagination-bullet {
  width: auto;
  height: auto;
  flex: 1;
  background: transparent;
  opacity: 0.4;
  border-radius: 0;
  padding: 15px 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 1;
}
.slider .swiper-pagination-bullet span {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  float: left;
  margin-top: 5px;
}
.slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #405089;
  background-blend-mode: multiply;
  text-align: left;
  background-repeat: no-repeat;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 0;
  margin-top: -76px;
  padding-top: 130px;
  padding-bottom: 50px;
  background: #405089;
}
.page-header .print {
  float: right;
  line-height: 26px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-top: 35px;
}
.page-header .print img {
  height: 26px;
  float: right;
  margin-left: 6px;
}
.page-header .print:hover {
  text-decoration: none;
  opacity: 0.7;
}
.page-header .breadcrumb {
  display: flex;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
}
.page-header .breadcrumb li {
  color: #fff;
  font-size: 12px;
  padding-left: 10px;
  font-weight: 600;
}
.page-header .breadcrumb li:first-child {
  padding: 0;
}
.page-header .breadcrumb li:first-child:before {
  display: none;
  padding: 0;
}
.page-header .breadcrumb li:before {
  content: "";
  color: #fff;
  font-family: fontAwesome;
  font-size: 8px;
  padding-right: 10px;
  transform: translateY(-1px);
}
.page-header .breadcrumb li a {
  color: #fff;
}
.page-header h2 {
  font-weight: 800;
  color: #fff;
  font-size: 54px;
}
.page-header p {
  color: #fff;
  opacity: 0.7;
  margin: 0;
}

/* CONTENT */
.content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}

/* IMAGE CONTENT BOX */
.image-content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.image-content-box .col-12 {
  display: flex;
}
.image-content-box .content-box {
  flex: 1;
  margin-left: 40px;
}
.image-content-box .content-box:last-child {
  margin-left: 0;
}
.image-content-box .content-box figure {
  width: 100%;
  margin-bottom: 0;
}
.image-content-box .content-box h4 {
  font-weight: 600;
  color: #f65935;
  font-size: 20px;
}
.image-content-box .content-box p {
  margin: 0;
}

/* ICON CONTENT BOX */
.icon-content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  text-align: center;
}
.icon-content-box .col-12 {
  display: flex;
}
.icon-content-box .content-box {
  flex: 1;
  margin-left: 40px;
}
.icon-content-box .content-box:last-child {
  margin-right: 0;
}
.icon-content-box .content-box span {
  font-weight: 800;
  color: #9aa0ae;
  margin-bottom: 15px;
  margin-top: 20px;
}
.icon-content-box .content-box h4 {
  display: block;
  font-weight: 800;
  margin-bottom: 20px;
  color: #405089;
  min-height: 60px;
}
.icon-content-box .content-box img {
  height: 70px;
  object-fit: contain;
}

.flip-box {
  width: 100%;
  height: 250px;
  float: left;
}

.flip-box .flip-box-back .inner {
  padding: 0 15px;
}

.flip-box-front {
  width: 100%;
  height: 250px;
  float: left;
  background: #fff;
  border: 1px solid #eaebee;
}

.flip-box-back {
  width: 100%;
  height: 250px;
  float: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  background: #405089;
  color: #fff;
}
.flip-box-back h4 {
  color: #fff !important;
  margin-top: 20px;
}
.flip-box-back p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.grey-bg {
  background: #eaebee;
}

/* TESTIMONIALS */
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}
.swiper-pagination-bullet {
  opacity: .4;
  height: 10px;
  width: 10px;
}
.swiper-pagination-bullet-active {
  background: #f65935;
  opacity: 1;
}
.testimonials {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  background: url(../images/world-map.webp) center no-repeat #405089;
  text-align: center;
  color: #fff;
  background-size: auto 80%;
}
.testimonials .section-title {
  margin-bottom: 40px;
}
.testimonials .swiper-testimonials,
.swiper-course {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.testimonials .swiper-testimonials .swiper-button-prev,
.swiper-course  .swiper-button-prev {
  background: none;
  width: 50px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
  left: 10px;
  right: auto;
}
.testimonials .swiper-testimonials .swiper-button-prev:hover,
.swiper-course  .swiper-button-prev:hover {
  opacity: 0.5;
}
.testimonials .swiper-testimonials .swiper-button-next,
.swiper-course  .swiper-button-next {
  background: none;
  width: 50px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  left: auto;
  right: 10px;
}
.testimonials .swiper-testimonials .swiper-button-next:hover,
.swiper-course .swiper-button-next:hover {
  opacity: 0.5;
}
.testimonials .testimonial {
  width: 100%;
  flex: 1;
  padding: 0 12%;
}
.testimonials .testimonial figure {
  display: block;
  position: relative;
  margin-bottom: 30px;
}
.testimonials .testimonial figure .avatar {
  width: 80px;
  border-radius: 50%;
}
.testimonials .testimonial figure figcaption {
  width: 30px;
  height: 30px;
  background: #f65935;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -15px;
  margin-left: -15px;
}
.testimonials .testimonial figure figcaption img {
  width: 15px;
  margin: 8px;
}
.testimonials .testimonial blockquote {
  display: block;
  margin-bottom: 30px;
}
.testimonials .testimonial blockquote p {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}
.testimonials .testimonial small {
  display: block;
  margin: 10px 0;
  opacity: 0.7;
}
.testimonials .testimonial .name-sign {
  height: 40px;
}
.testimonials .testimonial .logo {
  height: 50px;
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
}

/* TEAM MEMBERS */
.team-members {
  width: 100%;
  padding: 120px 0;
}
.team-members {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.team-members .content-wrapper {
  overflow: hidden;
}
.team-members .content-wrapper .member {
  position: relative;
  text-align: center;
  margin: 0;
}
.team-members .content-wrapper .member .first-image {
  display: block;
  width: 100%;
}
.team-members .content-wrapper .member .second-image {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
}
.team-members .content-wrapper .member img {
  width: 100%;
}
.team-members .content-wrapper .member:hover .first-image {
  display: block;
}
.team-members .content-wrapper .member:hover .second-image {
  opacity: 1;
}
.team-members .content-wrapper .member:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #405089;
  opacity: 0;  
}
.team-members .content-wrapper .member:hover:before {
  opacity: .8;
}
.team-members .content-wrapper .member:hover figcaption {
  opacity: 1;
  visibility: visible;
}
.team-members .content-wrapper .member figcaption {
  width: 100%;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}
.team-members .content-wrapper .member figcaption h5 {
  font-weight: 600;
}
.team-members .content-wrapper .member figcaption small {
  display: block;
  opacity: 0.7;
}
.team-members .content-wrapper .member figcaption ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.team-members .content-wrapper .member figcaption ul li {
  float: left;
  margin: 0 7px;
  padding: 0;
  list-style: none;
}
.team-members .content-wrapper .member figcaption ul li a {
  float: left;
  color: #fff;
  font-size: 13px;
}

/* REQUEST FORM */
.request-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #405089;
}
.request-form form {
  margin-bottom: 0;
}
.request-form form input[type=text],
.request-form form input[type=number] {
  width: 100%;
}
.request-form form input[type=checkbox] {
  border: none;
  background: #fff;
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
  -moz-box-shadow: inset 0px 0px 0px 3px #fff;
  box-shadow: inset 0px 0px 0px 3px #fff;
}
.request-form form input[type=checkbox]:checked {
  border: none;
  background: #f65935;
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
  -moz-box-shadow: inset 0px 0px 0px 3px #fff;
  box-shadow: inset 0px 0px 0px 3px #fff;
}
.request-form form label {
  width: 100%;
  color: #fff;
}
.request-form #success, .request-form #error {
  display: none;
}
.request-form #success, .request-form #error {
  float: left;
}
.ts-form-email label.error {
  width: 100%;
  color: red;
  margin-top: 10px;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 14px;
}
.request-form form input[type=submit] {
  cursor: pointer;
  margin-top: 15px;
}
.request-form form input[type=submit]:hover {
  border-color: #fff;
}
.ts-form-email .row {
  margin-left: -5px;
  margin-right: -5px;
}
.ts-form-email .row > div {
  padding-left: 5px;
  padding-right: 5px;
}
/* PRICES */
.prices {
  padding: 0  0 100px 0;
}
.prices {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  text-align: center;
}
.prices .price-box {
  width: 100%;
  float: left;
  padding: 30px;
  border: 1px solid #eaebee;
}
.prices .price-box ul {
  width: 100%;
  display: block;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
}
.prices .price-box ul li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  color: #9aa0ae;
}
.prices .price-box ul li i {
  color: #f65935;
  padding-top: 5px;
}

/* CLIENTS */
.clients {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.clients * {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.clients ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.clients ul li {
  flex-basis: 20%;
  border: 1px solid #eaebee;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -1px;
  margin-top: -1px;
}
.clients ul li figure {
  width: 100%;
  float: left;
  position: relative;
  margin: 0;
  padding: 20px;
  text-align: center;
}
.clients ul li figure img {
  width: 100%;
  float: left;
  mix-blend-mode: darken;
}
.clients ul li figure:hover img {
  transform: scale(1.1);
}

/* SCROLL UP */
.scrollup {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  position: fixed;
  z-index: 8;
  bottom: 10px;
  left: 10px;
  display: none;
  background-color: #f65935;
}
.scrollup:hover {
  background-color: #405089;
  color: #fff;
}

/* FOOTER */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #262d57;
}
.footer .sub-footer {
  width: 100%;
  display: flex;
  color: #fff;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .sub-footer .copyright {
  font-size: 11px;
  /* float: right; */
}
.footer .sub-footer .creation {
  font-size: 11px;
  float: left;
}
.footer .sub-footer .creation a {
  font-weight: 600;
  color: #fff;
}

.modal .close {
  right: 0;
  top: 0;
  font-weight: 400;
}

/* RESPONSIVE MEDIUM  FIXES */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
  .container {
    max-width: 100%;
  }

  .header .navbar {
    max-width: 100%;
  }

  .header .navbar .container {
    overflow: hidden;
  }

  .slider .swiper-custom-pagination {
    padding: 0 15px;
  }

  .featured-services .logos ul li {
    margin-right: 40px;
  }

  .icon-content-box .content-box:last-child {
    margin-right: 15px;
  }

  .flip-box .flip-box-front .inner {
    padding: 0 20px;
  }

  .flip-box .inner h4 {
    font-size: 19px;
    min-height: inherit;
  }

  .request-form form label {
    font-size: 14px;
  }

  .icon-content-box .col-12 {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-content-box .content-box {
    flex-basis: calc(33.3333% - 30px );
    flex-direction: column;
    margin: 15px;
  }

  .showcases .masonry li {
    width: 50%;
  }

  .showcases .masonry li.double {
    width: 100%;
  }
}
/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  input[type=text], input[type=search], input[type=email], input[type=password], input[type=submit], textarea {
    border-radius: 0 !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .header {
    position: absolute;
  }

  .slider {
    margin-top: 0;
  }

  .featured-services .logos ul li {
    margin-right: 20px;
  }

  .image-content-box .content-box {
    margin-left: 0;
    flex-basis: 100%;
    flex-direction: column;
  }

  .clients ul li {
    flex-basis: 33.33%;
  }

  .our-offices address {
    flex-basis: auto;
    width: calc(50% - 1px);
  }

  .scrollup {
    bottom: 100px;
  }

  .footer {
    padding-bottom: 90px;
  }

}
/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .header .navbar .container .search-btn {
    padding-right: 10px;
  }

  .header .navbar .container .language {
    display: none;
  }

  .slider .swiper-custom-pagination {
    display: none;
  }

  .slide-inner {
    padding-top: 50px;
  }

  .slider .swiper-slide h2 {
    font-size: 40px;
  }

  .slider .swiper-slide h6 {
    font-size: 24px;
  }

  .slider .swiper-slide h4 {
    font-size: 20px;
  }

  .slider .swiper-slide p {
    margin-bottom: 20px;
  }

  .swiper-button-prev {
    display: none;
  }

  .swiper-button-next {
    display: none;
  }

  .page-header .print {
    display: none;
  }

  .page-header .breadcrumb {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .contact .section-title {
    padding-right: 0;
  }

  .contact .map {
    width: 100%;
  }

  .section-title h6 {
    font-size: 17px;
  }

  .image-content-box {
    padding: 70px 0;
    text-align: center;
  }

  .image-content-box .col-12 {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .image-content-box .content-box {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .image-content-box .content-box:last-child {
    margin-bottom: 0;
  }

  .image-content-over-box {
    padding: 70px 0;
    text-align: center;
  }

  .icon-content-box {
    padding: 70px 0;
  }

  .icon-content-box .content-box {
    flex-basis: 100%;
  }

  .showcases {
    padding: 70px 0;
    text-align: center;
  }

  .showcases .masonry li {
    width: 100%;
  }

  .content {
    padding: 70px 0;
  }

  .history-timeline {
    padding: 70px 0;
  }

  .prices .price-box {
    margin-bottom: 30px;
    padding: 15px;
  }

  .team-members {
    padding: 70px 0;
    text-align: center;
  }

  .clients ul li figure {
    padding: 20px;
  }

  .clients ul li {
    flex-basis: 50%;
  }

  .testimonials {
    padding: 70px 0;
  }

  .testimonials .testimonial {
    padding: 0;
  }

  .prices {
    padding: 70px 0;
  }

  .clients {
    padding: 70px 0;
  }

  .request-form {
    padding: 70px 0;
  }

  .footer .sub-footer .creation {
    float: right;
  }
}

@media screen and (max-width: 575px) {
  .clients ul li figure {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-button {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 15px;
  width: 100%;
  z-index: 11;
}

.slider p {
color : #ffffff;
}