@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&display=swap);

:root {
  --light_white: #f7f7f7;
  --black: #000;
  --white: #fff;
  --orange: #ff402d;
  --light_gray: #414243;
  --heading_color: #002a6e;
  --heading-font-family: "Montserrat", sans-serif;
  --paragraph-font: Poppins, sans-serif;
}

@font-face {
  font-family: AvenirLTStd-Book;
  src: url("../fonts/AvenirLTStd-Book.eot");
  src: url("../fonts/AvenirLTStd-Book.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book") format("svg"),
    url("../fonts/AvenirLTStd-Book.ttf") format("truetype"),
    url("../fonts/AvenirLTStd-Book.woff") format("woff"),
    url("../fonts/AvenirLTStd-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

.mainHeader .navbar .logo img {
  width: 65%;
}

img {
  pointer-events: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../../assets/images/menu.png");
}

.mainHeader .navbar {
  background-color: #222e3a;
  padding: 10px 0px;
}

.mainHeader .navbar .navbar-collapse .navbar-nav .dropdown .dropdown-menu {
  background-color: #e05734;
  text-align: center;
  padding: 10px 0px;
  margin: 0px;
}

.mainHeader .navbar .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #001d35;
}

.mainHeader .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: white;
  text-align: justify;
}



/* Banner Styling Start */

.main-section {
  width: 100%;
  padding-top: 100px;
  margin-bottom: 50px;
}

