html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: #000;
  background: #fff;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
}

* {
  max-height: 1000000px;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: underline;
}
a:focus {
  outline: none;
}

input,
textarea,
select {
  font: 100%;
  color: #000;
  vertical-align: middle;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
textarea {
  margin: 0;
  padding: 4px 7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: 1px solid #000;
  outline: none;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  outline: none;
}

textarea {
  overflow: auto;
  resize: vertical;
  vertical-align: top;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  color: #67686B;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  margin: 0 0 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #D90A2C;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media all and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 23px;
  }
}
.btn {
  padding: 15px;
  color: #fff;
  min-width: 210px;
  font-weight: 700;
  border-radius: 0;
  background: #D90A2C;
}
@media all and (max-width: 767px) {
  .btn {
    padding: 10px;
    min-width: 160px;
  }
}
.btn:hover {
  color: #D90A2C;
  background: #fff;
  text-decoration: none;
  border-color: #D90A2C;
}

.btn.alt {
  background: #fff;
  color: #D90A2C;
  border-color: #fff;
}
.btn.alt:hover {
  color: #fff;
  background: #D90A2C;
  border-color: #D90A2C;
}

#header .topbar {
  background: #000;
  padding: 15px 0 11px;
}
@media all and (max-width: 767px) {
  #header .topbar {
    padding: 10px 0;
  }
}
#header .topbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  #header .topbar ul {
    margin: 5px 0;
    text-align: center;
  }
}
#header .topbar ul li {
  padding: 0 10px;
  display: inline-block;
  vertical-align: middle;
}
@media all and (max-width: 991px) {
  #header .topbar ul li {
    padding: 0 5px;
  }
}
#header .topbar ul li a {
  color: #fff;
}
#header .topbar ul li .icon {
  margin-right: 10px;
}
#header .topbar .left-content ul li {
  border-left: solid 2px #fff;
}
@media all and (max-width: 575px) {
  #header .topbar .left-content ul li {
    border: 0;
  }
}
#header .topbar .left-content ul li:first-child {
  border: 0;
}
@media all and (min-width: 576px) {
  #header .topbar .left-content ul li:first-child {
    padding-left: 0;
  }
}
#header .topbar .right-content {
  text-align: right;
}
#header .topbar .right-content ul li:last-child {
  padding-right: 0;
}
#header .header-content {
  overflow: hidden;
  padding: 15px 0;
}
@media all and (min-width: 768px) {
  #header .header-content {
    display: flex;
    justify-content: space-between;
  }
}
#header .navbar {
  padding: 0;
}
@media all and (max-width: 767px) {
  #header .navbar {
    justify-content: end;
  }
}
#header .navbar ul {
  font-size: 15px;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  #header .navbar ul {
    align-items: center;
  }
}
@media all and (max-width: 767px) {
  #header .navbar ul {
    padding-top: 10px;
  }
}
#header .navbar ul li {
  padding: 0 22px;
}
@media all and (max-width: 991px) {
  #header .navbar ul li {
    padding: 0 10px;
  }
}
@media all and (max-width: 767px) {
  #header .navbar ul li {
    padding: 5px 0;
    border-top: solid 1px #D90A2C;
  }
  #header .navbar ul li:last-child {
    padding: 0;
  }
}
#header .navbar ul li a {
  color: #000;
}
#header .navbar ul li a:hover {
  color: #D90A2C;
  text-decoration: none;
}
#header .navbar ul li:last-child {
  padding-right: 0;
}
#header .navbar ul .btn {
  color: #fff;
  padding: 10px;
  min-width: 194px;
}
@media all and (max-width: 991px) {
  #header .navbar ul .btn {
    min-width: 150px;
  }
}
@media all and (max-width: 767px) {
  #header .navbar ul .btn {
    display: block;
  }
}
#header .navbar ul li.active > a {
  font-weight: 700;
  color: #D90A2C;
}

.navbar-toggler {
  margin-top: -60px;
  background: #D90A2C;
}

