@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Montserrat";
}
body.hidden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.ai-center {
  align-items: center;
}

.ai-stretch {
  align-items: stretch;
}

.ai-start {
  align-items: start;
}

.jc-start {
  justify-content: start;
}

.jc-end {
  justify-content: end;
}

.jc-sb {
  justify-content: space-between;
}

.flex-row {
  display: flex;
}

.container {
  max-width: 1470px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.header {
  padding: 20px 0;
}
.header .logo {
  width: 160px;
  display: flex;
  transition: 0.3s;
  height: 86px;
}
.header .logo:hover {
  opacity: 0.7;
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .flex-row {
  justify-content: space-between;
}
.header .right {
  width: calc(100% - 265px);
  align-items: center;
  justify-content: space-between;
}
.header .right .lang-menu li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.header .right .lang-menu li:not(:first-of-type):before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 15px;
  background: #C3C4C4;
  transform: translateY(-50%);
}
.header .right .lang-menu li a {
  color: #1D1D1D;
  transition: 0.3s;
  font-weight: 500;
  font-size: 19px;
}
.header .right .lang-menu li.current-lang a {
  color: #0165A8;
}
.header .right .main-menu li {
  display: inline-block;
  padding: 0 15px 5px;
}
.header .right .main-menu li a {
  font-size: 19px;
  font-weight: 400;
  color: #1D1D1D;
  position: relative;
  display: block;
  transition: 0.3s;
}
.header .right .main-menu li.active a{
  font-weight: 700;
  color: #106EFF;
}
.header .right .main-menu li.active a:after {
  width: 100%;
}
.header .right .main-menu li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #106EFF;
  transition: 0.3s;
}
.header .right .main-menu li a:hover {
  color: #106EFF;
}
.header .right .main-menu li a:hover:after {
  width: 100%;
}

.gam {
  position: relative;
  display: none;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.gam.active span {
  opacity: 0;
}
.gam.active:before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.gam.active:after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.gam:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #0165A8;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.gam:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #0165A8;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.gam span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 6px;
  background: #0165A8;
  transition: 0.3s;
}

