/*@font-face {
    font-family: 'averta_demoextrabold_italic';
    src: url('../fonts/avertademo-extrabolditalic-webfont.woff2') format('woff2'),
         url('../fonts/avertademo-extrabolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #e01d27;
  --darkblue: #0c2541;
  --gradient: linear-gradient(to right, #e01d27, #e01d27, #e01d27, #e11d27, #e11d27);
  --black: #000;
  --white: #fff;
}

.blue {
  color: var(--blue) !important;
}


.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light a,
.light p,
.light i,
.light span,
.light li,
.light {
  color: var(--white);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark i,
.dark span,
.dark,
.black {
  color: var(--black) !important;
}

/*--------------------------------------------------------------
>>> Typography
----------------------------------------------------------------*/
body {
  font-size: 15px;
  color: #686868;
  background-color: #ffffff;
  font-family: "Apercu", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}

p {
  line-height: 1.6;
  margin: 0 0 15px;
  word-wrap: break-word;
}

/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

p {
  font-size: 14px;
  color: #303030;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  line-height: 1.2;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}

h4 {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

h5 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

h6 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
ul,
ol {
  margin: 0;
  padding: 0;
}

ul.fancy_list li {
  position: relative;
  padding-left: 18px;
  list-style: none;
  font-weight: 100;
  font-size: 15px;
  margin: 5px 0;
}

ul.fancy_list li:before {
  top: 6px;
  width: 7px;
  height: 12px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  content: "";
  transition: .5s ease-out;
  left: 0;
  z-index: 999;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #0085BA;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

a:hover,
a:focus,
a:active {
  color: var(--blue);
  text-decoration: none;
  outline: 0;
}

a:visited {
  text-decoration: none;
  outline: 0;
}


span.cntr_border {
  display: inline-block;
  width: 30px;
  border-bottom: 1px solid var(--blue);
  position: relative;
  top: -4px;
  margin: 0 5px;
}

span.call_at {
  font-weight: 500;
  color: #898989;
}

b,
strong {
  font-weight: 800;
}

.btn_set {
  display: flex;
  column-gap: 15px;
  align-items: center;
  margin: 30px 0 0;
}

/*.input {outline: none;width: 100%;border: none;height: 50px;margin-bottom: 10px;padding: 10px 0px;font-size: 13px;background-color: transparent;border-bottom: 1px solid #fff;color: #fff;}
.input::placeholder {color: #fff; text-transform: capitalize; }
.input:focus {border-color: #000; }
.input option {color: #000 !important; }*/

.input {
  width: 100%;
  font-size: 14px;
  padding: 15px 15px;
  margin-bottom: 15px;
  border: none;
}

.input:focus {
  border-color: var(--yellow) !important;
}

.input::placeholder {
  color: #000;
  font-family: 'Apercu';
  font-size: 17px;
}

textarea.txt_area {
  height: 119px !important;
}


.subtitle {
  font-size: 18px;
}

.gradient_txt {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 100% 100%;
}


body::selection {
  background: var(--blue);
  color: #fff;
  text-shadow: none;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
  display: none;
}

body::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

body::-webkit-scrollbar-thumb:vertical {
  border-radius: 50px;
  background-color: var(--darkblue);
}


::selection {
  background: var(--darkblue);
  color: #fff;
  text-shadow: none;
}


::-webkit-scrollbar {
  width: 5px;
  background-color: var(--darkblue);
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: var(--darkblue);
}


.pink::-webkit-scrollbar {
  width: 5px;
  background-color: #e95994;
}

.pink::-webkit-scrollbar-button:start:decrement,
.pink::-webkit-scrollbar-button:end:increment {
  display: none;
}

.pink::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

.pink::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #e95994;
}


.green::-webkit-scrollbar {
  width: 5px;
  background-color: #69aa42;
}

.green::-webkit-scrollbar-button:start:decrement,
.green::-webkit-scrollbar-button:end:increment {
  display: none;
}

.green::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

.green::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #69aa42;
}


.sky_blue::-webkit-scrollbar {
  width: 5px;
  background-color: #0a9ccd;
}

.sky_blue::-webkit-scrollbar-button:start:decrement,
.sky_blue::-webkit-scrollbar-button:end:increment {
  display: none;
}

.sky_blue::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

.sky_blue::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #0a9ccd;
}


.purple::-webkit-scrollbar {
  width: 5px;
  background-color: #9662aa;
}

