body {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #4b5280;
}

body.body-color-three {
  background-color: #f5f7fa;
}

.container {
  max-width: 1290px;
}

a {
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #4b5280;
}

a:hover {
  text-decoration: none;
  color: #ef7c00;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #000219;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #ef7c00;
  border: 1px solid #ebebeb;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  outline: 0;
  border: 1px solid #ef7c00;
}

.form-control:hover:focus, .form-control:focus {
  
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #f9fafb;
}

.white-bg {
  background-color: #ffffff;
}

/*
Default Btn Area Style*/
.default-btn {
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  padding: 15px 26px 16px;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  background-color: #ef7c00;
  position: relative;
  overflow: hidden;
}

.default-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(transparent));
  background: linear-gradient(top, #ffffff, transparent);
  -webkit-animation: top 2s linear infinite;
          animation: top 2s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.default-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(transparent));
  background: linear-gradient(bottom, #ffffff, transparent);
  -webkit-animation: bottom 2s linear infinite;
          animation: bottom 2s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(transparent));
  background: linear-gradient(right, #ffffff, transparent);
  -webkit-animation: right 2s linear infinite;
          animation: right 2s linear infinite;
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
  background: linear-gradient(left, #ffffff, transparent);
  -webkit-animation: left 2s linear infinite;
          animation: left 2s linear infinite;
}

.default-btn:hover {
  background-color: #ff5a00;
  color: #ffffff;
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes top {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*
Read More Btn Area Style*/
.read-more {
  font-weight: 600;
  font-size: 15px;
  color: #ef7c00;
}

.read-more i {
  position: relative;
  position: relative;
  top: 1.7px;
  margin-left: 5px;
}

.read-more:hover {
  color: #ef7c00;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 1050px;
  margin: -5px auto 50px;
  text-align: center;
  position: relative;
}

.section-title span {
  display: block;
  margin-bottom: 12px;
  color: #ef7c00;
  font-weight: 600;
}

.section-title h2 {
  font-size: 60px;
  margin-bottom: 15px;
  position: relative;
  line-height: 1.1;
  font-weight: 900;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: #ffffff;
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

.main {
    overflow: hidden;
}


/*header css*/
.header-main{
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.header-main .navbar{
    padding: 0;
}
.navbar ul{
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    margin: auto !important;
    list-style: none;
}
.navbar ul li a{
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-left: 0;
    margin-right: 0;
    padding: 35px 0;
    position: relative;
    z-index: 1;
    margin: 0 15px;
}
.navbar ul li a:hover{
    color: #fff;    
}

.navbar-brand img{ 
    max-width: 260px;
}
.video-banner-block{
    width: 100%;
}
.video-banner-block video {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    display: inline-block;
    margin-bottom: -6px;
}
/*# sourceMappingURL=style.css.map */
.down-arrow{
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
} 
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce1 {
  -moz-animation: bounce1 2s infinite;
  -webkit-animation: bounce1 2s infinite;
  animation: bounce1 2s infinite;
}

@keyframes bounce1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.down-arrow svg {
    width: 30px;
    height: auto;
}
body .main .partner-slider-box img{
    width: auto;
    height: auto;

}
.partner-slider .owl-stage{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}


.our-service-block{
    width: 100%;
    position: relative;
    background-image: url(../images/services-back.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.our-service-block:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #010a1b;
    opacity: 0.78;
}
.service-box-main{
    position: relative;
    margin-bottom: 30px;
    transition: all ease 0.5s;
    background-color: #000219;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    text-align: center;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.2);
}
.service-box-main .service-inner-box-main i[class*="flaticon-"] {
    font-size: 30px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-image: -webkit-gradient(linear,left top,right bottom,from(#c74200),to(#ef7c00));
    background-image: linear-gradient(to bottom right,#c74200,#ef7c00);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.service-box-main .service-inner-box-main h3{
    margin-bottom: 10px;
}
.service-box-main .service-inner-box-main h3 a{
    color: #fff;
    font-size: 18px;
}
.service-box-main .service-inner-box-main h3 a:hover{
  color: #ef7c00;
}
.service-box-main .service-inner-box-main p{
    color: #fff;
    margin-bottom: 0;
}
.service-box-main .service-inner-box-main > span {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 100px;
    z-index: -1;
    opacity: 0.06;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}
.read-more-btn a {
    margin-top: 14px;
    font-weight: 600;
    color: #ef7c00;
    text-decoration: underline;
}
.border-1{
    position: relative;
}
.border-1::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#ef7c00), to(transparent));
    background: linear-gradient(left, #ef7c00, transparent);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
    z-index: 1;
}
.border-1::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ef7c00), to(transparent));
    background: linear-gradient(top, #ef7c00, transparent);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
}
.border-1:hover{
    transform: translateY(-5px);
}
.subpage-border-2.border-1:hover, .img-bx.border-1:hover{
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.img-bx.border-1:hover{
  z-index: 2;
}
.mdr-scury-row > div {
  justify-content: space-between;
}
.mdr-scury-row > div .scury-bx > div {
  min-height: 380px;
}
.mdr-scury-three-row > div{
  justify-content: center;
}
.mdr-scury-three-box {
  width: 33.33% !important;
}
.mdr-scury-three-row .mdr-scury-three-box > div{
  height: 100%;
}
.border-1:hover::before {
    right: 30px;
    opacity: 1;
}
.border-1:hover::after {
    bottom: 30px;
    opacity: 1;
}
.border-2::before, .subpage-border-2 > div::before, .img-bx.border-1 > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#ef7c00));
    background: linear-gradient(left, transparent, #ef7c00);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
}
.subpage-border-2 > div::before{
  top: -15px;
}
.border-2::after, .subpage-border-2 > div::after, .img-bx.border-1 > div::after {
    content: "";
    position: absolute;
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#ef7c00), to(transparent));
    background: linear-gradient(bottom, #ef7c00, transparent);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
}
.subpage-border-2 > div::after{
  right: -30px;
}
.border-1:hover .border-2::before, .border-1.subpage-border-2:hover > div::before, .img-bx.border-1:hover > div::before {
    left: 30px;
    opacity: 1;
}
.border-1.subpage-border-2:hover > div::before{
  left: 60px;
}
.border-1:hover .border-2::after, .border-1.subpage-border-2:hover > div::after, .img-bx.border-1:hover > div::after {
    top: 30px;
    opacity: 1;
}
.border-1.subpage-border-2:hover > div::after{
  top: 45px;
}
.about-inner-content-block .section-title   { 
    margin-bottom: 40px;
}
.about-section-box-main {
    padding: 30px;
    position: relative;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-bottom: 30px;
}
.about-section-box-main h3{
    margin-bottom: 12px;
    color: #000000;
    font-size: 19px;
    font-weight: 700;
}
.about-section-box-main p{
    margin-bottom: 0;
    font-size: 17px;
}
.about-section-box-main span{
        position: absolute;
    top: -13px;
    right: -4px;
    line-height: 1;
    font-size: 80px;
    opacity: 0.1;
    font-weight: 700;
}
.about-inner-content-block{
    padding-right: 40px;
}
.about-section-block{
    position: relative;
    width: 100%;
}
.about-img-block{
    position: absolute;
    width: 50vw;
    right: 0;
    bottom: 0;
    top: 0;
}
.about-img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.global-reach-section-block{
    width: 100%;
    background-image: url(../images/gloable-reach-block.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.globel-reach-item-block{

}
.global-reach-map{
    position: relative;
    max-width: 1178px;
    margin: 0 auto;
}
.global-item{
    position: absolute;
    
}
.g-item-1{
    top: 229px;
    left: 197px;
}
.location-name{
    position: absolute;
    top: 39px;
    left: 0;
    width: max-content;
}
.location-name span{
    padding-left: 0;
    margin-left: 0;
    color: #ef7c00;
    font-size: 14px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}
.location-name span:last-child{
  border-bottom: 0; padding-bottom: 0;
}
.g-item-1 .location-name {
    left: -30px;
}
.g-item-1 .location-name:before{
  left: 35px;
}
.g-item-2 {
    top: 149px;
    left: 527px;
}
.g-item-2 .location-name {
    top: -31px;
    right: 40px;
    left: unset;
}
.g-item-2 .location-name:before {
    left: auto;
    right: -4px;
    top: 38px;
}
.g-item-3 {
    top: 125px;
    left: 584px;
}
.g-item-3 .location-name {
    top: 0;
    left: 40px;
}
.g-item-3 .location-name:before{
  top: 5px;
  left: -4px;
}
.g-item-4 {
    top: 189px;
    left: 547px;
}
.g-item-4 .location-name {
    top: 39px;
    right: 0;
    left: auto;
    text-align: right;
}
.g-item-4 .location-name:before {
    left: auto;
    right: 4px;

}
.g-item-5 {
    top: 224px;
    left: 611px;
}
/*.g-item-6 {
    top: 224px;
    left: 611px;
}*/
.g-item-6 {
    top: 300px;
    left: 696px;
}
.g-item-7 {
    top: 288px;
    left: 800px;
}
.g-item-7 .location-name {
    top: 0;
    left: 40px;
}
.g-item-7 .location-name:before {
    top: 5px;
    left: -4px;
}

.g-item-8 {
    top: 235px;
    left: 958px;
}
.g-item-9 {
    top: 228px;
    left: 999px;
}
.g-item-9 .location-name {
    top: 0;
    left: 40px;
}
.g-item-9 .location-name:before {
    top: 6px;
    left: -4px;
}
.g-item-10 {
    top: 448px;
    left: 989px;
}
.location-name{
  display: block;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.80);
  padding: 10px 20px;
}
.location-name:before {
    content: "";
    
    position: absolute;
    top: -5px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.70);
    transform: rotate(45deg);
}
.global-reach-map .location-name{
  display: flex;
}

.g-item-2 .location-name span,.g-item-4 .location-name span{
    padding-left: 0;
    border-left: 0;
    margin-left: 0; 
}
.global-reach-section-heading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 530px;
    margin: 0 auto;
}
.global-item img {
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(239,124,0, 0.8);
  animation: pulse 1s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(239,124,0, 0.8);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(239,124,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(239,124,0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(239,124,0, 0.8);
    box-shadow: 0 0 0 0 rgba(239,124,0, 0.8);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(239,124,0, 0);
      box-shadow: 0 0 0 10px rgba(239,124,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(239,124,0, 0);
      box-shadow: 0 0 0 0 rgba(239,124,0, 0);
  }
}

.drbx-img
{
  position: relative;
}
.drbx-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000219), to(transparent));
  background: linear-gradient(bottom, #000219, transparent);
}
.single-services .services-content {
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.drbx-cnt
{
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
}
.drbx-inner{
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  overflow: hidden;
  margin-bottom: 30px;
}
.drbx-inner:hover .drbx-cnt {
  bottom: 0;
}
.drbx-cnt a
{
  color: #fff;
}
.drbx-cnt a.read-more
{
  color: #ef7c00;
}

.testimoina-section
{
    background-image: url(../images/testimonls.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.testimoina-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010a1b;
  opacity: 0.75;
  z-index: -1;
}
.testimoina-section-wrap {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimoina-section .section-title{
  margin-top: 0px;
}
.testimoina-section .section-title span {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
  color: #ffffff;
}
.testi-slide
{
  color: #fff;
}

.testimoina-section .flaticon-quote {
  color: #ef7c00;
  font-size: 50px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.testi-slide p {
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 20px;
}
.testi-slide ul {
  line-height: 1;
  margin-bottom: 5px;
}
.testi-slide ul li {
  display: inline-block;
  margin: 0 1px;
}
.testi-slide ul li i {
  font-size: 18px;
  color: #ef7c00;
}
.testi-slide h3 {
  color: #ffffff;
  margin-bottom: 10px;
}
.testi-slide .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.testi-slide .owl-nav .owl-next {
  position: absolute;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.testi-slide .owl-nav .owl-prev i {
  font-size: 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.testi-slide .owl-nav .owl-next i {
  font-size: 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.testi-slide .owl-nav [class*=owl-]:hover {
  background-color: transparent;
}
.testi-slide .owl-nav .owl-prev:hover i {
  background-color: #ef7c00;
  border-color: #ef7c00;
}
.testi-slide .owl-nav .owl-next:hover i {
  background-color: #ef7c00;
  border-color: #ef7c00;
}
.artc-inner
{
  position: relative;
  -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-bottom: 30px;
}
.single-blog .blog-img a {
  display: block;
}

.artc-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000219), to(transparent));
  background: linear-gradient(bottom, #000219, transparent);
  z-index: 1;
}
.artc-img{
  position: relative;
}
.artc-img:before{
  content: "";
  display: block;
  padding-top: 125%;
}
.artc-img img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artc-cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #fff;
  z-index: 2;
}
.artc-cnt h3 {
  margin-bottom: 15px;
  font-size: 20px;
    line-height: 1.4;
    color: #fff;
}
.artc-cnt h3 a{
  color: #fff;
}
.artc-img img{
  width: 100%;
}

.footersection
{
  background-image: url(../images/footer-bg.jpg); background-repeat: no-repeat; background-size: cover; color: #c7c7c7; padding-top: 50px;
}
.footersection a
{
  color: #c7c7c7;
  font-size: 15px;
}
.footersection a:hover
{
  color: #fff;
}
.ftr-logo
{
  padding-bottom: 25px; border-bottom: 1px solid #4e525e;
}
.ftr-quick-link
{
  position: relative;
}
.ftr-quick-link::after
{
  position: absolute; content: ''; right: 0; top: 0; width: 1px; height: 100%; background-color: #4e525e;
}

.footersection h3,.footersection h2{
  font-weight: 700; color: #f37e00; text-transform: uppercase; font-size: 20px; margin-bottom: 30px;
}

.ftrbx
{
  padding-top: 50px;  padding-bottom: 50px;
}

.ftr-quick-link .menu-footer-menu-1-container,.ftr-quick-link .menu-footer-menu-2-container{
  width: 49%; display: inline-block; vertical-align: top;
}
.ftr-quick-link ul li{
  margin-bottom: 20px; font-size: 16px; font-weight: 500;
}
.ftr-quick-link ul li{
  font-size: 16px; font-weight: 500;
}
.sbscr-ftr a
{
  color: #f37e00 !important; font-weight: 700;
}

.ftr-contct
{
  padding-left: 5%; padding-right: 5%; position: relative;
}
.ftr-contct::after
{
  position: absolute; content: ''; right: 0; top: 0; width: 1px; height: 100%; background-color: #4e525e;
}
.ftr-contct p
{
   position: relative; padding-left: 40px;
}
.ftr-contct p img
{
  position: absolute; left: 0; top:7px; 
}

.social-icon-ftr
{
  margin-top: 30px;
}
.social-icon-ftr li
{
  display: inline-block; margin-right: 15px; vertical-align: top; margin-bottom: 10px;
}

.ftr-accrt
{
  padding-left: 5%;
}
.acer-icon-ftr li{
  vertical-align: top; display: inline-block; margin-bottom: 15px; margin-right: 0;width: 33%;
}
.acer-icon-ftr li:last-child{
  padding-top: 25px;
}

.ftr-cpright
{
  border-top: 1px solid #4e525e; font-size: 15px; padding: 30px 15px ;
}


#scroll {
  position:fixed;
  z-index: 9999;
  right:50px;
  bottom:50px;
  cursor:pointer;
  width:40px;
  height:42px;
  background-color:#ef7c00;
  text-indent:-9999px;
  display:none;
  color: #fff;
  
}

#scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #ef7c00;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#scroll span {
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-8px;
  margin-top:-12px;
  height:0;
  width:0;
  border:8px solid transparent;
  border-bottom-color:#ffffff;
}
#scroll:hover::before {
  opacity: 1;
    visibility: visible;
}
#scroll i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}
#scroll i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
#scroll:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
#scroll:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.sub-pg-title
{
  height: 400px; width: 100%; text-align: center; color: #fff; padding-top: 200px; padding-bottom: 100px;  background-color: #ef7c00;
}
.sub-pg-title h1
{
  font-size: 80px; color: #fff;  text-transform: uppercase; font-weight: 700;
}
.space50{
  margin-top: 50px;
}
.padd-right50
{
  padding-right: 50px;
}
.padd-left50
{
  padding-left: 50px;
}

.menu-menu-1-container
{

}
.header-phone-number {
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.4);
}
.header-phone-number a {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-telephone' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
    background-position: 0 55%;
    background-repeat: no-repeat;
    background-size: 20px;
}
.header-phone-number a:hover{
  color: #fff;
}
.header-btn a:last-child {
    margin-left: 10px;
}
.menu-menu-1-container .nav-menu
{
  align-items: center;
  justify-content: center;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: 10px;
}
.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #ffffff;
}
.dt-toggle{
  display: none;
  background-color: #000000;
    margin-right: 15px;
  padding: 10px 18px 0px 10px;
  position: absolute;
  top: 61px;
  right: 0;
  -webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}
.dt-toggle li{
  display: inline-block; position: relative;
}
.cart-icon{
  margin-left: 30px;
}
.cart-icon i{
  color: #ffffff;
  font-size: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  line-height: 1;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
.cart-icon span{
  position: absolute;
  top: 5px;
  right: -10px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  color: #000;
  font-size: 11px;
}
.dt-toggle .header-btn{
   margin: 0;
}

.dt-toggle .header-btn a{
  padding:12px 30px 13px;
}
.dot-menu{
  display: none;
}

.heding-line-after
{
  position: relative;
}
.heding-line-after::after
{
  width: 75px; height: 2px; background-color: #ef7c00; margin: 25px auto 25px auto; content: ''; display: block;
}
.number-pos{
  position: absolute;
    margin: 0;
    right: -35px;
    top: -25px;
    width: auto !important;
}

.sct-fix-height{
  max-height: 750px; overflow: visible;
}

.img-bx .elementor-image-box-img{
  position: absolute;
    right: 10px;
    top: 10px;
    margin: 0 !important;
    padding: 15px;
    text-align: center !important;
    background-image: url(../images/shape-bg.png); background-repeat: no-repeat; background-position: top right; background-size: 100% 100%;
    height: 109px;
    line-height: 60px;
    max-width: 110px;
}
.img-bx .elementor-image-box-wrapper{
  text-align: left !important;
}
.img-bx.border-1 > div{
  margin: 0px !important;
}
.img-bx.border-1 .elementor-image-box-img{
  top: 0px;
  right: 0px;
}

.img-bx .elementor-image-box-title{
  margin-right: 82px; position: relative;
}
.img-bx .elementor-image-box-title::after
{
  width: 40px; height: 2px; background-color: #ef7c00; margin: 25px 0 25px 0; content: ''; display: block;
}

.scury-bx
{
  width: 49% !important; display: inline-block; vertical-align: top;
}

.full-height, .full-height > div {
  height: 100%;
}
.scury-bx p {
  margin-bottom: 8px;
}
.scury-bx p:last-child {
  margin-bottom: 0px;
}
.navbar ul li ul.sub-menu{
  display: none;
}
@media (min-width: 951px){
  .navbar ul li:hover ul.sub-menu{
    display: flex;
  }  
}

.navbar ul.sub-menu {
  position: absolute;
  background: #000;
  flex-direction: column;
  z-index: 99;
}
.navbar ul.sub-menu li a {
  padding: 10px 15px;
  display: block;
  margin: 0px;
}
.navbar ul.sub-menu li a:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ef7c00;
  z-index: -1;
  transition: all 0.5s;
}
.navbar .collapse ul.sub-menu li a:hover:after {
  width: 100%;
}

.prtnr-logo .ekit-wid-con .elementskit-clients-slider.banner_logo_image .single-client::before{
  background-color: transparent;
}
.prtnr-logo .elementskit-clients-slider .single-client img
{
  max-width: 90%;
  margin: 0 auto;
    display: block;
}

.digitail-risk-section {
  display: none;
}

.blog-container
{
  max-width: 1290px; margin: 0 auto; padding-left: 15px; padding-right: 15px;
}

.blog-container .site-content
{
  width: 68%; display: inline-block; vertical-align: top; margin-top: -80px; background-color: #fff; padding: 30px;
  margin-right: 3%; margin-bottom: 60px;
  position: relative;
}

.blog-container .widget-area
{
  width: 28%; display: inline-block; vertical-align: top; margin-top: 65px;
}

.blog-container .widget-area .widget
{
  padding: 45px 35px 40px 35px;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  margin-bottom: 60px;
  box-shadow: 0px 0px 60px rgb(0 0 0 / 12%);
}
.blog-container .widget-title{
  font-size: 18px; text-transform: uppercase; color: #000; margin-bottom: 15px;
}
.blog-container .searchform label{
  display: block;
} 
.blog-container .searchform input[type="text"]
{
  padding:10px 15px; border-radius: 0; border: 1px solid #e7e7e7; margin-top: 10px; margin-bottom: 15px; width: 100%;
}

.blog-container .searchform input[type="submit"]
{
  padding:10px 15px; border-radius: 0; width: 100%; background-color: #ef7c00; border: 0; color: #fff; text-transform: uppercase;
}
.blog-container .searchform input[type="submit"]:hover
{
  background-color: #ff5a00;
}
.blog-container .widget li{
  margin-bottom: 10px;
}

.blog-container #comments, .blog-container .comments-link, .blog-container .nav-single
{
  display: none;
}

.blog-container .entry-title{
  font-weight: 700; margin-top: 15px; margin-bottom: 15px;
}
.blog-container .entry-meta{
  margin-top: 15px; margin-bottom: 15px;
}
.blog-dtl-top{
  background-image: url(../images/title-bg.jpg); background-repeat: no-repeat; background-position: center center; background-size: cover; padding-top: 200px; padding-bottom: 200px;
}
.blog-dtl-top h2{
  text-align: center; 
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Lato", Sans-serif;
  font-size: 60px;
  font-weight: 700;
}
.blog-dtl-top .blog-container{
  margin-top: 0;
}
ul.acer-icon-ftr {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
}

/*tooltip css*/
.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip__trigger {
  cursor: pointer;
  position: relative;
}

.tooltip__trigger-text {
  display: block;
  padding: 0.85em;
  pointer-events: none;
}

.tooltip__base {
  position: absolute;
  bottom: 2em;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  height: 200px;
  display: flex;
    align-items: center;
    justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.tooltip__content {
  color: #4a4a4a;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 65%;
  padding: 0 1em;
  opacity: 0;
  font-size: 0.85em;
}

.tooltip__shape,
.tooltip__deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tooltip__shape {
  fill: #141514;
}
.tooltip--gram .tooltip__base {
  bottom: -0.5em;
}

.header-btn .default-btn{
  padding-left: 15px; padding-right: 15px;
  min-width: 134px;
}
.navbar-expand-lg .navbar-collapse{
  display: inline-flex !important;
}
.menu-bar-block {
        flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
}
.header-btn {
    display: inline-flex; right: 20px;
}
@media (min-width: 1600px){
  .header-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 20px;
  }
  .header-main .navbar{
    position: unset;
  }
  .menu-bar-block{
    padding-right: 0;
    justify-content: center;
  }
}
.header-main .container > .header-btn{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.blog-bxes h2{
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-bxes .elementskit-post-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  height: 55px;
    overflow: hidden;
}

@media only screen and (min-width: 1550px)
{
  .testi-slide .owl-nav .owl-prev {
    left: -100px;
  }
  .testi-slide .owl-nav .owl-next {
    right: -100px;
  }
 
}

@media only screen and (max-width: 1400px)
{
  .mdr-scury-three-box h3.elementor-image-box-title {
    font-size: 20px !important;
  }
}

@media only screen and (max-width: 1250px){
  .header-phone-number{padding-left: 10px;}
  .header-phone-number a{padding-left: 19px;background-size: 14px;}
  .navbar-brand img{max-width: 190px;}
}
@media only screen and (max-width: 1200px)
{
  .blog-container .site-content {
  margin-top: -90px !important;
  }
  .blog-dtl-top{
    padding-top: 0px;
    padding-bottom: 200px;
  }
  .global-reach-map{
    max-width: 950px;
    margin: 0 auto;
  }
  .g-item-1 {
      top: 189px;
      left: 157px;
  }
  .g-item-2 {
    top: 117px;
    left: 422px;
}
.g-item-3 {
    top: 95px;
    left: 474px;
}
.g-item-4 {
    top: 159px;
    left: 437px;
}
.g-item-5 {
    top: 184px;
    left: 497px;
}
.g-item-6 {
    top: 240px;
    left: 576px;
}
.g-item-7 {
    top: 218px;
    left: 640px;
}
.g-item-8 {
    top: 186px;
    left: 778px;
}
.g-item-9 {
    top: 176px;
    left: 809px;
}
.g-item-10 {
    top: 358px;
    left: 789px;
}
.remove-back {
    background-image: none !important;
}


}

@media only screen and (max-width: 1100px)
{
  .section-title h2{
    font-size: 45px; z-index: 1;
  }
  p, body{
    font-size: 14px;
  }
  .service-box-main, .drbx-cnt, .artc-cnt{
    padding: 15px;
  }
  h3{
    font-size: 18px;
  }
  .drbx-cnt{
    bottom: -105px;
  }
  .ftr-contct{
    padding-left: 4%;
    padding-right: 4%;
  }
  .ftr-accrt{
    padding-left: 4%;
  }
  .header-btn{
    display: block; text-align: right;     margin-bottom: 6px;
  }
  .blog-container .site-content {
    margin-top: -50px !important;
  }

  .navbar .collapse ul li a{
    margin: 0 7px; font-size: 14px; 
  }
  .header-btn .default-btn{
    font-size: 14px; margin-top: 10px;
  }
  .menu-menu-1-container, .header-btn{
    display: inline-block; vertical-align: middle;
  }
}
@media only screen and (max-width: 1024px){
  .navbar{
    display: block;
  }
  .navbar-expand-lg .navbar-collapse{
    width: calc(100% - 170px);
  }
  .mdr-scury-three-box{
    width: 50% !important;
  }
  .navbar ul{
    display: block; text-align: center;
  }  
  .navbar ul li{
    display: inline-block;
  }
  .navbar-brand{
    vertical-align: top; margin-top: 12px;
  }
  .navbar ul li a{
    padding: 28px 0;
  }
  .header-btn .default-btn {
      padding-left: 10px;
      padding-right: 10px;
      min-width: 114px;
  }
  .srvc-graphic-section
  {
    background-image: none !important;
  }
  .navbar-brand img{
    max-width: 150px;
  }
}

@media only screen and (min-width: 951px) and (max-width: 991px){
  .navbar-light .navbar-toggler{display: none;}
  .header-phone-number a{font-size: 13px;}
  .menu-bar-block{padding-right: 10px;}
}
@media only screen and (max-width: 950px)
{
  .sct-fix-height
  {
    max-height: unset;
  }
  
  .navbar-expand-lg .navbar-collapse{
    display: none !important;
  }
  .navbar-expand-lg .navbar-collapse.show{
    display: block !important;
  }
  .navbar ul{
    text-align: left;
  }
  .navbar ul li {
      display: block;
      position: relative;
  }
  .navbar-expand-lg .navbar-collapse {
      width: 100%;
  }
  
  .navbar-toggler{
    outline: none; border: 0; box-shadow: none !important;
    position: absolute; right: 0; top: 6px;
  }
  .navbar-light .navbar-toggler-icon{
    background-image: url(../images/navbar-toggler-icon.png); background-repeat: no-repeat; background-position: center center !important;
  }
  .dot-menu, .dt-open, .dt-open .header-btn{
    display: block;
  }
  .header-btn{
    text-align: left;
    display: none;
  }
  .blog-container .site-content{
    width: 100%; margin-right: 0;
  }
  .blog-container .widget-area{
    width: 100%; margin-top: 30px;
  }
 
  .blog-dtl-top{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .blog-container .site-content {
      margin-top: -80px !important; margin-bottom: 0 !important;
  }
  .navbar-brand{
    margin-top: 0;
  }
  .header-main{
    padding: 12px 0;
  }
  .others-option-for-responsive .dot-menu{
    top: 22px;
  }
  .header-btn .default-btn{
    margin-bottom: 12px;
  }
  .navbar-expand-lg .navbar-collapse{

    padding: 10px 5px;
      border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 20px;
  }
  .navbar .navbar-collapse ul li a{
    padding: 18px 0 !important;
  }
  .header-main{
    background-color: rgba(0, 0, 0, 0.8);
  }
  .desktop-img,.global-item{
    display: none;
  }
  .menu-bar-block{
    justify-content: flex-start;
  }
  .header-phone-number{
    width: 100%;
    padding-left: 8px;
    border-left: 0;
  }
  .menu-menu-1-container{
    width: 100%;
  }
  .navbar ul li ul.sub-menu{
    position: unset;
    width: 100%;
    background-color: transparent;
  }
  span.plus-button-block {
    position: absolute;
    top: 9px;
    right: 0;
    color: #fff;
    font-size: 25px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 13px;
}
.navbar ul.sub-menu li a:after{
  display: none;
}
.navbar ul li ul li {
    padding: 0 13px;
}
body .navbar .navbar-collapse ul li ul li a {
    padding: 5px 0 !important;
}
}
@media (min-width: 951px){
  .resposnvie-img{display: none;}
  span.plus-button-block{display: none;}
}

@media only screen and (max-width: 800px)
{
  
  .navbar .collapse ul{
    display: block;
  }
  .navbar .collapse ul li a{
    padding-top: 15px; padding-bottom: 15px;
  }
  .header-btn{
    margin-bottom: 15px; margin-left: 18px;
  }
  .drbx-cnt {
    bottom: 0;
  }
  .testimoina-section-wrap{
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 15px; padding-right: 15px;
  }
  .ftr-contct{
    padding-left: 15px; padding-top: 30px;
  }
  .ftr-accrt{
    padding-top: 30px;
  }
  .ftr-contct::after{
    display: none;
  }
  .ftr-accrt{
    padding-left: 15px;
  }
  .about-img-block, .header-btn{
    display: none;
  }
  .about-inner-content-block {
    padding-right: 0; padding-bottom: 70px;
  }
  .global-reach-map .global-item{
    display: none;
  }
}

@media only screen and (max-width: 767px)
{
  .number-pos
  {
    right: -17px;
    top: -92px;
  }
  .img-bx .elementor-image-box-title
  {
    margin-right: 100px;
  }
  .subpage-border-2 > div::after{
    right: -15px;
  }
  .mdr-scury-row .scury-bx, .mdr-scury-three-box{
    width: 100% !important;
  }
  .mdr-scury-row > div .scury-bx > div {
    min-height: auto;
  }
  /*.dvp-catbx .elementor-widget-container{
    min-height: 120px;
  }*/
  .blog-container .widget-area .widget{
    padding: 20px; margin-bottom: 30px;
  }
  .img-bx .elementor-image-box-img{
    height: 69px;
    line-height: 10px;
    max-width: 70px;
    padding: 14px;
  }
  .ftrbx{
    padding-bottom: 0;
  }
  .ftr-cpright{
    margin-top: 40px;
  }
  .blog-container .site-content{
    padding: 10px;
  }
}

@media only screen and (max-width: 500px)
{
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-title h2{
    font-size: 36px;
  }
  .ftr-accrt {
      padding-left: 15px;
  }
}
.wpcf7-form-control-wrap.checkbox-121 span.wpcf7-form-control {
    padding: 0;
    border: 0;
}
.wpcf7-form-control-wrap.checkbox-121 span.wpcf7-form-control .wpcf7-list-item{
  margin-left: 0;
}
.wpcf7-form-control-wrap.recaptcha .wpcf7-form-control{
  padding: 0;
    border: 0; 
}