/*@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");*/
/*@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap");

* {
  padding: 0;

  margin: 0;
}

a {
  color: #1a485f;

  transition: all 0.3s ease-in-out 0s;

  -webkit-transition: all 0.3s ease-in-out 0s;

  -moz-transition: all 0.3s ease-in-out 0s;

  -ms-transition: all 0.3s ease-in-out 0s;

  -o-transition: all 0.3s ease-in-out 0s;

  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

video.video {
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button:focus {
  outline: none !important;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111 !important;
  background-color: #101013;
  background: #0d1117;
  background: #fff;
}

a {
  text-decoration: none !important;
}

/*html, body {
  overflow-x: hidden;
}
*/
html.has-scroll-smooth {
  overflow-y: scroll;

  -ms-overflow-style: none; /* IE and Edge */

  scrollbar-width: none; /* Firefox */
}

html.has-scroll-smooth::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 0;
}
.container-fluid {
  max-width: 1500px;
}

.radius30 {
  border-radius: 30px;
}

.radius20 {
  border-radius: 20px;
}

.primary-text {
  color: #58e8a0;
}

.line-animation {
  position: relative;
  padding-bottom: 5px;
  text-decoration: none;
  transition: all 0.3s;
  color: #1a485f;
  font-size: 15px;
}
.line-animation:focus {
  text-decoration: none;
  border: none;
}
.line-animation::after, .line-animation::before {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #1a485f;
  transition: all 0.3s ease-in-out;
}

.line-animation::after {
  left: 0;
  right: auto;
}

.line-animation::before {
  left: auto;
  right: 0;
  width: 0;
}

.line-animation:hover::after {
  right: 0;
  left: auto;
  width: 0;
}

.line-animation:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.line-animation:hover {
  color: #1a485f;
}

.dark-light {
  background: #161619;
}

.title {
  margin-bottom: 35px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}


/*Review and whatsapp icon css*/

.g-review-fixed {
  width: 120px;
  position: fixed;
  top: 198px;
  left: -35px;
  z-index: 999;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  display: none;
}

.g-review-fixed img {
  width: 100%;
  border-radius: 13px 13px 0px 0px;
}

.whatsapp-review-fixed {
  position: fixed;
  bottom: 30px;
  right: -4px;
  z-index: 3000;
  background-color: #171e25;
  border-radius: 30px 0px 0px 30px;
  border: 2px solid rgba(88, 232, 160, 0.28);
}
.whatsapp-review-fixed a {
  display: block;
  padding: 8px 12px;
}
.whatsapp-review-fixed span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-top: 3px;
  margin-left: 7px;
  text-transform: uppercase;
}
.whatsapp-review-fixed img {
  width: 30px;
  height: 30px;
}

.light-green {
  background: #e6e6df;
}

/*new btn style*/

.btn {
  padding: 8px 10px 8px 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  border-width: 2px;
  color: #003960;
  text-transform: capitalize;
  border-radius: 50px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.btn .link-icon {
  width: 25px !important;
  margin-left: 15px;
  transition: all 0.3s;
}
.btn:hover .link-icon {
  filter: invert(85%) sepia(15%) saturate(86%) hue-rotate(205deg)
    brightness(100%) contrast(65%);
}
.btn::after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.1;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  transform: scale(0);
}
.btn:hover::after, .btn:focus::after {
  transform: scale(3);
}

.btn-primary {
  color: #ffffff;
  border-color: #1a485f;
  background: #1a485f;
}
.btn-primary:hover, .btn-primary:focus {
  background: #c1c895;
  border-color: #c1c895;
  color: #1a485f;
}

.btn-outline-primary {
  color: #1a485f;
  border-color: #1a485f;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #1a485f;
  border-color: #1a485f;
  color: #ffffff;
}

.btn-secondary {
  color: #1a485f;
  border-color: #c1c895;
  background: #c1c895;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #c1c895;
  border-color: #c1c895;
  color: #1a485f;
}

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover, .btn-outline-white:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a485f;
}
.btn-white {
  color: #1a485f;
  background: #ffffff;
  border-color: #ffffff;
}
.btn-white:hover, .btn-white:focus {
  background: #c1c895;
  border-color: #c1c895;
  color: #1a485f;
}


.owl-dots {
   text-align: center;
   margin-top: 30px;
}
 .owl-dots button {
   width: 15px;
   height: 15px;
   margin: 0 2px;
   background: transparent !important;
   border: transparent;
   transition: all 0.3s ease-in-out;
}
/* .owl-dots button.active {
   width: 15px;
   height: 15px;
   border: 1px solid #1a485f !important;
}*/
.owl-dots button span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 30px;
  margin: auto;
  background: rgba(26, 72, 95, 0.4);
   transition: all 0.3s ease-in-out;
}
.owl-dots button.active span {
  width: 12px;
  border-color: #1a485f;
}
 
/* End Golbal CSS =========================*/


/* New Header */

.sticky {
  position: absolute;
  background: transparent;
  width: 100% !important;
  top: 75px;
  left: 0;
  display: flex;
  transition: 0.5s;
  z-index: 99;
  align-content: center;
  right: 0;
  padding: 0 100px;
}
/*.stickyHeader .container {
  transition: all .3s;
}
.stickyHeader .container {
  padding: 15px 15px;
  background: linear-gradient(107.41deg, rgba(245, 248, 226, 0.5) 6.75%, rgba(244, 240, 227, 0.5) 48.81%, rgba(213, 234, 235, 0.5) 97.06%);
  border-radius: 50px;
}
.stickyHeader .nav-brand .logo {
  margin-left: 10px;
}*/

header nav {
  text-align: right;
}

.sticky ul {
  margin: 0;
}

header .usp-nav {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: end;

  gap: 25px;
}

header nav ul li {
  display: inline-block;

  vertical-align: middle;
}

header nav ul li:not(:last-child) {
  margin-right: 20px;
}

header ul li a {
  line-height: 1.5;
  font-size: 16px;
  text-transform: capitalize;
  color: #111;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  padding: 0 0 6px;
}
header nav ul li.active a {
  color: #1a485f;
}
header ul li.active a::after {
  width: 100%;
}
header ul li a:hover {
  color: #1a485f;
}

header ul li a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  right: 0;

  margin: auto;

  height: 1px;

  background: #1a485f;

  transition: all 0.3s ease-in-out;
}

header ul li a:hover::after {
  width: 100%;
}

.nav-brand .logo {
  display: table;

  position: relative;
}

.nav-brand img {
  max-width: 200px;
}

/*.stickyHeader .logo-img {
  opacity: 0;

  visibility: hidden;

  transform: scale(0);

  max-width: 140px;
}

.nav-brand .logo-icon {
  position: absolute;

  left: 0;

  top: 0;

  max-width: 32px;

  transition: all 0.3s;

  transform: scale(0);
}

.stickyHeader .logo-icon {
  transform: scale(1);
}*/

.hummenu .site-header-menu-btn {
  position: relative;

  right: 0;

  top: 0;
}

.hummenu .site-header-menu-btn-circle {
  width: 40px;

  height: 40px;
}

.hummenu .site-header-menu-btn span {
  font-weight: 600;
  color: #111;
  position: absolute;
  right: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  top: 13px;
}

/* Mobile Menu */

.slidemenu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(13, 13, 13, 0.5);

  z-index: 10;

  opacity: 0;

  z-index: 9999;

  transition: all 0.3s;

  pointer-events: none;

  visibility: hidden;
}

.slidemenu-overlay.open {
  visibility: visible;

  pointer-events: auto;

  opacity: 1;
}

