﻿/*************************************** Start Global Style */
/* montserrat  */
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), url("../assets/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 100 900;
  font-stretch: 25% 151%;
  font-display: swap;
}
:root {
  --bs-body-color: #121212 ;
}

.clearfix {
  content: "";
  clear: both;
  display: table;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
input {
  font-family: "Montserrat", sans-serif;
}

.btn {
  border-radius: 0;
  height: 56px;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: #1A7AC7;
  border-color: #1A7AC7;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

.btn-light {
  border-color: #D9D9D9;
  background-color: transparent;
  color: #3F4756;
}
.btn-light:hover {
  background-color: #1A7AC7;
  border-color: #1A7AC7;
  color: #FFFFFF;
}

.btn-white {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #1A7AC7;
}
.btn-white:hover {
  background-color: #1A7AC7;
  border-color: #1A7AC7;
  color: #FFFFFF;
}

section header > .title {
  font-size: 24px;
  font-weight: 500;
  color: #1A7AC7;
  margin-bottom: 16px;
}
section header > .sub-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}
section header > .sub-title.empty {
  height: 30px;
  background-color: #f7f7f7;
}

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

/*************************************** End Global Style */
.navbar {
  background-color: rgba(18, 18, 18, 0.4784313725);
  width: 100%;
  height: 88px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.1s ease-in;
}
.navbar.scrollStyle {
  background-color: #000;
  box-shadow: 0 6px 20px -5px #000;
}
.navbar.whiteNavbar {
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0px -1.5px #d9d9d9;
}
.navbar.whiteNavbar .navbar-nav .nav-link {
  color: #121212;
}
.navbar .navbar-toggler {
  border: 0;
}
.navbar .navbar-toggler:focus {
  border: none;
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-image: url(../assets/images/icons/navbar-toggler.svg);
}
.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  width: 18px;
  height: 18px;
  background-image: url(../assets/images/icons/close.svg);
}
.navbar .navbar-nav .nav-link {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
}
.navbar .navbar-nav .nav-link.active {
  font-weight: 600;
}
.navbar .navbar-nav .dropdown .dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .dropdown .megamenu {
  padding: 20px 20px 55px;
  border-radius: 0;
  border: none;
}
.navbar .navbar-nav .dropdown .megamenu .sub-menu .title {
  font-size: 16px;
  color: #3F4756;
  font-weight: 500;
  box-shadow: 0 2px 0px -1.5px #d9d9d9;
  padding: 12px 0;
  margin-bottom: 30px;
}
.navbar .navbar-nav .dropdown .megamenu .sub-menu .list {
  list-style: none;
  padding: 0;
}
.navbar .navbar-nav .dropdown .megamenu .sub-menu .list li:not(:last-of-type) {
  margin-bottom: 40px;
}
.navbar .navbar-nav .dropdown .megamenu .sub-menu .list li a {
  font-size: 20px;
  font-weight: 600;
  color: #121212;
  text-decoration: none;
}
.navbar .navbar-nav .dropdown .megamenu .sub-menu .list li .pref {
  color: #424242;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.navbar .btn-join-us {
  font-size: 20px;
  font-weight: 600;
  width: 180px;
  height: 50px;
  order: 4;
}

