.top_header {
  padding: 0.5em 0;
}

.top_header .info_part span {
  font-size: 0.8em;
  font-family: "Montserrat", sans-serif;
  color: #1957c2;
}

.top_header .social_part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_header .social_part ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top_header .social_part ul li {
  margin-left: 1em;
}

.top_header .social_part ul li a {
  font-size: 0.8em;
  color: #1957c2;
}

.top_header .social_part ul li a i:before {
  font-size: 1em;
  margin-left: 0;
}

.top_header .social_part ul li a .so:before {
  font-size: 1.4em;
}

.site-header {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 6%;
  padding: 1em 0;
}

.site-header .logo a img {
  width: 140px;
}

.site-header .menu_part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.site-header .menu_part .main-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header .menu_part .main-navigation ul li a {
  color: #fff;
  margin-left: 1em;
}

.site-footer {
  padding: 3em 0;
  background-color: #0c0f26;
}

.site-footer .foot_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site-footer .foot_item img {
  width: 140px;
}

.site-footer .foot_item h3 {
  font-size: 1.5em;
  color: #fff;
}

.site-footer .foot_item p {
  color: #fff;
  margin: 1em 0;
  font-size: 0.8em;
}

.site-footer .foot_item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer .foot_item ul li {
  color: #fff;
  font-size: 0.8em;
}

.site-footer .foot_item ul li i:before {
  margin-left: 0;
  margin-right: 0.5em;
  font-size: 1em;
}

.site-footer .foot_item .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .foot_item .social li a {
  color: #fff;
  font-size: 1.5em;
}