.banner_img {
  background-image: url("../../assets/images/shopify_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 650px;
}

.main-section .banner_img .text .heading {
  text-align: center;
  margin: auto;
  color: white;
  font-weight: 600;
  width: 800px;
  padding-top: 200px;
  font-family: arial;
  text-transform: capitalize;
}

/* Banner Styling End */


/* Top Section Start */

.top_section {
  margin-bottom: 80px;
}

.top_section h2 {
  color: #000;
  font-weight: bold;
}

.top_section h4 {
  color: #000;
  font-weight: bold;
}

.top_section h6 {
  color: #000;
  font-weight: bold;
}

.top_section p span {
  font-weight: bold;
  color: #000;
}

.top_section p {
  line-height: 1.8rem;
  font-size: 17px;
  margin-bottom: 40px;
}

/* Top Section End */


/* Component Section Start */

.component {
  margin-bottom: 70px;
}

.component h2 {
  color: #000;
  margin-bottom: 30px;
  font-weight: bold;
}

.component .key_components ol li {
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.component .key_components ol p {
  font-size: 16px;
  line-height: 1.7rem;
}

.component h3 {
  color: #000;
  margin: 20px 0px;
  font-weight: bold;
}

.component h5 {
  color: #000;
  font-weight: bold;
}

.component p {
  font-size: 16px;
  line-height: 1.7rem;
}

/* Component Section End */



/* Sustainable Success Section Start */

.conclusion {
  margin-bottom: 80px;
}

.conclusion h3 {
  font-weight: bold;
  color: #000;
}

.conclusion p {
  font-size: 16px;
  line-height: 1.8rem;
}

/* Sustainable Success Section End */


body {
  font-family: var(--paragraph-font);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 22px;

  background: #fff;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-button:end:increment,
body::-webkit-scrollbar-button:start:decrement {
  display: none;
}

body::-webkit-scrollbar-track-piece {
  background-color: #f4f4ec;
  -webkit-border-radius: 0px;
  border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: #032c61;
}

a {
  text-decoration: none;
  color: #ffffff;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: 0;
}

ul {
  padding: 0;
  margin: 0;
  margin-top: -10px;
}

.center-col {
  margin: 0 auto;
  display: table;
  float: none;
}

header {
  position: absolute;
  z-index: 999;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.mainHeader .navbar {
  padding: 15px 0px;
  background-color: #222e3a;
}

.navbar-light .navbar-nav .nav-link {
  color: white;
}

.logo-main-sec {
  display: inline-block;
}

.logo-main-sec img {
  width: 200px;
  transition: 0.5s ease-in-out;
}

.counter_logo {
  display: inline-block;
  width: 47%;
  padding-left: 10px;
  position: relative;
  top: 10px;
}

.counter_logo span {
  padding-left: 12px;
  font-size: 12px;
  font-weight: 600;
}

.counter_logo img {
  width: 98%;
  filter: brightness(0);
}

.book_table {
  text-align: right;
}

.book_table ul li {
  display: inline-block;
  padding-left: 10px;
  color: #fff;
  padding-right: 10px;
}

.book_table ul li a {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}

.book_table ul li a img {
  padding-right: 6px;
  filter: brightness(1) invert(1);
  width: 35px;
}

.book_table ul li a.btn_custom {
  background: #d3213a;
  padding: 14px 30px;
  border-radius: 5px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  -webkit-animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 2px #e56f32;
}

.book_table ul li a.btn_custom:hover {
  background: var(--light_gray);
  color: var(--white);
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.menu_sec {
  background: #ce0b3c;
  padding: 0;
  margin-top: 25px;
  text-align: center;
}

.menu_sec .row {
  justify-content: center;
}

.menu_sec ul li a {
  font-size: 16px;
  padding: 5px 19px !important;
  margin-top: 8px;
}

.menu_sec ul li a:hover {
  color: #ffffff;
}

.banner_Sec_main {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_content_sec h2 {
  color: white;
  font-size: 50px;
  width: 700px;
  padding: 10px 50px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.banner_content_sec p {
  color: white;
  text-align: left;
  font-size: 18px;
  width: 700px;
  padding: 0px 50px;
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 35px;
}

.banner_Sec_main .banner-img {
  background-image: url("../../assets/images/custom_development.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 521px;
}

.banner_Sec_main .banner-img .banner_content_sec .banner-btn {
  padding: 20px 50px;
}

.banner_Sec_main .banner-img .banner_content_sec .banner_vector ul {
  padding: 20px 50px;
}


.banner-btn ul li a {
  background: #d0133b;
  color: var(--white) !important;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.banner-btn ul li {
  display: inline-block;
  padding: 0 15px 0 0;
}

.situation_box_sec .banner-btn ul li.chng_clr a {
  background: #222e3a !important;
  color: var(--white) !important;
}

.banner-btn ul li a:hover {
  background: var(--light_gray);
  transform: translate(0, -10px);
}

.banner_vector {
  display: flex;
}

.banner_vector ul li {
  display: inline;
  padding-right: 20px;
}

.banner_content_sec {
  position: relative;
  top: 70px;
}

.banner_img_tab img {
  width: 100%;
}

.banner_Sec_main .container-fluid .row {
  align-items: center;
}

.banner_right_img {
  padding-top: 50px;
}

.banner_content_sec h2 span {
  color: #ce0b3c;
}

.solutions-situation_sec {
  background: #ce0b3c;
  position: relative;
  padding: 70px 0;
}

.web_head {
  text-align: center;
  padding-top: 70px;
}

.web_head h2 {
  color: var(--white);
  font-size: 46px;
  font-weight: 700;
  width: 85%;
  margin: auto;
  padding-bottom: 0;
}

.situations_content_Sec h4 {
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.situations_content_Sec p {
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  font-weight: 200;
  margin-bottom: 0;
}

.slick-next:before,
.slick-prev:before {
  font-size: 35px;
  opacity: 1;
}

.slick-prev:before {
  content: "\f104";
  font-family: FontAwesome;
}

.slick-next:before {
  content: "\f105";
  font-family: FontAwesome;
}

.slick-prev {
  right: auto;
  left: -80px;
}

.slick-next {
  right: -80px;
}

.slick-next,
.slick-prev {
  background: 0 0;
  top: 70px;
}

.solutions-situation_sec:before {
  content: "";
  background: url(../images/lines-orange.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0) invert(1);
}

.situation_box_sec .banner-btn ul li a {
  background: var(--white);
  color: var(--heading_color) !important;
}

.cta_Sec_main {
  position: relative;
  background: #fff;
  padding: 120px 0;
}

.cta_Sec_main:before {
  background: url(../images/lines-orange.svg);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.2;
  background-size: cover;
}

.cta_content h3 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0;
}

.cta_content h4 {
  font-size: 34px;
  letter-spacing: 6px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 0;
}

.cta_content h4 span {
  font-weight: 900;
  color: var(--heading_color);
  font-style: italic;
  font-size: 59px;
}

.cta_btn ul li a {
  background: var(--heading_color);
  color: var(--white) !important;
  padding: 20px 60px;
  display: inline-block;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.cta_Sec_main .row {
  align-items: center;
}

.portfolio_Sec_main .web_head h2 {
  color: var(--black);
  margin-bottom: 10px;
}

.portfolio_Sec_main .web_head p {
  font-size: 16px;
  width: 80%;
  margin: auto;
  line-height: 30px;
  margin-bottom: 30px;
}

.tab_portfolio {
  padding: 30px 0;
}

.tab_portfolio ul li a {
  margin: 0;
  border: 0 !important;
  color: var(--white);
  font-size: 13px;
  background: #d93937;
  padding: 7px 18px;
  border-radius: 5px !important;
  margin: 0 4px 10px 5px;
}

.portfolio_Sec_main .tab_portfolio ul li a.active,
.portfolio_Sec_main .tab_portfolio ul li a:hover {
  background: var(--light_gray);
  color: var(--white);
}

.tab_portfolio ul {
  border: 0;
  justify-content: center;
}

.portfolio_sec_main .tab_portfolio ul li a.active,
.portfolio_sec_main .tab_portfolio ul li a:hover {
  background-color: var(--orange);
  color: var(--white);
}

.portfolio_boxes:hover a:after {
  opacity: 1;
  position: absolute;
  content: "\f067";
  font-family: FontAwesome;
  left: 50%;
  top: 48%;
  width: 48px;
  margin-left: -24px;
  margin-top: -24px;
  color: #fff;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-shadow: 0 0 10px rgb(0 0 0 / 25%);
  z-index: 99;
}

.portfolio_boxes:hover a:before {
  opacity: 1;
  content: "";
  background: rgb(0 0 0 / 47%);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  z-index: 9;
  transition: 0.5s ease-in-out;
}

.portfolio_boxes {
  position: relative;
  transition: 0.5s ease-in-out;
  margin-bottom: 0;
  display: inline;
}

.arrowBtn {
  color: var(--heading_color);
  display: inline-block;
  font-weight: 700;
  background-color: transparent;
  border: 0;
  margin: 5px;
  margin-right: 2rem;
  cursor: pointer;
  font-size: 16px;
}

.arrowBtn:hover {
  color: #191e4f;
}

.arrowBtn::after {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(../images/arrow-white-double.svg);
  background-position: -17px center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  background-color: #222e3a;
  border-radius: 0;
  padding: 1rem;
  margin-left: 1rem;
  transition: all 0.3s ease-in-out;
}

.arrowBtn:hover::after {
  background-position: 20px center;
  background-color: #191e4f;
}

.portfolio_heading {
  padding-top: 70px;
}

.portfolio_heading h2 {
  font: 36px/64px Poppins, sans-serif;
  font-weight: 700;
  color: #212529;
}

.portfolio_heading p {
  font: 16px/31px Poppins, sans-serif;
}

.portfolio_boxes a:hover img {
  top: -100%;
}

.portfolio_boxes a figure img {
  width: 100%;
  position: relative;
  top: 0;
  transition: 2s all;
}

.portfolio_boxes a {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  display: inline-block;
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.portfolio_boxes a figure {
  margin-bottom: 0 !important;
  height: 500px;
  padding: 10px;
}

.what_Sets_Sec .web_head h2 {
  color: var(--black);
  width: 100%;
  margin-bottom: 5px;
}

.what_Sets_Sec .web_head p {
  font-size: 15px;
  width: 100%;
  line-height: 25px;
  color: #000;
}

.aprat_Sec_main {
  padding: 17px 20px;
  border: 1px solid #d93937;
  border-radius: 10px;
  box-shadow: 0 0 10px #e2e1e1;
  margin-bottom: 20px;
  background: rgb(255 255 255 / 52%);
  transition: 0.5s ease-in-out;
}

.aprat_Sec_main h4 {
  font-size: 20px;
  font-weight: 700;
}

.aprat_Sec_main p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
}

.what_Sets_Sec .web_head {
  padding-bottom: 10px;
}

.aprat_Sec_main h4 span {
  color: var(--orange);
}

.what_Sets_Sec {
  background: url(../images/set-part-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
  padding: 50px 0 0;
}

.aprat_Sec_main:hover {
  background: #d93937;
}

.aprat_Sec_main:hover h4,
.aprat_Sec_main:hover h4 span,
.aprat_Sec_main:hover p {
  color: var(--white);
}

.form_sec_left {
  color: var(--white);
  position: relative;
  /* z-index: 999; */
}

.form_sec_left h4 {
  font-size: 38px;
  line-height: 57px;
  font-weight: 400;
}

.form_Sec_main {
  background: #f7f7f7;
  position: relative;
  padding: 0;
  margin-bottom: 100px;
}

.form_sec_tab {
  padding: 40px 300px 24px 90px;
  background: #f7f7f7;
  color: var(--white);
  position: relative;
  z-index: 99;
}

.cta_form input {
  height: 50px;
  width: 100% !important;
  margin-bottom: 20px;
  border-radius: 42px;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 0 30px;
}

.form_sec_tab h4 {
  font-size: 25px;
  margin-bottom: 40px;
  color: #000;
  font-weight: 700;
  line-height: 33px;
  width: 100%;
}

.cta_form textarea {
  height: 120px;
  margin-bottom: 20px;
  font-size: 14px;
  padding: 20px 20px;
  resize: none;
  border-radius: 20px;
}

.btn_form input {
  background: var(--orange);
  color: var(--white) !important;
  padding: 20px 80px;
  display: inline-block;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  width: auto !important;
  height: auto !important;
  border: 0;
}

.form_sec_tab:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/lines-orange.svg);
  opacity: 0.2;
  z-index: -1;
  right: 0;
}

.intl-tel-input {
  margin-bottom: 20px;
  width: 100%;
}

.form_Sec_main .banner-btn ul li a {
  background: var(--orange);
  color: var(--white) !important;
}

.packages_sec_main .web_head h2 {
  color: var(--black);
}

.package-box .package-top h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--black);
}

.package-box .cutprice {
  display: block;
  font-size: 18px;
  margin-top: 10px;
  text-decoration: line-through;
  padding-bottom: 5px;
  color: var(--black);
}

.package-box {
  padding: 30px 20px 30px;
  position: relative;
  box-shadow: 0 0 15px #cbcbcb;
  transition: 0.5s ease-in-out;
  background: var(--white);
  margin-bottom: 50px;
  border-radius: 10px;
}

.package-ss .slick-dots li button:before {
  font-size: 50px;
}

.package-ss .slick-dots li.slick-active button:before {
  color: #fe6654;
}

.package-ss .slick-next,
.package-ss .slick-prev {
  display: none !important;
}

.package-ss .slick-track {
  padding-top: 30px;
}

.package-box img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.packages-section .slick-slide {
  margin: 0;
}

.btn_packages {
  padding: 15px 0 10px;
  text-align: center;
}

.btn_packages a {
  background: #d93937;
  color: var(--white) !important;
  padding: 15px 40px;
  display: inline-block;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: 0 0 10px #bdbdbd;
  cursor: pointer;
}

.btn_packages a:hover {
  background: var(--white);
  color: var(--heading_color) !important;
}

.package-box:hover {
  transform: scale(1.05) !important;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.package-box:hover .package-details p {
  transition: all 0.5s ease-in-out;
}

.package-box:hover .contact-part a,
.package-box:hover .contact-part p {
  transition: all 0.5s ease-in-out;
}

.package-box:hover ul li:before {
  transition: all 0.5s ease-in-out;
}

.package-box .package-top .h5 sub {
  font-size: 14px;
}

.package-box ul li.heading {
  font-weight: 700;
}

.package-box ul li.heading:before {
  display: none;
}

.package-box .extra p {
  margin: 5px 0;
  background: #bf1f0b;
  color: #fff;
  padding: 0 10px;
}

.package-box .package-top .h5 {
  font-size: 29px;
  font-weight: 700;
  display: block;
  color: var(--orange);
}

span.first_month {
  display: block;
  background: #bf1f0b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 15px;
}

span.third_month {
  display: block;
  background: #1a1a2f;
  color: #fff;
  padding: 5px 0;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 14px;
}

.package-box .package-details .h6 {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.package-box .package-details {
  margin: 20px 0;
}

.package-box .contact-part {
  margin-bottom: 15px;
  padding-top: 20px;
  text-align: left;
  padding: 10px 10px;
}

.contact-part a,
.package-box .contact-part p {
  margin: 0;
  color: var(--blsck);
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.contact-part a {
  color: #002b76;
}

.w-50.pl-2 a {
  color: #ff6026;
}

.package-box ul li {
  margin: 5px 0;
  word-break: break-word;
  padding-right: 10px;
  font-size: 15px;
  line-height: initial;
  color: var(--blsck);
  position: relative;
  padding: 5px 20px;
  line-height: 17px;
}

.package-box ul li:before {
  content: "";
  background: url(../images/tick-arrow.png) no-repeat;
  color: #bf1f0b;
  font-size: 17px;
  margin-right: 8px;
  width: 13px;
  height: 12px;
  display: inline-block;
  top: 8px;
  position: absolute;
  left: 0;
}

.package-box ul.pkg-list {
  height: 230px;
  text-align: start;
  overflow-y: scroll;
  padding: 0 6px;
}

.package-box ul.pkg-list::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

.package-box ul.pkg-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e6e5e5;
  border-radius: 10px;
  background: #e6e5e5;
}

.package-box ul.pkg-list::-webkit-scrollbar-thumb {
  background: #222e3a;
  border-radius: 10px;
}

.package-box ul.pkg-list::-webkit-scrollbar-thumb:hover {
  background: #002b76;
  border-radius: 10px;
}

.package-details p {
  font-size: 14px;
  font-weight: 500;
  line-height: initial;
  color: var(--black);
}

.package-box .contact-part>div:before {
  content: "";
  border-right: 1px solid #d9d7d7;
  width: 2px;
  height: 50px;
  position: absolute;
  right: 7px;
}

.package-box .contact-part>div {
  position: relative;
}

.package-box .contact-part>div:nth-last-child(1):before {
  border: 0;
}

.package-box:hover {
  background: #d93937;
}

.package-box:hover h4,
.package-box:hover p,
.package-box:hover span,
.package-box:hover ul.pkg-list li {
  color: var(--white) !important;
}

.package-box:hover .btn_packages a {
  background: var(--white);
  color: #222e3a !important;
}

li.chng_clr a {
  background: var(--orange) !important;
}

a.arrowBtn.change_btn:after {
  content: "\f095";
  font-family: 'FontAwesome';
  background-color: #ff402d;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

a.arrowBtn.change_btn {
  color: var(--orange);
}

.industry_sec_tab {
  background: url(../images/industries-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 99;
}

.industry_sec_tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(34 46 58);
  z-index: -1;
}

.web_head p {
  color: var(--white);
  font-size: 19px;
  line-height: 35px;
  font-weight: 400;
  width: 80%;
  margin: auto;
}

.overlay_form {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  padding: 10px 150px;
  background: rgb(0 0 0 / 39%);
  left: 0;
}

.form_sec_left img {
  width: 100%;
}

.industry_box_sec {
  border-radius: 10px;
  cursor: pointer;
  padding: 44px;
  position: relative;
  text-align: left;
  transition: 0.4s ease;
  background-color: #fff;
  box-shadow: 0 0 10px #3f4040;
  text-align: center;
  margin-bottom: 30px;
  min-height: 220px;
}

.custom_web {
  background: #fff;
}

.custom_web .web_head h2,
.custom_web .web_head p {
  color: var(--black);
}

.feathred_box_sec {
  box-shadow: 20px 0 60px rgb(14 27 56 / 15%);
  padding: 30px 10px;
  text-align: center;
  border: 1px solid #ce0b3c;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
  min-height: 350px;
}

.feathred_box_content h4 {
  font-size: 17px;
  font-weight: 700;
}

.feathred_box_content p {
  font-size: 14px;
  line-height: 24px;
}

.feathred_box_sec:hover {
  background: #ce0b3c;
  transform: scale(1.1);
}

.feathred_box_sec:hover .feathred_icon_sec img {
  filter: brightness(0) invert(1);
}

.feathred_box_sec:hover .feathred_box_content h4,
.feathred_box_sec:hover .feathred_box_content p {
  color: var(--white);
}

.review_sec_main .web_head h2 {
  color: var(--black);
}

.review_sec_main {
  background: #f4f3fb;
  position: relative;
  z-index: 9;
}

.review_sec_main:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/lines-orange.svg);
  opacity: 0.2;
  z-index: -1;
  right: 0;
}

.review_sec_tab {
  background: var(--white);
  padding: 50px 30px;
  box-shadow: 20px 0 30px rgb(14 27 56 / 15%);
  border-radius: 10px;
  min-height: 280px;
}

.review_sec_tab p {
  font-size: 17px;
  line-height: 31px;
  color: var(--black);
}

.author_name h3 {
  color: var(--heading_color);
  font-size: 20px;
  font-weight: 700;
}

.rating_sec ul li {
  display: inline-block;
  font-size: 19px;
  padding: 0 2px 0 0;
  color: #df0b1a;
}

.review_content {
  padding-bottom: 10px;
}

.author_name {
  display: inline-block;
}

.trustpilot-logo {
  display: inline-block;
  float: right;
}

.bark-logo {
  display: inline-block;
  float: right;
  width: 120px;
  margin-top: 10px;
}

footer {
  background-color: #222e3a;
  padding: 50px 0 0;
  position: relative;
  background-size: cover;
}

.footer_logo p {
  padding-top: 10px;
  color: var(--white);
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}

.footer_logo h4 {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
}

.footer_logo ul li {
  position: relative;
  color: var(--white);
  padding: 0 10px 20px 40px;
  font-size: 17px;
  font-weight: 300;
}

.footer_logo ul li span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 23px;
}

.footer_logo ul li p {
  display: inline;
  font-weight: 300;
  margin-bottom: 0;
  line-height: initial;
}

.footer_logo ul li a {
  color: var(--white);
}

.form_footer_head h2 {
  color: var(--white);
  font-size: 25px;
}

.footer_form_sec form {
  padding-top: 20px;
}

.footer_form_sec form input {
  height: 50px;
  margin-bottom: 15px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
  padding: 0 15px;
}

.footer_form_sec form textarea {
  height: 120px;
  border-radius: 10px;
  border: 0;
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 10px;
  resize: none;
}

.footer_form_sec form .btn_form input {
  background: #d93937;
  color: var(--white);
  padding: 15px 70px;
  height: auto;
  font-size: 19px;
  cursor: pointer;
  border-radius: 5px;
}

.btn_form {
  padding-top: 10px;
}

.copy_right {
  margin-top: 40px;
  padding: 5px 0;
  background-color: #d93937;
}

.copy_right_text p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-weight: 300;
}

.pay_icon img {
  width: 40%;
}

.pay_icon {
  text-align: right;
}

.copy_right .row {
  align-items: center;
}

footer:before {
  content: "";
  position: absolute;
  background: rgb(34 46 58) width: 100%;
  height: 100%;
  top: 0;
}

.intl-tel-input {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.portfolio_boxes img {
  width: 100%;
}

.set_right_img img {
  width: 630px;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  height: 48px;
}

.lead_popup .modal-content {
  border: 0;
  border-radius: 20px;
  padding: 40px 60px 10px;
  background: #fff;
  background-size: cover;
}

.lead_popup .modal-header button {
  background: #ff6026;
  opacity: 1;
  text-shadow: none;
  color: var(--white);
  font-size: 35px;
  font-weight: 300;
  width: 50px;
  border-radius: 50px;
  height: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.5s ease-in-out;
}

.lead_popup .modal-header button:hover {
  background: #002b76;
}

.lead_popup .modal-header {
  padding: 0;
  border: 0;
}

.lead_popup h2 {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.lead_popup [type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 48px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 23px;
}

.lead_popup [type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #002b76;
  border-radius: 100%;
  background: 0 0;
}

.lead_popup [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.lead_popup [type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #002b76;
  position: absolute;
  top: 4px;
  left: 19px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.lead_popup [type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.lead_popup input {
  height: 50px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

.lead_popup .modal-footer {
  border: 0;
}

.lead_popup .modal-content:before {
  content: "";
  position: absolute;
  background: rgb(255 255 255 / 85%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 20px;
}

.lead_popup .modal-btn ul li button {
  background: #ff6026;
  border: 0;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 50px;
  font-size: 18px;
}

.lead_popup .modal-btn ul li button:hover {
  background: #002b76;
  color: var(--white);
}

.lead_popup input.btn-success {
  background: var(--orange);
  border: 0;
  padding: 15px 0;
  height: auto;
  border-radius: 50px;
  width: auto;
  padding: 13px 60px;
  display: table;
  margin: 10px auto;
  cursor: pointer;
}

.modal-btn ul {
  display: flex;
  justify-content: space-between;
}

.started_popup_sec .modal-content {
  background: #fff;
  background-size: cover;
  padding: 30px 20px 50px;
  position: relative;
  border: 0;
  box-shadow: 0 0 50px rgb(0 0 0 / 50%);
}

.started_popup_sec .modal-header {
  padding: 0;
  border: 0;
}

.started_popup_sec .modal-header button {
  position: absolute;
  background: #ce0b3c;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 45px;
  opacity: 1;
  text-shadow: none;
  font-weight: 200;
  line-height: 21px;
  border-radius: 50px;
  right: 0;
  top: 0;
}

.started_popup_sec .modal-header button span {
  position: relative;
  left: -2px;
}

.started_popup_sec .modal-content:before {
  content: "";
  background: rgb(255 255 255 / 75%);
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  right: 0;
}

.form_head_Sec {
  text-align: center;
}

.form_head_Sec h2 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 0;
  background: #ce0b3c;
  padding: 10px 0;
  margin: 10px 0;
  border-radius: 50px;
}

.form_head_Sec h4 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}

.form_head_Sec h3 {
  color: #ce0b3c;
  font-size: 29px;
  font-weight: 600;
  margin: 0;
  padding-top: 10px;
}

.started_popup_sec input {
  height: 50px;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #002a6e;
  padding: 10px 20px;
  font-size: 13px;
}

.started_popup_sec select {
  height: 50px;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #002a6e;
  padding: 10px 20px;
  font-size: 13px;
}

.started_popup_sec textarea {
  height: 130px;
  font-size: 13px;
  padding: 15px 10px;
  resize: none;
  border-radius: 10px;
  border: 1px solid #002a6e;
}

.started_popup_sec form {
  padding-top: 20px;
}

.btn_form input {
  background: #ce0b3c;
  color: var(--white);
  font-size: 19px;
  border: 0;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.btn_form input:hover {
  background: var(--heading_color);
  border: 0;
}

.floating_widget {
  padding: 15px 10px;
  border: 1px solid #d7d7d7;
  border-radius: 0 4px 4px 0;
  border-left: medium;
  box-shadow: 0 5px 17px -3px rgb(0 0 0 / 12%);
  transform: translateX(-5%);
  opacity: 1;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: auto;
  background-color: #fff;
  text-align: center;
  max-width: 100px;
  cursor: pointer;
  z-index: 1020;
  margin-top: auto;
  bottom: 0;
  height: 160px;
  display: inline-block;
  position: fixed;
  top: 0;
}

.numbers {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 0;
}

.number_big {
  font-weight: 600;
}

.number_small {
  color: #000000cc;
  font-size: 12px;
}

.ratingStars {
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
}

.ratingStars img {
  width: 100%;
}

.subheading_small {
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
}

.subheading_big {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}

.reviewsLogo_text {
  color: #333;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}

.reviewsLogo_star img {
  width: 18px;
  margin-right: 5px;
  position: relative;
  top: -3px;
}

.reviewsLogo {
  float: left;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
}

.reviewsLogo_star {
  display: inline-block;
  vertical-align: middle;
}

.floating_footer {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  border-top: 1px solid #ccc;
  padding-top: 3px;
}

.callusnow {
  width: 50px;
  height: 50px;
  color: #002b76;
  display: block;
  text-align: center;
  border-radius: 100%;
  font-size: 33px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  box-shadow: 6px 9px 30px 1px rgba(37, 0, 22, 0.71);
  padding: 6px 0 12px 0;
  animation: scrollDownAnimation 0.5s ease infinite alternate;
  -webkit-animation: scrollDownAnimation 0.5s ease infinite alternate;
  background: #fff;
  border: solid 3px #ff402d;
}

.callusnow:hover {
  color: #ff402d;
}



@keyframes scrollDownAnimation {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes scrollDownAnimation {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.footer_logo img {
  width: 50%;
  margin-bottom: 30px;
}

.floatbutton {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: fixed;
  left: -371px;
  top: -27%;
  font-size: 0;
  width: 370px;
  z-index: 9999;
}

.btns_wrap {
  position: fixed;
  left: 0;
  top: 77px;
}

.btns_wrap .chat_wrap {
  display: block;
  position: absolute;
  left: -173px;
  width: 233px;
  padding: 0;
  background: #fff;
  top: 55px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 50px 50px 0;
}

.btns_wrap .call_wrap span.icoo,
.btns_wrap .chat_wrap span.icoo {
  color: #fff;
  font-size: 18px;
  padding: 16px 20px 16px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  background: #f6402d;
  border-radius: 0 50px 50px 0;
}

.btns_wrap .chat_wrap span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  background: #fff;
  padding: 15px 30px 15px 15px;
}

.btns_wrap .call_wrap {
  width: 256px;
  position: absolute;
  left: -201px;
  background: #fff;
  top: 127px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 50px 50px 0;
}

.btns_wrap .call_wrap span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  background: #fff;
  padding: 15px 30px 15px 15px;
}

.floatbutton .clickbutton {
  border-radius: 30px 0 0 30px;
  background: #fff;
  width: 50px;
  z-index: 999;
  height: 270px;
  cursor: pointer;
  box-shadow: -20px 7px 18px -7px rgb(87 184 151 / 9%);
  display: inline-block;
  padding-top: 0;
  vertical-align: top;
  margin-top: 126px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  -ms-box-shadow: 0 0 40px #00000026;
  -o-box-shadow: 0 0 40px #00000026;
  background: linear-gradient(360deg, #d0133b, #f1492f) right: -367px;
  transform: rotate(180deg);
  top: 375px;
}

.floatbutton .clickbutton .crossplus {
  position: relative;
  display: block;
  transform: rotate(0);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  display: block;
  transform: rotate(-270deg);
  -webkit-transition: 0.4s;
  font-size: 16px;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  left: -79px;
  white-space: pre;
  bottom: 122px;
  font-weight: 700;
}

.banner-form {
  background: #fff;
  padding: 10px;
  position: relative;
  z-index: 9;
  border-radius: 5px 0 0 5px;
  margin: 0;
  width: 370px;
  display: inline-block;
  box-shadow: 0 0 30px #0000001f;
}

.banner-form h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.ban-form input {
  width: 100%;
  margin: 0;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  height: 50px;
  font-weight: 400;
  outline: 0 !important;
  margin: 0 0 15px 0;
}

.ban-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 400;
  height: 120px;
  outline: 0 !important;
  margin: 15px 0 0 0;
}

.ban-form input[type="submit"] {
  color: #fff;
  font-weight: 600;
  background: #f43535;
  border-radius: 3px;
  text-align: center;
  background: #3d67cb;
  padding: 10px 15px;
  margin: 20px 0 0;
  border: transparent;
  border-radius: 50px;
  cursor: pointer;
}

.btns_wrap a:hover {
  text-decoration: none !important;
  left: 0;
}

.floatbutton.active {
  left: 0;
  z-index: 99999;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.floatbutton .clickbutton .crossplus.rotate {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

span.close {
  color: #ff402d;
  opacity: 1;
}

footer .footer-social-icons {
  display: flex;
  margin-top: 10px;
  width: 320px;
  justify-content: space-between;
  margin-bottom: 20px;
}


@media (max-width: 1600px) {
  .banner_content_sec h2 {
    font-size: 42px;
    line-height: 50px;
  }

  .banner_content_sec p {
    line-height: 30px;
  }

  /* .banner_Sec_main .container-fluid {
    padding: 0 40px 0 130px;
  } */

  .web_head h2 {
    font-size: 40px;
  }

  .situations_content_Sec h4 {
    font-size: 27px;
    line-height: 35px;
  }

  .form_Sec_main {
    overflow: hidden;
  }

  .form_sec_tab {
    padding: 40px 180px 24px 90px;
  }

  .form_sec_tab h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .form_sec_left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
}

@media (max-width: 1440px) {
  .banner_content_sec h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .menu_sec ul li a {
    font-size: 15px;
    padding: 5px 17px !important;
    font-weight: 700;
  }

  .banner_content_sec p {
    line-height: 27px;
    font-size: 17px;
  }

  .banner_Sec_main {
    /* height: 680px; */
    padding: 100px 0px;
  }

  .web_head h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .situations_content_Sec h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .situations_content_Sec p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 300;
  }

  .banner-btn ul li a {
    padding: 13px 17px;
    font-size: 17px;
  }

  .set_right_img img {
    width: 560px;
  }

  .aprat_Sec_main p {
    font-size: 15px;
    line-height: 21px;
  }

  .portfolio_heading h2 {
    font: 31px/34px Poppins, sans-serif;
  }

  .portfolio_heading p {
    font: 15px/27px Poppins, sans-serif;
  }

  .tab_portfolio ul li a {
    font-size: 15px;
    padding: 10px 29px;
    margin: 0 14px 20px 6px;
  }

  .form_sec_tab {
    padding: 40px 110px 24px 90px;
  }

  .form_sec_tab h4 {
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 32px;
  }

  .package-box .package-top h4 {
    font-size: 18px;
  }

  .package-box .cutprice {
    font-size: 16px;
  }

  .package-box .package-top .h5 {
    font-size: 25px;
  }

  .package-box ul li {
    font-size: 14px;
  }

  .web_head p {
    font-size: 17px;
    line-height: 28px;
    width: 70%;
  }

  .industry_box_sec {
    min-height: 180px;
    padding: 25px;
  }

  .feathred_box_content h4 {
    font-size: 16px;
  }

  .feathred_box_content p {
    font-size: 14px;
    line-height: 22px;
  }

  .feathred_box_sec {
    min-height: 330px;
  }

  .review_sec_tab p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
  }

  .footer_logo p {
    font-size: 14px;
    line-height: 27px;
  }

  .form_footer_head h2 {
    color: var(--white);
    font-size: 20px;
  }

  .counter_logo img {
    width: 89%;
  }

  .book_table {
    text-align: right;
    padding-top: 20px;
  }
}

@media (max-width: 1200px) {
  .banner_Sec_main .container-fluid {
    padding: 0 40px 0 60px;
  }

  .banner_content_sec h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .banner_content_sec p {
    line-height: 25px;
    font-size: 15px;
  }

  /* .banner_Sec_main {
    height: 690px;
  } */

  .banner_right_img {
    padding-top: 120px;
  }

  .web_head h2 {
    font-size: 25px;
    padding-bottom: 10px;
  }

  .solutions-situation_sec {
    padding: 50px 0;
  }

  .situations_content_Sec h4 {
    font-size: 23px;
    line-height: 27px;
    width: 90%;
  }

  .situations_content_Sec p {
    font-size: 14px;
    line-height: 23px;
    font-weight: 300;
    width: 90%;
    margin-bottom: 0;
  }

  .solutions-situation_sec .banner-btn.pt-5 {
    padding-top: 2rem !important;
  }

  .set_right_img img {
    width: 540px;
  }

  .form_sec_tab h4 {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 25px;
  }

  .form_sec_tab {
    padding: 20px 90px 24px 50px;
  }

  .form_sec_left img {
    height: 550px;
  }

  .situations_content_Sec {
    padding-left: 50px;
  }

  .slick-prev {
    right: auto;
    left: -10px;
  }

  .slick-next {
    right: -10px;
  }

  .slick-next {
    right: -10px;
  }

  .what_Sets_Sec {
    overflow: hidden;
  }

  .portfolio_heading h2 {
    font: 23px/34px Poppins, sans-serif;
    font-weight: 600;
  }

  .portfolio_heading p {
    font: 14px/24px Poppins, sans-serif;
    width: 90%;
  }

  .tab_portfolio ul li a {
    font-size: 13px;
    padding: 7px 19px;
    margin: 0 2px 19px 6px;
  }
}

@media (max-width: 1100px) {
  header .container {
    max-width: 1090px;
  }

  .menu_sec ul li a {
    font-size: 13px;
    padding: 5px 12px !important;
  }

  .banner_vector ul li img {
    width: 40%;
  }

  .banner_vector ul li {
    padding-right: 17px;
  }

  .banner_content_sec h2 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 0;
  }

  .banner_content_sec p {
    line-height: 25px;
    font-size: 14px;
  }

  .situations_content_Sec h4 {
    font-size: 19px;
    line-height: 22px;
    width: 90%;
  }

  .situations_content_Sec p {
    font-size: 13px;
    line-height: 22px;
  }

  .situation_sec_tab.pt-5 {
    padding-top: 2rem !important;
  }

  .what_Sets_Sec {
    padding: 30px 0 0;
  }

  .banner-btn ul li a {
    font-size: 14px;
  }

  .aprat_Sec_main {
    margin-bottom: 10px;
  }

  .arrowBtn::after {
    width: 35px;
    height: 35px;
    background-position: -14px center;
  }

  .aprat_Sec_main h4 {
    font-size: 17px;
  }

  .arrowBtn {
    margin-right: 1rem;
    font-size: 14px;
  }

  .tab_portfolio ul li a {
    font-size: 14px;
    padding: 7px 25px;
    margin: 0 2px 15px 6px;
  }

  .form_sec_tab h4 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 23px;
  }

  .cta_form input {
    font-size: 13px;
    padding: 0 20px;
  }

  .btn_form input {
    padding: 15px 50px !important;
    font-size: 17px !important;
  }

  .intl-tel-input.separate-dial-code .selected-dial-code {
    color: #000;
  }

  .intl-tel-input.allow-dropdown .selected-flag,
  .intl-tel-input.separate-dial-code .selected-flag {
    height: 50px !important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .intl-tel-input {
    margin-bottom: 5px;
  }

  .cta_form input {
    margin-bottom: 10px;
  }

  .form_sec_left img {
    height: 490px;
  }

  .cta_form textarea {
    margin-bottom: 10px;
  }

  .package-box .package-top h4 {
    font-size: 16px;
  }

  .package-box .package-top .h5 {
    font-size: 22px;
  }

  .web_head p {
    font-size: 15px;
    line-height: 25px;
    width: 80%;
  }

  .feathred_box_content h4 {
    font-size: 14px;
  }

  .feathred_box_content p {
    font-size: 13px;
    line-height: 20px;
  }

  .feathred_box_sec {
    min-height: 320px;
  }

  .review_sec_tab p {
    font-size: 15px;
    line-height: 25px;
  }

  .review_sec_tab {
    padding: 20px 30px 40px;
  }

  .trustpilot-logo {
    display: inline-block;
    float: right;
    width: 30%;
  }

  .author_name h3 {
    font-size: 17px;
  }

  .rating_sec ul li {
    font-size: 16px;
  }

  .review_sec_main .row.pt-5 {
    padding-top: 2rem !important;
  }

  .footer_logo ul li a {
    font-size: 15px;
  }

  footer {
    background-size: cover;
  }
}

@media (max-width: 1024px) {
  .counter_logo span {
    font-size: 11px;
  }

  .logo-main-sec img {
    width: 185px;
  }

  .banner_Sec_main .container-fluid {
    padding: 0 30px 0 40px;
  }

  .banner_content_sec p {
    line-height: 21px;
    font-size: 13px;
  }

  .what_Sets_Sec .web_head p {
    font-size: 14px;
    width: 100%;
    line-height: 21px;
    color: #000;
  }

  .portfolio_heading p {
    font: 13px/21px Poppins, sans-serif;
    width: 90%;
  }

  .form_sec_tab h4 {
    font-size: 16px;
  }

  .package-box ul li {
    font-size: 13px;
  }

  .package-box {
    margin-bottom: 30px;
  }

  .btn_packages a {
    padding: 11px 30px;
    font-size: 15px;
  }

  .web_head h2 {
    font-size: 22px;
  }

  .menu_sec ul li a {
    font-size: 14px;
    padding: 5px 21px !important;
  }

  .form_sec_left img {
    height: 440px;
  }

  .book_table ul li a.btn_custom {
    padding: 14px 20px;
  }

  .book_table ul li a {
    font-size: 13px;
  }

  /* .banner_Sec_main {
    height: 610px;
  } */
}

@media (max-width: 992px) {
  .banner_content_sec h2 {
    font-size: 24px;
    line-height: 27px;
  }

  .banner-btn ul li a {
    font-size: 13px;
    padding: 10px 22px;
  }

  .set_right_img img {
    width: 524px;
  }

  .form_sec_left img {
    height: 490px;
  }
}

@media (max-width: 768px) {

  /* Banner Styling Start */

  .main-section {
    padding-top: 50px;
  }

  .main-section .banner_img .text .heading {
    font-size: 20px;
    padding: 200px 20px;
    width: 100%;
  }

  .banner_img {
    height: auto;
  }

  .top_section p {
    line-height: 1.8rem;
    font-size: 15px;
    margin-bottom: 40px;
  }

  .top_section h2 {
    color: #000;
    font-size: 20px;
    font-weight: bold;
  }


  element.style {
    visibility: visible;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-name: fadeInDown;
  }

  .component h2 {
    color: #000;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .top_section h4 {
    color: #000;
    font-size: 20px;
    font-weight: bold;
  }

  .component .key_components ol li {
    font-weight: bold;
    font-size: 15px;
    color: #000;
  }

  .component h3 {
    color: #000;
    font-size: 23px;
    padding-top: 30px;
    margin: 20px 0px;
    font-weight: bold;
  }

  .component h5 {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}


.conclusion h3 {
  font-weight: bold;
  font-size: 21px;
  color: #000;
}

  .main-section .Banner_img .banner_content h2 {
    width: 100%;
    font-size: 17px;
    line-height: 1.9rem;
    padding: 0px 20px;
  }

  .main-section .Banner_img .banner_content p {
    font-size: 16px;
    width: 100%;
    line-height: 1.9rem;
    padding: 0px 20px;
  }

  .main-section .Banner_img .banner_content .banner-btn {
    padding: 20px;
  }

  .main-section .Banner_img .banner_content .links_logo {
    padding: 20px;
  }

  .main-section .Banner_img .banner_content .links_logo .bark_logo {
    padding: 0px 20px;
    width: 52%;
    margin-top: 12px;
  }

  .portfolio_heading {
    padding-top: 0px;
  }

  /* Banner Styling End */

  .info .banner-btn ul li a {
    display: none;
  }

  .mainHeader .navbar .logo img {
    width: 50%;
  }

  .banner_content_sec h2 {
    font-size: 20px;
    line-height: 27px;
  }

  .banner-btn ul li a {
    font-size: 11px;
    padding: 8px 10px;
  }

  .banner_content_sec {
    position: relative;
    top: 70px;
  }

  /* .banner_Sec_main {
    height: 490px;
  } */

  .banner_right_img {
    padding-top: 170px;
  }

  .logo-main-sec img {
    width: 220px;
  }

  .counter_logo {
    display: inline-block;
    width: 42%;
  }

  .book_table ul li a {
    font-size: 12px;
  }

  .book_table ul li a img {
    padding-right: 3px;
    filter: brightness(1) invert(1);
    width: 28px;
  }

  .book_table ul li a.btn_custom {
    padding: 10px 11px;
    font-size: 10px;
  }

  .counter_logo {
    display: none;
  }

  .book_table {
    text-align: right;
    padding-top: 10px;
  }

  .banner_right_img {
    padding-top: 90px;
  }

  .situations_content_Sec h4 {
    font-size: 17px;
    line-height: 22px;
    width: 100%;
  }

  .situations_content_Sec {
    padding-left: 0;
  }

  .situations_content_Sec p {
    font-size: 12px;
    line-height: 19px;
  }

  .aprat_Sec_main p {
    font-size: 13px;
    line-height: 19px;
  }

  .what_Sets_Sec .web_head h2 {
    margin-bottom: 0;
    padding-bottom: 5px;
    font-size: 17px;
  }

  .what_Sets_Sec .web_head p {
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
  }

  .aprat_Sec_main {
    padding: 17px 15px;
  }

  .set_right_img img {
    width: 500px;
  }

  .portfolio_heading .col-12.col-lg-5.text-right {
    text-align: left !important;
  }

  .portfolio_boxes a figure {
    height: 250px;
  }

  .form_sec_tab {
    padding: 20px 30px 24px 20px;
  }

  .form_sec_tab h4 {
    font-size: 15px;
    line-height: 20px;
  }

  .form_sec_left img {
    height: 450px;
  }

  .cta_form textarea {
    margin-bottom: 10px;
    height: 110px;
  }

  .industry_box_sec img {
    width: 70%;
  }

  .industry_box_sec {
    min-height: 150px;
    padding: 25px;
  }

  .web_head p {
    font-size: 14px;
    line-height: 25px;
    width: 90%;
  }

  .custom_web .row.pt-5 .col-sm-3 {
    max-width: 50%;
    flex: 50%;
    margin-bottom: 30px;
  }

  .feathred_box_sec {
    min-height: 320px;
  }

  .feathred_box_content p {
    font-size: 15px;
    line-height: 24px;
  }

  .feathred_box_content h4 {
    font-size: 16px;
  }

  .review_sec_tab p {
    font-size: 13px;
    line-height: 22px;
  }

  .footer_logo p {
    font-size: 13px;
    line-height: 23px;
  }

  .copy_right_text p {
    margin-bottom: 0;
    font-size: 14px;
  }

  .form_footer_head h2 {
    font-size: 15px;
    padding: 15px 0px;
  }

  .author_name h3 {
    font-size: 14px;
  }

  .padding_70 {
    padding: 40px 0;
  }

  .aprat_Sec_main h4 {
    font-size: 15px;
  }

  .portfolio_heading h2 {
    font: 19px/34px Poppins, sans-serif;
    font-weight: 600;
  }

  .tab_portfolio ul li a {
    font-size: 13px;
    padding: 7px 15px;
    margin: 0 2px 15px 6px;
  }

  .banner_Sec_main .container-fluid {
    padding: 0 20px 0 30px;
  }

  .menu_sec {
    margin-top: 15px;
  }

  .menu_sec ul li a {
    font-size: 13px;
    padding: 5px 14px !important;
  }

  .form_Sec_main {
    overflow: hidden;
    padding: 0 !important;
  }

  .banner-btn ul li {
    display: inline-block;
    padding: 0 10px 0 0;
  }

  .lead_popup .modal-content {
    padding: 40px 20px 10px;
  }

  .lead_popup h2 {
    font-size: 19px;
  }

  .form_head_Sec h4 {
    font-size: 25px;
  }

  .form_head_Sec h3 {
    font-size: 24px;
  }

  .lead_popup [type="radio"]:checked+label,
  [type="radio"]:not(:checked)+label {
    font-size: 14px;
  }

  .review_sec_tab {
    padding: 20px 30px 40px;
    min-height: 380px;
  }

  .footer_logo h4 {
    font-size: 17px;
    padding-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .banner_right_img {
    padding-top: 90px;
    display: none;
  }

  .banner_Sec_main .col-sm-5 {
    max-width: 100%;
    flex: 100%;
  }

  .menu_sec .row {
    justify-content: right;
  }

  .navbar-toggler {
    background: #ff402d;
  }

  nav.navbar.navbar-expand-md {
    justify-content: right;
  }

  .menu_sec ul li {
    text-align: left;
  }

  .menu_sec ul li a {
    font-size: 20px;
  }

  .menu_sec ul li a {
    font-size: 15px;
    padding: 11px 0 !important;
  }

  .book_table ul li a.btn_custom {
    display: none;
  }

  .banner_content_sec p {
    line-height: 28px;
    font-size: 15px;
  }

  .situation_sec_tab .col-sm-7 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 30px;
  }

  .situation_box_sec .row {
    flex-direction: column-reverse;
  }

  .situation_sec_tab .col-sm-5 {
    max-width: 100%;
    flex: 100%;
  }

  .question-img img {
    margin-bottom: 40px;
    width: 62%;
  }

  .situations_content_Sec p {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }

  .situations_content_Sec h4 {
    font-size: 19px;
    line-height: 22px;
    width: 100%;
  }

  .set_right_img {
    display: none;
  }

  .form_sec_tab h4 {
    font-size: 14px;
    line-height: 18px;
  }

  .form_sec_left img {
    height: 500px;
  }

  .industry_box_sec img {
    width: 90%;
  }

  .industry_box_sec {
    min-height: 120px;
    padding: 25px;
    margin-bottom: 20px;
  }

  .web_head h2 {
    font-size: 19px;
  }

  .feathred_box_content p {
    font-size: 13px;
    line-height: 23px;
  }

  .footer_logo p {
    font-size: 12px;
    line-height: 19px;
    padding-top: 0;
  }

  .copy_right .col-sm-6 {
    flex: 100%;
    max-width: 100%;
  }

  .footer_logo ul li a {
    font-size: 13px;
  }

  .tab_portfolio ul li a {
    font-size: 12px;
    padding: 6px 13px;
    margin: 0 2px 15px 6px;
  }

  .portfolio_heading p {
    font: 13px/21px Poppins, sans-serif;
    width: 100%;
  }

  .started_popup_sec .modal-header button {
    right: 10px;
    top: 10px;
  }

  .form_head_Sec h2 {
    font-size: 12px;
  }

  footer .footer-social-icons {
    width: 100%;
  }
}

@media (max-width: 450px) {
  /* .banner_Sec_main {
    height: 580px;
  } */

  header .col-md-5.col-5 {
    flex: 100%;
    max-width: 100%;
  }

  header .col-md-7.col-7 {
    max-width: 100%;
    flex: 100%;
    text-align: center;
  }

  .book_table {
    text-align: center;
    padding-top: 10px;
  }

  .logo-main-sec {
    display: block;
    text-align: center;
  }

  .banner_content_sec h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .banner_content_sec p {
    line-height: 32px;
    font-size: 17px;
  }

  .banner_content_sec {
    position: relative;
    top: 80px;
  }

  /* .banner_Sec_main {
    height: 620px;
  } */

  .portfolio_Sec_main .col-sm-3.p-0 {
    max-width: 50%;
    flex: 50%;
  }

  .portfolio_boxes a figure {
    height: 430px;
  }

  .package-box {
    margin-bottom: 30px;
    margin: 0 25px 30px;
  }

  .industry_sec_tab .col-sm-3 {
    max-width: 50%;
    flex: 50%;
  }

  .industry_box_sec img {
    width: auto;
  }

  .industry_box_sec {
    min-height: 180px;
  }

  .web_head p {
    font-size: 15px;
    line-height: 27px;
    width: 100%;
  }

  .situation_box_sec {
    margin: 0 30px;
  }

  .package-box ul li {
    font-size: 14px;
  }

  .custom_web .row.pt-5 .col-sm-3 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 20px;
  }

  .feathred_box_sec {
    min-height: auto;
  }

  .feathred_box_content p {
    font-size: 17px;
    line-height: 29px;
  }

  .feathred_box_content h4 {
    font-size: 19px;
  }

  .review_sec_tab {
    padding: 20px 30px 40px;
    margin-bottom: 20px;
    min-height: auto;
  }

  footer .col-sm-6.offset-1 {
    margin: 0 !important;
    padding-top: 0px !important;
  }

  .form_sec_left img {
    height: auto;
  }

  .form_sec_tab h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .form_Sec_main .container-fluid.p-0 {
    padding: 0 20px !important;
  }

  .web_head h2 {
    font-size: 18px;
  }

  .packages_sec_main .row.pt-5 .row {
    margin: 0;
  }
}

@media (max-width: 380px) {
  .banner_content_sec h2 {
    line-height: 32px;
  }

  .banner_content_sec p {
    line-height: 25px;
    font-size: 15px;
  }

  .web_head h2 {
    font-size: 18px;
    line-height: 25px;
  }

  .situations_content_Sec h4 {
    font-size: 16px;
    line-height: 25px;
  }

  .situations_content_Sec p {
    font-size: 15px;
    line-height: 30px;
  }

  .arrowBtn {
    margin-right: 11px !important;
    font-size: 13px;
  }

  .package-box {
    margin-bottom: 30px;
    margin: 0 10px 26px;
  }

}


.social_icons {
  background-color: #222E3A;
  margin: 100px 0px;
}

.social_icons .icon_parent {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 20px;
  width: 100%;
  justify-content: center;
}

.social_icons .icon_parent a img {
  padding: 20px 0px;
}