.slidemenu {
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  right: -320px;
  width: 320px;
  background: linear-gradient( 107.41deg, #fffffd 6.75%, #fffcf4 48.81%, #def2f3 97.06% );
  color: #111;
  transition: all 0.3s;
}
.slidemenu .m-bg {
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 0;
}

@media only screen and (max-width: 400px) {
  .slidemenu {
    right: -100%;

    width: 100%;
  }
}

.slidemenu .slidemenu-header {
  text-align: right;

  height: 52px;
}

.slidemenu .slidemenu-header .close-menu {
  display: inline-block;

  padding: 10px 15px;

  font-size: 30px;

  color: #a4a4a4;
}

.slidemenu .slidemenu-header .close-menu img {
  max-width: 30px;
}

.slidemenu .slidemenu-menu-area {
  height: calc(100vh - 52px);

  overflow-y: auto;
}

.slidemenu .slidemenu-menu-area .login-signup {
  padding: 15px;
}
.slidemenu .slidemenu-menu-area .login-signup .btn {
  display: block;
  padding: 12px 10px;
  font-size: 18px;
}

.slidemenu .slidemenu-items {
  padding: 10px 20px;
}

.slidemenu .slidemenu-items .user-icon {
  position: relative;

  top: 2px;

  margin-right: 5px;
}

.slidemenu .slidemenu-items li.user-item a {
  position: relative;
}

.slidemenu .slidemenu-items li.user-item svg {
  position: absolute;

  top: 13px;

  left: 0;
}

.slidemenu .slidemenu-items li.user-item li a {
  padding-left: 0;
}

.slidemenu .slidemenu-items a {
  color: #111;
  font-size: 25px;
  font-weight: 500;
  text-decoration: none;
}
.slidemenu .slidemenu-items a:hover {
  color: #1a485f;
  margin-left: 10px;
}

.slidemenu .slidemenu-items > li {
  /* border-bottom: 1px solid #d9d9d9; */

  font-size: 1em;

  font-weight: 500;
}

.slidemenu .slidemenu-items > li > a {
  padding: 20px 0px;

  display: block;

  position: relative;
}

.slidemenu .slidemenu-items li.active a {
  color: #1a485f;
}
.slidemenu .slidemenu-items > li > a:focus {
  text-decoration: none;
}

.slidemenu .slidemenu-items > li > a.collapsed i::before {
  content: "\ea13";
}

.slidemenu .slidemenu-items > li > a i {
  position: absolute;

  right: 0px;

  top: 10px;

  font-size: 25px;
}

.slidemenu .slidemenu-items > li > a i::before {
  content: "\f1af";
}

.slidemenu .sub-menu li a {
  font-weight: 400;

  display: block;

  padding: 5px 0px;

  font-size: 1.1em;

  color: #333;
}

.slidemenu .sub-menu li:last-child {
  margin-bottom: 15px;
}

.slidemenu.menu-open {
  right: 0;
}

.slidemenu .slidemenu-menu-area .login-signup .btn-outline {
  display: block;

  text-align: center;

  font-size: 18px;
}



/* .about-aection {

    padding: 150px 0;

    position: relative;

} */

.about-aection .lg-title {
  position: relative;
}
.about-aection .lg-title img {
  position: absolute;
  right: 90px;
  bottom: 0px;
  max-width: 120px;
}
.about-aection .ab-text {
  height: 100%;
  border: 1px solid #cbcbcb;
  padding: 20px;
  border-radius: 20px;
}

.banner_part .ex-shape2 {
  position: absolute;

  right: 0;

  bottom: 0;

  max-width: 50%;

  opacity: 0.1;
}

.lg-title {
  font-size: 45px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #111;
}
.lg-title span {
  color: #1a485f;
}

.about-aection h4 span {
  display: block;

  width: 100%;
}

.cp-about-sec h4 {
  font-size: 18px;
  text-transform: uppercase;
  margin: 20px 0 25px;
}

.about-aection h5 .under-line {
  color: #57e79f;

  text-decoration: underline;
}

.btn-outline {
  line-height: 1.5;

  font-size: 15px;

  overflow: hidden;

  font-weight: 400;

  text-transform: uppercase;

  color: #1a485f;

  border: 1px solid #1a485f;

  padding: 12px 35px;

  display: inline-block;

  border-radius: 60px;
}

.btn-outline::after,
.btn-outline::before {
  height: 100%;

  background: rgba(88, 232, 160, 0.1);
  background: rgba(197, 204, 153, 0.25);
}
.service-aection {
  position: relative;
  background: linear-gradient(
    107.41deg,
    #fbfdf3 6.75%,
    #fffef9 48.81%,
    #e5fcfd 97.06%
  );
}


.service_list {
  width: 100%;

  margin: 0 auto;
}

.service_list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  counter-reset: section;
}

.service_list ul li {
  margin: 20px 0px;
  position: sticky;
  top: 10px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.02);
}

.service_list .cp-box {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 40px;
  transition: all 0.3s;
  text-align: left;
  position: relative;
  z-index: 9;
  align-items: center;
  background: #fff;
  border-radius: 10px;
}
.service_list .cp-box::before {
  counter-increment: section;
  content: "0" counter(section) ". ";
  display: inline-block;
  color: #1a485f;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}

.service_list .cp-box:hover {
  border-color: #1a485f;
}


.service_list .cp-box figure {
  margin: 0;
  flex: 0 0 85px;
  padding: 18px;
  border-radius: 40px;
  order: 3;
  height: 115px;
  display: flex;
  align-items: center;
  border: 1px solid #cbcbcb;
}

.service_list .cp-box h3 {
  margin: 0;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  /* min-height: 70px; */
  flex: 1 0 0%;
  color: #111;
}

.service_list ul li h3 a {
  color: #111111;
}

.service_list ul li a:hover {
  color: #1a485f;
}
.service_list .cp-box p {
  margin: 0;
  flex: 1 0 0%;
  color: #555;
}
/* .service_list ul li a i {

  margin-right: 12px;

  transition: 0.5s;

} */

.service_list ul li:hover a {
  color: #1a485f;

  transition: 0.5s;
}

/* .service_list ul li:hover a i{

   margin-right: 15px;

  transition: 0.5s;

} */

.service_list .link-ui {
  display: inline-block;
}

.service_list .link-ui:hover {
  transform: translate(10px, 0) scale(1.1);
}

.service_list .link-ui img {
  max-width: 40px;
  margin: 10px auto;
}

.logos {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr 1fr;

  margin: 0 auto;

  grid-gap: 2em;
}

.logos img {
  opacity: 0.3;

  transition: 0.5s;

  max-width: 215px;

  margin: 0 auto;
}

.logos img:hover {
  opacity: 1;

  transition: 0.5s;
}


/* New home page section add */

.bg-img {
  background-position: center center;

  background-repeat: no-repeat;

  background-size: cover;
}

.project-count {
  position: relative;
  z-index: 9;
}

.project-count .title {
  margin: 0 0 -75px;
}
.project-count .project-count-img {
  position: relative;
}
.project-count .new-arrow {
  position: absolute;
  right: 30px;
  bottom: 5px;
  max-width: 60px;
}

.about-aection .thumb_img {
  border-radius: 20px;
}

.project-count .counter-sec {
  background: #f7f9ef;
  height: 100%;
  padding: 35px 40px 20px;
  border-radius: 20px;
}

.project-count .counter-sec .counters {
  font-size: 55px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  color: #979797;
  margin: 0 0 20px;
  transition: all 0.3s;
}
.project-count .counter-sec .counters:hover {
  color: #1a485f;
}
.project-count .counter-sec .cr-mrg {
  flex: 0 0 140px;
}

.project-count .counter-sec h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  flex: 1 0 0%;
  margin: 0;
  padding-right: 50px;
}
.project-count .counter-sec .counters p {
  font-weight: 400;
  color: #b0b0b0;
}
.project-count .project-count-img img {
  border-radius: 20px;
}
.project-count .b-shape1 {
  position: absolute;

  bottom: 0;

  right: 0;

  opacity: 0.3;

  max-width: 350px;
}

.global-list ul {
  padding: 0;
}
.global-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #111;
  line-height: 1.4;
  list-style: none;
}

.global-list li::after {
  content: "\f058";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 16px;
  color: #111;
}