.site-footer .bottom {
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  margin-top: 2em;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #0c0f26;
  top: 0;
  left: 0;
  z-index: 99999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#loader .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#loader .lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.hero {
  background-image: url(../img/hero.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.hero .hero_desc_part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 94vh;
}

.hero .hero_desc_part .hero_desc h2 {
  font-size: 3em;
  color: #b3362c;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.hero .hero_desc_part .hero_desc h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.hero .hero_desc_part .hero_desc p {
  width: 40%;
  margin: 1em 0;
  color: #fff;
  font-size: 1em;
  font-weight: 300;
}

.hero .hero_desc_part .hero_desc a {
  border: 0;
  padding: 0.5em 1em;
  font-weight: 600;
  display: inline-block;
}

.hero .hero_desc_part .hero_desc .greenbtn {
  background-color: #2ba04c;
  color: #fff;
}

.hero .hero_desc_part .hero_desc .whitebtn {
  background-color: #fff;
  color: #2ba04c;
  margin-left: 1em;
}

.hero .main {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.hero .main img {
  -webkit-animation: vibrate-1 1000ms linear infinite both;
          animation: vibrate-1 1000ms linear infinite both;
}

.hero .b_dot {
  position: absolute;
  right: 0;
  top: 16%;
  z-index: 2;
}

.hedo {
  text-align: center;
  margin-bottom: 2em;
}

.hedo h2 {
  color: #b3362c;
  font-size: 2em;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.hedo p {
  width: 50%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.service {
  padding: 3em 0;
  position: relative;
}

.service .col-xl-3 {
  margin-bottom: 2em;
}

.service .service-item {
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  padding: 2em;
  text-align: center;
}

.service .service-item img {
  display: block;
  margin: 5% auto;
  width: 100px;
}

.service .service-item h3 {
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  width: 100%;
}

.service .service-item p {
  font-size: 1em;
  font-weight: 400;
  margin: 1em 0;
}

.service .service-item a {
  display: block;
  text-align: center;
  width: 100%;
  border: 0;
  padding: 0.5em 1em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 14px;
  border: 2px solid #000;
  color: #000;
}

.service .s_dot {
  position: absolute;
  right: 0;
  top: 50%;
}

.infos {
  padding: 3em 0;
  position: relative;
}

.infos .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.infos .info-item .info-desc h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
  font-weight: 600;
}

.infos .info-item .info-desc p {
  font-weight: 400;
  font-size: 1.4em;
  margin: 1em 0;
}

.infos .info-item .info-desc .orangebtn {
  background-color: #fca70c;
  border: 0;
  padding: 0.5em 1em;
  color: #fff;
  display: inline-block;
}

.infos .lf_dot {
  position: absolute;
  left: 0;
  top: 50%;
}

.infos .rt_dot {
  position: absolute;
  right: 0;
  top: 80%;
}

.counts {
  padding: 4em 0 10em;
  position: relative;
}

.counts .green_rect {
  position: absolute;
  left: 20%;
  bottom: 4%;
  z-index: -1;
}

.counts .blue_rect {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}

.counts .main {
  position: absolute;
  left: 5%;
  top: 0;
}

.counts .count-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.counts .count-row .cnt-box {
  background-color: #0c0f26;
  width: 55%;
  padding: 2em 0;
}

.counts .count-row .cnt-box .cnt-it {
  text-align: center;
}

.counts .count-row .cnt-box .cnt-it span:before {
  font-size: 5em;
  color: #544e4e;
  margin-left: 0;
}

.counts .count-row .cnt-box .cnt-it h3 {
  color: #fff;
  margin-top: -72px;
}

.counts .count-row .cnt-box .cnt-it h3 span {
  font-size: 3em;
}

.clients {
  position: relative;
  padding-bottom: 2em;
}

.clients .client-slider .client-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clients .lf_dot {
  position: absolute;
  left: 0;
  top: 0;
}

.clients .rt_dot {
  position: absolute;
  right: 0;
  bottom: 0;
}

.business {
  background-image: url(../img/background.png);
  background-size: 100%;
}

.business .typo {
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business .typo h5 {
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
}

.business .typo h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 4em;
}

.about-hero {
  height: 98vh;
  background-image: url(../img/bck-next.png);
  background-size: 100%;
  position: relative;
}

.about-hero .about-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.about-hero .about-desc div {
  width: 50%;
  text-align: center;
}

.about-hero .about-desc div h2 {
  color: #b3362c;
  font-size: 2em;
  font-weight: 600;
}

.about-hero .about-desc div p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.about-hero .lf_dot {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-slider {
  padding-top: 3em;
}

.about-slider .about-owl .item {
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
}

.about-slider .about-owl .item .about-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-slider .about-owl .item .about-row .img-prt {
  width: 30%;
}

.about-slider .about-owl .item .about-row .desc-prt {
  width: 70%;
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-slider .about-owl .item .about-row .desc-prt h3 {
  width: 100%;
}

.about-slider .about-owl .owl-nav {
  position: absolute;
  left: 30%;
  bottom: 0;
}

.about-slider .about-owl .owl-nav button {
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-slider .about-owl .owl-nav button i:before {
  font-size: 1em;
  margin-left: 0;
}

.about-slider .about-owl .owl-nav button:focus {
  outline: 0;
}

.about-slider .about-owl .owl-nav button.owl-next {
  background-color: #000 !important;
}

.about-slider .about-owl .owl-nav button.owl-next i:before {
  color: #fff;
}

.team-hero {
  height: 98vh;
  background-image: url(../img/bck-team.png);
  background-size: 100%;
  position: relative;
}

.team-hero .team-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.team-hero .team-desc div {
  width: 50%;
  text-align: center;
}

.team-hero .team-desc div h2 {
  color: #b3362c;
  font-size: 2em;
  font-weight: 600;
}

.team-hero .team-desc div p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.team-hero .lf_dot {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.team {
  padding: 3em 0;
}

.team .team-item {
  margin-top: 2em;
}

.team .team-item .avatar {
  margin: 0;
  padding: 1em;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
  position: relative;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.team .team-item .avatar::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -webkit-transform: rotate(-5deg) translate(-16px, -16px);
          transform: rotate(-5deg) translate(-16px, -16px);
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #000;
}

.team .team-item .avatar:hover::before {
  -webkit-transform: rotate(0deg) translate(-16px, -16px);
          transform: rotate(0deg) translate(-16px, -16px);
}

.team .team-item .name {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 1em;
  text-align: center;
}

.team .team-item .desig {
  display: block;
  font-size: 1em;
  text-align: center;
  color: #fca70c;
}

.team .team-item .social {
  width: 30%;
  margin: 0 auto;
}

.team .team-item .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team .team-item .social ul li {
  text-align: center;
}

.team .team-item .social ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.team .team-item .social ul li a i:before {
  color: #000;
  margin-left: 0;
}

.service-hero {
  height: 98vh;
  background-image: url(../img/bck-service.png);
  background-size: 100%;
  position: relative;
}

.service-hero .service-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.service-hero .service-desc div {
  width: 50%;
  text-align: center;
}

.service-hero .service-desc div h2 {
  color: #b3362c;
  font-size: 2em;
  font-weight: 600;
}

.service-hero .service-desc div p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.service-hero .lf_dot {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.book {
  background-image: url(../img/sect-service.png);
  background-size: 100%;
  padding: 3em 0;
  margin-bottom: 3em;
}

.book .appont {
  text-align: center;
}

.book .appont h3 {
  font-size: 2em;
  font-weight: 600;
  color: #fff;
}

.book .appont h4 {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
  margin: 1em 0;
}

.book .appont a {
  border: 0;
  padding: 0.5em 1em;
  display: inline-block;
}

.book .appont .bookbtn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.book .appont .callbtn {
  background-color: #fff;
  border: 2px solid #fff;
  color: #0c0f26;
  margin-left: 1em;
}

.contact {
  background-image: url(../img/bck-contact.png);
  padding: 5em 0;
  position: relative;
}

.contact .main {
  height: 380px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact .main iframe {
  height: 100%;
}

.contact .b_dot {
  position: absolute;
  right: 0;
  top: 11%;
}

.contact .s_dot {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact .red_rect {
  position: absolute;
  right: 0;
  bottom: 14%;
  z-index: 1;
}

.contact .red_rect img {
  -webkit-animation: rotate-center 9000ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s infinite alternate both;
          animation: rotate-center 9000ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s infinite alternate both;
}

.contact .blue_rect {
  position: absolute;
  right: 16%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.contact .blue_rect img {
  -webkit-animation: rotate-center 6000ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s infinite alternate both;
          animation: rotate-center 6000ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s infinite alternate both;
}

.contact .contact-form {
  width: 60%;
}

.contact .contact-form h2 {
  color: #b3362c;
  font-size: 2em;
  margin-bottom: 1em;
}

.contact .contact-form form input,
.contact .contact-form form textarea {
  width: 100%;
  background-color: transparent;
  border: 2px solid #a3a3a3;
  padding: 0.5em;
  text-align: center;
  margin-bottom: 1em;
}

.contact .contact-form form span {
  margin-bottom: 1em;
}

.contact .contact-form form .wpcf7-response-output {
  margin: 0 !important;
  color: #b3362c;
}

.contact .contact-form form .csubmit {
  background-color: #2ba04c;
  color: #fff;
  text-transform: uppercase;
  border: 0;
}

.infos .info-item .info-desc p {
  font-size: 1.2em;
}

.infos .info-item .info-desc ul {
  padding-left: 1em;
}

.infos .info-item .info-desc ul li {
  font-size: 1.2em;
}

.contact-section {
  padding: 5em 0;
  position: relative;
}

.contact-section .cont-item {
  text-align: center;
}

.contact-section .cont-item span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-block;
  background-color: #0c0f26;
}

.contact-section .cont-item span i:before {
  font-size: 3em;
  margin-left: 0;
  color: #fff;
}

.contact-section .cont-item span i.flaticon-placeholder {
  margin-left: 14px;
}

.contact-section .cont-item h3 {
  font-size: 1em;
  margin-top: 1em;
}

.contact-section .lf_dot {
  left: 0;
  bottom: 0;
  position: absolute;
}

.contact-section .rt_dot {
  position: absolute;
  right: 0;
  top: 0;
}

.post-cont {
  padding: 1em 0;
}

.post-cont .post-desc {
  font-family: "Open Sans", sans-serif;
}

.post-cont .post-desc .meta {
  margin-bottom: 0.8em;
}

.post-cont .post-desc .meta span {
  font-size: 0.8em;
}

.post-cont .post-desc p {
  font-size: 1.2em;
}

.post-cont .post-desc h2 {
  font-size: 1.4em;
}

@media screen and (max-width: 1266px) {
  .counts .count-row .cnt-box {
    width: 50%;
  }
}

@media screen and (max-width: 1205px) {
  .social_part {
    display: none !important;
  }
  .hero .main {
    width: 50%;
  }
  .hedo p {
    font-size: 0.8em;
  }
  .counts .main {
    width: 50%;
  }
  .counts .count-row .cnt-box .cnt-it h3 span {
    font-size: 2em;
  }
  .owl-carousel .owl-item img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 992px) {
  .hero .b_dot {
    width: 10%;
  }
  .hero .hero_desc_part .hero_desc h2 {
    font-size: 2em;
  }
  .hero .hero_desc_part .hero_desc h3 {
    font-size: 1em;
  }
  .hero .hero_desc_part .hero_desc p {
    font-size: 0.8em;
  }
  .infos .info-item .info-desc h3 {
    font-size: 1.5em;
  }
  .infos .info-item .info-desc p {
    font-size: 1em;
  }
  .counts .green_rect {
    bottom: 10%;
  }
  .counts .blue_rect {
    top: 30%;
  }
  .counts .count-row .cnt-box {
    width: 45%;
  }
  .counts .count-row .cnt-box .cnt-it span:before {
    font-size: 3em;
  }
  .counts .count-row .cnt-box .cnt-it h3 {
    margin-top: -20px;
  }
  .counts .count-row .cnt-box .cnt-it h3 span {
    font-size: 1em;
  }
  .business .typo h2 {
    font-size: 3em;
  }
  .contact .s_dot {
    width: 20px;
  }
  .contact .b_dot {
    width: 100px;
    top: 15%;
  }
  .contact .blue_rect {
    right: 22%;
  }
  .contact .red_rect {
    bottom: 18%;
  }
  .service .s_dot,
  .clients .lf_dot,
  .clients .rt_dot,
  .infos .lf_dot,
  .infos .rt_dot {
    width: 30px;
  }
}

@media screen and (max-width: 768px) {
  .top_header .info_part span {
    font-size: 0.6em;
    text-align: center;
    display: block;
  }
  .service .col-md-4 {
    margin-bottom: 2em;
  }
  .info-img img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  .infos .lf_dot {
    top: 25%;
  }
  .counts .main {
    top: 5%;
  }
  .counts .count-row .cnt-box {
    padding: 1em 0;
  }
  .counts .count-row .cnt-box .cnt-it h3 {
    font-size: 1em;
  }
  .counts .count-row .cnt-box .cnt-it span:before {
    font-size: 2em;
  }
  .hedo p {
    width: 100%;
  }
  .business {
    padding: 1em 0;
  }
  .business .typo h5 {
    font-size: 1em;
  }
  .business .typo h2 {
    font-size: 2em;
  }
  .about-hero .about-desc div {
    width: 70%;
  }
  .team-hero .team-desc div {
    width: 70%;
  }
  .service-hero .service-desc div {
    width: 70%;
  }
  .contact-hero .contact-desc div {
    width: 70%;
  }
  .sm-wrapper {
    width: 90% !important;
  }
  .about-slider .about-owl .owl-nav {
    left: 40%;
  }
  .about-slider .about-owl .item .about-row .desc-prt {
    width: 60%;
  }
  .about-slider .about-owl .item .about-row .img-prt {
    width: 40%;
  }
  .desc-prt h3 {
    font-size: 1.2em;
  }
  .contact-section .lf_dot,
  .contact-section .rt_dot {
    width: 20px;
  }
  .contact {
    padding-bottom: 0;
  }
  .contact .contact-form {
    margin: 0 auto;
  }
  .contact .contact-form h2 {
    font-size: 1em;
    text-align: center;
  }
  .contact .b_dot {
    width: 40px;
  }
  .contact .main {
    position: unset;
    border-radius: 0;
    margin-top: 1em;
    -webkit-transform: unset;
            transform: unset;
  }
  .contact .red_rect,
  .contact .blue_rect {
    display: none;
  }
  .service .s_dot,
  .clients .lf_dot,
  .clients .rt_dot,
  .infos .lf_dot,
  .infos .rt_dot {
    width: 20px;
  }
  .desk {
    display: none !important;
  }
  .med {
    display: block !important;
  }
  .med .info-item {
    display: block;
  }
  .illus img {
    width: 25%;
    display: block;
    margin: 0 auto;
  }
  .info-img {
    margin-bottom: 1em;
  }
  .foot_item {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

@media screen and (max-width: 576px) {
  .sml {
    display: block !important;
  }
  .sml .info-item {
    display: block;
  }
  .illus img {
    width: 12%;
    display: block;
    margin: 0 auto;
  }
  .top_header .info_part span {
    font-size: 0.4em;
  }
  .foot_item {
    margin-bottom: 1em;
  }
  .hero .hero_desc_part .hero_desc h2 {
    font-size: 1.5em;
  }
  .hero .b_dot {
    width: 10%;
    top: 60%;
  }
  .hero .main {
    position: unset;
    width: 100%;
  }
  .hero .hero_desc_part .hero_desc p {
    width: 100%;
  }
  .infos .lf_dot {
    top: 40%;
  }
  .infos .lf_dot,
  .infos .rt_dot {
    width: 20px;
  }
  .counts .main {
    width: 60%;
  }
  .counts .green_rect,
  .counts .blue_rect {
    display: none;
  }
  .counts .count-row .cnt-box {
    width: 100%;
    padding: 0 30px;
  }
  .counts .count-row .cnt-box .cnt-it {
    text-align: right;
  }
  .clients .client-slider .client-owl img {
    width: 100%;
    height: unset;
  }
  .about-hero .about-desc div {
    width: 80%;
  }
  .about-slider .about-owl .owl-nav {
    left: 40%;
  }
  .about-slider .about-owl .item .about-row .desc-prt {
    width: 100%;
  }
  .about-slider .about-owl .item .about-row .img-prt {
    width: 100%;
  }
  .team-hero .lf_dot,
  .about-hero .lf_dot,
  .service-hero .lf_dot {
    width: 20px;
  }
  .book .appont h3 {
    font-size: 1em;
  }
  .about-slider .about-owl .item {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

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

body {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

a,
a:hover {
  text-decoration: none;
}

.wrapper {
  width: 92%;
  margin: 0 auto;
}

.sm-wrapper {
  width: 80%;
  margin: 0 auto;
}

.sticky {
  top: 0;
  background-color: #0c0f26;
}

.mob {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mob span {
  color: #fff;
  font-size: 1.5em;
}

.mob div#mySidenav {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mob div#mySidenav .closebtn {
  position: absolute;
  top: 20%;
  left: 50%;
  color: #fff;
  font-size: 2em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mob div#mySidenav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob div#mySidenav ul li a {
  display: block;
  text-align: center;
  color: #fff;
  margin: 1em 0;
}

.med,
.sml {
  display: none;
}
/*# sourceMappingURL=main.css.map */