.purple::-webkit-scrollbar-button:start:decrement,
.purple::-webkit-scrollbar-button:end:increment {
  display: none;
}

.purple::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #ddd;
}

.purple::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #9662aa;
}


/************HEADER CSS*/
header {
  padding: 15px 25px;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

header .second_nav {
  background-color: var(--perple);
  padding: 10px 0;
}

header .second_nav ul {
  margin: 0 0 0 auto;
  display: table;
}

header .second_nav ul li {
  display: inline-block;
  margin: 0 0 0 20px;
  position: relative;
  padding-left: 25px;
}

header .second_nav ul.contact_info li a {
  color: #fff;
  font-size: 14px;
}

header nav .chat span {
  display: flex;
  align-items: center;
}

header nav .chat span i {
  font-size: 30px;
  margin-right: 10px;
}

header nav .chat {
  padding: 6px 20px 6px 15px;
  font-weight: 400;
}

header nav .call_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px !important;
}

header nav .call_btn i {
  background-color: var(--white);
  color: #0d31e1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  transition: .5s;
}

header nav .call_btn img.btnFlag {
  width: 24px;
}

header nav .call_btn span {
  margin: 0px 20px 0 10px;
}

header nav .call_btn:hover i {
  background-color: var(--white);
  color: var(--blue);
}


ul.contact_info li:before {
  position: absolute;
  left: 0;
  color: var(--blue);
  font-family: 'FontAwesome';
}

ul.contact_info li:nth-child(1):before {
  content: "\f095";
}

ul.contact_info li:nth-child(2):before {
  content: "\f041";
}
ul.contact_info li:nth-child(3):before {
  content: "\f041";
}

ul.contact_info li:nth-child(4):before {
  content: "\f0e0";
  font-size: 15px;
}

header ul {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

header ul li {
  list-style: none;
  position: relative;
}

header ul li.active a {
  color: var(--blue);
}

header nav ul li a {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  padding: 20px 0;
}

header nav ul li a:hover {
  color: #e11d27;
}

header .top_nav ul.navigation {
  justify-content: flex-end;
  column-gap: 40px;
}

li.active_menu a {
  color: var(--red);
}

ul.get_stated_ul {
  float: right;
}

.has_drop:before {
    content: "\f0d7";
    font-family: fontawesome;
    position: absolute;
    right: -20px;
    transition: .5s;
    color: #fff;
    padding: 20px;
    top: -20px;
}

.has_drop {
  padding-right: 20px;
  position: relative;
}
a.has_drop:before {
    opacity: 0;
    display: none;
}




/************HEADER CSS*/


/************HAMBURGER CSS*/
.hamBurger {
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  float: right;
  padding: 6px 8px;
  cursor: pointer;
  margin-left: 15px;
}

.hamBurger div {
  border-bottom: 1px solid #fff;
  margin: 6px 0;
}

.hamBurger div:nth-child(2) {
  width: 20px;
}

.hamBurger div:nth-child(3) {
  width: 10px;
}

.hamBurger:hover div {
  width: 100%;
}

/************HAMBURGER CSS*/

/************TABS CSS*/
ul#pills-tab {
  margin: auto;
  display: flex;
  margin-bottom: 40px !important;
  justify-content: center;
  column-gap: 10px;
}

ul#pills-tab li {
  display: inline-block;
}

ul#pills-tab li button {
  border-radius: 30px;
  color: var(--darkblue);
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  padding: 8px 30px;
  font-weight: 700;
  line-height: 25px;
}

ul#pills-tab li button.active {
  background-image: var(--gradient) !important;
  color: #fff;
}

/************TABS CSS*/

.gradient_btn {
  display: inline-block;
  background-image: var(--gradient);
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 100px;
  transition: .5s ease-out;
  border: none;
  text-transform: uppercase;
  font-size: 15px;
  line-height: inherit;
  text-align: center;
}

.gradient_btn:hover {
  background-color: #151515;
}

.border_btn {
  display: inline-block;
  color: var(--white) !important;
  padding: 8px 30px;
  border-radius: 100px;
  transition: .5s ease-out;
  border: 2px solid var(--white);
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
}
.fw_700 {
    font-weight: 700;
}
.border_btn:hover {
  background-color: #e01d27;
  color: #fff !important;
}