/*new Mission Section*/
.cod-grid {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.cod-grid .content {
  background: #f9f9f9;
  padding: 30px 35px 0;
  text-align: center;
  border-radius: 20px;
}
.cod-grid .content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 15px;
  font-weight: 300;
  color: #979797;
}
.cod-grid .special-content {
  background: #1a485f;
  padding-top: 50px;
  position: relative;
  z-index: 9;
}
.cod-grid .special-content .box-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 90%;
  margin: auto;
  display: block;
  opacity: 0.8;
  z-index: -1;
}
.cod-grid .special-content h2 {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  margin: 0 0 50px;
}
.cod-grid .special-content h2 span {
  font-style: italic;
  font-weight: 700;
  color: #c1c895;
}
.cod-grid .special-content .rv-star {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 8px 10px;
  margin: 0 0 30px;
  line-height: 1.2;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.cod-grid .special-content .rv-star .fa-google {
  font-size: 20px;
  vertical-align: middle;
  color: #fff;
}
.cod-grid .special-content .rv-star span {
  margin: 5px 2px 0 10px;
  font-size: 10px;
  vertical-align: top;
  display: inline-block;
}

/*new Mission Section*/

/* Inner page css */

.about-secondary-bg {
  background: linear-gradient(
    107.41deg,
    #fbfdf3 6.75%,
    #fffef9 48.81%,
    #e5fcfd 97.06%
  );
}

.cp-about ul {
  padding-left: 20px;
}

.cp-about p {
  font-size: 16px;

  font-weight: 400;

  color: #555;

  line-height: 1.4;
}

.cp-about li {
  color: #555;

  line-height: 1.4;
}

/*.cp-about .csm-mobile {
  max-width: 700px;

  margin: auto;

  display: block;

  position: absolute;

  left: 0;

  right: 0;

  bottom: -70px;
}*/

/*.csm-section {
  padding-bottom: 10rem;

  margin-bottom: 5rem;
}*/

/*.basic_section p {
  font-size: 18px;

  font-weight: 500;

  color: #a9a8a8;

  line-height: 35px;
}

.basic_section h2 {
  margin-bottom: 45px;
}

.basic_section ul {
  padding-left: 0px;
}

.basic_section ul li {
  font-size: 18px;

  font-weight: 500;

  color: #fff;

  line-height: 35px;

  list-style-type: none;
}

.basic_section h4.short_title {
  font-size: 20px;

  font-weight: 500;

  color: #a9a8a8;

  line-height: 35px;

  list-style-type: none;

  max-width: 80%;

  display: inline-block;
}

.basic_section .pin-service {
  max-width: 330px;

  padding: 20px;

  border-radius: 20px;
}

.basic_section .hr {
  border-bottom: 1px solid #ffffff;

  margin: 80px 0 0;
}

.basic_section .container {
  position: relative;
}

.basic_section .circle-next {
  position: static;
}

.basic_section .work-process-img {
  background: #b5b5b5;

  padding: 20px 30px 0;
}

.basic_section .side_padding {
  padding: 0;

  float: right;

  margin: 20px 0 0;

  position: absolute;

  right: 0;

  bottom: 30px;
}

.basic_section .tech-cp {
  text-align: center;

  margin: 0 0 30px;
}*/

.text-left h1 {
  text-align: left;
}

.amigos_inner {
  position: relative;

  overflow: hidden;
}

.side_img {
  position: absolute;

  left: 0;

  top: 0;

  max-width: 30%;
}

.basic_section h5 {
  font-size: 15px;

  font-weight: 500;

  color: #a9a8a8;

  line-height: 40px;

  letter-spacing: 12px;

  margin-bottom: 20px;
}

/*.amigos_inner .logos {
  grid-template-columns: 1fr 1fr 1fr;

  margin-top: 60px;
}*/

.ft-list ul {
  display: flex;

  margin: 0 auto;

  justify-content: center;

  align-items: center;

  grid-column-start: unset;

  flex-wrap: wrap;
}

/*.ft-list ul li {
  padding: 35px;

  width: 25%;
}

span.big-taxt {
  font-size: 30px;

  font-weight: 600;

  color: #58e8a0;

  line-height: 35px;

  margin-bottom: 15px;

  display: inline-block;

  width: 100%;

  text-align: center;
}

span.short-taxt {
  font-size: 18px;

  text-align: center;

  display: inline-block;

  width: 100%;

  color: #a9a8a8;
}

.ft-list {
  margin-bottom: 50px;
}

.side_padding {
  padding-left: 160px;
}

.short_info {
  font-size: 20px;

  font-weight: 500;

  color: #a9a8a8;

  line-height: 40px;
}

.title_btm {
  margin-bottom: 60px;
}

.pdl_100 {
  padding-left: 100px;
}*/



.special-form-sec {
  background: #f9f9f9;
  background: #ececec;
}
.special-form-sec .title {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.special-form-sec .lg-title {
  margin-bottom: 25px;
}
.special-form-sec .lg-title span {
  display: block;
}
.special-form-sec .prefer h5 {
  font-weight: 400;
  color: rgb(151, 151, 151);
}
.special-form-sec .prefer {
  margin-top: auto;
}
.special-form-sec .prefer .line-animation {
  font-size: 20px;
  color: #111;
}
.special-form-sec .text p a {
  color: #111;
}
.special-form-sec .text p a:hover {
  color: #1a485f;
}

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
}
.contact-form-box .form-control, .contact-form-box .form-select {
  height: 50px;
  border-radius: 6px;
  background-color: #fff;
  outline: none;
  padding: 7px 15px;
  margin-bottom: 20px;
  box-shadow: none;
  color: #555;
  border: 1px solid #cbcbcb;
}

.form-control::placeholder {
  color: #555;
}

.contact-form-box .form-control:focus, .contact-form-box .form-select:focus {
  border-color: #555;
}

.contact-form-box form .submit-btn {
  border-radius: 45px;
  border: none;
  outline: none;
  box-shadow: none;
  background: #1a485f;
  color: #ffffff;
  transition: all 0.3s;
  cursor: pointer;
  padding: 10px 40px;
}
.contact-form-box textarea.form-control {
  height: 100px;
  resize: none;
}

.pd-5 {
  padding-left: 8px;

  padding-right: 8px;
}

.mrg-0 {
  margin: 0px !important;
}

.contact-form-box form .submit-btn:hover {
  background: #c1c895;
  color: #1a485f;
}

.checkbox {
  position: relative;

  margin-bottom: 12px;

  line-height: 30px;

  margin-top: 5px;

  color: #5c5c5c;
}

.checkbox a {
  color: #5c5c5c;

  text-decoration: none;
}

.checkbox input[type="checkbox"] {
  width: 20px;

  margin-right: 10px;
}

.checkbox input::after {
  top: 0;

  left: 0px;

  position: absolute;

  content: "";

  width: 20px;

  height: 20px;

  background: #171617;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;
}

.checkbox input:checked::after {
  content: "\f00c";

  font-family: FontAwesome;

  color: #fff;

  font-size: 13px;

  top: 0;

  left: 0px;

  right: 0;
}


.contact-form-box select option:hover {
  background-color: #999999;

  color: #ffffff;
}

.cont_select_center {
  position: absolute;

  left: 50%;

  top: 50%;

  margin-top: -30px;

  margin-left: -150px;
}

.cont_heg_50 {
  position: absolute;

  height: 50%;

  left: 0;

  top: 0;

  width: 100%;

  background-color: #fd7b52;
}

/* ///  END DECORATION CSS  ///  */

.icon_select_mate {
  position: absolute;

  top: 20px;

  right: 2%;

  font-size: 16px;

  height: 22px;

  transition: all 275ms;
}

.select_mate {
  position: relative;

  border-radius: 0;

  background: #171617 !important;

  border: transparent !important;

  outline: none;

  margin-bottom: 20px;

  box-shadow: none !important;

  color: #878787;
}

.select_mate select {
  position: absolute;

  overflow: hidden;

  height: 0px;

  opacity: 0;

  z-index: -1;
}

.cont_list_select_mate {
  position: relative;

  float: left;

  width: 100%;
}

.cont_select_int {
  position: absolute;

  left: 0px;

  top: 0px;

  z-index: 999;

  overflow: hidden;

  height: 0px;

  width: 100%;

  background-color: #171617;

  padding: 0px;

  margin-bottom: 0px;

  margin-top: 0px;

  border-radius: 0px 0px 3px 3px;

  box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);

  transition: all 375ms ease-in-out;
}

.contact_inner .cont_select_int li {
  position: relative;

  float: left;

  width: 100%;

  border-bottom: 1px solid #232323;

  background-color: #191919;

  list-style-type: none;

  padding: 7px 2%;

  margin: 0px;

  transition: all 275ms ease-in-out;

  display: block;

  cursor: pointer;

  font-size: 16px;

  font-weight: 400;

  color: #878787;

  line-height: 35px;

  list-style-type: none;
}

.cont_select_int li:last-child {
  border-radius: 3px;

  border-bottom: 0px;
}

.cont_select_int li:hover {
  background-color: #292828;
}

.cont_select_int .active {
  background-color: #eeeeee;
}

/* etiqueta <p> con la opcion selecionada  */

.selecionado_opcion {
  padding: 8px 15px;

  display: block;

  margin: 0px;

  cursor: pointer;

  height: 50px !important;

  font-size: 16px !important;

  color: #878787 !important;

  font-weight: 400 !important;

  line-height: 30px !important;
}

.icon_select_mate svg {
  color: #fff;

  fill: #909090;
}

/* custome checkbox css */

.custome_checkbox label {
  position: relative;

  cursor: pointer;

  color: #5c5c5c;

  margin-bottom: 25px;

  margin-top: 7px;
}

.custome_checkbox label a {
  color: #5c5c5c;
}