.banner {
  overflow: hidden;
  position: relative;
}
.banner .slideset {
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .banner .slideset {
    height: 100%;
  }
}
.banner img {
  width: 100%;
}
@media all and (max-width: 767px) {
  .banner img {
    width: auto;
    height: 100%;
    position: relative;
    left: 50%;
    max-width: inherit;
    transform: translateX(-50%);
  }
}
.banner .slide {
  position: relative;
}
@media all and (max-width: 767px) {
  .banner .slide {
    height: 100%;
  }
}
.banner .slide .slide-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  font-size: 18px;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .banner .slide .slide-content {
    padding: 12px;
    font-size: 16px;
  }
}
.banner .slide .slide-content h1 {
  color: #fff;
}
@media all and (max-width: 767px) {
  .banner .slide .slide-content h1 {
    font-size: 35px;
  }
}
.banner .slide .slide-content h1 span {
  display: block;
  color: transparent;
  letter-spacing: -5px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
.banner .slide.active {
  z-index: 1;
}
.banner .pagination {
  position: absolute;
  bottom: 13px;
  left: 15px;
  right: 15px;
  z-index: 11;
  justify-content: center;
}
.banner .pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.banner .pagination ul li {
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
}
.banner .pagination ul li a {
  overflow: hidden;
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 100%;
  background: #D90A2C;
  border: solid 3px #fff;
}
.banner .pagination ul li a:hover {
  border-color: #D90A2C;
}
.banner .pagination ul li.active a {
  border-color: #D90A2C;
}

.title-bar {
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 991px) {
  .title-bar {
    min-height: 300px;
  }
}
@media all and (max-width: 767px) {
  .title-bar {
    min-height: 240px;
  }
}
.title-bar .img-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.title-bar .img-holder img {
  display: block;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 1199px) {
  .title-bar .img-holder img {
    width: auto;
    max-width: inherit;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.title-bar .title-bar-content {
  overflow: hidden;
  position: relative;
  text-align: center;
}
.title-bar h1 {
  color: #fff;
  margin: 0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.breadcrumb li {
  color: #fff;
  padding: 0 3px;
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb li::before {
  content: "/";
  margin-right: 5px;
}
.breadcrumb li:first-child::before {
  display: none;
}
.breadcrumb li a {
  color: #D90A2C;
}

.intro-block {
  background-color: rgba(168, 174, 185, 0.17);
  background-image: url("../images/shape2.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media all and (max-width: 991px) {
  .intro-block {
    padding-top: 50px;
  }
}
@media all and (max-width: 767px) {
  .intro-block {
    padding-top: 30px;
  }
}
.intro-block .experience-box {
  padding: 25px 30px;
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  border-bottom: solid 3px #D90A2C;
}
@media all and (min-width: 992px) {
  .intro-block .experience-box {
    float: right;
    margin-top: -60px;
  }
}
@media all and (min-width: 576px) {
  .intro-block .experience-box {
    width: 355px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 575px) {
  .intro-block .experience-box {
    padding: 20px;
  }
}
.intro-block .experience-box .number {
  font-size: 47px;
  line-height: 1.064;
  font-weight: 700;
  color: #DE2B48;
  -webkit-text-stroke-width: 0.876px;
  -webkit-text-stroke-color: #D90A2C;
}
@media all and (max-width: 767px) {
  .intro-block .experience-box .number {
    font-size: 40px;
  }
}
.intro-block .experience-box .text {
  overflow: hidden;
  padding: 0 5px;
  color: #D90C2E;
  line-height: 1;
  font-weight: 700;
  -webkit-text-stroke-width: 0.56px;
  -webkit-text-stroke-color: #D90A2C;
}
.intro-block .experience-box .text .text-year {
  display: block;
  font-size: 14px;
}
.intro-block .experience-box .text p {
  margin: 0;
  font-size: 29px;
}
@media all and (max-width: 767px) {
  .intro-block .experience-box .text p {
    font-size: 25px;
  }
}
.intro-block .intro-holder {
  overflow: hidden;
  padding: 80px 0;
  clear: both;
}
@media all and (max-width: 991px) {
  .intro-block .intro-holder {
    padding: 50px 0;
  }
}
@media all and (max-width: 767px) {
  .intro-block .intro-holder {
    padding-top: 30px;
  }
}
.intro-block .intro-holder .infobox {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 991px) {
  .intro-block .intro-holder .infobox {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .intro-block .intro-holder .infobox {
    display: block;
  }
}
.intro-block .intro-holder .infobox .icon-box {
  width: 116px;
  height: 116px;
  margin-right: -50px;
  position: relative;
}
@media all and (max-width: 767px) {
  .intro-block .intro-holder .infobox .icon-box {
    margin: 0 auto -50px;
  }
}
.intro-block .intro-holder .infobox .info-text {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  background: #000;
  padding: 60px 50px 60px 80px;
  border: solid #D90A2C;
  border-width: 0 0 0 7px;
}
@media all and (max-width: 767px) {
  .intro-block .intro-holder .infobox .info-text {
    font-size: 20px;
    border-width: 7px 0 0;
    padding: 60px 40px 20px;
  }
}
.intro-block .intro-holder .textbox {
  color: #000;
  font-size: 23px;
  font-weight: 600;
  padding: 0 20px;
}
@media all and (max-width: 767px) {
  .intro-block .intro-holder .textbox {
    font-size: 18px;
  }
}
.intro-block .intro-holder .textbox span {
  color: #D90A2C;
}
.intro-block .intro-holder .textbox a {
  font-weight: 500;
}

.section {
  overflow: hidden;
  padding: 30px 0;
}
.section .head {
  overflow: hidden;
}
.section .head .top-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #D90A2C;
}
.section .textbox p span {
  font-weight: 600;
  color: #D90A2C;
}

.about-block {
  overflow: hidden;
  padding: 30px 0;
}
.about-block .about-content {
  overflow: hidden;
  padding: 0 20px;
}
@media all and (max-width: 991px) {
  .about-block .about-content {
    margin-bottom: 30px;
  }
}
.about-block .service-box {
  overflow: hidden;
  padding: 30px 0;
}
.about-block .service-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-block .service-box ul li {
  display: flex;
}
.about-block .service-box .icon-box {
  width: 40px;
  margin-right: 30px;
}
.about-block .service-box h3 {
  margin: 0 0 4px;
}

.our-services {
  overflow: hidden;
  padding: 30px 0;
}
.our-services .head {
  margin-bottom: 30px;
}
.our-services .icon-box {
  width: 100px;
  margin: 0 0 10px;
}
.our-services h3 {
  font-weight: 600;
}
.our-services .service-box p {
  font-family: "Roboto", sans-serif;
}

.features {
  overflow: hidden;
  padding: 30px 0;
}
.features .head {
  margin-bottom: 30px;
}
.features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media all and (max-width: 991px) {
  .features ul {
    margin-bottom: 30px;
  }
}
.features ul li {
  padding: 9px 0;
}
.features .feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid #EBEBEB;
  background: rgba(251, 249, 249, 0.12);
  transition: all ease 0.5s;
}
@media all and (max-width: 575px) {
  .features .feature-box {
    display: block;
  }
}
.features .feature-box .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 79px;
  width: 100%;
  max-width: 92px;
  border-radius: 17px;
  background: #D90A2C;
}
@media all and (max-width: 575px) {
  .features .feature-box .icon-box {
    margin: 0 0 18px;
  }
}
.features .feature-box h5 {
  font-weight: 600;
  margin: 0 0 8px;
  transition: all ease 0.5s;
}
.features .feature-box .textbox {
  overflow: hidden;
  padding: 0 18px;
}
@media all and (max-width: 575px) {
  .features .feature-box .textbox {
    padding: 0;
  }
}
.features .feature-box:hover {
  color: #fff;
  background: #D90A2C;
  border-color: #D90A2C;
}
.features .feature-box:hover h5 {
  color: #fff;
}

.benefits {
  overflow: hidden;
}
@media all and (min-width: 992px) {
  .benefits {
    display: flex;
  }
}
.benefits .left-box {
  overflow: hidden;
  background: url("../images/bg-benefits.jpg") no-repeat;
  background-size: cover;
}
@media all and (max-width: 991px) {
  .benefits .left-box {
    padding: 30px;
  }
  .benefits .left-box .img-box {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  .benefits .left-box {
    padding: 20px 12px;
  }
}
@media all and (min-width: 992px) {
  .benefits .left-box {
    float: left;
    width: 57%;
    padding-bottom: 123px;
  }
  .benefits .left-box .img-box {
    float: right;
    width: 100%;
    max-width: 563px;
  }
}
@media all and (min-width: 992px) {
  .benefits .right-box {
    float: left;
    width: 43%;
  }
}
.benefits .right-box .content {
  overflow: hidden;
  padding: 40px 100px;
}
@media all and (max-width: 1199px) {
  .benefits .right-box .content {
    padding: 20px 30px;
  }
}
@media all and (max-width: 991px) {
  .benefits .right-box .content {
    padding: 30px;
  }
}
@media all and (max-width: 767px) {
  .benefits .right-box .content {
    padding: 20px 12px;
  }
}
.benefits .right-box .text-holer {
  overflow: hidden;
  font-weight: 500;
}
.benefits .top-title {
  font-size: 18px;
  font-weight: 700;
  color: #D90A2C;
}
.benefits .info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 5px;
}
.benefits .info-box .icon-box {
  width: 40px;
}
.benefits .info-box .textbox {
  overflow: hidden;
  padding: 0 20px;
  font-weight: 700;
  color: #D90A2C;
}
.benefits .list-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.benefits .list-area ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.benefits .list-area ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 100%;
  border: solid 2px #D90A2C;
}
.benefits .list-area .box {
  overflow: hidden;
  color: #000;
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .benefits .list-area .box {
    text-align: center;
  }
}
.benefits .list-area .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  margin-bottom: 5px;
  background: #000;
  border-radius: 100%;
}
@media all and (min-width: 768px) {
  .benefits .list-area .icon-box {
    margin: 0 auto;
    padding: 0 0 0 8px;
  }
}

.good-services {
  overflow: hidden;
  padding: 0 0 15px;
  background-color: rgba(168, 174, 185, 0.17);
  background-image: url("../images/shape1.png");
  background-repeat: no-repeat;
}
.good-services .inner-holder {
  overflow: hidden;
  margin: 0 0 70px;
}
@media all and (min-width: 992px) {
  .good-services .inner-holder {
    display: flex;
    align-items: end;
  }
}
@media all and (min-width: 992px) {
  .good-services .left-box {
    float: left;
    width: 57%;
  }
}
.good-services .left-box .textbox {
  color: #000;
  font-weight: 500;
  padding: 30px 25% 30px 15%;
}
@media all and (min-width: 1400px) {
  .good-services .left-box .textbox {
    padding-left: 17%;
  }
}
@media all and (max-width: 991px) {
  .good-services .left-box .textbox {
    padding: 30px 30px 14px;
  }
}
@media all and (max-width: 767px) {
  .good-services .left-box .textbox {
    padding: 30px 12px 14px;
  }
}
@media all and (min-width: 992px) {
  .good-services .right-box {
    float: left;
    width: 43%;
  }
}
@media all and (max-width: 991px) {
  .good-services .right-box {
    padding: 0 30px;
  }
}
@media all and (max-width: 767px) {
  .good-services .right-box {
    padding: 0 12px;
  }
}
.good-services .content-box {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px;
  text-align: center;
  padding: 0 10px 10px;
  border: solid 1px #000;
}
@media all and (max-width: 991px) {
  .good-services .content-box {
    margin-bottom: 60px;
  }
}
@media all and (max-width: 575px) {
  .good-services .content-box {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
}
.good-services .content-box .icon-box {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  margin: -42px auto 10px;
}

.blog-posts {
  overflow: hidden;
  padding: 50px 0 20px;
}
.blog-posts .head {
  margin-bottom: 30px;
}
.blog-posts .img-box {
  overflow: hidden;
  margin: 0 0 25px;
}
.blog-posts .readmore {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.company-info {
  overflow: hidden;
  background: url("../images/shape3.png") no-repeat 0 90%;
}

.about-company {
  margin: 0 0 50px;
  overflow: hidden;
}
.about-company .textbox {
  color: #000;
  font-family: "Inter", sans-serif;
}

.team-area {
  overflow: hidden;
}
.team-area .head {
  text-align: center;
  margin: 0 0 30px;
}
.team-area .box {
  color: #fff;
  padding: 40px;
  position: relative;
}
.team-area .box h2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.team-area .box h5 {
  color: #fff;
  font-weight: 500;
}
.team-area .box .right-hand {
  position: absolute;
  top: 42px;
  right: -30px;
}
.team-area .box .left-hand {
  position: absolute;
  bottom: 0;
  left: -30px;
}
.team-area .black-box {
  background: #000;
}
.team-area .red-box {
  background: #D90A2C;
}

.team-area {
  overflow: hidden;
  padding: 50px 0;
}
@media all and (max-width: 991px) {
  .team-area {
    padding-bottom: 0;
  }
}

.member-box {
  overflow: hidden;
  position: relative;
}
.member-box img {
  display: block;
  width: 100%;
}
.member-box .member-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: rgba(217, 10, 44, 0.78);
}
.member-box .member-info .name {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.meet-company {
  overflow: hidden;
  padding: 50px 0;
  background: rgba(237, 237, 239, 0.15);
}
.meet-company .content-box {
  padding-left: 70px;
}
@media all and (max-width: 991px) {
  .meet-company .content-box {
    padding-left: 0;
  }
}

.facts {
  padding: 50px 0;
}
.facts .inner-content h2 {
  margin: 0;
}
.facts .inner-content .type {
  display: block;
  color: #9D9D9D;
  font-weight: 700;
  margin: 0 0 10px;
}
.facts .img-box {
  position: relative;
}
.facts .img-box .caption {
  width: 140px;
  height: 120px;
  color: #fff;
  position: absolute;
  bottom: -25px;
  right: -55px;
  text-align: center;
  border-radius: 5px;
  background: #D90A2C;
}
@media all and (max-width: 767px) {
  .facts .img-box .caption {
    right: 20px;
    bottom: 20px;
  }
}
.facts .img-box .caption .number {
  display: block;
  font-size: 35px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.facts .img-box .caption p {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.testimonials .head {
  margin: 0 0 50px;
}
.testimonials .testimonial-box {
  margin: 0 0 30px;
  border-radius: 5px;
  background: #fff;
  padding: 35px 50px;
  box-shadow: 0px 3px 17.7px rgba(39, 44, 47, 0.1);
}
@media all and (max-width: 991px) {
  .testimonials .testimonial-box {
    padding: 20px;
  }
}
.testimonials .testimonial-box .footer {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  .testimonials .testimonial-box .footer {
    display: block;
  }
}
.testimonials .testimonial-box .footer .content-box {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-box .footer .content-box .img-box {
  width: 56px;
  margin-right: 20px;
}
.testimonials .testimonial-box .footer .content-box .name {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.testimonials .testimonial-box .footer .content-box .designation {
  display: block;
  color: #000;
  font-size: 14px;
  opacity: 0.7;
}
.testimonials .testimonial-box .footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.testimonials .testimonial-box .footer ul li {
  display: inline-block;
  vertical-align: middle;
}

.professional {
  padding-bottom: 0;
  background: url("../images/shape5.png") no-repeat;
}
@media all and (max-width: 991px) {
  .professional {
    background-size: 150px auto;
  }
}
.professional .intro-box {
  color: #000;
  padding: 20px 0;
}
.professional .intro-box .head .top-title {
  text-transform: uppercase;
}
.professional .services .services-boxes {
  padding: 80px 0 50px;
  background: rgba(240, 241, 243, 0.15);
}
.professional .services .icon-box {
  width: 54px;
  float: left;
}
.professional .services .content-box {
  overflow: hidden;
  padding: 0 13px 10px;
}
.professional .services .content-box .readmore {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.professional .services .content-box .readmore span {
  width: 28px;
  height: 28px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  border: solid 1px #F0F0F0;
  box-shadow: 0px 3.562px 4.185px rgba(0, 0, 0, 0.25);
}

.company-portfolio {
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  background: url("../images/abstract-office.jpg") no-repeat;
  background-size: cover;
}
.company-portfolio .icon-box {
  width: 97px;
  height: 97px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.company-portfolio .number {
  display: block;
  font-size: 41px;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.company-portfolio .value {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.projects {
  padding: 80px 0;
  background: url("../images/shape4.png") no-repeat 100% 90%;
}
@media all and (max-width: 991px) {
  .projects {
    background-size: 200px auto;
  }
}
@media all and (max-width: 767px) {
  .projects {
    background-position: 100% 100%;
  }
}
.projects .head {
  color: #000;
  font-size: 20px;
  margin: 0 0 20px;
}
.projects .project-box {
  overflow: hidden;
  margin: 0 0 20px;
}
.projects .project-box .project-info {
  padding: 15px 20px;
  background: #000;
}
.projects .project-box .project-info h3 {
  color: #fff;
  margin: 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}
@media all and (max-width: 767px) {
  .projects .project-box .project-info h3 {
    font-size: 22px;
  }
}
.projects .project-box .project-info a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.projects .brands-area {
  overflow: hidden;
  padding: 30px 0 0;
}
.projects .brands-block {
  overflow: hidden;
  display: flex;
  padding: 50px 0;
  justify-content: space-evenly;
}
@media all and (max-width: 767px) {
  .projects .brands-block {
    display: block;
    padding: 30px 0 0;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .projects .brands-block .brand-box {
    margin: 0 0 20px;
  }
}
.projects .brands-block .brand-box span {
  display: block;
  color: #000;
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .projects .brands-block .brand-box span {
    font-size: 25px;
  }
}

.contact-intro .contact-info {
  padding-right: 80px;
}
@media all and (max-width: 991px) {
  .contact-intro .contact-info {
    padding: 0;
  }
}
.contact-intro .contact-info .head {
  margin: 0 30px 40px 0;
  border-bottom: solid 1px #AEA9AA;
}
@media all and (max-width: 991px) {
  .contact-intro .contact-info .head {
    margin-right: 0;
  }
}
.contact-intro .info-boxes {
  overflow: hidden;
  margin: 0 -4px;
  display: flex;
}
@media all and (max-width: 991px) {
  .contact-intro .info-boxes {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 575px) {
  .contact-intro .info-boxes {
    margin: 0;
    display: block;
  }
}
.contact-intro .info-boxes .box {
  width: 33.333%;
  margin: 0 4px;
  text-align: center;
  border-radius: 4px;
  padding: 25px 10px 15px;
  transition: all ease 0.5s;
  border: 1px solid #E4E4E4;
}
.contact-intro .info-boxes .box:hover {
  color: #fff;
  cursor: pointer;
  background: #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.contact-intro .info-boxes .box:hover .icon-box svg path {
  fill: #fff;
}
.contact-intro .info-boxes .box:hover h3 {
  color: #fff;
}
.contact-intro .info-boxes .box:hover p {
  color: #fff;
}
.contact-intro .info-boxes .box:hover p a {
  color: #fff;
}
@media all and (max-width: 575px) {
  .contact-intro .info-boxes .box {
    width: 100%;
    margin: 0 0 15px;
  }
}
.contact-intro .info-boxes .box .icon-box {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}
.contact-intro .info-boxes .box h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: all ease 0.5s;
}
.contact-intro .info-boxes .box p {
  color: #888786;
  font-size: 14px;
  font-weight: 500;
  transition: all ease 0.5s;
}
.contact-intro .info-boxes .box p a {
  color: #888786;
}
.contact-intro .map-holder {
  position: relative;
}
.contact-intro .map-holder .caption {
  position: absolute;
  top: 50px;
  width: 250px;
  right: -50px;
  color: #fff;
  font-size: 14px;
  padding: 15px 15px 15px 25px;
  background: #D90A2C;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 767px) {
  .contact-intro .map-holder .caption {
    top: 20px;
    right: 20px;
  }
}
.contact-intro .map-holder .caption .icon-box {
  margin: 0 0 10px;
}

.contact-information {
  padding: 50px 0;
  overflow: visible;
  background: url("../images/bg-contact-us.jpg") no-repeat center;
  background-size: cover;
}
.contact-information h2 {
  color: #fff;
}
.contact-information .head {
  color: #fff;
  margin: 0 0 30px;
  text-align: center;
}
.contact-information .contact-info-holder {
  background: #fff;
  margin-bottom: -260px;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.contact-information .red-box {
  color: #fff;
  padding: 30px 40px;
  background: url("../images/bg-contact-info.jpg") no-repeat center;
  background-size: cover;
}
.contact-information .red-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
.contact-information .red-box ul li {
  position: relative;
  padding: 5px 0 5px 30px;
}
.contact-information .red-box ul li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 13px;
  content: "";
  background: url("../images/icon-check.png") no-repeat;
}
@media all and (max-width: 767px) {
  .contact-information .red-box {
    padding: 30px;
  }
}
@media all and (max-width: 575px) {
  .contact-information .red-box {
    padding: 20px;
  }
}
.contact-information .contact-form-holder {
  display: flex;
  align-items: center;
  padding: 30px 40px;
}
@media all and (max-width: 767px) {
  .contact-information .contact-form-holder {
    padding: 30px;
  }
}
@media all and (max-width: 575px) {
  .contact-information .contact-form-holder {
    padding: 20px;
  }
}

.faqs-wrap {
  padding: 280px 0 50px;
  background: url("../images/shape6.png") no-repeat 100% 0;
}
.faqs-wrap .faqs-holder .accordion-item {
  background: transparent;
  border-bottom: solid 1px #151515;
}
.faqs-wrap .faqs-holder .accordion-button {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding: 20px 20px 20px 0;
  background: transparent;
  font-family: "Inter", sans-serif;
}
.faqs-wrap .faqs-holder .accordion-button::after {
  margin: 0;
  content: "-";
  color: #000;
  position: absolute;
  right: 0;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  transition: none;
  background: none;
}
.faqs-wrap .faqs-holder .accordion-button:focus {
  border: 0;
  box-shadow: none;
}
.faqs-wrap .faqs-holder .accordion-button.collapsed::after {
  content: "+";
}
.faqs-wrap .faqs-holder .accordion-body {
  color: #7B8383;
  padding: 20px 0;
}

.call-to-action {
  color: #fff;
  padding: 25px 0;
  text-align: center;
  background: url("../images/bg-call-to-action.jpg") no-repeat center;
  background-size: cover;
}
.call-to-action .icon-box {
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100%;
  background: #fff;
}
.call-to-action h2 {
  color: #fff;
  margin: 0;
}
.call-to-action h3 {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.call-to-action a {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.form {
  width: 100%;
}
.form .g-3 {
  margin-top: 0;
}
.form .input-holder {
  margin: 0 0 30px;
}
.form label {
  color: #3A3737;
  font-weight: 500;
}
.form .form-control {
  color: #D3D3D3;
  font-size: 14px;
  line-height: 20px;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  border: 1px solid #E7D9D9;
}
.form textarea.form-control {
  height: 143px;
  resize: none;
}

.our-vision-wrap {
  background: url("../images/shape7.png") no-repeat 0 100%;
}
.our-vision-wrap .boxes {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media all and (max-width: 767px) {
  .our-vision-wrap .boxes {
    display: flex;
    justify-content: center;
  }
}
.our-vision-wrap .boxes .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 122px;
  height: 112px;
  margin: 20px auto;
  text-align: center;
  background: url("images/bg-shape1.png") no-repeat;
  background-size: 100% 100%;
}
@media all and (max-width: 767px) {
  .our-vision-wrap .boxes .box {
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 575px) {
  .our-vision-wrap .boxes .box {
    width: 102px;
    height: 102px;
  }
}
.our-vision-wrap .boxes .box .value {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.our-vision-wrap .quote-box {
  position: relative;
  padding: 10px 40px 10px 33px;
}
.our-vision-wrap .quote-box .left-quote {
  position: absolute;
  left: 0;
  top: 0;
}
.our-vision-wrap .quote-box .right-quote {
  position: absolute;
  right: 0;
  top: 40%;
}
@media all and (max-width: 575px) {
  .our-vision-wrap .img-box {
    margin-bottom: 20px;
  }
}
.our-vision-wrap .img-box img {
  width: 100%;
}
.our-vision-wrap .packages {
  display: flex;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #EBE7E7;
}
@media all and (max-width: 767px) {
  .our-vision-wrap .packages {
    display: block;
  }
}
.our-vision-wrap .packages .box {
  width: 33.333%;
  padding: 23px 27px;
  border: solid #EBE7E7;
  border-width: 0 0 0 1px;
}
@media all and (max-width: 767px) {
  .our-vision-wrap .packages .box {
    width: 100%;
    border-width: 1px 0 0;
  }
}
.our-vision-wrap .packages .box:first-child {
  border-width: 0;
}
.our-vision-wrap .packages .box .icon-box {
  margin: 0 0 3px;
}
.our-vision-wrap .packages .box h4 {
  margin: 0 0 15px;
}
.our-vision-wrap .packages .box ul {
  color: #000;
  margin: 0;
  padding: 0 0 0 18px;
}

.enhance-business {
  color: #fff;
  padding: 40px 0;
  font-size: 18px;
  background: url("images/bg-enhance-business.jpg") no-repeat center;
  background-size: cover;
}
@media all and (max-width: 767px) {
  .enhance-business {
    font-size: 16px;
  }
}
.enhance-business .top-title {
  display: block;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}
.enhance-business h2 {
  color: #fff;
  font-size: 33px;
}
@media all and (max-width: 767px) {
  .enhance-business h2 {
    font-size: 25px;
  }
}

.about-custom-software-development {
  padding: 50px 0;
}
.about-custom-software-development .head {
  margin: 0 0 30px;
}
.about-custom-software-development .textbox {
  font-weight: 500;
}
.about-custom-software-development .textbox .top-title {
  display: block;
  font-weight: 700;
  color: #D90A2C;
}

.wonders-intro {
  padding: 50px 0;
  background: url("images/shape8.png") no-repeat 100% 0;
}
.wonders-intro .boxes {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}
.wonders-intro .boxes .box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wonders-intro .boxes .box .icon {
  width: 63px;
  text-align: center;
  position: relative;
}
.wonders-intro .boxes .box .icon::before {
  position: absolute;
  left: -10px;
  top: -2px;
  width: 30px;
  height: 30px;
  content: "";
  z-index: -1;
  border-radius: 100%;
  background: linear-gradient(90deg, #FF9494 50%, rgba(255, 103, 103, 0) 153.33%);
}
.wonders-intro .boxes .box .info {
  overflow: hidden;
  padding: 0 15px;
  color: #000;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.wonders-intro .boxes .box .info p {
  margin: 0;
}
.wonders-intro .boxes .box .info p span {
  display: block;
}
.wonders-intro .img-box {
  position: relative;
}
.wonders-intro .img-box .caption {
  position: absolute;
  top: 20px;
  left: -60px;
  width: 175px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.wonders-intro .img-box .caption .icon {
  width: 34px;
  height: 34px;
  margin-right: 9px;
}
.wonders-intro .img-box .caption .info-box {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #D90A2C;
  font-family: "Poppins", sans-serif;
}
.wonders-intro .img-box .caption .info-box .number {
  display: block;
  font-size: 22px;
}
.wonders-intro .img-box .caption .info-box p {
  margin: 0;
}

.wonders-services .holder {
  padding: 40px 0;
  background: #fefefe url("images/shape9.png") no-repeat 100% 100%;
}
.wonders-services .holder .number {
  width: 18px;
  float: left;
  color: #000;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  margin-right: 4px;
  font-family: "Poppins", sans-serif;
}
.wonders-services .holder .content-box {
  overflow: hidden;
  margin: 0 0 30px;
}
.wonders-services .holder .content-box h4 {
  margin: 0 0 8px;
}

.devops-wrap {
  background: url("..//images/shape10.png") no-repeat 100% 50%;
}
.devops-wrap .head {
  margin: 0 0 30px;
}
.devops-wrap .devops-intro {
  padding: 40px 0;
}
.devops-wrap .devops-intro .img-box {
  padding-right: 30px;
}
@media all and (max-width: 991px) {
  .devops-wrap .devops-intro .img-box {
    padding-right: 0;
  }
}
.devops-wrap .devops-intro .textbox {
  padding-left: 30px;
}
@media all and (max-width: 991px) {
  .devops-wrap .devops-intro .textbox {
    padding-left: 0;
  }
}
.devops-wrap .service-box {
  padding: 20px;
  color: #000;
  cursor: pointer;
  margin: 0 0 20px;
  background: #fff;
  border-radius: 14px;
  transition: all ease 0.5s;
  box-shadow: 0px 0px 4.3px rgba(3, 5, 6, 0.24);
}
.devops-wrap .service-box h4 {
  margin: 0 0 10px;
  transition: all ease 0.5s;
}
.devops-wrap .service-box p {
  margin: 0;
}
.devops-wrap .service-box:hover {
  color: #fff;
  background: #D90A2C;
}
.devops-wrap .service-box:hover h4 {
  color: #fff;
}

.devops-solutions {
  background-color: rgba(168, 174, 185, 0.15);
  background-image: url("../images/shape7.png");
  background-repeat: no-repeat;
}
.devops-solutions .head {
  margin: 0 0 30px;
}
.devops-solutions .head h2 {
  margin: 0;
}
.devops-solutions .icon-box {
  width: 87px;
  height: 87px;
  position: relative;
  margin: 0 auto -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #D90A2C;
}
.devops-solutions .content-box {
  text-align: center;
  background: #fff;
  padding: 60px 20px 30px;
  box-shadow: 0px 0px 2.4px rgba(3, 5, 6, 0.24);
}
.devops-solutions .content-box h4 {
  margin: 0 0 10px;
}

.mobile-marvel-intro {
  padding: 100px 0 80px;
}
@media all and (max-width: 767px) {
  .mobile-marvel-intro {
    padding: 50px 0;
  }
}
.mobile-marvel-intro h2 {
  line-height: 160%;
}
.mobile-marvel-intro .textbox {
  color: #000;
  overflow: hidden;
  margin: 0 17% 15px 0;
}
@media all and (max-width: 991px) {
  .mobile-marvel-intro .textbox {
    margin: 0 0 15px;
  }
}
.mobile-marvel-intro .footer {
  display: flex;
}
@media all and (max-width: 991px) {
  .mobile-marvel-intro .footer {
    display: block;
  }
}
@media all and (max-width: 767px) {
  .mobile-marvel-intro .footer {
    margin: 0 0 20px;
  }
}
.mobile-marvel-intro .footer .contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  margin: 0 0 0 20px;
  border: solid #DADADA;
  border-width: 0 0 0 1px;
}
@media all and (max-width: 991px) {
  .mobile-marvel-intro .footer .contact-box {
    margin: 20px 0 0;
    justify-content: start;
  }
}
.mobile-marvel-intro .footer .info-box {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 0 17px;
}
.mobile-marvel-intro .footer .info-box span {
  display: block;
}
.mobile-marvel-intro .img-box {
  padding-left: 40px;
}

.user-application {
  color: #fff;
  background: url("images/bg-user-application.jpg") no-repeat center;
  background-size: cover;
}
.user-application h2 {
  color: #fff;
  margin: 0 0 10px;
}
.user-application ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.user-application ul li {
  position: relative;
  padding: 5px 0 5px 30px;
}
.user-application ul li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 13px;
  content: "";
  background: url("images/icon-check.png") no-repeat;
}

.app-development-service {
  padding: 0;
}
.app-development-service .top-section {
  color: #000;
  padding: 80px 0 40px;
  background: url("images/shape11.png") no-repeat;
}
.app-development-service .top-section h2 {
  margin: 0 0 10px;
}
.app-development-service .holder {
  padding: 30px 0 0;
  background: #FDFDFD;
}
.app-development-service .holder .box {
  display: flex;
  margin: 0 0 15px;
}
.app-development-service .holder .box .icon {
  width: 29px;
}
.app-development-service .holder .box .icon img {
  width: 29px;
  display: block;
  max-width: inherit;
}
.app-development-service .holder .box .textbox {
  color: #000;
  padding: 0 12px;
}
.app-development-service .holder .box .textbox h4 {
  font-weight: 600;
  margin: 0 0 10px;
}

.help-wrap {
  padding: 80px 0;
}
@media all and (max-width: 767px) {
  .help-wrap {
    padding: 50px 0;
  }
}
.help-wrap .head {
  color: #000;
  margin: 0 0 20px;
}
.help-wrap .head h2 {
  margin: 0 0 10px;
}
.help-wrap .textbox p {
  font-weight: 600;
}
.help-wrap h4 {
  font-weight: 600;
  margin: 0 0 10px;
}
.help-wrap ul {
  color: #000;
  font-weight: 500;
  margin: 0;
  padding: 0;
  list-style: none;
}
.help-wrap ul li {
  position: relative;
  padding: 10px 0 10px 28px;
}
.help-wrap ul li::before {
  position: absolute;
  left: 0;
  top: 15px;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 100%;
  border: solid 2px #D90A2C;
  background: url("images/icon-check2.png") no-repeat center;
}

.who-do-wrap {
  color: #fff;
  padding: 50px 0;
  position: relative;
  background: #000 url("images/shape12.png") no-repeat 100% 100%;
}
.who-do-wrap .img-box {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .who-do-wrap .img-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 33%;
    background: url("images/img-social-media.jpg") no-repeat center;
    background-size: cover;
  }
}
@media all and (min-width: 992px) {
  .who-do-wrap .img-box {
    width: 40%;
  }
}
@media all and (min-width: 768px) {
  .who-do-wrap .img-box img {
    opacity: 0;
  }
}
.who-do-wrap .head {
  margin: 0 0 20px;
}
.who-do-wrap .head h2 {
  color: #fff;
  margin: 0 0 10px;
}
.who-do-wrap h4 {
  color: #fff;
}
.who-do-wrap ul {
  padding-left: 17px;
}

#footer {
  color: #fff;
  font-size: 15px;
  overflow: hidden;
  background: #000E15;
  padding: 70px 0 30px;
}
@media all and (max-width: 767px) {
  #footer {
    padding: 40px 0 10px;
  }
}
#footer h4 {
  color: #fff;
  font-weight: 600;
  margin: 0 0 15px;
}
#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
}
#footer ul li {
  padding: 2px 0;
}
#footer ul li a {
  color: #fff;
}
#footer .logo-box {
  width: 114px;
  margin: 0 0 5px;
}
#footer .about ul {
  font-size: 13px;
}
#footer .about ul svg {
  margin-right: 9px;
}
#footer .instafeed {
  overflow: hidden;
  padding-top: 10px;
}
#footer .instafeed ul {
  margin: -3px;
}
#footer .instafeed ul li {
  float: left;
  width: 33.333%;
  padding: 3px;
}
#footer .instafeed ul li img {
  width: 100%;
}
#footer .subscribe-box {
  font-size: 14px;
}
#footer .subscribe-box ul li {
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
}
#footer .subscribe-box ul li:first-child {
  padding-left: 0;
}
#footer .subscribe-box form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: solid 1px #fff;
}
#footer .subscribe-box form .form-control {
  border: 0;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  background: transparent;
}
#footer .subscribe-box form .form-control::-moz-placeholder {
  color: #fff;
}
#footer .subscribe-box form .form-control::placeholder {
  color: #fff;
}
#footer .subscribe-box form .form-control:focus {
  box-shadow: none;
}/*# sourceMappingURL=all.css.map */