header#home {
  height: 100vh;
  background-color: #13568B;
  background-image: url(../assets/images/design/footer.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 500px;
}
header .owl-carousel {
  position: relative;
}
header .owl-carousel .slide {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .owl-carousel .slide .content {
  width: 100%;
  padding: 35px 0 40px;
  background-color: rgba(18, 18, 18, 0.5019607843);
  z-index: 2;
}
header .owl-carousel .slide .content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .owl-carousel .slide .content .title {
  text-align: center;
  color: #FFFFFF;
  font-size: 90px;
  font-weight: 600;
}
header .owl-carousel .slide .content .title span {
  font-weight: 800;
  color: #1A7AC7;
}
header .owl-carousel .slide .content .pref {
  width: 610px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
header .owl-carousel .slide .content .actions .btn {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .owl-carousel .slide .content .actions .btn.btn-primary {
  font-weight: 600;
  width: 160px;
  margin-right: 22px;
}
header .owl-carousel .slide .content .actions .btn.bg-white {
  font-weight: 400;
  width: 190px;
}
header .owl-carousel .slide.slide-3 .content .container {
  align-items: flex-start;
  padding: 0 100px;
}
header .owl-carousel .slide.slide-3 .content .title {
  text-align: left;
}
header .owl-carousel .slide.slide-3 .content .pref {
  text-align: left;
}
header .owl-carousel .slide .video-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
header .owl-carousel .slide .video-container video {
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
}
header .owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  right: 0;
}
header .owl-carousel .owl-nav .owl-prev, header .owl-carousel .owl-nav .owl-next {
  position: absolute;
  width: 54px;
  height: 18px;
}
header .owl-carousel .owl-nav .owl-prev:hover, header .owl-carousel .owl-nav .owl-next:hover {
  background: none;
}
header .owl-carousel .owl-nav .owl-prev.disabled, header .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 1;
}
header .owl-carousel .owl-nav .owl-prev::before, header .owl-carousel .owl-nav .owl-next::before {
  content: "";
  display: inline-block;
  background-image: url(../assets/images/icons/arrow-left.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 54px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
}
header .owl-carousel .owl-nav .owl-prev span, header .owl-carousel .owl-nav .owl-next span {
  display: none;
}
header .owl-carousel .owl-nav .owl-prev {
  left: 10%;
}
header .owl-carousel .owl-nav .owl-prev::before {
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .owl-carousel .owl-nav .owl-next {
  right: 10%;
}
header .owl-carousel .owl-nav .owl-next::before {
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
header .owl-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 57px);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .owl-carousel .owl-dots .owl-dot span {
  width: 24px;
  height: 24px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  position: relative;
}
header .owl-carousel .owl-dots .owl-dot.active span {
  background-color: #FFFFFF;
}
header .owl-carousel .owl-dots .owl-dot.active span:before {
  content: "";
  width: 180%;
  height: 180%;
  display: inline-block;
  border: 1px solid #FFFFFF;
  position: absolute;
  top: -40%;
  left: -40%;
  border-radius: 50%;
}

section.features {
  background-color: #F5F5F5;
  padding: 40px 0;
}
section.features .feature {
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
section.features .feature .icon {
  border: 1px solid #E5E7EB;
  background-color: #FAFBFD;
  min-width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  overflow: hidden;
}
section.features .feature .icon img {
  width: 62px;
}
section.features .feature .content .title {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 14px;
}
section.features .feature .content .title::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background-image: url("../assets/images/icons/underline.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -4px;
}
section.features .feature .content .desc {
  font-size: 15px;
  font-weight: 400;
  color: #3F4756;
  margin-bottom: 0;
}

section.about-us {
  padding: 125px 0;
}
section.about-us .content {
  padding: 35px 0;
}
section.about-us .content .pref {
  font-size: 22px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 32px;
  max-height: 270px;
  overflow: hidden;
}
section.about-us .content .pref.empty {
  height: 100px;
  background-color: #f7f7f7;
}
section.about-us .read-more {
  font-size: 18px;
  font-weight: 500;
  width: 160px;
}
section.about-us .image-holder {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.about-us .image-holder.empty {
  background-color: #f7f7f7;
}
section.about-us .video-holder {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
section.about-us .video-holder video {
  width: 100%;
  object-fit: contain;
}

section.services {
  padding: 90px 0;
  background-color: #F5F5F5;
  position: relative;
}
section.services .container {
  position: relative;
  z-index: 1;
}
section.services .container > .row > div {
  margin-bottom: 48px;
}
section.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url(../assets/images/design/map.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-origin: border-box;
  opacity: 0.3;
}
section.services header .sub-title {
  margin-bottom: 36px;
  width: 500px;
}
section.services .service {
  border: 1px solid #E5E7EB;
  padding: 32px 24px;
  background-color: #FAFBFD;
  height: 100%;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
section.services .service:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
section.services .service .icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  box-shadow: 0 0 40px rgba(18, 18, 18, 0.0509803922);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
section.services .service .icon img {
  width: 44px;
}
section.services .service .title {
  font-size: 24px;
  font-weight: 600;
}
section.services .service .pref {
  font-size: 16px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 30px;
}
section.services .service .read-more {
  border: none;
  width: 120px;
  text-align: left;
  padding: 0;
  color: #424242;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  height: auto;
}
section.services .service .read-more:after {
  content: "";
  width: 37px;
  height: 21px;
  display: inline-block;
  background-image: url(../assets/images/icons/arrow-right.svg);
  position: absolute;
  right: 0;
  transition: all 0.2s ease-in-out;
}
section.services .service .read-more:hover {
  color: #1A7AC7;
}
section.services .service .read-more:hover:after {
  right: -5px;
}
section.services .service.empty {
  background-color: #dcdcdc;
  cursor: auto;
}
section.services .service.empty:hover {
  box-shadow: none;
}
section.services .action {
  text-align: center;
}
section.services .action .load-more {
  font-size: 18px;
  font-weight: 500;
  width: 160px;
}

section.our-team {
  padding: 60px 0;
}
section.our-team header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.our-team header .sub-title {
  width: 780px;
  margin-bottom: 80px;
}
section.our-team .owl-carousel .slide .member .image-holder {
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 500px;
  margin-bottom: 18px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.our-team .owl-carousel .slide .member .image-holder:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
section.our-team .owl-carousel .slide .member .name {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}
section.our-team .owl-carousel .slide .member .position {
  font-size: 20px;
  font-weight: 400;
  color: #424242;
}
section.our-team .owl-carousel .slide .member.empty {
  background-color: #f7f7f7;
  height: 500px;
}

section.process {
  background-color: #E4E4E4;
  padding: 130px 0 225px;
  overflow: hidden;
}
section.process header .sub-title {
  margin-bottom: 90px;
}
section.process .steps {
  background-color: #F5F5F5;
  overflow: hidden;
}
section.process .steps .container > .row > .col-md:nth-of-type(odd) .step {
  background-color: #F5F5F5;
}
section.process .steps .container > .row > .col-md:nth-of-type(even) .step {
  background-color: #FFFFFF;
}
section.process .steps .step {
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: #F5F5F5;
  transition: all 0.1s ease-in-out;
}
section.process .steps .step:hover {
  background-color: #FFFFFF;
}
section.process .steps .step .no {
  font-size: 24px;
  font-weight: 400;
  color: #3F4756;
  align-self: flex-start;
}
section.process .steps .step img {
  width: 124px;
}
section.process .steps .step .title {
  font-size: 32px;
  font-weight: 500;
  align-self: flex-start;
  margin: 0;
}

section.case-studies {
  padding: 200px 0;
  background-color: #F5F5F5;
}
section.case-studies header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.case-studies header .sub-title {
  margin-bottom: 72px;
  width: 650px;
}
section.case-studies .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
section.case-studies .owl-carousel .case-study .image-holder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  margin-bottom: 24px;
  position: relative;
}
section.case-studies .owl-carousel .case-study .image-holder:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(18, 18, 18);
  background: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.5) 25%, rgba(255, 255, 255, 0) 100%);
}
section.case-studies .owl-carousel .case-study .details {
  display: flex;
}
section.case-studies .owl-carousel .case-study .details .icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
section.case-studies .owl-carousel .case-study .details .icon img.logo {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
section.case-studies .owl-carousel .case-study .details .icon img.line {
  width: 4px;
}
section.case-studies .owl-carousel .case-study .details .icon .vertical-line {
  width: 4px;
  height: 66px;
  -webkit-mask: url("../assets/images/icons/vertical-line.svg") no-repeat center;
  mask: url("../assets/images/icons/vertical-line.svg") no-repeat center;
}
section.case-studies .owl-carousel .case-study .details .info {
  padding: 10px;
}
section.case-studies .owl-carousel .case-study .details .info .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
}
section.case-studies .owl-carousel .case-study .details .info .type {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 11px;
  color: #3F4756;
}
section.case-studies .owl-carousel .case-study .details .info .pref {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
}
section.case-studies .owl-carousel .case-study.empty {
  background-color: #ebebeb;
  height: 400px;
}
section.case-studies .owl-carousel .owl-dots .owl-dot.active span {
  background-color: #1A7AC7;
}
section.case-studies .owl-carousel .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  background-color: #E5E7EB;
}

section.technologies {
  padding: 80px 0 180px;
  background-color: #F1F1F1;
}
section.technologies header .sub-title {
  margin-bottom: 62px;
  width: 400px;
}
section.technologies .owl-carousel .owl-stage {
  display: flex;
}
section.technologies .owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
section.technologies .owl-carousel .owl-item .tech {
  width: 100%;
  min-height: 220px;
  padding: 24px 16px 16px;
  background-color: #FFFFFF;
}
section.technologies .owl-carousel .owl-item .tech .logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  height: 50px;
}
section.technologies .owl-carousel .owl-item .tech .logo img {
  width: 50px;
  margin-right: 20px;
}
section.technologies .owl-carousel .owl-item .tech .logo .name {
  font-size: 24px;
  font-family: 400;
  margin: 0;
}
section.technologies .owl-carousel .owl-item .tech .desc {
  font-size: 13px;
  font-weight: 400;
  color: #424242;
  margin: 0;
}
section.technologies .owl-carousel .owl-nav {
  position: absolute;
  top: -150px;
  right: 0;
  margin: 0;
}
section.technologies .owl-carousel .owl-nav .owl-prev,
section.technologies .owl-carousel .owl-nav .owl-next {
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section.technologies .owl-carousel .owl-nav .owl-prev::before,
section.technologies .owl-carousel .owl-nav .owl-next::before {
  content: "";
  display: inline-block;
  background-image: url(../assets/images/icons/nav-arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
section.technologies .owl-carousel .owl-nav .owl-prev span,
section.technologies .owl-carousel .owl-nav .owl-next span {
  display: none;
}
section.technologies .owl-carousel .owl-nav .owl-prev::before {
  content: "";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

section.contact-us {
  background-color: #FFFFFF;
  padding-top: 50px;
}
section.contact-us > .container {
  position: relative;
  z-index: 2;
}
section.contact-us > .container::before {
  content: "";
  width: 236px;
  height: 194px;
  display: inline-block;
  background-image: url("../assets/images/design/contact-us.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
section.contact-us .text-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.contact-us .text-content .title {
  font-size: 40px;
  font-weight: 600;
  color: #1A7AC7;
  margin-bottom: 20px;
}
section.contact-us .text-content .pref {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 37px;
}
section.contact-us .text-content .info {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.contact-us .text-content .info li {
  margin-bottom: 15px;
}
section.contact-us .text-content .info li img {
  width: 24px;
  margin-right: 10px;
}
section.contact-us .text-content .info li span {
  font-size: 16px;
  font-weight: 400;
  color: #424242;
}
section.contact-us .text-content .info li span a {
  color: #424242;
  text-decoration: none;
}
section.contact-us .text-content .info li span.empty {
  width: 50%;
  height: 10px;
  display: inline-block;
  background-color: #f7f7f7;
}
section.contact-us .form-content {
  border: 1px solid #D9D9D9;
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.0509803922);
  background-color: #F5F5F5;
  padding: 44px 16px 48px;
}
section.contact-us .form-content .title {
  color: #3F4756;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
section.contact-us .form-content .form-control {
  border-radius: 0;
  height: 72px;
  font-size: 18px;
  font-weight: 400;
  padding: 0.375rem 24px;
  box-shadow: 0 0 0px 1px #d9d9d9;
  border: none;
}
section.contact-us .form-content .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #B7B7B7;
}
section.contact-us .form-content .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #B7B7B7;
}
section.contact-us .form-content .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #B7B7B7;
}
section.contact-us .form-content .form-control:-moz-placeholder { /* Firefox 18- */
  color: #B7B7B7;
}
section.contact-us .form-content div.textarea {
  margin-bottom: 32px;
  position: relative;
}
section.contact-us .form-content div.textarea textarea {
  height: 200px;
}
section.contact-us .form-content .btn-primary {
  font-size: 20px;
  font-weight: 500;
  width: 300px;
  text-transform: uppercase;
}
section.contact-us .form-content .input-validation-error {
  border: 1px solid #dc3545 !important;
}
section.contact-us .form-content .field-validation-error {
  position: absolute;
  bottom: 5px;
  left: 24px;
  font-size: 12px;
}
section.contact-us .map {
  position: relative;
  margin-top: -100px;
}
section.contact-us .map iframe {
  margin-bottom: -6px;
}

section.banner {
  background-image: url("../assets/images/design/banner.png");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
section.banner .content {
  height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.banner .content .title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
section.banner .content button {
  font-size: 20px;
  font-weight: 500;
  width: 190px;
}

footer {
  padding: 80px 0 0;
  background-color: #13568B;
  background-image: url("../assets/images/design/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #FFFFFF;
}
footer .info .logo {
  margin-bottom: 32px;
}
footer .info .logo img {
  width: 300px;
}
footer .info .pref {
  font-size: 22px;
  font-weight: 400;
}
footer .info .contact {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
footer .info .contact li {
  margin-bottom: 15px;
  display: flex;
}
footer .info .contact li .icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #FFFFFF;
  margin-right: 10px;
}
footer .info .contact li .location {
  -webkit-mask: url(../assets/images/icons/location.svg) center/contain no-repeat;
  mask: url(../assets/images/icons/location.svg) center/contain no-repeat;
}
footer .info .contact li .mail {
  -webkit-mask: url(../assets/images/icons/mail.svg) center/contain no-repeat;
  mask: url(../assets/images/icons/mail.svg) center/contain no-repeat;
}
footer .info .contact li .phone {
  -webkit-mask: url(../assets/images/icons/call.svg) center/contain no-repeat;
  mask: url(../assets/images/icons/call.svg) center/contain no-repeat;
}
footer .info .contact li img {
  width: 24px;
  margin-right: 10px;
}
footer .info .contact li span {
  font-size: 16px;
  font-weight: 400;
}
footer .info .contact li span a {
  text-decoration: none;
  color: #FFFFFF;
}
footer .info .social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
footer .info .social li {
  width: 48px;
  height: 48px;
  background-color: #F1F1F1;
  margin-right: 12px;
}
footer .info .social li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .links .title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 60px;
}
footer .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .links ul li {
  margin-bottom: 12px;
}
footer .links ul li a {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}
footer .tail {
  height: 124px;
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid #A2ACBD;
  background-color: #13568B;
}
footer .tail .content {
  display: flex;
}
footer .tail .content p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
footer .tail .content a {
  margin-left: 40px;
  color: #FFFFFF;
}

.pricing-modal .modal-content {
  overflow: hidden;
  border-radius: 10px;
}
.pricing-modal .modal-content .modal-body {
  padding: 0;
  position: relative;
}
.pricing-modal .modal-content .modal-body .btn-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F1F1F1;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
}
.pricing-modal .modal-content .modal-body aside {
  padding: 24px;
  background-color: #13568B;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-modal .modal-content .modal-body aside::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 35%;
  background-image: url(../assets/images/design/net-map.svg);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: top;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.pricing-modal .modal-content .modal-body aside .title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-modal .modal-content .modal-body aside .pref {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  margin-bottom: 32px;
  width: 70%;
}
.pricing-modal .modal-content .modal-body aside .pref::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 6px;
  background-color: #F1F1F1;
  border-radius: 2px;
}
.pricing-modal .modal-content .modal-body aside .image-holder {
  border-radius: 10px;
  border: 3px solid #FFFFFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.pricing-modal .modal-content .modal-body aside .image-holder img {
  width: 100%;
}
.pricing-modal .modal-content .modal-body .pricing {
  padding: 100px 20px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-modal .modal-content .modal-body .pricing .title {
  font-size: 32px;
  font-weight: 600;
}
.pricing-modal .modal-content .modal-body .pricing .desc {
  font-size: 22px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 50px;
  width: 80%;
}
.pricing-modal .modal-content .modal-body .pricing .actions .action {
  background-color: #F9F9F9;
  box-shadow: 0 0 0px 1px #D9D9D9;
  border-radius: 10px;
  padding: 26px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.pricing-modal .modal-content .modal-body .pricing .actions .action:hover {
  box-shadow: 0 0 0px 1px #00578b;
}
.pricing-modal .modal-content .modal-body .pricing .actions .action img {
  width: 72px;
  margin-bottom: 16px;
}
.pricing-modal .modal-content .modal-body .pricing .actions .action span {
  font-size: 18px;
  font-weight: 500;
  color: #3F4756;
}

.swal2-styled.swal2-confirm {
  background-color: #1A7AC7 !important;
  border-color: #1A7AC7 !important;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(26, 122, 199, 0.5) !important;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/***************************************** Start Media */
/* custom large */
/*Large devices (desktops, less than 1200px)*/
/*Medium devices (tablets, less than 992px)*/
/*Small devices (landscape phones, less than 768px)*/
/*Extra small devices (portrait phones, less than 576px)*/
/****************************************** End Media */
/***************************************** Start Global */
/* custom large */
@media (max-width: 1599.98px) {
  .btn {
    height: 50px;
  }
}
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  .btn {
    height: 48px;
  }
  section header > .title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  section header > .sub-title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
/*Medium devices (tablets, less than 992px)*/
/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  section header > .title {
    font-size: 20px;
  }
  section header > .sub-title {
    font-size: 24px;
  }
}
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  section header > .title {
    font-size: 18px;
  }
  section header > .sub-title {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .btn {
    height: 35px;
  }
}
/****************************************** End Global */
/****************************************** Start Navbar and Header */
@media (min-width: 2000px) {
  header .owl-carousel .owl-nav .owl-prev {
    left: 18%;
  }
  header .owl-carousel .owl-nav .owl-nex {
    right: 18%;
  }
}
/* custom large */
@media (max-width: 1599.98px) {
  .navbar .navbar-brand img {
    width: 200px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .title {
    margin-bottom: 25px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li a {
    font-size: 18px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li .pref {
    font-size: 14px;
  }
  .navbar .btn-join-us {
    width: 160px;
    font-size: 18px;
    height: 48px;
  }
  header .owl-carousel .slide .content {
    padding: 25px 0 30px;
  }
  header .owl-carousel .slide .content .title {
    font-size: 50px;
  }
  header .owl-carousel .slide .content .pref {
    width: 600px;
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn {
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn.btn-primary {
    width: 140px;
    margin-right: 18px;
  }
  header .owl-carousel .slide .content .actions .btn.bg-white {
    width: 150px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 120px;
  }
  header .owl-carousel .owl-nav .owl-prev {
    left: 7%;
  }
  header .owl-carousel .owl-nav .owl-nex {
    right: 7%;
  }
  header .owl-carousel .owl-nav .owl-prev, header .owl-carousel .owl-nav .owl-next {
    width: 54px;
    height: 18px;
  }
  header .owl-carousel .owl-nav .owl-prev::before, header .owl-carousel .owl-nav .owl-next::before {
    content: "";
    width: 54px;
    height: 18px;
  }
  header .owl-carousel .owl-dots {
    left: calc(50% - 51px);
  }
  header .owl-carousel .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
  }
}
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  .navbar .navbar-brand img {
    width: 180px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .title {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list.one-item li {
    margin-bottom: 25px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li a {
    font-size: 14px;
  }
  .navbar .navbar-nav .dropdown .megamenu .sub-menu .list li .pref {
    font-size: 12px;
  }
  .navbar .btn-join-us {
    width: 150px;
  }
  header .owl-carousel .slide .content .title {
    font-size: 52px;
  }
  header .owl-carousel .slide .content .pref {
    width: 500px;
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn {
    font-size: 14px;
  }
  header .owl-carousel .slide .content .actions .btn.btn-primary {
    width: 120px;
    margin-right: 15px;
  }
  header .owl-carousel .slide .content .actions .btn.bg-white {
    width: 140px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 40px;
  }
  header .owl-carousel .owl-nav .owl-prev {
    left: 0;
  }
  header .owl-carousel .owl-nav .owl-next {
    right: 0;
  }
  header .owl-carousel .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
  }
}
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  .navbar .container {
    justify-content: flex-end;
  }
  .navbar .container .navbar-brand {
    margin-right: auto;
  }
  .navbar .container .navbar-brand img {
    width: 180px;
  }
  .navbar .container .navbar-collapse {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
  }
  .navbar .container .navbar-nav {
    background-color: #FFF;
    padding: 25px;
    --bs-scroll-height: 75vh;
    justify-content: unset;
  }
  .navbar .container .navbar-nav .nav-item:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .navbar .container .navbar-nav .nav-link {
    font-size: 18px;
    color: #121212;
    font-weight: 500;
  }
  .navbar .container .navbar-nav .nav-link.active {
    font-weight: 600;
  }
  .navbar .container .navbar-nav .dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
  }
  .navbar .container .navbar-nav .dropdown .dropdown-toggle::after {
    display: inline-block;
    border: none;
    width: 16px;
    height: 7px;
    margin-left: 20px;
    background-image: url("../images/icons/dropdown.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.2s ease-in-out;
  }
  .navbar .container .navbar-nav .dropdown .dropdown-toggle.active::after {
    transform: rotate(-180deg);
  }
  .navbar .container .navbar-nav .dropdown .megamenu {
    padding: 20px 0 0;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu {
    margin-bottom: 48px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .title {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li a {
    font-size: 14px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li .pref {
    font-size: 12px;
  }
  .navbar .container .btn-join-us {
    font-size: 16px;
    margin-right: 25px;
    order: 0;
  }
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
  header .owl-carousel .slide .content .title {
    font-size: 50px;
  }
  header .owl-carousel .slide .content .pref {
    width: 450px;
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn {
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn.btn-primary {
    width: 120px;
    margin-right: 10px;
  }
  header .owl-carousel .slide .content .actions .btn.bg-white {
    width: 140px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 40px;
  }
  header .owl-carousel .owl-dots {
    left: calc(50% - 48px);
  }
  header .owl-carousel .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
  }
}
/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  .navbar .container .navbar-brand img {
    width: 150px;
  }
  .navbar .container .navbar-nav .nav-link {
    font-size: 16px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .title {
    box-shadow: 0 2px 0px -1px #d9d9d9;
  }
  .navbar .container .btn-join-us {
    font-size: 14px;
  }
  header .owl-carousel .slide .content .title {
    font-size: 40px;
  }
  header .owl-carousel .slide .content .pref {
    width: 400px;
    font-size: 16px;
  }
  header .owl-carousel .slide .content .actions .btn.bg-white {
    width: 140px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 40px;
  }
  header .owl-carousel .slide.slide-3 .content .pref {
    width: 400px;
  }
  header .owl-carousel .owl-nav {
    display: none;
  }
  header .owl-carousel .owl-dots {
    left: calc(50% - 39px);
  }
  header .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
  }
}
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  .navbar {
    height: 60px;
  }
  .navbar .container .btn-join-us {
    display: none;
  }
  .navbar .container .navbar-collapse {
    top: 60px;
  }
  .navbar .container .navbar-nav .btn-join-us {
    display: inline-block !important;
    margin: 10px auto 0;
    width: 80%;
  }
  .navbar .container .navbar-nav .nav-link {
    font-size: 14px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu > .container {
    padding: 0;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu {
    margin-bottom: 38px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .title {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li a {
    font-size: 12px;
  }
  .navbar .container .navbar-nav .dropdown .megamenu .sub-menu .list li .pref {
    font-size: 10px;
  }
  header .owl-carousel .slide .content .title {
    font-size: 26px;
  }
  header .owl-carousel .slide .content .pref {
    width: 350px;
    font-size: 10px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 40px;
  }
  header .owl-carousel .slide.slide-3 .content .pref {
    width: 350px;
  }
}
@media (max-width: 476px) {
  header .owl-carousel .slide .content .title {
    font-size: 24px;
  }
  header .owl-carousel .slide .content .pref {
    width: 350px;
    font-size: 10px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 20px;
  }
  header .owl-carousel .slide.slide-3 .content .pref {
    width: 350px;
  }
}
@media (max-width: 380px) {
  header .owl-carousel .slide .content .title {
    font-size: 18px;
  }
  header .owl-carousel .slide .content .pref {
    width: 100%;
    font-size: 10px;
  }
  header .owl-carousel .slide .content .actions .btn {
    font-size: 12px;
    padding: 0;
  }
  header .owl-carousel .slide .content .actions .btn.btn-primary {
    width: 90px;
    margin-right: 6px;
  }
  header .owl-carousel .slide .content .actions .btn.bg-white {
    width: 110px;
  }
  header .owl-carousel .slide.slide-3 .content .container {
    padding: 0 20px;
  }
  header .owl-carousel .slide.slide-3 .content .pref {
    width: 100%;
  }
}
/****************************************** End Navbar and Header */
/****************************************** Start Features , about us, Services, our team, process, cases Sections */
/* custom large */
@media (max-width: 1599.98px) {
  section.features .feature .icon {
    min-width: 100px;
    height: 100px;
    margin-right: 14px;
  }
  section.features .feature .icon img {
    width: 52px;
  }
  section.features .feature .content .title {
    font-size: 16px;
  }
  section.features .feature .content .title::before {
    bottom: -6px;
  }
  section.features .feature .content .desc {
    font-size: 12px;
  }
  section.about-us .content .pref {
    font-size: 20px;
    margin-bottom: 28px;
  }
  section.about-us .read-more {
    font-size: 16px;
    width: 140px;
  }
  section.about-us .image-holder {
    height: 450px;
  }
  section.services .container > .row > div {
    margin-bottom: 48px;
  }
  section.services .service .icon {
    width: 96px;
    height: 96px;
    min-width: 96px;
  }
  section.services .service .icon img {
    width: 42px;
  }
  section.services .service .title {
    font-size: 22px;
  }
  section.services .service .pref {
    font-size: 14px;
    margin-bottom: 26px;
  }
  section.services .service .read-more {
    width: 110px;
    line-height: 1.4;
    font-size: 14px;
  }
  section.services .service .read-more:after {
    transform: scale(0.8);
  }
  section.process .steps .step {
    height: 300px;
    padding: 20px;
  }
  section.process .steps .step .no {
    font-size: 20px;
  }
  section.process .steps .step img {
    width: 90px;
  }
  section.process .steps .step .title {
    font-size: 26px;
  }
  section.case-studies .owl-carousel .case-study .image-holder {
    height: 360px;
  }
  section.case-studies .owl-carousel .case-study .details .icon img.logo {
    width: 50px;
    height: 50px;
  }
}
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  section.features .row > div:not(:last-of-type) {
    margin-bottom: 15px;
  }
  section.features .feature .icon {
    min-width: 130px;
    height: 130px;
  }
  section.features .feature .content .title {
    font-size: 18px;
  }
  section.features .feature .content .title::before {
    bottom: -6px;
  }
  section.features .feature .content .desc {
    font-size: 16px;
  }
  section.services .container > .row > div {
    margin-bottom: 40px;
  }
  section.services .service .title {
    font-size: 21px;
  }
  section.services .service .pref {
    font-size: 13px;
    margin-bottom: 24px;
  }
  section.our-team .owl-carousel .slide .member .image-holder {
    height: 500px;
  }
  section.process .steps .step {
    height: 250px;
  }
  section.process .steps .step .no {
    font-size: 18px;
  }
  section.process .steps .step img {
    width: 70px;
  }
  section.process .steps .step .title {
    font-size: 24px;
  }
  section.case-studies .owl-carousel .case-study .image-holder {
    height: 300px;
  }
  section.case-studies .owl-carousel .case-study .details .icon img.logo {
    width: 45px;
    height: 45px;
  }
}
/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  section.features .feature .icon {
    min-width: 100px;
    height: 100px;
  }
  section.features .feature .content .title {
    font-size: 16px;
  }
  section.features .feature .content .title::before {
    bottom: -6px;
  }
  section.features .feature .content .desc {
    font-size: 14px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .content {
    padding-top: 0;
  }
  section.services .service .title {
    font-size: 22px;
  }
  section.services .service .pref {
    font-size: 14px;
    margin-bottom: 26px;
  }
  section.our-team header .sub-title {
    width: auto;
  }
  section.our-team .owl-carousel .slide .member .image-holder {
    height: 400px;
  }
  section.process .steps .step {
    padding: 16px;
    height: 190px;
  }
  section.process .steps .step .no {
    font-size: 16px;
  }
  section.process .steps .step img {
    width: 50px;
  }
  section.process .steps .step .title {
    font-size: 18px;
  }
}
/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  section.features .feature .content .title {
    font-size: 14px;
  }
  section.features .feature .content .title::before {
    bottom: -8px;
  }
  section.features .feature .content .desc {
    font-size: 12px;
  }
  section.about-us {
    padding-bottom: 70px;
  }
  section.about-us .content {
    padding-bottom: 20px;
  }
  section.about-us .content .pref {
    margin-bottom: 0;
    font-size: 18px;
  }
  section.about-us .read-more {
    display: none;
  }
  section.about-us .image-holder {
    margin-bottom: 24px;
    height: 250px;
  }
  section.about-us .image-holder + .read-more {
    display: inline-block !important;
    width: 100%;
  }
  section.services {
    padding: 100px 0 70px;
  }
  section.services .container > .row > div {
    margin-bottom: 32px;
  }
  section.services header .sub-title {
    margin-bottom: 0;
    width: auto;
  }
  section.services .service {
    padding: 24px;
  }
  section.services .service .header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  section.services .service .header .icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
  section.services .service .header .title {
    font-size: 24px;
  }
  section.services .service .pref {
    font-size: 18px;
  }
  section.our-team {
    padding: 70px 0;
  }
  section.our-team header .sub-title {
    width: auto;
    margin-bottom: 60px;
  }
  section.our-team .owl-carousel .slide .member .image-holder {
    height: 400px;
  }
  section.process {
    padding: 70px 0 60px;
  }
  section.process header .sub-title {
    margin-bottom: 48px;
  }
  section.process .container > .row > .col-md:nth-of-type(even) .step {
    background-color: #FFFFFF;
    position: relative;
  }
  section.process .container > .row > .col-md:nth-of-type(even) .step::before, section.process .container > .row > .col-md:nth-of-type(even) .step::after {
    content: "";
    display: inline-block;
    width: 120px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #FFFFFF;
  }
  section.process .container > .row > .col-md:nth-of-type(even) .step::before {
    right: 100%;
  }
  section.process .container > .row > .col-md:nth-of-type(even) .step::after {
    left: 100%;
  }
  section.process .steps .step {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 127px;
  }
  section.process .steps .step .no {
    align-self: unset;
    margin-right: 60px;
    font-size: 24px;
  }
  section.process .steps .step img {
    width: 78px;
    margin-right: 50px;
  }
  section.process .steps .step .title {
    font-size: 28px;
    align-self: unset;
  }
  section.case-studies {
    padding: 72px 0;
  }
  section.case-studies header .sub-title {
    width: auto;
    margin-bottom: 50px;
  }
  section.case-studies .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
  }
  section.case-studies .owl-carousel .owl-dots .owl-dot span {
    margin: 5px 4px;
  }
}
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  section.features .feature {
    padding: 10px;
  }
  section.features .feature .icon {
    min-width: 90px;
    height: 90px;
  }
  section.features .feature .icon img {
    width: 42px;
  }
  section.about-us {
    padding-top: 72px;
  }
  section.about-us .content .pref {
    font-size: 14px;
  }
  section.services {
    padding: 72px 0;
  }
  section.services .container > .row > div {
    margin-bottom: 8px;
  }
  section.services header .sub-title {
    margin-bottom: 32px;
  }
  section.services .service .header {
    margin: 0;
  }
  section.services .service .header .icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
  section.services .service .header .icon img {
    width: 25px;
  }
  section.services .service .header .title {
    font-size: 16px;
  }
  section.services .service .pref, section.services .service .read-more {
    display: none;
  }
  section.services .action .load-more {
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }
  section.our-team header .sub-title {
    margin-bottom: 32px;
  }
  section.our-team .owl-carousel .slide .member .image-holder {
    height: 300px;
  }
  section.our-team .owl-carousel .slide .member .name {
    font-size: 14px;
    margin-bottom: 4px;
  }
  section.our-team .owl-carousel .slide .member .position {
    font-size: 14px;
  }
  section.case-studies .owl-carousel .case-study .details .info .name {
    font-size: 16px;
  }
  section.case-studies .owl-carousel .case-study .details .info .type {
    font-size: 13px;
  }
  section.case-studies .owl-carousel .case-study .details .info .pref {
    font-size: 12px;
  }
}
@media (max-width: 476px) {
  section.features .feature .icon {
    min-width: 90px;
    height: 90px;
  }
  section.features .feature .content .title {
    font-size: 12px;
  }
  section.features .feature .content .desc {
    font-size: 10px;
  }
  section.about-us .image-holder {
    margin-bottom: 20px;
  }
  section.about-us .image-holder + .read-more {
    font-size: 14px;
  }
  section.process header .sub-title {
    margin-bottom: 32px;
  }
  section.process .steps .step {
    height: 80px;
    padding: 16px;
  }
  section.process .steps .step .no {
    font-size: 16px;
    margin-right: 24px;
  }
  section.process .steps .step img {
    width: 48px;
    margin-right: 30px;
  }
  section.process .steps .step .title {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  section.features .feature {
    padding: 14px;
  }
  section.features .feature .icon {
    min-width: 60px;
    height: 60px;
  }
  section.features .feature .icon img {
    width: 30px;
  }
  section.features .feature .content .title {
    font-size: 10px;
  }
  section.features .feature .content .desc {
    font-size: 8px;
  }
  section.services .service {
    padding: 10px;
  }
  section.services .service .header .icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    margin-right: 10px;
  }
  section.services .service .header .icon img {
    width: 20px;
  }
  section.services .service .header .title {
    font-size: 14px;
  }
  section.services .action .load-more {
    font-size: 14px;
  }
  section.our-team .owl-carousel .slide .member .image-holder {
    height: 200px;
  }
  section.case-studies .owl-carousel .case-study .image-holder {
    height: 200px;
  }
  section.case-studies .owl-carousel .case-study .details .icon img.logo {
    width: 35px;
    height: 35px;
  }
  section.case-studies .owl-carousel .case-study .details .info {
    padding-top: 0;
  }
  section.case-studies .owl-carousel .case-study .details .info .name {
    font-size: 16px;
  }
  section.case-studies .owl-carousel .case-study .details .info .type {
    font-size: 13px;
  }
  section.case-studies .owl-carousel .case-study .details .info .pref {
    font-size: 12px;
  }
}
/****************************************** End Features , about us, Services, our team, process, cases  Sections */
/****************************************** Start Technologies, contact us, footer, pricing modal  Sections */
/* custom large */
@media (max-width: 1599.98px) {
  section.technologies .owl-carousel .owl-item .tech .logo {
    margin-bottom: 18px;
    height: 40px;
  }
  section.technologies .owl-carousel .owl-item .tech .logo img {
    width: 40px;
    margin-right: 16px;
  }
  section.technologies .owl-carousel .owl-item .tech .logo .name {
    font-size: 22px;
  }
  section.technologies .owl-carousel .owl-item .tech .desc {
    font-size: 13px;
  }
  section.contact-us > .container::before {
    width: 200px;
  }
  section.contact-us .text-content .title {
    font-size: 34px;
  }
  section.contact-us .text-content .pref {
    font-size: 18px;
  }
  section.contact-us .text-content .info li {
    margin-bottom: 12px;
  }
  section.contact-us .text-content .info li img {
    width: 20px;
  }
  section.contact-us .text-content .info li span {
    font-size: 14px;
  }
  section.banner .content {
    height: 130px;
  }
  section.banner .content .title {
    font-size: 26px;
  }
  section.banner .content button {
    font-size: 18px;
    width: 170px;
  }
  footer .info .logo img {
    width: 250px;
  }
  footer .info .pref {
    font-size: 18px;
  }
  footer .info .contact li .icon {
    width: 20px;
    height: 20px;
  }
  footer .info .contact li span {
    font-size: 14px;
  }
  footer .info .social li {
    width: 38px;
    height: 38px;
  }
  footer .info .social li img {
    width: 22px;
  }
  footer .links .title {
    font-size: 22px;
    margin-bottom: 50px;
  }
  footer .links ul li a {
    font-size: 18px;
  }
  footer .tail {
    height: 100px;
  }
  footer .tail .content p {
    font-size: 16px;
  }
  footer .tail .content a {
    font-size: 16px;
  }
  .pricing-modal .modal-content .modal-body .btn-close {
    width: 40px;
    height: 40px;
  }
  .pricing-modal .modal-content .modal-body .pricing {
    padding: 50px 20px 50px 0;
  }
  .pricing-modal .modal-content .modal-body .pricing .title {
    font-size: 24px;
  }
  .pricing-modal .modal-content .modal-body .pricing .desc {
    font-size: 16px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action {
    padding: 24px 10px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action img {
    width: 62px;
  }
}
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  section.banner .content {
    height: 110px;
  }
  section.banner .content .title {
    font-size: 24px;
  }
  section.banner .content button {
    font-size: 16px;
    width: 150px;
  }
  footer {
    padding: 50px 0 0;
  }
  footer .info .logo img {
    width: 230px;
  }
  footer .info .pref {
    font-size: 16px;
  }
  footer .info .social li {
    width: 32px;
    height: 32px;
  }
  footer .info .social li img {
    width: 18px;
  }
  footer .links .title {
    font-size: 20px;
    margin-bottom: 45px;
  }
  footer .links ul li a {
    font-size: 16px;
  }
  footer .tail {
    height: 90px;
  }
  footer .tail .content p {
    font-size: 14px;
  }
  footer .tail .content a {
    font-size: 14px;
  }
  .pricing-modal .modal-content .modal-body .btn-close {
    width: 38px;
    height: 38px;
    top: 22px;
    right: 22px;
  }
  .pricing-modal .modal-content .modal-body aside .title {
    font-size: 20px;
  }
  .pricing-modal .modal-content .modal-body aside .pref {
    font-size: 16px;
    margin-bottom: 32px;
    width: auto;
  }
  .pricing-modal .modal-content .modal-body aside .pref::after {
    height: 4px;
  }
  .pricing-modal .modal-content .modal-body .pricing {
    padding: 50px 20px 50px 0;
  }
  .pricing-modal .modal-content .modal-body .pricing .title {
    font-size: 26px;
  }
  .pricing-modal .modal-content .modal-body .pricing .desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action img {
    width: 52px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action span {
    font-size: 16px;
  }
}
/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  section.contact-us {
    padding-top: 130px;
  }
  section.contact-us > .container::before {
    width: 170px;
    top: -175px;
    left: -70px;
  }
  section.contact-us .text-content .pref {
    width: 460px;
    margin-bottom: 30px;
  }
  section.contact-us .text-content .info {
    margin-bottom: 90px;
  }
  section.banner .content {
    height: 100px;
  }
  section.banner .content .title {
    font-size: 22px;
  }
  footer .info .logo img {
    width: 180px;
  }
  footer .info .pref {
    font-size: 14px;
  }
  footer .links .title {
    font-size: 16px;
  }
  footer .links ul li a {
    font-size: 14px;
  }
  footer .tail {
    height: 80px;
  }
  footer .tail .content p {
    font-size: 12px;
  }
  footer .tail .content a {
    font-size: 12px;
  }
  .pricing-modal .modal-content .modal-body .btn-close {
    width: 30px;
    height: 30px;
  }
  .pricing-modal .modal-content .modal-body aside {
    display: none;
  }
  .pricing-modal .modal-content .modal-body .pricing {
    text-align: center;
    padding: 50px 20px 20px;
  }
  .pricing-modal .modal-content .modal-body .pricing .title {
    font-size: 22px;
  }
  .pricing-modal .modal-content .modal-body .pricing .desc {
    font-size: 16px;
    width: auto;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .col-sm-6:nth-of-type(3) {
    margin-bottom: 1.5rem !important;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action img {
    width: 42px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action span {
    font-size: 14px;
  }
}
/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  section.technologies {
    padding: 80px 0 100px;
  }
  section.technologies .owl-carousel .owl-item .tech {
    padding-top: 16px;
    min-height: 180px;
  }
  section.technologies .owl-carousel .owl-item .tech .logo img {
    margin-right: 14px;
  }
  section.technologies .owl-carousel .owl-item .tech .logo .name {
    font-size: 20px;
  }
  section.technologies .owl-carousel .owl-item .tech .desc {
    font-size: 12px;
  }
  section.technologies .owl-carousel .owl-nav {
    top: -120px;
  }
  section.banner .content .title {
    font-size: 16px;
  }
  section.banner .content button {
    font-size: 16px;
    width: 140px;
  }
  footer .links {
    display: none;
  }
  .pricing-modal .modal-content .modal-body .btn-close {
    width: 28px;
    height: 28px;
    top: 18px;
    right: 18px;
  }
  .pricing-modal .modal-content .modal-body .pricing {
    padding: 60px 20px 20px;
  }
  .pricing-modal .modal-content .modal-body .pricing .title {
    font-size: 20px;
  }
  .pricing-modal .modal-content .modal-body .pricing .desc {
    font-size: 14px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action {
    padding: 20px 10px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action img {
    width: 42px;
  }
  .pricing-modal .modal-content .modal-body .pricing .actions .action span {
    font-size: 14px;
  }
}
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  section.technologies {
    padding: 80px 0 60px;
  }
  section.technologies header .sub-title {
    margin-bottom: 110px;
    width: 100%;
  }
  section.technologies .owl-carousel .owl-nav {
    top: -68px;
  }
  section.contact-us {
    padding-top: 130px;
  }
  section.contact-us .text-content .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  section.contact-us .text-content .pref {
    font-size: 16px;
    width: 100%;
    margin-bottom: 24px;
  }
  section.contact-us .text-content .info {
    margin-bottom: 24px;
  }
  section.contact-us .form-content {
    margin-bottom: 60px;
  }
  section.contact-us .form-content .title {
    font-size: 18px;
  }
  section.contact-us .form-content .form-control {
    font-size: 16px;
    height: 60px;
    padding: 0.375rem 16px;
  }
  section.contact-us .form-content div.textarea {
    margin-bottom: 40px;
  }
  section.contact-us .form-content div.textarea textarea {
    height: 120px;
  }
  section.contact-us .form-content .btn-primary {
    font-size: 16px;
    width: 100%;
    height: 48px;
  }
  section.contact-us .form-content .field-validation-error {
    bottom: 2px;
    left: 16px;
  }
  section.contact-us .map {
    display: none;
  }
  section.banner .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
  }
  section.banner .content .title {
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
  }
  section.banner .content button {
    font-size: 16px;
    width: 160px;
  }
  footer .tail .content {
    justify-content: space-between;
  }
}
@media (max-width: 476px) {
  footer .tail {
    height: 100px;
  }
  footer .tail .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .tail .content p {
    margin-bottom: 16px;
  }
  footer .tail .content a {
    margin: 0;
  }
}
@media (max-width: 380px) {
  section.banner .content button {
    font-size: 14px;
    width: 140px;
  }
}
/****************************************** End Technologies, contact us, footer, pricing modal, Sections */