.screen1 {
  position: relative;
  height: calc(100vh - 126px);
  display: flex;
  align-items: center;
}
.screen1 .wrap {
  width: 100%;
}
.screen1 .img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
}
.screen1 .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.screen1 .section-heading {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.screen1 .section-heading:after {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: calc(100% + 40px);
  left: -20px;
  top: 50%;
  background: #FFC50E;
  transform: translateY(-50%);
  z-index: -1;
}
.screen1 .section-heading .content {
  background: #006CB3;
  padding: 30px;
  border-radius: 0 50px 0 50px;
}
.screen1 .section-heading h1 {
  color: white;
  font-size: 64px;
 
  line-height: 115%;
  font-weight: 900;
}
.screen1 .section-heading p {
  color: #FFC50E;
  font-size: 44px;
  font-weight: 400;
  max-width: 80%;
  margin-left: auto;
  line-height: 120%;
  text-align: right;
}
.screen1 .section-heading p strong {
  font-weight: 900;
}

.about-us {
  padding: 40px 0;
  background: url(../img/bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-us .flex-row {
  justify-content: space-between;
  align-items: center;
}
.about-us .flex-row .left, .about-us .flex-row .right {
  width: calc(50% - 20px);
}
.about-us .left {
  position: relative;
  z-index: 1;
}
.about-us .left:after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  background: #FFC50E;
  left: -8px;
  bottom: -8px;
  z-index: -1;
}
.about-us .left:hover .play {
  transform: translate(-50%, -50%) scale(1.1);
}
.about-us .left .play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.about-us .left .play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us .background {
  height: 100%;
  object-fit: cover;
}
.about-us .about-us-heading {
  color: #0165A8;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.about-us .about-us-sub-heading {
  font-size: 18px;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 115%;
}
.about-us .top {
  padding-bottom: 20px;
  border-bottom: 2px solid #C3C4C4;
}
.about-us .about-us-wrap {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -20px;
  padding-top: 20px;
}
.about-us .about-us-wrap .column {
  width: calc(50% - 20px);
  margin-left: 20px;
  margin-bottom: 20px;
}
.about-us .about-us-wrap .column .column-heading {
  font-size: 24px;
  color: #0165A8;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}
.about-us .about-us-wrap .column .column-heading:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 20px;
  height: calc(100% + 10px);
  background: url(../img/bi1.png);
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center;
}
.about-us .about-us-wrap .column p {
  font-size: 20px;
  color: #1D1D1D;
  line-height: 115%;
  font-weight: 400;
}

[data-title] {
  position: relative;
  display: inline-block;
  z-index: 1;
}
[data-title]:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: calc(100% - 25px);
 text-transform: uppercase;
  font-size: 70px;
  font-weight: 900;
  color: #0165A8;
  opacity: 0.1;
  width: 100%;
  white-space: nowrap;
  height: 100%;
  bottom: 100%;
}

.services-screen {
  padding: 80px 0;
}
.services-screen .services-heading {
  color: #0165A8;
  font-weight: 700;
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}
.services-screen .owl-item:nth-of-type(even) .item .text-block {
  background: #FFC50E;
  color: #1D1D1D;
}
.services-screen .owl-item:nth-of-type(even) .item .text-block .item-link {
  color: #0165A8;
}
.services-screen .owl-item:nth-of-type(even) .item .text-block .item-heading {
  color: #0165A8;
}
.services-screen .services-carousel {
  padding: 0 60px;
  align-items: stretch;
}
.services-screen .services-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: 100%;
  transform: translateY(-50%);
  justify-content: space-between;
}
.services-screen .services-carousel .owl-prev {
  position: relative;
  top: 50%;
  left: 0;
  width: 20px;
  height: 40px;
}
.services-screen .services-carousel .owl-prev.disabled {
  opacity: 0.4;
}
.services-screen .services-carousel .owl-prev:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/al.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.services-screen .services-carousel .owl-prev span {
  opacity: 0;
}
.services-screen .services-carousel .owl-next {
  position: relative;
  top: 50%;
  right: 0;
  width: 20px;
  height: 40px;
}
.services-screen .services-carousel .owl-next.disabled {
  opacity: 0.4;
}
.services-screen .services-carousel .owl-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ar.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.services-screen .services-carousel .owl-next span {
  opacity: 0;
}
.services-screen .services-carousel .item {
  border-radius: 30px 30px 0 30px;
  overflow: hidden;
}
.services-screen .services-carousel .item .img-block {
  height: 350px;
}
.services-screen .services-carousel .item .img-block img {
  height: 100%;
  object-fit: cover;
}
.services-screen .services-carousel .item .text-block {
  border-top: 5px solid white;
  padding: 10px 30px;
  background: #0165A8;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.services-screen .services-carousel .item .text-block .item-heading {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.services-screen .services-carousel .item .text-block .item-sub-heading {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.services-screen .services-carousel .item .text-block .item-sub-heading strong {
  text-transform: uppercase;
  font-weight: 700;
}
.services-screen .services-carousel .item .text-block .item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}
.services-screen .services-carousel .item .text-block .item-link {
  display: block;
  text-align: right;
  margin-top: auto;
  font-style: italic;
  color: #FFC50E;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  transition: 0.3s;
}
.services-screen .services-carousel .item .text-block .item-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.service-zone {
  padding: 40px 0;
  background: url(../img/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.service-zone .bottom {
  margin-top: 80px;
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: start;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 50px 0 50px;
}
.service-zone .bottom .left {
  width: 35%;
}
.service-zone .bottom .left .bottom-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0165A8;
  max-width: 90%;
}
.service-zone .bottom .left img {
  max-height: 100px;
  margin-top: 30px;
  width: 100%;
  object-fit: contain;
}
.service-zone .bottom .right {
  width: calc(65% - 20px);
  margin-left: 20px;
}
.service-zone .bottom .right .zone-services-wrap {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -20px;
}
.service-zone .bottom .right .zone-services-wrap .column {
  width: calc(50% - 20px);
  margin-left: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-zone .bottom .right .zone-services-wrap .column p {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1D1D1D;
}
.service-zone .bottom .right .zone-services-wrap .column .img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #0165A8;
  background: white;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 2px;
  margin-right: 10px;
}
.service-zone .bottom .right .zone-services-wrap .column .img-wrap img {
  width: 25px;
  object-fit: contain;
}
.service-zone .top-row {
  padding: 0 300px;
  justify-content: space-between;
  align-items: center;
}
.service-zone .top-row .zone-heading {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #0165A8;
}
.service-zone .top-row [data-title] {
  padding: 5px 45px;
  background: #0165A8;
  color: white;
  font-size: 30px;
  font-weight: 700;
  border-radius: 0 30px 0 30px;
  text-transform: uppercase;
}
.service-zone .top-row [data-title]:after {
  top: 100%;
  left: 20%;
  opacity: 0.1;
  z-index: 10;

}
.service-zone .item-img {
  height: 100%;
}
.service-zone .item-img img {
  max-height: 700px;
  height: 100%;
  object-fit: contain;
}
.service-zone .owl-nav {
  position: absolute;
  top: 35%;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.service-zone .owl-prev {
  position: relative;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) !important;
}
.service-zone .owl-prev.disabled {
  opacity: 0.4;
}
.service-zone .owl-prev:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  background: url(../img/al.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
.service-zone .owl-prev span {
  opacity: 0;
}
.service-zone .owl-next {
  position: relative;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) !important;
}
.service-zone .owl-next.disabled {
  opacity: 0.4;
}
.service-zone .owl-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 25px;
  height: 25px;
  background: url(../img/ar.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.service-zone .owl-next span {
  opacity: 0;
}

.footer {
  padding: 40px 0;
}
.footer .left, .footer .right {
  width: calc(50% - 20px);
}
.footer iframe {
  width: 100%;
  max-height: 400px;
}
.footer .tell {
  margin-top: 10px;
  color: white;
  font-size: 44px;
  font-weight: 700;
  transition: 0.3s;
}
.footer .tell:hover {
  opacity: 0.8;
}
.footer .tell img {
  width: 40px;
  object-fit: cover;
  margin-right: 10px;
}
.footer .mail {
  margin-top: 10px;
  font-size: 18px;
  color: white;
  transition: 0.3s;
}
.footer .mail:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer .socs-wrap {
  margin-top: 10px;
}
.footer .socs-wrap .socs {
  transition: 0.3s;
  margin-right: 10px;
}
.footer .socs-wrap .socs:hover {
  opacity: 0.8;
}
.footer .socs-wrap .socs img {
  width: 40px;
  object-fit: cover;
}
.footer .left {
  background: #0165A8;
  border-radius: 0 50px 0 50px;
  padding: 40px;
  color: white;
}
.footer .left h2 {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
}
.footer .left .adress {
  font-size: 18px;
  margin-top: 30px;
  max-width: 50%;
  line-height: 110%;
  font-weight: 400;
  color: white;
  transition: 0.3s;
}
.footer .left .adress:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.single-services {
  padding: 60px;
}
.single-services .top {
  padding-bottom: 20px;
}
.single-services .top .right {
  width: 50%;
  padding-top: 50px;
}
.single-services .top .right .heading {
  font-size: 36px;
  font-weight: 700;
  color: #0165A8;
  margin-bottom: 30px;
}
.single-services .top .right .sub-heading {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}
.single-services .top .right .price-carousel {
  margin-top: 40px;
  max-width: 400px;
}
.single-services .top .right .price-carousel .owl-nav {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
}
.single-services .top .right .price-carousel .owl-nav .owl-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
  border: 1px solid white;
}
.single-services .top .right .price-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.4;
}
.single-services .top .right .price-carousel .owl-nav .owl-prev span {
  opacity: 0;
}
.single-services .top .right .price-carousel .owl-nav .owl-prev:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/ar1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(-1, -1);
  top: 0;
  left: 0;
}
.single-services .top .right .price-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
  margin-left: auto;
  border: 1px solid white;
}
.single-services .top .right .price-carousel .owl-nav .owl-next.disabled {
  opacity: 0.4;
}
.single-services .top .right .price-carousel .owl-nav .owl-next span {
  opacity: 0;
}
.single-services .top .right .price-carousel .owl-nav .owl-next:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/ar1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
}
.single-services .top .right .price-carousel .price-item .price-name {
  padding: 3px 30px;
  background: #0165A8;
  color: white;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  margin-left: 75px;
  max-width: 250px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
.single-services .top .right .price-carousel .price-item .price-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: 5px 0;
}
.single-services .top .right .price-carousel .price-item .price-row:before{
	content:'';
	display: block;
	position: absolute;
	left: 0;
	top: -10px;
	width: 100%;
	height: 100%;
	border-bottom: 2px dotted #1D1D1D;
	z-index: 1;
}
.single-services .top .right .price-carousel .price-item .price-row p {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 500;
  background: white;
  display: inline-block;
  position: relative;
  padding-right: 5px;
	z-index: 2;
}
.single-services .top .right .price-carousel .price-item .price-row span {
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 300;
  background: white;
  display: inline-block;
  position: relative;
	z-index: 2;
  padding-left: 5px;
}
.single-services .top .right .price-carousel .price-item .price-row span strong {
  font-weight: 500;
  font-size: 18px;
}
.single-services .top .left {
  width: 50%;
  padding-right: 200px;
}
.single-services .top .left .owl-nav {
  display: none;
}
.single-services #sync2 {
  max-width: 550px;
}
.single-services #sync2 .item img {
  height: 100px;
  object-fit: cover;
}
.single-services #sync1 {
  max-width: 550px;
}
.single-services #sync1 .item img {
  max-height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 50px 50px 0 50px;
}
.single-services .bottom {
  border-top: 2px solid #FFC50E;
}
.single-services .bottom p {
  font-size: 18px;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 110%;
}
.single-services ul li{
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}
.single-services ul li:before{
  content: '';
  display: block;
  position: absolute;
  width: 5px ;
  height: 5px;
  border-radius: 50%;
  background: #1D1D1D;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-services .bottom h5 {
  font-size: 18px;
  color: #1D1D1D;
  font-weight: 700;
  margin-top: 30px;
}
.single-services .bottom h4 {
  font-size: 19px;
  color: #1D1D1D;
  font-weight: 700;
  margin-top: 30px;
}
.single-services .bottom h3 {
  font-size: 20px;
  color: #1D1D1D;
  font-weight: 700;
  margin-top: 30px;
}
.single-services .bottom h2 {
  font-size: 22px;
  color: #1D1D1D;
  font-weight: 700;
  margin-top: 30px;
}
.single-services .bottom h1 {
  font-size: 24px;
  color: #1D1D1D;
  font-weight: 700;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .header {
    position: relative;
  }
  .header .logo {
    width: 130px;
    height: 60px;
  }
  .header .flex-row {
    justify-content: space-between;
  }
  .header .right {
    display: none;
    text-align: center;
    width: 100%;
    position: absolute;
    align-items: center;
    justify-content: flex-start;
    left: 0;
    top: 100%;
    background: white;
    z-index: 10;
    height: 100vh;
  }
  .header .right .lang-menu li {
    margin-top: 30px;
  }
  .header .right .main-menu ul {
    display: flex;
    flex-direction: column;
  }
  .header .right .main-menu li {
    display: inline-block;
    padding: 15px;
    text-align: center;
    margin-bottom: 10px;
  }
  .header .right .main-menu li a {
    display: inline-block;
  }

  .gam {
    display: flex;
  }

  .screen1 {
    height: calc(100vh - 100px);
    justify-content: center;
  }
  .screen1 .wrap {
    text-align: center;
  }
  .screen1 .img-wrap {
    width: 100%;
  }
  .screen1 .section-heading h1 {
    text-align: left;
    font-size: 50px;
    max-width: 80%;
  }
  .screen1 .section-heading p {
    font-size: 38px;
    max-width: 60%;
  }

  .about-us .flex-row {
    display: block;
  }
  .about-us .flex-row .left, .about-us .flex-row .right {
    width: 100%;
  }
  .about-us .left {
    margin-bottom: 30px;
  }
  .about-us .background {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  .about-us .about-us-wrap .column p {
    font-size: 18px;
  }

  .services-screen {
    padding: 60px 0;
  }
  .services-screen .services-carousel {
    padding: 0 40px;
    align-items: stretch;
  }
  .services-screen .services-carousel .item .img-block {
    height: 300px;
  }
  .services-screen .services-carousel .item .img-block img {
    height: 100%;
    object-fit: cover;
  }
  .services-screen .services-carousel .item .text-block {
    padding: 10px 20px;
  }
  .services-screen .services-carousel .item .text-block .item-heading {
    font-size: 22px;
  }
  .services-screen .services-carousel .item .text-block .item-sub-heading {
    font-size: 16px;
  }
  .services-screen .services-carousel .item .text-block .item-text {
    font-size: 16px;
  }
  .services-screen .services-carousel .item .text-block .item-link {
    font-size: 14px;
  }

  .service-zone .bottom {
    margin-top: 50px;
    padding: 10px 20px;
  }
  .service-zone .bottom .left {
    width: 35%;
  }
  .service-zone .bottom .left .bottom-heading {
    max-width: 100%;
    font-size: 20px;
  }
  .service-zone .bottom .left img {
    max-height: 80px;
  }
  .service-zone .bottom .right .zone-services-wrap .column .img-wrap {
    width: 35px;
    height: 35px;
  }
  .service-zone .bottom .right .zone-services-wrap .column .img-wrap img {
    width: 22px;
  }
  .service-zone .top-row {
    padding: 0 100px;
  }
  .service-zone .top-row .zone-heading {
    font-size: 20px;
  }
  .service-zone .top-row [data-title] {
    padding: 5px 30px;
    font-size: 24px;
  }
  .service-zone .top-row [data-title]:after {
    
    font-size: 40px;
  }

  .footer {
    padding: 40px 0;
  }
  .footer .left, .footer .right {
    width: calc(50% - 10px);
  }
  .footer iframe {
    max-height: 300px;
  }
  .footer .tell {
    font-size: 24px;
  }
  .footer .tell img {
    width: 30px;
  }
  .footer .socs-wrap .socs img {
    width: 30px;
  }
  .footer .left {
    padding: 30px;
  }
  .footer .left h2 {
    font-size: 24px;
  }
  .footer .left .adress {
    font-size: 18px;
    margin-top: 30px;
    max-width: 90%;
    line-height: 110%;
    font-weight: 400;
  }

  .single-services {
    padding: 40px 0;
  }
  .single-services .top {
    display: block;
  }
  .single-services .top .right {
    width: 100%;
    padding-top: 30px;
  }
  .single-services .top .right .heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .single-services .top .right .price-carousel {
    margin-top: 30px;
    max-width: 100%;
  }
  .single-services .top .right .price-carousel .price-item .price-name {
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    display: flex;
    justify-content: center;
    margin-top: 7px;
  }
  .single-services .top .left {
    width: 100%;
    padding-right: 0;
  }
  .single-services .top .left .owl-nav {
    display: none;
  }
  .single-services #sync2 {
    margin-left: auto;
    margin-right: auto;
  }
  .single-services #sync2 .item img {
    height: 100px;
    object-fit: cover;
  }
  .single-services #sync1 {
    margin-left: auto;
    margin-right: auto;
  }
  .single-services .bottom {
    border-top: 2px solid #FFC50E;
  }
  .single-services .bottom p {
    font-size: 18px;
    font-weight: 400;
    color: #1D1D1D;
    line-height: 110%;
  }
  .single-services .bottom h5 {
    font-size: 18px;
    color: #1D1D1D;
    font-weight: 700;
    margin-top: 30px;
  }
  .single-services .bottom h4 {
    font-size: 19px;
    color: #1D1D1D;
    font-weight: 700;
    margin-top: 30px;
  }
  .single-services .bottom h3 {
    font-size: 20px;
    color: #1D1D1D;
    font-weight: 700;
    margin-top: 30px;
  }
  .single-services .bottom h2 {
    font-size: 22px;
    color: #1D1D1D;
    font-weight: 700;
    margin-top: 30px;
  }
  .single-services .bottom h1 {
    font-size: 24px;
    color: #1D1D1D;
    font-weight: 700;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .header .logo {
    height: 50px;
  }
  .header .logo img {
    object-position: left;
  }

  .screen1 {
    height: calc(100vh - 70px);
  }
  .screen1 .section-heading .content {
    padding: 20px;
  }
  .screen1 .section-heading h1 {
    font-size: 40px;
    max-width: 100%;
  }
  .screen1 .section-heading p {
    font-size: 28px;
    max-width: 90%;
  }

  .about-us .flex-row {
    display: block;
  }
  .about-us .flex-row .left, .about-us .flex-row .right {
    width: 100%;
  }
  .about-us .left {
    margin-bottom: 30px;
  }
  .about-us .background {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  .about-us .about-us-heading {
    color: #0165A8;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
  }
  .about-us .about-us-heading [data-title]:after {
    
    left: 0;
    top: 10px;
    font-size: 60px;
    transform: unset;
  }
  .about-us .about-us-sub-heading {
    margin-top: 50px;
  }
  .about-us .about-us-wrap .column {
    width: 100%;
  }
  .about-us .about-us-wrap .column p {
    font-size: 18px;
  }

  .services-screen {
    padding: 40px 0;
  }
  .services-screen .services-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .services-screen .services-carousel {
    padding: 0 20px;
  }
  .services-screen .services-carousel .owl-prev {
    width: 15px;
    height: 30px;
  }
  .services-screen .services-carousel .owl-next {
    width: 15px;
    height: 30px;
  }
  .services-screen .services-carousel .item .img-block {
    height: 300px;
  }
  .services-screen .services-carousel .item .text-block {
    min-height: 200px;
  }
  .services-screen .services-carousel .item .text-block .item-heading {
    font-size: 20px;
  }

  .service-zone .bottom {
    flex-direction: column;
  }
  .service-zone .bottom .left {
    width: 100%;
  }
  .service-zone .bottom .left .bottom-heading {
    font-size: 18px;
  }
  .service-zone .bottom .right {
    width: 100%;
    margin-left: 0;
  }
  .service-zone .bottom .right .zone-services-wrap {
    margin-top: 20px;
  }
  .service-zone .bottom .right .zone-services-wrap .column p {
    font-size: 12px;
    width: calc(100% - 40px);
  }
  .service-zone .bottom .right .zone-services-wrap .column .img-wrap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #0165A8;
    background: white;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 2px;
    margin-right: 10px;
  }
  .service-zone .bottom .right .zone-services-wrap .column .img-wrap img {
    width: 18px;
    object-fit: contain;
  }
  .service-zone .top-row {
    padding: 0;
    flex-direction: column;
    align-items: unset;
  }
  .service-zone .top-row .zone-heading {
    font-size: 20px;
  }
  .service-zone .top-row [data-title] {
    padding: 5px 20px;
    margin-left: 30%;
    display: inline-block;
    max-width: 200px;
    text-align: center;
  }
  .service-zone .top-row [data-title]:after {
    left: 10%;
  }
  .service-zone .item-img {
    margin-top: 70px;
    height: 100%;
  }
  .service-zone .owl-nav {
    top: 30%;
  }
  .service-zone .owl-prev {
    width: 30px;
    height: 30px;
  }
  .service-zone .owl-prev:before {
    width: 18px;
    height: 18px;
  }
  .service-zone .owl-next {
    width: 30px;
    height: 30px;
  }
  .service-zone .owl-next:before {
    right: 0;
    width: 18px;
    height: 18px;
  }

  .footer {
    padding: 40px 0;
  }
  .footer .flex-row {
    display: block;
  }
  .footer .left, .footer .right {
    width: 100%;
  }
  .footer iframe {
    max-height: 300px;
  }
  .footer .tell {
    font-size: 24px;
  }
  .footer .tell img {
    width: 30px;
  }
  .footer .socs-wrap .socs img {
    width: 30px;
  }
  .footer .left {
    margin-bottom: 20px;
    padding: 30px;
  }
  .footer .left h2 {
    font-size: 24px;
  }
  .footer .left .adress {
    font-size: 18px;
    margin-top: 30px;
    max-width: 90%;
    line-height: 110%;
    font-weight: 400;
  }
}