.custome_checkbox input {
  padding: 0;

  height: initial;

  width: initial;

  margin-bottom: 0;

  display: none;

  cursor: pointer;
}

.custome_checkbox label:before {
  content: "";

  appearance: none;

  -webkit-appearance: none;

  background-color: #ffffff;

  border: 2px solid #cbcbcb;

  box-shadow: 0 1px 2px rgb(0 0 0 / 5%),
    inset 0px -15px 10px -12px rgb(0 0 0 / 5%);

  padding: 8px;

  display: inline-block;

  position: relative;

  vertical-align: middle;

  cursor: pointer;

  margin-right: 12px;
  border-radius: 6px;
}

.custome_checkbox input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 12px;
  border-color: #1a485f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-style: solid;
}
.custome_checkbox input:checked + label::before {
  border-color: #1a485f;
}

/* New home page css */

.final-banner-wrapper {
  background: linear-gradient(
    107.41deg,
    #f5f8e2 6.75%,
    #f4f0e3 48.81%,
    #d5eaeb 97.06%
  );
  padding: 40px 50px;
}
.final-banner-wrapper .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
}
.final-banner {
  background: linear-gradient(
    107.41deg,
    #fffffd 6.75%,
    #fffcf4 48.81%,
    #def2f3 97.06%
  );
  border-radius: 40px;
  padding: 120px 50px 50px;
}
.final-banner .heading {
  position: relative;
  padding-right: 20px;
}
.final-banner .title {
  font-size: 50px;
  font-weight: 700;
}
.final-banner .title span {
  color: #1a485f;
}
.final-banner .curve-line {
  /*position: absolute;
  right: 170px;
  top: 70px;*/
  max-width: 200px;
}
.final-banner h4 {
  font-size: 20px;
  margin-top: 20px;
}
.final-banner p {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
}
.final-banner .btn img {
  display: inline-block;
}

.final-inner-banner .main-img {
  padding: 50px;
}
.line-statics .curve-line {
  position: static;
}

/* New About Us page css */

/* New About Us css */

/* Inner banner */

.inner-banner .banner-text {
  padding-top: 60px;
}

.inner-banner .banner-img {
  height: auto;
}

.inner-banner h2 {
  font-size: 55px;

  color: #ffffff;
}

/*.work-process .work-process-img {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #bfbfbf;
}*/

.work-process .new-arrow {
  display: table;
  max-width: 65px;
  margin-top: 75px;
}

.tech-box {
  position: relative;
  z-index: 9;
  justify-content: center;
}
.tech-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  opacity: 0.8;
}
.tech-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: -1;
  opacity: 0.8;
}

.tech-logo .tech-cp {
  text-align: center;
  /* border-bottom: 1px solid #cbcbcb; */
  padding: 10px;
  /* border-radius: 10px; */
  display: block;
  width: 20%;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-right: 1px solid #cbcbcb; */
  position: relative;
  /* z-index: 9; */
  flex-wrap: wrap;
}
.tech-logo .tech-cp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #cbcbcb;
  z-index: -1;
}
.tech-cp::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #cbcbcb;
  z-index: -1;
}
.tech-logo .tech-cp img {
  width: 45px;
  transition: all .3s;
}

.tech-logo .tech-cp:hover img {
  animation: slideUpTransform 0.5s forwards; /* smoother animation */
}