.white_btn {
  background-color: var(--white);
  display: inline-block;
  color: var(--darkblue) !important;
  padding: 10px 30px;
  border-radius: 100px;
  transition: .5s ease-out;
  border: 2px solid var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

.white_btn:hover {
  background-color: var(--blue);
  color: var(--white) !important;
}

ul.subMenu .links_clm {
  padding: 30px;
}

ul.subMenu .img_clm {
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}



ul.subMenu li a {
  display: block;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

ul.subMenu li:last-child a {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

ul.subMenu li a {
  color: #fff !important;
  font-weight: 300;
  padding-left: 0px;
  font-size: 14px;
  transition: .5s ease-out;
  padding-bottom: 10px;
  padding-top: 0;
}

ul.subMenu li a:before {
  left: 10px;
  top: 6px;
  width: 0px;
  height: 0px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)scale(0);
  position: absolute;
  content: "";
  transition: .5s ease-out;
  left: 0;
}

ul.subMenu li a:hover,
ul.subMenu li.active a {
  padding-left: 20px;
}

ul.subMenu li a:hover:before,
ul.subMenu li.active a:before {
  width: 7px;
  height: 12px;
  transform: rotate(45deg)scale(1);
  /* transition-delay: .5s; */
}

ul.subMenu img.services_hover_img {
  height: 250px;
  transition: .5s ease-out;
  width: 100%;
}


.openDropDown {
  top: 40px !important;
  z-index: 999 !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

.drop_btn:before {
  transform: rotate(-180deg);
}


.responsive_menu {
  overflow-x: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999999;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  left: -100%;
  width: 300px;
  padding: 40px;
  transition: .5s ease-out
}

.openMenu {
  left: 0%;
}

.responsive_menu .clm_wrap ul.subMenu {
  /* height: 100vh; */
  overflow-y: auto;
  transition: unset !important;
  display: none;
  position: unset;
  opacity: 1;
  left: 0;
  padding: 10px 0;
  width: 100%;
  background-color: #00000021;
  border-radius: 0 !important;
  box-shadow: unset;
}

.responsive_menu .clm_wrap ul.subMenu li {
  padding: 0;
  margin: 0;
  border: none !important;
}

.responsive_menu .clm_wrap ul.subMenu li {
  border: none !important;
  margin: 0px 0;
}

.responsive_menu .clm_wrap ul.subMenu li a {
  font-size: 13px;
  padding: 5px 20px;
  display: inline-block;
}

.responsive_menu ul li a {
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  width: 100%;
  font-size: 20px;
}

.responsive_menu .clm_wrap {
  width: 100%;
}

.responsive_menu ul li {
  margin: 20px 0;
  position: relative;
}

.responsive_menu ul.contact_info li {
  padding-left: 25px;
}

.responsive_menu ul.contact_info li:before {
  color: var(--red);
}

.responsive_menu ul:last-child {
  margin-bottom: 0;
}

.responsive_menu ul {
  margin-bottom: 50px;
}

.responsive_menu ul.navigation {
  display: inline-block !important;
  width: 100%;
}

.responsive_menu ul.navigation li {
  list-style: none;
}

.responsive_menu .clm_wrap ul.subMenu .col-6 {
  width: 100%;
}

.responsive_menu .clm_wrap ul.subMenu .col-6:last-child {
  display: none;
}

.responsive_menu ul.subMenu .links_clm {
  padding: 0px;
}

.open_drop:before {
  transform: rotate(180deg);
}

.drop_icon:before {
  content: "\f107";
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
  transition: .5s;
}

.drop_icon {
  position: relative;
  padding-right: 20px;
}


.white {
  color: var(--white) !important;
  border-color: var(--white) !important;
}


/************HOME BANNER CSS*/
.home_banner {
  background-image: url(../../assets/images/banner.jpg);
  /* padding: 100px 0; */
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  align-items: center;
  display: flex;
  background-position: center;
  height: 870px !important;
}

.home_banner img.banner_shap {
  position: absolute;
  top: 0;
  left: 24%;
  transition: .5s ease-out;
}

.home_banner h4.before_flag {
  display: flex;
  align-items: center;
}

.home_banner h4.before_flag img {
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.home_banner .subtitle {
  margin: 10px 0 30px 0;
}

.home_banner img.trustspilot {
  margin-top: 25px;
}

/************HOME BANNER CSS*/


.recently_done {
  background-image: url(../../assets/images/recently-bg.jpg);
  padding: 70px 0 0;
}

.recently_done ul#pills-tab li button.active {
  background-image: var(--gradient);
  color: var(--white);
}

.recently_done .row .col-12 a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translate(-55%, -55%); */
  z-index: 999;
  width: 54px;
  height: 54px;
  filter: brightness(0)invert(1);
  opacity: 0;
  transition: .5s ease-in-out;
  bottom: 0;
  right: 0;
  margin: auto;
  background-size: 100%;
  background-image: url(../../assets/images/zoom.png);
  background-repeat: no-repeat;
}

.recently_done .row .col-12 a {
  position: relative;
  width: 100%;
  height: 100%;
  display: table;
  border-radius: 10px;
  overflow: hidden;
}

.recently_done .row .col-12 a:hover:before {
  opacity: 1;
}

.recently_done .row .col-12 a:after {
  content: "";
  width: 100%;
  height: 0%;
  background-color: #000000c2;
  position: absolute;
  right: 0;
  transition: .5s ease-in-out;
  bottom: 0;
}

.recently_done .row .col-12 a:hover:after {
  height: 100%;
}

.recently_done .tab-content a {
  overflow: hidden;
  display: inline-block;
  margin: 0 !important;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.recently_done a:hover img {
  transform: scale(1.1);
  filter: brightness(0.5);
  cursor: pointer;
}

.recently_done .tab-content a img {
  height: 400px;
  object-fit: cover;
  line-height: 0px;
  margin-bottom: -10px;
  transition: .5s;
}

.recently_done .tab-content a:before {
  content: "\f067";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: .5s;
  opacity: 0;
  font-family: 'FontAwesome';
  color: #fff;
  cursor: pointer;
}

.recently_done .tab-content a {
  position: relative;
  display: flex;
}

.recently_done .tab-content a:hover:before {
  opacity: 1 !important;
  z-index: 999;
}

img.port_img {
  width: 100%;
}


.services_category {
  padding: 30px 0 70px;
}

.services_category h6 {
  margin: 15px 0;
}





.inner__wrap{
  position: relative;
}
.services_category .img_wrap {overflow: hidden; border-radius: 10px; background-color: #000; position: relative; }
.services_category .img_wrap img{transition: .5s !important; }
.services_category .img_wrap:hover img {opacity: 0.3;transform: scale(1.2)rotate(10deg);}
.services_category .img_wrap:before {content: ""; width: 1px; height: 0%; background-color: #fff; position: absolute; left: 25px; bottom: 0; z-index: 99; transition: .5s; }
.services_category .img_wrap:after {content: ""; width: 1px; height: 0%; background-color: #fff; position: absolute; right: 25px; top: 0; z-index: 99; transition: .5s; }
.services_category .img_wrap:hover:before, .services_category .img_wrap:hover:after {height: 100%; }

.services_category .img_wrap .inner__wrap:before {content: ""; height: 1px; width: 0%; background-color: #fff; position: absolute; left: 0px; top: 25px; z-index: 99; transition: .5s;}
.services_category .img_wrap .inner__wrap:after {content: ""; height: 1px; width: 0%; background-color: #fff; position: absolute; right: 0px; bottom: 25px; z-index: 99; transition: .5s;}
.services_category .img_wrap:hover .inner__wrap:before, .services_category .img_wrap:hover .inner__wrap:after {width: 100% !important;  }







.cta_sec {
  background-image: url(../../assets/images/looking-far-a-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  position: relative;
  margin: 0% 0 0;
  box-shadow: 0px 0px 85px 0px #e01d2785;
}
.cta_sec .btn_set {
    margin-top: 0;
}
.cta_sec img.phone_laptops {
  position: absolute;
  top: 10%;
  right: 0;
}

.cta_sec h4 {
  text-transform: capitalize;
  font-weight: 600;
}


.complete_brand {
  background-image: url(../../assets/images/complete-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  display: none;
}

.complete_brand .content_wrap {
  border-right: 1px solid #ffffff38;
  padding: 0px 10px;
}

.complete_brand .col-lg-4:last-child .content_wrap {
  border-right: none;
}

.complete_brand .content {
  margin-bottom: 30px;
}

.complete_brand .content:last-child {
  margin-bottom: 0;
}

.complete_brand img.complete_before {
  position: absolute;
  left: 0;
  width: 14%;
  top: -17%;
}

.complete_brand img.complete_after {
  position: absolute;
  bottom: -72px;
  right: -110px;
  width: 40%;
}

.complete_brand h2.highlighted_price {
  display: flex;
  align-items: center;
}

.complete_brand h2.highlighted_price span.cutPrice {
  font-size: 25px;
  margin-left: 10px;
  position: relative;
  color: #334fba;
  padding: 0 10px;
}

.complete_brand h2.highlighted_price span.regular_price {
  border: 2px dashed;
  padding: 0 10px;
}

.complete_brand h2.highlighted_price span.cutPrice:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ff0909;
  position: absolute;
  top: 13px;
  opacity: 1;
  transform: rotate(5deg);
  left: 0;
}


.other_services {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.other_services img.os_img {
  width: 83px;
  /* border-radius: 50%; */
}

.other_services h5 {
  margin: 30px 0 15px 0;
}

.angal1:before {
  content: "";
  /* background-image: url(../../assets/images/angal1.png); */
  /* background-repeat: no-repeat; */
  /* background-size: 100%; */
  /* position: absolute; */
  /* width: 100%; */
  /* height: 100%; */
  /* left: 0; */
  /* top: -23px; */
}

.angal2:before {
  content: "";
  /* background-image: url(../../assets/images/angal2.png); */
  /* background-repeat: no-repeat; */
  /* background-size: 100%; */
  /* position: absolute; */
  /* width: 100%; */
  /* height: 100%; */
  /* left: 0; */
  /* bottom: -60px; */
}

.angal1,
.angal2 {
  position: relative;
}


.technologies img.tech_img {
  width: auto !important;
  display: table;
  margin: auto;
}

.technologies {
  background-image: url(../../assets/images/technologies-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}


.counters {
  background-color: #000;
  background-image: url(../../assets/images/milestone-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0;
  position: relative;
}

.counters p {
  margin: 0;
}

.counters span.counter_num {
  font-size: 60px;
  font-weight: 600;
  line-height: 65px;
}

.counters .content {
  border-right: 1px solid #ffffff3d;
}

.counters .col-lg-3:last-child .content {
  border-right: 0;
}


.testimonials {
  padding: 70px 0 50px;
}

.testimonials img.testi_img {
  width: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  margin-top: -70px;
}

.testimonials .item {
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 29%);
  padding: 30px 80px;
  border-radius: 20px;
  /* border: 1px solid #00000014; */
  margin: 0 20px;
  transition: .5s;
}

.testimonials .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  padding: 40px 0 5px 0px;
  height: 370px !important;
  /* width: 96%; */
}

.testimonials .item:hover {
    background-color: var(--blue);
    box-shadow: 0px 10px 20px 0px var(--blue);
}

.testimonials .item:hover h6, .testimonials .item:hover p {
    color: #fff;
}


.my_input {
  width: 100%;
  padding: 10px;
  /* border: none !important; */
  border-radius: 5px;
  outline: none !important;
  font-size: 13px;
  border: 1px solid #00000017;
}

.sticky_contact_us {
  position: fixed;
  right: -355px;
  z-index: 999;
  height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: .5s;
  top: 0;
  bottom: 0;
}
.enable_form {
    right: -275px;
}
.sticky_contact_us .contact_txt {
  /*background-image: linear-gradient(0deg, #fd1a1b, #c70b15);*/
  background-image: -moz-linear-gradient( 0deg, rgb(255,27,27) 0%, rgb(199,11,21) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,27,27) 0%, rgb(199,11,21) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,27,27) 0%, rgb(199,11,21) 100%);
  color: var(--white) !important;
  padding: 25px 15px;
  border-radius: 15px 0 0 15px;
  text-align: center;
  margin-right: 0px;
  box-shadow: 0px 0px 85px 0px #e01d2785;
  cursor: pointer;
}





.sticky_contact_us .contact_txt i {
  width: 30px;
  height: 30px;
  background-color: #000;
  line-height: 32px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 50%;
  transform: scale(1.5);
}

.sticky_contact_us .contact_txt h5 {
  writing-mode: vertical-lr;
  margin: 0;
  text-align: center;
  color: var(--white);
}

.sticky_contact_us form {
  width: 270px;
  background-color: #00000038;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(25px);
}

.openForm {
  right: 0 !important;
}


.form_sec {
  background-image: url(../../assets/images/form-bg.jpg);
  padding: 70px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.form_sec .txt_with_icon {margin: 0 0;padding: 30px 0;}
.form_sec .txt_with_icon:nth-child(2) {
    border-top: 1px solid #ffffff52;
    border-bottom: 1px solid #ffffff52;
}
.form_sec .info {
    padding: 0 50px;
}
.txt_with_icon .img_icon i.fa.fa-envelope {
    font-size: 27px;
}
.txt_with_icon {
    display: flex;
}
.txt_with_icon .img_icon i {
    font-size: 35px;
    margin-right: 0px;
    width: 45px;
    color: var(--blue);
}
.txt_with_icon .txt_box h5 {
    margin: 0;
    text-transform: capitalize;
}



footer {
  /* background-image: url(../../assets/images/foooter-bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #040032;
}

footer a:hover {
  color: var(--blue) !important;
}

footer ul.fancy_list li {
  margin: 10px 0;
}

footer .f_clm3 ul.fancy_list {
  column-count: 2;
}

footer .f_clm3 ul.fancy_list li.gdpr:before {
  opacity: 0;
}

.footer h5 {
  text-transform: capitalize;
  font-weight: 500;
}

.footer {
  padding: 70px 0 70px;
}

.footer span,
.footer p,
.footer a {
  font-weight: 300;
  font-size: 15px;
}

.footer img.footer_logo {
  filter: brightness(0)invert(1);
  margin-bottom: 20px;
}

.footer .contact_info span {
  display: inline-block;
  width: 100%;
}

.footer ul.f_links {
  column-count: 2;
}

.footer ul.f_links li {
  list-style: none;
}

ul.contact_info li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  list-style: none;
}

ul.contact_info li:last0-child {
  margin-bottom: 0;
}

.copyright p {
  margin: 0;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid #ffffff30;
}

.copyright .btn_set {
  justify-content: flex-end;
  margin: 0;
}

.copyright .row {
  justify-content: space-between;
}

.copyright .btn_set a:nth-child(1) {
  border-right: 1px solid;
  padding-right: 10px;
}

/*.copyright .btn_set a {color: #000; }*/


/*************INNER PAGE BANNER CSS*/
.inner_page_banner {
    padding: 170px 0 100px;
    display: inline-block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 870px !important;
}

/*************INNER PAGE BANNER CSS*/

/*************ABOUT PAGE CSS*/
.about-banner {
  background-image: url(../../assets/images/about-banner.jpg);
}

.about_us {
  padding: 70px 0 0;
}

.about_us img {
  margin: auto;
  display: table;
}

/*************ABOUT PAGE CSS*/


/*************PORTFOLIO PAGE CSS*/
.portfolio-banner {
  background-image: url(../../assets/images/about-banner.jpg);
}

/*************PORTFOLIO PAGE CSS*/


/*************PACKAGES PAGE CSS*/
.packages-banner {
  background-image: url(../../assets/images/about-banner.jpg);
}

.our_packages {
  padding: 70px 0;
}

.our_packages .pkg_clm {
    border: 2px solid var(--blue);
    border-radius: 20px;
    padding: 40px 20px 40px;
    transition: .5s;
    margin: 0 0 30px;
}

.our_packages .pkg_clm:hover {
  box-shadow: 0px 30px 50px 0px rgb(33 150 243 / 22%);
}

.our_packages .pkg_clm ul.fancy_list {
  margin-bottom: 30px;
  text-align: left;
  overflow-x: hidden;
  padding-left: 5px;
  height: 180px;
}

.our_packages .pkg_clm ul.fancy_list li {
  font-weight: 500;
}

.our_packages .pkg_clm .btn_set {
  justify-content: center;
  align-items: center;
}

.our_packages .pkg_clm h5 {
  font-weight: 700;
}

.our_packages  .border_btn {
    background-color: transparent;
    color: #000 !important;
    border: 2px solid #000;
}

.our_packages  .border_btn:hover {
    background-color: #000;
    color: #fff !important;
    border: 2px solid #000;
}
/*************PACKAGES PAGE CSS*/


/*************CONTACT PAGE CSS*/
.contact-banner {
  background-image: url(../../assets/images/about-banner.jpg);
  display: flex;
  /*height: 730px;*/
  align-items: center;
}

.contact_sec .input {
  border: 1px solid;
  width: 100%;
  border-radius: 7px;
  height: 55px;
  padding: 8px 8px 2px 24px;
  font-size: 15px;
  margin-bottom: 30px;
  /* transition: .5s !important; */
}

.field_wrap span.form_label {
  position: absolute;
  left: 15px;
  top: -5px;
  background-color: var(--white);
  line-height: 14px;
  padding: 0px 10px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  /* transition: .5s !important; */
}

.field_wrap {
  position: relative;
}

.contact_sec {
  padding: 70px 0;
  background-image: url(../../assets/images/contact-sec-bg.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
}


.ithardwaer-banner {
  background-image: url(../../assets/images/itheardwaer-banner.png);
}
.why__partner {
    padding: 5% 0;
    background-color: #f7f6f5;
    margin-top: 4%;
}
.why__partner h6 {
    margin: 15px 0 10px;
}
.zigzag .row:last-child {
    margin-bottom: 0;
}
.zigzag .row {
    margin-bottom: 5%;
}

.zigzag {
    padding: 5% 0;
}


.contact_sec ::placeholder {
  font-size: 15px;
}

.contact_sec textarea.txt_area {
  padding: 20px 20px 20px 24px;
}

.contact_sec .input:focus {
  outline: none !important;
  border-color: var(--blue) !important;
}

.contact_sec .input:focus~span.form_label {
  color: var(--blue) !important;
}

.contact_sec form {
  margin-top: 50px;
}

/*************CONTACT PAGE CSS*/


body.home .recently_done {
  margin-bottom: 70px;
}


/*************ABOUT US PAGE CSS*/
/*body.seo-page .recently_done {padding-top: 0; }*/
body.about_us-page .about_us {
  padding-bottom: 70px;
}

.recently_done .col-12.mb-5 {
  margin-bottom: 0;
}

/*************ABOUT US PAGE CSS*/

body.home .recently_done .col-12.mb-5 {
  margin-bottom: 70px;
}

body.logo-page .about_us {
  padding-bottom: 0 !important;
}


body.portfolio-page .technologies {
  margin-top: 70px;
}

.testimonials .item p {
  height: 100px;
  overflow-y: auto;
}

.services_category .content_service {
  margin: 0px 0 50px;
}

.home_banner .content {
  position: relative;
  top: -50px;
}


section.thankyouwrp p {
    font-size: 26px;
}

section.thankyouwrp h2 {
    color:#e11d27
}

section.thankyouwrp {
    border-top: 85px solid #000;
    padding: 0px 0 60px;
    text-align: center;
}

img.thank_gif {
    width: 350px;
}


.term-first-wrapper {
    padding: 100px 0px;
}

.terms-first-wrap-text p {
    font-size: 14px;
    color: #959595;
    line-height: 1.8;
    margin-bottom: 10px;
}

.terms-first-wrap-text {
    margin-bottom: 30px;
}

.terms-first-wrap-text h5 {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.terms-first-wrap-text h5::before {
    content: '';
    position: absolute;
    width: 3%;
    height: 4px;
    background-color: #000;
    bottom: -8px;
}

.term-first-wrapper ul {
    padding: 0 0 0 20px;
}

.terms-first-wrap-text ul li {
    font-size: 14px;
    color: #959595;
    line-height: 1.8;
}

.terms-first-wrap-text a {
    font-size: 14px;
    color: #959595;
    line-height: 1.8;
}


@media (min-width:992px){
  li.has_drop:hover ul.subMenu {
    display: block !important;
  }

  ul.subMenu {
    position: absolute;
    top: 35px;
    background-image: var(--gradient);
    z-index: 9;
    padding: 0px;
    width: 640px;
    border-radius: 0px 0px 7px 7px;
    /* opacity: 0; */
    transition: .5s ease-in-out;
    display: none;
    left: 0;
    box-sizing: border-box;
    overflow: hidden;
    /* box-shadow: 0px 10px 16px -1px #0000005c; */
    /* pointer-events: none; */
  }

}

.owl-stage-outer.owl-height {
    height: auto !important;
}
/*.img_wrap a:hover:before {
    background: #f5181aa8;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}*/

.img_wrap a {
    position: relative;
    display: table;
    width: 100%;
}

.pkg_clm.digi-heaght-box {
    min-height: 452px;
}


.pkg_clm.digi-heaght-box .btn_set {
    margin: 105px 0 0 0;
}


section.section.section--awards {
    background-image: url(../../assets/images/technologies-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.socialIcons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socialIcons a {
    font-size: 1.5rem;
    height: 40px;
    width: 40px;
    background: #e11d27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.loader {
    text-align: center;
    display: none;
}

.loader img {
    width: 20px;
}

label.error {
    display: none !important;
}

input.error {
    background-color: #f8d7da !important;
    border-color: #842029 !important;
}