@keyframes slideUpTransform {
  49% {
    opacity: 0;
    transform: translateY(-100%); /* start below */
  }
  50% {
    transform: translateY(100%); /* start below */
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
}

.tech-logo .tech-cp h5 {
  margin: 0;
  flex: 0 0 100%;
  font-size: 14px;
  font-weight: 400;
}


/* Process section */
.work-process {
  /*background: #f3fc78;
  background: #e6e6df;
  background: linear-gradient(107.41deg, #FBFDF3 6.75%, #FFFEF9 48.81%, #E5FCFD 97.06%);*/
}
.work-process .lg-title {
  width: 90%;
}
.work-process .row {
  background: linear-gradient(
    107.41deg,
    #fbfdf3 6.75%,
    #fffef9 48.81%,
    #e5fcfd 97.06%
  );
  padding: 50px 30px;
  border-radius: 20px;
}
/* Process section */

/* Testimonials section */

.testimonial-sec {
  position: relative;
  z-index: 9;
  background: #ffffff;
  background: linear-gradient(
    107.41deg,
    #f5f8e2 6.75%,
    #f4f0e3 48.81%,
    #d5eaeb 97.06%
  );
}
.testimonial-sec .map {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 80%;
  opacity: 0.4;
  filter: contrast(0) brightness(0);
  z-index: -1;
  left: 0;
  margin: auto;
}
.testimonial-sec .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/*.testimonial-sec .lg-title {
  flex: 0 0 40%;
}*/

.testimonial-sec .review-tk {
  display: flex;
  align-items: center;
  gap: 30px;
}
.testimonial-sec .review-tk .rv-star {
  font-size: 18px;
  background-color: #fff;
  padding: 6px 18px;
  border-radius: 40px;
}
.testimonial-sec .review-tk .rv-star i {
  color: #c1c895;
}
.testimonial-sec .review-tk .rv-star span {
  margin-left: 5px;
  position: relative;
  top: -1px;
}

.testimonial-sec .smpl-tumb {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  flex: 1 0 0%;
  justify-content: flex-end;
}
.testimonial-sec .smpl-tumb img {
  flex: 0 0 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: -10px;
}
.review-slider .item p {
  font-size: 18px;
  font-weight: 500;
  min-height: 230px;
}
.review-slider .item {
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  background: #fff;
}
.review-slider .item .quote-icon {
  max-width: 30px;
  margin-bottom: 15px;
}
.review-slider .item .ups-text {
  padding-top: 15px;
}
.review-slider .item .ups-text h6 {
  font-size: 15px;
  margin: 0 0 5px;
  font-weight: 600;
}
.review-slider .item .ups-text span {
  color: #979797;
  font-size: 13px;
}
.review-slider .owl-nav {
  text-align: right;
  margin-top: 40px;
  float: right;
}
.review-slider .owl-nav button {
  max-width: 30px;
  margin-left: 10px;
}
.review-slider .owl-nav button img {
  filter: contrast(0) brightness(0);
}
.testimonial-sec .btn {
  margin: 40px 0 0;
}
.testimonial-sec .btn i {
  margin-left: 10px;
}

/* Testimonials section */

/* FAQ section */
.home-faq-box {

}
.home-faq-box .title {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.home-faq-box .faq-bottom-part {
  margin: auto 0 0;
  width: 100%;
}
.home-faq-box .faq-bottom-part h5 {
  font-weight: 400;
  margin: 0 0 20px;
  color: #979797;
}
.faq-accordion .faq-accordion-title {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  justify-content: space-between;
}
.faq-accordion .faq-accordion-title i {
  flex: 0 0 25px;
  font-size: 18px;
  height: 25px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  transition: all .3s;
}
.faq-accordion .faq-accordion-title.active i {
  transform: rotate(0deg);
}
.faq-accordion .faq-accordion-title h4 {
  margin: 0;
  flex: 1 0 0%;
  padding-right: 15px;
  font-size: 18px;
}
.faq-accordion .faq-accordion-content {
  display: none;
  margin: 25px 0 0;
}
.faq-accordion-content p {
  font-size: 15px;
}
.faq-accordion .faq-accordion-item {
  padding: 30px 0;
  border-bottom: 1px solid #CBCBCB;
}
.faq-accordion .faq-accordion-item:last-child {
  border: transparent;
}
.faq-accordion .faq-accordion-item:first-child {
  padding-top: 0;
}
/* FAQ section */


.breakthrough-sec {
  background: #1a485f;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 9;
}
.breakthrough-sec .box-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 90%;
  margin: auto;
  display: block;
  opacity: 0.8;
  z-index: -1;
  height: 100%;
}
.breakthrough-sec .lg-title {
  color: #fff;
  padding: 0 40px;
}
.breakthrough-sec .btn {
  margin-top: 30px;
}

/* Portfolio Page */

.cp-pofolio {
  padding: 100px 0 10rem;
}

.cp-pofolio h2 {
  font-size: 40px;
}

.cp-pofolio .nav-tabs {
  border: transparent;

  justify-content: center;

  margin: 30px 0 50px;
}

.cp-pofolio .nav-tabs a {
  border: transparent !important;

  border-radius: 30px;

  padding: 8px 40px;

  text-transform: capitalize;

  color: #111111;
  font-size: 15px;
}

.cp-pofolio .nav-tabs a.active {
  background: #1a485f;
  box-shadow: 0px 1px 4px 0px rgba(255, 255, 255, 0.4) inset,
    0px -4px 4px 0px #0003 inset, 0px 0px 0px 4px rgba(255, 255, 255, 0);
  color: #fff;
}

.cp-pofolio .box {
  padding: 15px;

  background: #16171a;

  border-radius: 20px;

  border-bottom: 6px solid #202020;

  margin-bottom: 20px;

  transition: all 0.3s;

  box-shadow: 0px 1px 4px 0px rgba(255, 255, 255, 0.4) inset;
}

.cp-pofolio .box:hover {
  transform: scale(0.95);

  box-shadow: 0px 1px 4px 0px rgba(86, 230, 158, 0.3) inset;
}

.cp-pofolio .box-text {
  margin-bottom: 40px;
}

.cp-pofolio .box img {
  border-radius: 6px;

  filter: grayscale(1);

  transition: all 0.3s;
}

.cp-pofolio .box img:hover {
  filter: grayscale(0);
}

.cp-pofolio .box-text h4 {
  font-size: 17px;
  font-weight: 500;
  color: #111;
  border-left: 4px solid #c1c895;
  padding-left: 10px;
}

/* BLOG PAGE */

/* .main-services,

.main-blog,

.contact-section {

  background: linear-gradient(180deg, #f4f5f7 0%, rgba(244, 245, 247, 0) 100%);

  position: relative;

  z-index: 2;

  padding-top: 10rem;

} */

.main-services .dotsquare,
.main-blog .dotsquare,
.contact-section .dotsquare {
  position: absolute;

  right: 15px;

  top: 15px;

  z-index: -1;

  max-width: 100px;
}

.sidebar ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.sidebar .sd-list1 {
  border-radius: 10px;

  border: 1px solid #ddd;

  background: #fff;

  padding: 15px;
}

.sidebar .sd-list1 li {
  margin: 0 0 15px;
}

.sidebar .sd-list1 li:last-child {
  margin-bottom: 0;
}

.sidebar .sd-list1 li a {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 15px 10px;

  border-radius: 6px;

  border: 1px solid rgba(239, 76, 63, 0.4);

  background: #fff;

  font-size: 18px;

  color: #5f5f5f;

  font-weight: 500;

  transition: all 0.3s;
}

.sidebar .sd-list1 li a span {
  border-radius: 50px;

  background: rgba(239, 76, 63, 0.2);

  width: 40px;

  height: 40px;

  flex-shrink: 0;

  text-align: center;

  padding: 6px;

  font-size: 20px;

  color: #232323;

  transition: all 0.3s;
}

.sidebar .sd-list1 li a:hover {
  background: #58e8a0;

  color: #ffffff;
}

.sidebar .sd-list1 li a:hover span {
  background: #ffffff;

  color: #58e8a0;

  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.sidebar .sd-list1 li.active a {
  background: #58e8a0;

  color: #ffffff;
}

.sidebar .sd-list1 li.active a span {
  background: #ffffff;

  color: #58e8a0;

  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.sidebar .rg-block {
  margin-top: 30px;

  position: relative;

  padding: 10px;

  background: #f3f1ee;

  border-radius: 10px;
}

.sidebar .rg-block img {
  border-radius: 10px;
}

.sidebar .rg-block .rg-text {
  padding: 10px;

  text-align: center;
}

.sidebar .rg-block .btn-white {
  margin-top: 20px;

  padding: 10px 25px;

  letter-spacing: 0;

  font-weight: 500;

  text-transform: capitalize;
}

.sidebar .rg-block .rg-text h3 {
  font-size: 24px;

  font-weight: 600;
}

.sidebar .rg-block p {
  font-weight: 200;
}

.service-text img {
  margin-bottom: 15px;
}

.service-text .highlight-sec {
  border-radius: 10px;

  border: 1px solid #ddd;

  background: #fff;

  padding: 15px;
}

.service-text .highlight-sec ul {
  margin: 20px 0 0;

  padding: 0;

  list-style: none;
}

.service-text .highlight-sec ul li {
  margin: 0 0 20px;

  position: relative;

  padding-left: 45px;
}

.service-text .highlight-sec ul li img {
  margin: 0;

  position: absolute;

  left: 0;

  width: 30px;
}

.main-blog,
.single-post-area {
  padding-bottom: 12rem;
}

.main-blog .blog-box {
  border: 1px solid #cbcbcb;
  padding: 10px;
  border-radius: 10px;
  height: 100%;
}

.main-blog .blog-box h3 {
  font-size: 20px;
}
.main-blog .blog-box h3 a {
  color: #111;
}
.main-blog .blog-box h3 a:hover {
  color: #1a485f;
}

.main-blog h6 {
  color: #979797;

  font-size: 12px;

  margin: 15px 0 20px;

  font-weight: 400;

  text-transform: uppercase;

  line-height: 1.2;
}

.main-blog p {
  color: #555;
  line-height: 1.2;
  margin: 15px 0 20px;
  font-size: 15px;
}

.main-blog .line-animation {
  color: #111;
}

.main-blog figure {
  height: 200px;
  overflow: hidden;
}

.main-blog figure img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}

.main-blog .line-animation i {
  vertical-align: middle;
}

/* .main-blog .line-animation:hover {

  color: #58e8a0;

} */

.main-blog .pagination {
  margin: 30px 0;

  justify-content: center;

  text-align: center;

  gap: 15px;

  display: flex;

  padding-left: 0;

  list-style: none;
}

.main-blog .pagination li {
  display: inline-block;

  vertical-align: middle;

  margin: 0 4px;
}

.main-blog .pagination .page-link {
  padding: 10px;

  display: block;

  font-size: 16px;

  color: #555;

  width: 40px;

  height: 40px;

  border-radius: 50px;

  transition: all 0.3s ease-in-out 0s;

  border: transparent;
}

.main-blog .pagination .page-link:hover {
  background: #1a485f;

  color: #fff;
}

.main-blog .pagination .active .page-link {
  background: #1a485f;

  color: #fff;
}

.main-blog .pagination .active .page-link:hover {
  background: #c1c895;

  color: #fff;
}

.main-blog .pagination .previous-nxt,
.main-blog .pagination .previous-prev {
  background: #eee;

  color: #232323;

  font-size: 18px;

  line-height: 1.4;
}

.blog-sidebar .widget-text {
  border: 1px solid #cbcbcb;
  padding: 25px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.blog-sidebar .widget-text h4 {
  font-size: 20px;
  font-weight: 500;
}

.blog-sidebar .widget-text form {
  position: relative;
}

.blog-sidebar .widget-text form input:not([type="submit"]) {
  outline: none;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  background: #fff;
  padding: 12px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}


.blog-sidebar .widget-text form input[type="submit"], .blog-sidebar .widget-text form button {
  border: transparent;
  width: 45px;
  position: absolute;
  right: 0;
  padding: 6px;
  height: 50px;
  background: #1a485f;
  color: #fff;
  border-radius: 0 6px 6px 0;
}

.blog-sidebar .most-recent ul {
  padding: 0;

  margin: 20px 0 0;

  list-style: none;
}

.blog-sidebar .most-recent ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 10px;
}

.blog-sidebar .most-recent ul li:last-child {
  margin-bottom: 0;
  border-bottom: transparent;
}

.blog-sidebar .most-recent ul li h5 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
}

.blog-sidebar .most-recent ul li h5 a {
  color: #555;
}

.blog-sidebar .most-recent ul li h5 a:hover {
  color: #1a485f;
}

.blog-sidebar h6 {
  color: #979797;

  font-size: 12px;

  margin: 16px 0 12px;

  font-weight: 400;

  line-height: 1.2;
}

.blog-sidebar .most-tags ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-sidebar .most-tags ul a {
  color: #555;
  border: 1px solid #CBCBCB;
  padding: 6px 10px;
  display: table;
  font-size: 15px;
  border-radius: 6px;
}
.blog-sidebar .most-tags ul a:hover {
  border-color: #1a485f;
  color: #1a485f;
}


.single-post-area .main-single-img {
  max-height: 500px;

  overflow: hidden;

  width: 100%;

  margin-bottom: 30px;
}

.single-post-area .main-single-img img {
  width: 100%;
}

.single-post-area h1 {
  font-size: 35px;
  font-weight: 600;
}

.single-post-area .auther {
  display: flex;

  margin: 20px 0;

  align-items: center;

  gap: 8px;

  font-size: 12px;

  color: #979797;
}

.single-post-area .auther h4, .single-post-area .auther a {
  font-size: 15px;

  text-transform: uppercase;

  color: #979797;

  margin: 0;
}

.single-post-area .auther a:hover {
  color: #1a485f;
}

.single-post-area .coment-area {
  margin-top: 40px;
}

.single-post-area .coment-area h3 {
  font-size: 25px;

  margin-bottom: 20px;
}

.single-post-area .coment-area form p.comment-check label {
  margin-left: 3px;

  cursor: pointer;
}

.single-post-area .coment-area form p.comment-form-author,
.single-post-area .coment-area form p.comment-form-url,
.single-post-area .coment-area form p.comment-form-email {
  width: 33.333%;
  float: left;
}

.single-post-area .coment-area form input:not([type="submit"]):not([type="checkbox"]), .single-post-area .coment-area form textarea {
  height: 45px;
  border-radius: 6px;
  padding: 10px;
  color: #555;
  width: 100%;
  font-size: 14px;
  border: 1px solid #cbcbcb;
  margin-bottom: 15px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.single-post-area .coment-area form input:not([type="submit"]):not([type="checkbox"]):focus, .single-post-area .coment-area form textarea:focus {
  border-color: #1a485f;
}

.single-post-area .coment-area form input::placeholder {
  color: #555;
}

.single-post-area .coment-area form textarea {
  height: 100px;
  resize: none;
}

.single-post-area .coment-area form input[type="submit"] {
  background-color: #1a485f;

  padding: 15px;

  border-radius: 6px;

  border: 1px solid #1a485f;

  color: #fff;

  text-transform: uppercase;

  font-size: 20px;

  display: block;

  width: 100%;

  outline: none;

  margin-top: 15px;

  transition: all 0.3s;
}

.single-post-area .coment-area form input[type="submit"]:hover {
  background-color: #c1c895;
  border-color: #c1c895;
  color: #1a485f;
}

.single-post-area .coment-area form p {
  margin: 0;

  line-height: normal;
}

.choose-img-sec {
  position: relative;
}
.choose-img-sec .rotate-link {
  position: absolute;
  left: 0;
  right: 0;
  top: -85px;
  max-width: 120px;
  display: block;
  margin: auto;
}
.choose-img-sec .rotate-link span {
  position: absolute;
  display: block;
  max-width: 45px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 45px;
}
.choose-img-sec .rotate-link > img {
  max-width: 120px;
  animation: rotate 7s linear infinite;
}
.choose-best-option {
  position: relative;
  z-index: 9;
  margin-top: 50px;
}

.choose-best-option .best-box {
  padding: 30px 15px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid #cbcbcb;
  border-radius: 20px;
}

.choose-best-option .best-box figure {
  max-width: 60px;
  margin: 0 auto 30px;
}
.choose-best-option .best-box h5 {
  color: #555;
  font-size: 18px;
}
/*Choose New Section design*/

.inner-box h3 {
  font-size: 24px;

  font-weight: 600;
}

.inner-box h3 a {
  color: #fff;
}

.solution .solution-box {
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.solution .solution-box:last-child {
  border-bottom: transparent;
}

.solution .title img {
  float: right;
}
.solution h3 {
  position: relative;
  padding-right: 40px;
  margin-bottom: 15px;
}

.solution h3 span {
  padding-right: 5px;
  font-size: 35px;
  font-weight: 400;
  color: #919191;
}

.service-box {
  background: #f3f1ee;

  border-radius: 10px;

  padding: 15px;
}

.service-box a {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 10px;

  color: #fff;

  font-size: 16px;
}

.service-box figure {
  margin: 0;

  flex: 0 0 35px;
}

.service-box figure img {
  filter: invert(0) brightness(360%) contrast(100%);

  transition: all 0.3s;
}

.service-box li {
  margin: 15px 0;
}

.service-box li.active a {
  color: #1a485f;
}

.service-box a:hover figure img {
  filter: invert(0) brightness(360%) contrast(100%);
}

.service-box li.active figure img {
  filter: inherit;
}

/*Final service details page*/
.softwer-object {
  position: relative;
}
.softwer-object .cs-object1 {
  position: absolute;
  top: 140px;
  max-width: 190px;
  left: 145px;
  animation: floatUpDown 4s ease-in-out infinite;
}
.softwer-object .cs-object2 {
  position: absolute;
  top: 50%;
  right: 90px;
  max-width: 120px;
  animation: floatLeftRight 5s ease-in-out infinite;
}
.softwer-object .cs-object3 {
  position: absolute;
  bottom: 110px;
  left: 50px;
  max-width: 280px;
  animation: floatUpDown 6s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
.redefines-success-count {
  position: relative;
  z-index: 9;
}
.redefines-success-count .box-pattern {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 80%;
  z-index: -1;
  left: 0;
  margin: auto;
}

.what-we-offer {
  background: linear-gradient( 107.41deg, #fbfdf3 6.75%, #fffef9 48.81%, #e5fcfd 97.06% );
}
.offer-box {
  background: #fff;
  padding: 35px 25px;
  position: relative;
  z-index: 9;
  border-radius: 10px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.offer-box .masking-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.offer-box .offer-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
}
.offer-box .offer-top .icon {
  max-width: 55px;
  transition: all .3s;
}
.offer-box:hover .offer-top .icon {
  animation:toRightFromLeft .3s forwards;
}
.offer-box .offer-top h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.offer-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  background: #F9F9F9;
  padding: 15px 10px;
  border-radius: 6px;
}

.industry-sec {
  background: linear-gradient( 107.41deg, #fbfdf3 6.75%, #fffef9 48.81%, #e5fcfd 97.06% );
}
.industry-sec ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.industry-sec ul li {
  border: 1px solid #CBCBCB;
  background: rgba(255, 255, 255, 0.50);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  transition: all .3s;
}
.industry-sec ul li:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #1a485f;
}
.industry-sec ul li img {
  max-width: 30px;
  margin-right: 5px;
  transition: all .3s;
}
.industry-sec ul li:hover img {
  animation:toRightFromLeft .5s forwards;
}

@keyframes toRightFromLeft {
  49% {
    transform:translate(100%)
  }
  50% {
    opacity:0;
    transform:translate(-100%)
  }
  51% {
    opacity:1
  }
}

.dev-work-process {
  position: relative;
  z-index: 9;
}
.box-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 80%;
  margin: auto;
  transform: scaleY(-1);
}
.dev-work-process .process-box {
  position: relative;
  background: #F9F9F9;
  padding: 20px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
.dev-work-process .process-box .illustration {
  transition: all .3s;
}
.dev-work-process .process-box:hover .illustration {
  transform: scale(0.9);
}
.dev-work-process .process-box .icon {
  position: absolute;
  right: -30px;
  width: 40px;
  height: 40px;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 99;
}
.dev-work-process .process-box:hover .icon {
  animation:toRightFromLeft .3s forwards;
}
.process-row [class*="col-"]:last-child .icon {
  display: none;
}
.dev-work-process .process-box h5 {
  font-size: 20px;
  font-weight: 600;
}
.main-blog-sec .line-animation span {
  margin-left: 10px;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #1A485F;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  vertical-align: middle;
  padding: 3px;
  margin-bottom: 3px;
}
.blog-card {
  background: #F9F9F9;
  padding: 20px;
  border-radius: 10px;
}
.blog-card figure {
  border-radius: 6px;
  overflow: hidden;
}
.blog-card figure img {
  transition: all .3s;
}
.blog-card:hover figure img {
  filter: grayscale(1);
}
.blog-card .card-content .category-label {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 15px;
}
.blog-card .card-content .category-label span {
  border: 1px solid #CBCBCB;
  color: #979797;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 40px;
}
.blog-card .card-content h3 {
  margin-bottom: 30px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-card .card-content h3 a {
  color: #111;
}
.blog-card .card-content h3 a:hover {
  color: #1a485f;
}

/*Final service details page*/


/*================== Start Footer ==========================*/

.footer {
  padding: 60px 0 10px;
  background: #c1c895;
  background: linear-gradient( 107.41deg, #f5f8e2 6.75%, #f4f0e3 48.81%, #d5eaeb 97.06% );
  background: #f5f5f5;
}
footer .logo {
  display: table;
  max-width: 200px;
  margin: 0 0 20px;
}
footer h4 {
  margin: 0 0 20px;
  font-weight: 700;
  color: #111;
  font-size: 20px;
}
footer p {
  font-size: 14px;
  color: #555;
}
footer p.description {
  line-height: 1.8;
  padding-right: 30px;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 15px;
}
footer ul li a {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
footer ul li a:hover {
  color: #1a485f;
  margin-left: 5px;
}
footer ul li a .fa-arrow-right {
  margin-left: 5px;
  transform: rotate(-45deg);
  font-size: 12px;
}

footer .f-social li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .f-social li a span i {
  font-size: 18px;
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
}


footer .footer-title {
  padding: 35px 30px;
  border-radius: 20px;
  margin: 30px 0 30px;
  background: #ffffff;
  box-shadow: 0 15px 20px rgba(219, 218, 204, 0.15);
  border: 2px solid rgba(203, 203, 203, 0.2);
}
footer .email-btn {
  display: inline-block;
  border: 2px solid #1a485f;
  padding: 10px 10px 10px 25px;
  border-radius: 60px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #1a485f;
}
.email-btn img {
  max-width: 45px;
  margin-left: 20px;
}
footer .email-btn:hover {
  background: #c1c895;
  color: #1a485f;
  border-color: #c1c895;
}

footer .copyright {
  text-align: center;
}

/*rotation animation*/

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*================== End Footer ==========================*/





/*============================ START MEDIA CSS =========================*/

@media (max-width: 1380px) and (min-width: 1200px) {
  .lg-title {
    font-size: 35px;
  }
  .final-banner .title {
    font-size: 45px;
  }
  .project-count .counter-sec {
    padding: 30px 30px 20px;
    border-radius: 20px;
  }
  .project-count .counter-sec .counters {
    font-size: 45px;
    gap: 20px;
  }
  .project-count .counter-sec h4 {
    font-size: 16px;
    padding-right: 40px;
  }

  .solution h3 {
    padding-right: 0;
    font-size: 25px;
  }

  .offer-box .offer-top .icon {
    max-width: 40px;
  }
  .offer-box .offer-top h5 {
    font-size: 15px;
  }
  .offer-box {
    padding: 15px 15px;
  }
  .offer-box p {
    padding: 10px 6px;
  }

  .industry-sec ul li {
    font-size: 20px;
  }
  .industry-sec ul li img {
    margin-right: 5px;
  }
  .dev-work-process .process-box .icon {
    right: -22px;
    width: 30px;
    height: 30px;
  }
  .dev-work-process .process-box p {
    font-size: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 992px) {
  header nav ul li:not(:last-child) {
    margin-right: 15px;
  }

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

  .nav-brand img {
    max-width: 160px;
  }
}

@media (max-width: 1024px) {
  
}

@media (max-width: 1199.5px) and (min-width: 992px) {
  .lg-title {
    font-size: 35px;
  }
  h4 {
    font-size: 18px;
  }
  section {
    padding: 50px 0;
  }
  .solution h3 {
    padding-right: 0;
    margin-bottom: 15px;
    font-size: 22px;
  }
  .solution h3 span {
    font-size: 28px;
  } 

  .offer-box {
    padding: 20px 15px;
  }
  .offer-box .offer-top .icon {
    max-width: 40px;
  }
  .offer-box .offer-top h5 {
    font-size: 14px;
  }
  .offer-box p {
    font-size: 13px;
    padding: 10px;
  }

  .dev-work-process .process-box h5 {
    font-size: 18px;
  }
  .dev-work-process .process-box {
    padding: 10px;
  }
  .dev-work-process .process-box p {
    font-size: 12px;
  }
}


@media (max-width: 1199.5px) and (min-width: 768px) {
  .sticky {
    top: 35px;
    padding: 0 30px;
  }
  header .btn {
    margin-right: 20px;
  }
  .nav-brand img {
    max-width: 150px;
  }

  .final-banner {
    border-radius: 15px;
    padding: 100px 20px 30px;
  }
  .final-banner-wrapper {
    padding: 15px;
  }
  .final-banner .title {
    font-size: 40px;
  }
  .final-banner h4 {
    font-size: 16px;
  }
  .final-banner p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .final-banner .curve-line {
    display: none;
  }

  .project-count .counter-sec {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding: 25px 25px 20px;
    border-radius: 10px;
    margin: 30px 0 0;
  }
  .project-count .counter-sec .counters {
    font-size: 40px;
    flex: 0 0 25%;
    display: block;
  }
  .project-count .counter-sec h4 {
    font-size: 15px;
    padding-right: 0;
  }
  .project-count .counter-sec .cr-mrg {
    margin: 0 0 10px;
  }
  .about-aection .lg-title img {
    right: 30px;
    bottom: -5px;
    max-width: 80px;
  }

  .service_list .cp-box {
    gap: 10px;
  }
  .service_list .cp-box p {
    font-size: 14px;
    order: 4;
    flex: 0 0 100%;
    padding: 20px 20px;
    border-radius: 20px;
    margin-top: 10px;
    background: #f9f9f9;
  }
  .service_list .cp-box figure {
    flex: 0 0 85px;
    padding: 20px;
    border-radius: 50%;
    height: 85px;
  }

  .wy-choose-sec {
    padding-bottom: 0;
  }
  .choose-img-sec .rotate-link {
    max-width: 100px;
  }
  .choose-img-sec .rotate-link > img {
    max-width: 100px;
  }
  .choose-img-sec .rotate-link span {
    max-width: 35px;
    height: 35px;
  }
  .choose-best-option {
    margin-top: 30px;
  }
  .choose-best-option .best-box h5 {
    font-size: 15px;
  }

  .cod-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cod-grid .content h3 {
    font-size: 20px;
  }
  .cod-grid .content p {
    font-size: 13px;
    padding: 0 10px;
  }
  .testimonial-sec .smpl-tumb img {
    flex: 0 0 35px;
    height: 35px;
  }
  .testimonial-sec .review-tk .rv-star {
    font-size: 15px;
  }
  .testimonial-sec .review-tk .rv-star span {
    font-size: 12px;
  }
  .review-slider .item p {
    font-size: 16px;
  }

  .dev-work-process .process-box {
    padding: 10px;
  }

  .contact-form-box {
    padding: 30px;
  }

  footer .footer-title {
    padding: 25px 15px;
  }
  footer .email-btn {
    padding: 10px 10px 10px 15px;
    font-size: 15px;
  }
  .email-btn img {
    max-width: 25px;
    margin-left: 10px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .lg-title {
    font-size: 30px;
  }
  h4 {
    font-size: 17px;
  }

  
  .cod-grid .content {
    padding: 15px 15px 0;
    border-radius: 10px;
  }

  .contact-form-box {
    margin-bottom: 30px;
  }

  .final-inner-banner .main-img {
    padding: 10px;
  }

}

@media (max-width: 991px) {
  .container, .container-sm {
    max-width: 100%;
  }

  section {
    padding: 40px 0;
  }

  .choose-best-option .best-box {
    padding: 20px 10px 10px;
    height: auto;
    border-radius: 10px;
  }
  .choose-best-option .best-box figure {
    max-width: 50px;
    margin: 0 auto 15px;
  }

  .solution .title img {
    display: none;
  }

  .blog-sidebar {
    margin-top: 30px;
  }

}

@media (max-width: 767px) {
  .radius20 {
    border-radius: 10px;
  }
  p {
    font-size: 14px;
  }
  h4 {
    font-size: 16px;
  }
  .btn-outline {
    line-height: 1.4;
    font-size: 14px;
    padding: 10px 25px;
  }

  .title {
    margin-bottom: 15px;
  }

  .lg-title {
    font-size: 25px;
  }

  section {
    padding: 30px 0px;
  }
  .btn {
    padding: 6px 10px 6px 12px;
    font-size: 15px;
    line-height: 1.4;
  }
  .btn .link-icon {
    width: 20px !important;
    margin-left: 6px;
  }
  .g-review-fixed {
    top: 60%;
  }
  .whatsapp-review-fixed span {
    display: none;
  }
  /*Header M CSS*/
  .sticky {
    top: 35px;
    padding: 0 15px;
  }
  .nav-brand img {
    max-width: 100px;
  }
  header .btn-primary {
    display: none;
  }
  .nav-brand .logo {
    padding-left: 5px;
  }
  /*Header M CSS*/

  /*Home page css*/
  .final-banner {
    border-radius: 10px;
    padding: 90px 0 0;
    text-align: center;
  }
  .final-banner-wrapper {
    padding: 15px;
  }
 .final-banner .title {
    font-size: 25px;
    margin-bottom: 5px;
  }
  .final-banner .curve-line {
   display: none;
  }
  .final-inner-banner .main-img {
    padding: 10px;
  }
  .final-banner h4 {
    font-size: 13px;
    margin-top: 10px;
    font-weight: 600;
  }
  .final-banner p {
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 10px;
  }
  .project-count .counter-sec {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 20px 15px;
    border-radius: 10px;
    margin-top: 15px;
  }
  .project-count .counter-sec .counters {
    width: 50%;
    font-size: 35px;
    gap: 0;
    margin: 0 0 10px;
  }
  .project-count .counter-sec .cr-mrg {
    flex: 0 0 100%;
  }
  .project-count .counter-sec h4 {
    font-size: 14px;
    padding-right: 0;
  }
  .about-aection .ab-text {
    height: auto;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
  }
  .about-aection .lg-title img {
    right: 85px;
    bottom: -4px;
    max-width: 60px;
  }

  .service_list .cp-box::before {
    font-size: 30px;
    font-weight: 300;
    position: absolute;
    right: 10px;
    bottom: 20px;
  }
  .service_list .cp-box {
    padding: 20px;
    gap: 15px;
    border: 1px solid #cbcbcb;
  }
  .service_list .cp-box figure {
    flex: 0 0 90px;
    padding: 20px;
    height: 90px;
    border-radius: 20px;
  }
  .service_list .cp-box h3 {
    order: 2;
    flex: 0 0 100%;
    font-size: 20px;
  }
  .service_list .cp-box p {
    flex: 0 0 100%;
    order: 3;
  }


  .choose-best-option {
    margin-top: 5px;
  }
  .choose-best-option .best-box {
    padding: 20px 10px 10px;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    margin-top: 15px;
  }
  .choose-best-option .best-box h5 {
    font-size: 14px;
  }
  .choose-best-option .best-box figure {
    max-width: 50px;
    margin: 0 auto 15px;
  }

  .tech-logo .lg-title {
    padding: 0 20px;
  }
  .tech-logo .tech-cp {
    width: 25%;
  }
  .tech-logo .tech-cp img {
    width: 35px;
  }
  .tech-logo .tech-cp h5 {
    font-size: 13px;
  }

  .work-process .row {
    padding: 15px;
    border-radius: 10px;
  }

  .wy-choose-sec {
    padding-bottom: 0;
    text-align: center;
  }
  .choose-img-sec {
    margin: 90px 0 0;
  }
  .choose-img-sec .rotate-link {
    max-width: 100px;
  }
  .choose-img-sec .rotate-link span {
    max-width: 35px;
    height: 35px;
  }
  .choose-img-sec .rotate-link > img {
    max-width: 100px;
  }
  /*Home page css*/

  .redefines-success-count {
    text-align: center;
  }
  .redefines-success-count img {
    max-width: 80%;
    margin: 0 auto 20px;
    display: block;
  }


  .cod-grid {
    grid-template-columns: 1fr;
  }
  .cod-grid .content {
    border-radius: 10px;
  }
  .cod-grid .special-content {
    padding-bottom: 50px;
  }
  .cod-grid .special-content h2 {
    margin: 0 0 30px;
  }
  .cod-grid .special-content .rv-star .fa-google {
    font-size: 18px;
  }
  .cod-grid .special-content .rv-star {
    font-size: 13px;
  }
  .cod-grid .content h3 {
    font-size: 18px;
  }
  .cod-grid .content p {
    font-size: 13px;
  }

  .review-slider .item {
    padding: 20px;
  }
  .testimonial-sec .review-tk .lg-title {
    margin: 0;
  }
  .testimonial-sec .review-tk .rv-star {
    display: none;
  }
  .testimonial-sec .review-tk .rv-star i {
    font-size: 10px;
  }
  .testimonial-sec .smpl-tumb {
    display: none;
  }
  .review-slider .item p {
    font-size: 15px;
    min-height: 280px;
  }
  .review-slider .item .ups-text h6 {
    font-size: 13px;
  }
  .review-slider .item .ups-text span {
    font-size: 12px;
  }

  .breakthrough-sec .btn {
    margin-top: 10px;
  }

  .contact-form-box {
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .contact-form-box .form-control, .contact-form-box .form-select {
    height: 45px;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .contact-form-box textarea.form-control {
    height: 80px;
  }
  .custome_checkbox label {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .contact-form-box form .submit-btn {
    width: 100%;
  }   

  .solution .solution-box {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 5px;
    padding-top: 15px;
  }
  .solution h3 {
    padding-right: 40px;
    margin-bottom: 15px;
    padding-left: 35px;
    font-size: 20px;
  }
  .solution h3 span {
    font-size: 25px;
    position: absolute;
    left: 0;
  }

  .cp-about h5 {
    font-size: 15px;
    line-height: 1.5;
  }
  .cp-about p {
    font-size: 14px;
    line-height: 1.6;
  }


  .offer-box {
    padding: 25px 15px;
  }
  .offer-box .offer-top {
    display: block;
    text-align: center;
  }
  .offer-box .offer-top .icon {
    max-width: 40px;
    margin: 0 0 15px;
  }
  .offer-box .offer-top h5 {
    font-size: 14px;
  }
  .offer-box p {
    display: none;
  }
  .offer-box .masking-bg {
    display: none;
  }

  .dev-work-process .process-box {
    padding: 15px;
    height: auto;
    max-width: 80%;
    margin: 0 auto 10px;
  }
  .dev-work-process .process-box .icon {
    right: 0;
    left: 0;
    text-align: ;
    top: auto;
    bottom: -30px;
    transform: rotate(90deg);
  }
  .dev-work-process .process-box h5 {
    font-size: 18px;
  }
  .dev-work-process .process-box p {
    font-size: 12px;
  }

   .industry-sec ul {
    gap: 5px;
  }
  .industry-sec ul li {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 15px;
  }
  .industry-sec ul li img {
    max-width: 22px;
  }

  .blog-card {
    padding: 10px;
  }
  .blog-card .card-content h3 {
    margin-bottom: 20px;
    font-size: 17px;
    -webkit-line-clamp: 3;
  }
  .blog-card .card-content .read-more {
    font-size: 14px;
  }
  .main-blog-sec .line-animation span {
    width: 20px;
    height: 20px;
    font-size: 10px;
    padding: 2px;
  }

  .single-post-area h1 {
    font-size: 25px;
  }
  .single-post-area .coment-area h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .single-post-area .coment-area form input[type="submit"] {
    font-size: 16px;
  }
  .main-blog, .single-post-area {
    padding-bottom: 3rem;
  }
  .main-blog .pagination {
    gap: 5px;
  }
  .main-blog .pagination li {
    margin: 0 2px;
  }


  .home-faq-box .faq-bottom-part {
    border: 2px dashed #CBCBCB;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .home-faq-box .faq-bottom-part h5 {
    font-size: 17px;
  }
  .faq-accordion .faq-accordion-title h4 {
    padding-right: 10px;
    font-size: 16px;
  }
  .faq-accordion-content p {
    font-size: 14px;
  }
  .faq-accordion .faq-accordion-item {
    padding: 15px 0;
  }
  .faq-accordion .faq-accordion-content {
    margin: 15px 0 0;
  }

  .cp-pofolio {
    padding: 30px 0;
  }
  .cp-pofolio .nav-tabs {
    margin: 10px 0 30px;
  }
  .cp-pofolio .box {
    padding: 10px;
    border-radius: 10px;
    border-bottom-width: 3px;
    margin-bottom: 20px;
  }
  .cp-pofolio .nav-tabs a {
    padding: 6px 20px;
    font-size: 16px;
  }


  /*Footer*/
  .footer {
    padding: 30px 0 10px;
  }
  footer .logo {
    max-width: 150px;
    margin: 0 0 15px;
  }
  footer .f-social li a {
    border: 1px solid rgba(203, 203, 203, 0.4);
    padding: 15px;
    border-radius: 10px;
  }
  footer p.description {
    padding-right: 0;
  }
  footer h4 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  footer .footer-contact-box {
    margin: 0 0 20px;
  }
  footer .footer-title {
    padding: 25px 15px;
    border-radius: 10px;
    margin: 5px 0 20px;
    text-align: center;
  }
  footer .email-btn {
    padding: 10px 10px 10px 20px;
    font-size: 15px;
  }
  .email-btn img {
    max-width: 35px;
    margin-left: 10px;
  }
  footer .copyright {
    padding: 0 10px;
  }
  /*Footer*/

}

@media (max-width: 576px) {
  .tech-logo .tech-cp {
    width: 33.333%;
  }


  footer .lg-title {
    font-size: 20px;
  }
  footer .email-btn {
    display: flex;
    border: 1px solid #1a485f;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
