.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.archivo-black-medium {
  font-family: "Archivo Black", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.archivo-black-bold {
  font-family: "Archivo Black", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.archivo-narrow {
  font-family: "Archivo Narrow", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* SOCIAL MEDIA */
.social-media .button {
  display: inline-block;
  height: 30px;
  width: 30px;
  float: left;
  text-decoration: none;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}
.social-media .button:hover {
  width: 120px;
}
.social-media .button .icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  color: #000;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 30px;
  transition: all 0.3s ease-out;
}
.social-media .button:nth-child(1):hover .icon {
  background: #4267B2;
}
.social-media .button:nth-child(2):hover .icon {
  background: #1DA1F2;
}
.social-media .button:nth-child(3):hover .icon {
  background: #E1306C;
}
.social-media .button:nth-child(4):hover .icon {
  background: #333;
}
.social-media .button:nth-child(5):hover .icon {
  background: #ff0000;
}
.social-media .button .icon i {
  font-size: 16px;
  line-height: 18px;
  transition: all 0.3s ease-out;
  font-weight: 600;
}
.social-media .button:hover .icon i {
  color: #fff;
}
.social-media .button span {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin-left: 2px;
  transition: all 0.3s ease-out;
}
.social-media .button:nth-child(1) span {
  color: #4267B2;
}
.social-media .button:nth-child(2) span {
  color: #1DA1F2;
}
.social-media .button:nth-child(3) span {
  color: #E1306C;
}
.social-media .button:nth-child(4) span {
  color: #333;
}
.social-media .button:nth-child(5) span {
  color: #ff0000;
}

/* SOCIAL MEDIA */

/* BUTTONS */

.prime-btn{
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 500;
  background: #ff5b2e;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 8px;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  border-radius: 50px;
  border: 1px solid #ff5b2e;
  color: #fff ;
  line-height: 28px;
}

.prime-btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #248cc6;
  transition: 0.5s;
  z-index: -1;
  border: 1px solid #248cc6;
  border-width: 0px;
}

.prime-btn:hover::before{
  width: 100%;
  border-width: 100%;
  border-color: #248cc6;
}

.prime-btn:hover {
  border: 1px solid #248cc6;
  background-color: transparent;
}



.prime-btn .btn-icon {
  font-size: 20px;
  color: #fff;
  transform: rotate(90deg);
  position: relative;
  z-index: 2;
}

.themesflat-button{
  display: inline-flex;
  gap: 8px;
}

.themesflat-button .btn-icon{
   font-size: 20px;
  color: #fff;
  transform: rotate(90deg);
  position: relative;
  z-index: 2;
}

.prime-btn .btn-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  border: 0;
}

.primary-btn {
  font-family: "Archivo", sans-serif;
  padding: 20px 36px;
	display: inline-block;
	color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.primary-btn:before{
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.primary-btn:hover{
  color: #fff;
}


.primary-btn span:nth-child(1){
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0c002b, #1779ff);
  animation: animate1 linear 2s infinite;
  animation-delay: 1s;
}
.primary-btn:hover span:nth-child(1){
  background: linear-gradient(to right, #0c002b, var(--primary-color));
}

@keyframes animate1 {
  
0%{
  transform: translateX(-100%);
}
100%{
  transform: translateX(100%);
}
}


.primary-btn span:nth-child(2){
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #0c002b, #1779ff);
  animation: animate2 linear 2s infinite;
}
.primary-btn:hover span:nth-child(2){
  background: linear-gradient(to bottom, #0c002b, var(--primary-color));

}


@keyframes animate2 {
  
0%{
  transform: translateY(-100%);
}
100%{
  transform: translateY(100%);
}
}


.primary-btn span:nth-child(3){
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #0c002b, #1779ff);
  animation: animate3 linear 2s infinite;
   animation-delay: 1s;
}

.primary-btn:hover span:nth-child(3){
  background: linear-gradient(to left, #0c002b, var(--primary-color));
}

#page a {
  position: relative;
  text-decoration: none;
}  


@keyframes animate3 {
  
0%{
  transform: translateX(100%);
}
100%{
  transform: translateX(-100%);
}
}

.primary-btn span:nth-child(4){
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #0c002b, #1779ff);
  animation: animate4 linear 2s infinite;
}
.primary-btn:hover span:nth-child(4){
  background: linear-gradient(to top, #0c002b, var(--primary-color));
}

a {
  text-decoration: none;
}

@keyframes animate4 {
  
0%{
  transform: translateY(100%);
}
100%{
  transform: translateY(-100%);
}
}

.primary-btn span.btn-icon{
  font-size: 20px;
  color: #fff;
  transform: rotate(90deg);
  position: relative;
  z-index: 2;
}


.primary-btn .btn-icon{
  font-size: 20px;
  color: #fff;
  transform: rotate(90deg) ;
  position: relative;
  z-index: 2;
}

/* BUTTONS */






body{
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
}
.top-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 50px 0 35px;
}

.top-bar-wrap .link {
  font-size: 14px;
  font-family: var(--urbanist);
  color: rgb(255, 255, 255);
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.top-bar-wrap .action {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-wrap  .action .social-media {
  padding-left: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.top-bar-wrap  .action .social-media .social-link {
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.top-bar-right ul {
  float: right;
 padding-right: 155px;
}
.top-bar-left ul {
  padding-left: 42px;
}
.top-bar-left p{
	color: #fff;
}

.top-bar-header li{
    color: #fff;
}

.top-bar-right ul li {
  margin-right: 24px;
}
.themesflat-button.btn-contact {
  border-radius: 50px;
  padding: 10px 35px 12px 33px;
}
.fl-btn-before.before-style-2::before {
  background-color: var(--primary-color)
}
.themesflat-button{
  font-size: 16px;
}

.overlay-feature.dark {
  opacity: 1;
  visibility: visible;
  background-color: rgba(18, 28, 35, 0.8);
}

.site-header-inner .logo{
  background-color: transparent;
}

.logo img{
  width: 50%;
}
.ct-header-1-divider .divider {
  background-color: rgb(255, 255, 255);
  height: 1px;
  margin-left: -2px;
}
 .ct-header-1-divider {
    transform: translateX(0px);
    width: 100%;
  }
  .ct-header-1-divider {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
}
.tf-title-heading .title-banner-source{
  padding: 18px 0px;
}


.over-lay-navwrap.fl-st-1 {
  background-color: transparent;
  opacity: 0.1;
}
.top-header .top-bar-header {
  height: 50px;
}
.top-bar-header li {
  font-size: 14px;
}
.top-social li a i{
  font-size: 16px;
}
.top-social li a.custom i{
   font-size: 16px;
}
  #mainnav .menu > li {
    margin-right: 36px;
  }
#mainnav .menu{
  padding-left: 0;
}
  
#site-header.is-fixed{
  background-color: #121C23;
}
.themesflat-button.bg-accent {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}


.themesflat-button.bg-accent-2:hover, .themesflat-button.bg-accent:hover{
   border: 1px solid var(--white-color);
}


.welcome-section{
	  overflow: hidden;
  padding: 120px 0px 120px 0px;
   font-family: "Archivo", sans-serif;
}

.welcome-section .tf-title-heading {
  text-align: left; 
  padding: 0;
  max-width: 736px;
  margin-bottom: 28px;

}

.ct-section-title-4 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  letter-spacing: -0.01em;
  color: var(--ct-title-c-4);
  text-transform: capitalize;
  margin-bottom: 0;
}

.overlay-feature.dark {
  opacity: 1;
  visibility: visible;
  background: #121C23;
  background: linear-gradient(90deg, rgba(18, 28, 35, 1) 17%, rgba(18, 28, 35, 0.88) 63%, rgba(18, 28, 35, 0) 100%);

}
.theme-color {
  color: var(--primary-color) !important;

}


.slider .content {
  padding: 298px 47% 212px 11px;
  z-index: 9;
}
.slide-item h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 68px;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1.8px;
}

.slide-item p {
  padding-top: 0px;
  line-height: 28px;
}
.slide-item .btn-slide {
  padding-top: 40px;
}
.slide-item .btn-slide a {
  border-radius: 8px;
}
.themesflat-button{
  font-family: "Archivo", sans-serif;
}

.themesflat-button.bg-accent-2{
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.themesflat-button.big {
  padding: 15px 30px 15px 30px;
}
.box-counter {
  background: #E7E9EE;
}

.tf-counter.tf-style-1 {
  background-color: #F6F6F6;
  background-image: url(../image/patternphoto/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-title-heading, .box-us-left h5{
  display: inline-block;
  background-color: #DEE2EB;
  line-height: 1.2;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  position: relative;
  padding: 8px 22px;
  color: #268fc8;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}

.sub-title-heading::before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #F6F6F6;
  left: 0;
  bottom: 0;
}
.sub-title-heading::after{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #F6F6F6;
  right: 0;
  top: 0;
}
.title-heading {
  color: var(--black-color);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.box-counter-1 {
  margin-top: 320px;
}
.box-counter-2 {
  margin-top: 120px;
}
.feature-item-1{
  margin-top: 320px;
}

.feature-item-2{
  margin-top: 180px;
  background-color: #248cc6 !important;
}


.features .col-lg-3{
  padding: 0;
}
.feature-item .icon {
  display: inline-block;
  margin-bottom: 34px;
}
.feature-item{
  background-color: #E7E9EE;
  padding:40px;
}
.feature-item .title{
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  transition: all 0.4s ease;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  margin-bottom: 0px;
}  
.feature-item-2 .title{
  color: #ffffff;
}
.feature-item-2 p{
  color: #ffffff;
}

.ct-para-2-small {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 18px;
}

.feature-item .icon {
  display: inline-block;
  margin-bottom: 15px;
}
.box-us-left p {
  color: var(--primary-color2);
  line-height: 30px;
}

.box-us-left::after {
display: none;
}
.about-area {
  background: rgba(255, 115, 61, 0.08);
  overflow: hidden;
}

.about-main-wrap {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
 .about-main-wrap::after{
    width: 800px;
    height: 650px;
  }
}
  

.ct-about-4-area {
  background: rgba(255, 115, 61, 0.08);
  overflow: hidden;
}
.ct-about-4-main-wrap {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1300px) {
  .container.ct-container-5 {
    max-width: 1336px;
  }
}

.ct-about-4-wrap {
  padding: 130px 0;
}






#footer ol, ul {
  padding-left: 0rem !important;
}


.top-bar-right ul {
  float: right;
  padding-left: 0;
}
.top-bar-left ul {
  float: right;
}
.top-bar-header li{
    color: #fff;
}








.about-section{
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.about-main-section{
  width: 100%;
}

.about-content{
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.about-content-wrap{
  width: 100%;
}
.about-main-area{
  background: rgba(255, 115, 61, 0.08);
  overflow: hidden;
}
.about-main-area-wrap{
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.about-main-area-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background: #FFFFFF;
  width: 51%;
height: 550px;
}
.fl-section {
  /* padding: 0 !important; */
}

.about-wrap{
  padding: 110px 0;
}
.about-left {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 148px;
  position: relative;
  z-index: 3;
}

.about-title .subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  padding: 5px 22px 10px;
  background: #DEE2EB;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  font-family: "Archivo", sans-serif;
}

.about-title .subtitle::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0px;
  bottom: 0px;
  background: #ffffff;
  transform: translateY(-27px);
  transition: all 0.8s ease;
}

.about-title .subtitle::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 0px;
  top: 0px;
  background: #ffffff;
  transform: translateY(27px);
  transition: all 0.8s ease;
}

.about-title h1 {
  font-family: var(--archivo);
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.01em;
  color: var(--ct-title-c-4);
  text-transform: capitalize;
  margin-bottom: 0;
}



.about-title .disc {
  margin-top: 31px;
}

.about-title p{
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  color: #555454;
}

.about-experience {
  position: absolute;
  top: 0;
  right: 32px;
  display: flex;
}

.about-experience .plus1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 260px;
  line-height: 0.75;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #E0E0E0;
  stroke: #E0E0E0;
  color: transparent;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: -68px;
  z-index: -1;
}
.about-experience .plus2 {
  font-family: var(--archivo);
  font-weight: 900;
  font-size: 220px;
  line-height: 0.75;
  color: #FF733D;
  margin-bottom: 0;
}
.about-experience h5 {
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #FF733D;
  flex: 0 0 auto;
  margin-top: 60px;
  margin-bottom: 0;
}

.about-experience {
  position: absolute;
  top: 120px;
  right: 10px;
  display: flex;
}
.ct-about-4{
  padding-top: 60px;
}


/* @media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-experience {
    top: 355px;
  }
} */

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ct-about-4-main-img {
    max-width: 800px;
  }
}




.img-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.about-main-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
}
.about-main-img .img-wrap img {
  /* filter: grayscale(1); */
  transform: scale(1.1);
  transition: all 3s ease-in-out;
}
  .about-main-img .img-wrap {
  position: relative;
}
 .about-main-img:is(.active) .img-wrap img {
  transform: scale(1);
}


.about-main-img .img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(46, 88, 119, 0.212); */
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-main-img {
    max-width: 800px;
  }
}

.about-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-wrap ul li {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-left: 32px;
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #202020;
}

.about-wrap ul li::after {
  /* background-image: url("https://adhikaripeoplecorp.com/wp-content/uploads/2024/11/a4-list-icon.svg"); */
}
.about-wrap ul li::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  /* background: url("../image/about/a4-list-icon.svg");
    background-repeat: repeat;
    background-image: url("../image/about/a4-list-icon.svg"); */
  height: 22px;
  width: 22px;
  display: block;
  background-repeat: no-repeat;
}

.about-wrap ul li span{
  margin-right: 10px;
}
.tf-banner {
  background-image: url(../image/about/banner-source.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border: 0px ;
  padding-top: 100px;
}
.tf-banner h5{
  color: #248cc6;
  font-weight: normal;
}
.tf-title-heading.ct {
 
  padding: 0 2%;
}
.tf-banner h1 {
  font-family: var(--urbanist);
  font-size: 52px;
  font-weight: 900;
  line-height: 60px;
  color:#fff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.btn-banner a{
  display: inline-flex;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-color);;
  transition: all 0.4s ease;
  position: relative;
}

.btn-banner a:hover{
   color: #ffffff;
}

.btn-banner a .btn-icon {
  font-size: 20px;
  color: #fff;
  transform: rotate(90deg);
  position: relative;
  z-index: 2;
  line-height: 20px;
}
.tf-banner .btn-banner {
  padding-top: 20px;
  padding-bottom: 70px;
}



.img-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.ct-feature-1-card .card-img {
  border-radius: 30px;
  overflow: hidden;
  
}
.ct-feature-1-card .card-img img {
  transition: all 0.6s ease;
}
.ct-feature-1-card .content {
  margin-top: -50px;
  position: relative;
  text-align: center;
  padding: 0 20px 30px;
}
.ct-feature-1-card .content .icon {
  border-radius: 50%;
  background: var(--ct-gd-1);
  width: 79px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.ct-feature-1-card .content .title {
   font-family: "Archivo", sans-serif;
  font-size: 24px;
  letter-spacing: -.8px;
  font-weight: 800;
  color: rgb(28, 28, 28);
  line-height: 1.25;
  margin-top: 20px;
}
.ct-heading-1 {
  font-family: var(--urbanist);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ct-heading-1);
  text-transform: capitalize;
  margin-bottom: 0px;
}
.ct-para-1 {
 font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.ct-feature-1-card .content .disc {
  color: rgb(115, 115, 115);
  margin-top: 8px;
}

.tf-service-builder 
{
  background-image: none
}

.box-services-builder {
  padding: 0;
}
.sub-title-heading {
  color: #248cc6;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  line-height: 21.6px;
  margin-bottom: 15px;
}
.tf-banner h5 {
  color: #248cc6;
  font-weight: normal;
   font-family: "Archivo", sans-serif;
  font-weight: normal;
  line-height: 21.6px;
  margin-bottom: 5px;
}

.box-services-builder.active, .box-services-builder:hover {
  background-color:none transparent !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box-services-builder.active{
background-color: transparent !important;
}
.box-services-builder.active::after, .box-services-builder:hover::after {
  background-color: transparent;
}
.ct-feature-1-card .content .icon {
  border-radius: 50%;
  background: hsla(35, 95%, 61%, 1);
  background: linear-gradient(90deg, hsla(35, 95%, 61%, 1) 0%, hsla(25, 100%, 55%, 1) 100%);
  background: -moz-linear-gradient(90deg, hsla(35, 95%, 61%, 1) 0%, hsla(25, 100%, 55%, 1) 100%);
  background: -webkit-linear-gradient(90deg, hsla(35, 95%, 61%, 1) 0%, hsla(25, 100%, 55%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FAAC3F", endColorstr="#FF7817", GradientType=1 );
  width: 79px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.box-services-builder {
  margin-top: 0px;
}

.tf-service-builder .title-heading{
font-size: 54px;
  letter-spacing: -1.8px;
  margin-bottom: 2px;
  font-family: "Archivo", sans-serif;
}

.box-services-builder:hover {
  border-radius: 30px;
}




/* process section css */

.workprocess{
  background-color: #121C23;
  border-radius: 24px 24px 24px 24px;
}

.container-custom{
  display: flex;
  min-height: 1px;
  position: relative;
}


.content-wrapper {
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

.content-wrap {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-wrap-img {
  padding: 32px 0;
  margin-left: -268px;
  position: relative;
}
  .content-wrap-img {
    margin-left: -112px;
  }
.content-wrap-img:is(.active)::after {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.content-wrap-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 64px);
  background-color: #23333f;
  left: 0;
  top: 32px;
  border-radius: 24px;
  transition: all 1s ease;
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .content-wrap-img {
    margin-left: -112px;
  }
}


.img-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.content-wrap img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.content-wrap-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}
/* .content-wrap::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0px;
  bottom: 0px;
  background: #F6F6F6;
  transform: translateY(-27px);
  transition: all 0.8s ease;
} */
.content-wrap-subtitle {
  font-family: var(--archivo);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #121C23;
  text-transform: capitalize;
  padding: 8px 22px;
  background: #DEE2EB;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.content-wrap-subtitle::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0px;
  bottom: 0px;
  background: #F6F6F6;
  transform: translateY(-27px);
  transition: all 0.8s ease;
}
.content-wrap-subtitle::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 0px;
  top: 0px;
  background: #121C23;
  transform: translateY(27px);
  transition: all 0.8s ease;
}

.content-wrap-title .content-wrap-subtitle::before {
  background: #121C23;
}
.content-wrap-title:is(.has-color-white) {
  color: #fff;
}

.content-wrap-title {
  font-family: var(--archivo);
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
}
.content-wrap .disc {
  color: #FFFFFF;
  margin-top: 22px;
}

.content-wrap .slider-wrap {
  position: relative;
  max-width: 605px;
}

.content-wrap-slider {
  max-width: 480px !important;
  border-radius: 12px;
  box-sizing: border-box;
}

.blog_title{
  color: #fff;
}

.slider-wrap .slide-item {
  background-color: #273137;
   padding: 44px; 
  border-radius: 12px;
  position: relative;
   width: 480px;
}

.slider-wrap .content-wrap-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.slider-wrap .slide-item .number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}
.slider-wrap .slide-item .icon {
  display: inline-block;
  background-color: #121C23;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.slider-wrap .slide-item .title {
  margin-top: 46px;
  font-size: 26px;
  line-height: 32px;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
}

.slider-wrap .slide-item  .disc {
  color: #E7E9EE;
  margin-top: 18px;
}
.slide-item p {
  padding-top: 0px;
  line-height: 30px;
  padding-left: 0px;
}


.ct-work-4-navigator {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.ct-work-4-navigator::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48.3%;
  background: #4B5258;
  top: 84px;
}



.ct-work-4-navigator .swiper-button-prev, .ct-work-4-navigator .swiper-button-next {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4B5258;
  border-radius: 8px;
  color: #4B5258;
  font-size: 24px;
  transition: all 0.4s ease;
}
.fa-solid, .fas {
  font-weight: 900;
}
.ct-work-4-navigator .swiper-button-prev i {
  transform: rotate(40deg) !important;
}
.ct-work-4-navigator .swiper-button-next i {
  transform: rotate(40deg) !important;
}

.fa-arrow-down::before {
  content: "\f063";
}
.fa-arrow-up::before {
  content: "\f062";
}
.ct-work-4-navigator .swiper-button-prev, .ct-work-4-navigator .swiper-button-next {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4B5258;
  border-radius: 8px;
  color: #4B5258;
  font-size: 24px;
  transition: all 0.4s ease;
}

.bs-button {
  background: transparent;
}
.swiper-button-prev, .swiper-button-next {
  position: static;

}

.bs-button:hover {
  background: #FAAC3F ;
  color: #ffffff;
}

@media (min-width: 1300px) {
  .container.ct-container-5 {
    max-width: 1336px;
  }
}


.contact-form{
  overflow: hidden;
  padding: 100px 0 50px 0;
  background-color: #F6F6F6;
}

.contact-form-wrap{
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.ct-contact-4-left{
  display: flex;
  gap: 28px;
  margin-left: -301px;

}
.ct-contact-4-form {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 68px 80px 80px 80px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .ct-contact-4-right {
    margin-right: -200px !important;
  }
}
.ct-contact-4-right {
  border-radius: 16px;
  background-color: #E7E9EE;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
  margin-right: -272px;
  overflow: hidden;
  min-height: 850px;
}
.ct-contact-4-right .main-img {
  max-width: 678px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.ct-contact-4-shape-img {
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  height: 100%;
  max-width: 212px;
  flex: 0 0 auto;
}
.ct-contact-4-form form .input-fields .item textarea {
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  outline: none;
  height: 67px;
  min-height: 67px;
  border-bottom: 1px solid #DDDEE2;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #202020;
  margin-top: 12px;
  padding: 0;
}
.ct-contact-4-form form .input-fields .item input {
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  outline: none;
  height: 46px;
  border-bottom: 1px solid #DDDEE2;
 font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #202020;
  padding: 0;
}
.ct-contact-4-form form .input-fields .item label {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #202020;
}
.ct-contact-4-form form .btn-wrap {
  margin-top: 40px;
}
.ct-btn-4::before {
  background: #343788;
}
.ct-btn-4 {
  background: #E22B30;
}

.ct-btn-4 {
  /* background: #000; */
  display: inline-flex;
  border-radius: 8px;
  /* box-shadow: inset 0px 0px 6px #5869FC; */
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  padding: 13px 28px;
  line-height: 24px;
  background-color: #248cc6;
  font-size: 16px;
}
.ct-btn-4:hover{
  background-color: #FAAC3F ;
color: #fff;
}

.ct-btn-4::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: var(--ct-pr-3);
  transition: all 0.6s ease;
}
.ct-btn-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--ct-pr-3);
  transition: all 0.6s ease;
}

.ct-btn-4 .btn-icon {
  font-size: 16px;
  color: #000;
  transform: rotate(-45deg);
  position: relative;
  z-index: 2;
}
.ct-btn-4:hover .btn-icon{
  color: #fff;
}

[type="button"], [type="reset"], [type="submit"], button {
  -webkit-appearance: button;
}

.ct-contact-4-form form .services .service-radio input:checked ~ .wpcf7-list-item-label {
  background: #248cc6;
  color: #fff;
}
.ct-contact-4-form form .services .service-radio .wpcf7-list-item-label {
  padding: 9.5px 16px;
  background: #F0F0F0;
  border-radius: 4px;
 font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #202020;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ct-contact-4-form form .services .wpcf7-list-item {
  margin: 0;
    margin-right: 0px;
    margin-bottom: 0px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.ct-contact-4-form form .services .service-radio input {
  display: none;
}
.ct-contact-4-form .title {
   font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #202020;
  margin-bottom: 20px;
}
.ct-contact-4-form .subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #202020;
}

input::placeholder {
  color: #000;
  opacity: 0.5;
}
textarea::placeholder {
  color: #000;
  opacity: 0.5;
}
.ct-contact-4-right .shapes .shape-1 {
  position: absolute;
  width: 127px;
  height: 125px;
  left: 0px;
  top: 0px;
  background: #248cc6;
}
.ct-contact-4-right .shapes .shape-3 {
  position: absolute;
  width: 81px;
  height: 80px;
  left: 127px;
  top: 125px;
  background: #F6F6F6;
}

.info-footer{
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 50px;
  margin-bottom: 0px;
}
.info-footer .container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}







.content-footer-info {
  border: 2px solid rgb(43, 55, 70);
  border-radius: 30px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.content-footer .info-left {
  border-radius: 30px;
  padding: 40px 30px;
  background: #fff !important;
  width: 250px;
}
.site-header-inner .logo a {
  padding-left: 28%;
  line-height: 160px;
}
.content-footer .footer-logo {
  display: inline-block;
}
.content-footer  img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.content-footer  .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 15px;
}



.footer-info {
  border: 2px solid rgb(43, 55, 70);
  border-radius: 30px;
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}
.footer-info .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 15px;
}
.footer-info .footer-logo {
  display: inline-block;
}

.box-list{
  padding: 20px 20px;
}
.box-list ul.style-1 li {
  margin-bottom: 0px;
}
.content-footer .title {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  color: rgb(255, 255, 255);
  font-weight: 800;
  line-height: 2.2;
}

.box-list a{
  color:#ffffff;
}
.box-list a:hover{
  color:#248cc6;
}
.content-footer ul li a img {
  width: 15px;
}
.content-footer ul li a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
}
.footer-location-card {
  border: 2px solid rgb(43, 55, 70);
  border-radius: 30px;
  padding: 50px 30px 40px 50px;
}
.widget-wrap {
  position: relative;
  background-color: transparent;
  padding:50px 0;
}

.content-footer .content-text {
  font-size: 16px;
  color: rgb(203, 203, 203);
  font-weight: 600;
  line-height: 1.667;
}
a:hover {
  color: var(--primary-color);
}

.footer-action a{
  color: #ffffff;
}

.footer-action a:hover {
  color: var(--primary-color);
}
.footer-action .social-media {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.footer-action .social-media a {
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

#footer {
  background-color: #171e2b;
 
}

.footer-bottom {
  background-color: #141b24;
  
}
.footer-bottom .coppyright{
color: #fff;
}


.footer-newsletter {
  background-color: rgb(20, 27, 36);
  border-radius: 100px;
  padding: 15px 70px;
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 30px 125px;
  align-items: center;
  position: relative;
  top: -65px;
  z-index: 999;
}
.footer-newsletter .content .icon svg{
  font-size: 60px;
  color: #ffffff;
}
.footer-newsletter .content .title {
  font-size: 24px;
  color: rgb(254, 254, 254);
  line-height: 1.071;
  font-weight: 700;
}
.footer-newsletter .content {
  display: flex;
  align-items: center;
  gap: 20px;
}


.footer-newsletter form {
  position: relative;
  display: flex;
  align-items: center;
}
.footer-newsletter form input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 10px 180px 10px 30px;
  font-size: 18px;
   font-family: "Archivo", sans-serif;
  color: rgb(254, 254, 254);
  font-weight: 600;
  line-height: 1.2;
  background-color: rgb(24, 32, 42);
  height: 75px;
  border-radius: 100px;
}

.footer-newsletter form input::placeholder{
  color: #DDDEE2;
}


.footer-newsletter form .subscribe-btn {
 position: absolute;
  right: 16px;
  background-color: transparent;
  padding: 18px 39px;
  border-radius: 100px;
  transition: all 0.4s ease;
  top: 10px;
}
.footer-newsletter form .subscribe-btn .btn-text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.footer-newsletter form .subscribe-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #248cc6 ;
  transition: all 0.4s ease;
}


/* @media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ct-work-4-wrap {
    padding: 100px 0;
  }
    .ct-work-4-main-img {
    margin-left: 0px;
    padding: 0;
  }
   .content-wrap-img {
    margin-left: 0px;
    padding: 0;
  }
  .content-wrap{
     padding: 100px 0;
  }
    .ct-contact-4-left {
    margin-left: 0;
  }
   .ct-contact-4-shape-img {
    display: none;
  }
  
} */


@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .about-main-img {
    max-width: 780px;
  }
  .ct-contact-4-left {
  display: flex;
  gap: 28px;
  margin-left: -190px;
}
.contact-form {
  padding: 50px 0 50px 0;
}

.footer-info{
  display: block;
}

.content-footer .info-left {
  padding: 20px;
  width: 78%;
}
  .container, .container-md, .container-sm {
    max-width: 100%;
  }

.content-footer .col-md-5 {
  width: 100%;
}
.content-footer .col-md-3 {
  width: 100%;
}
.content-footer .col-md-4 {
  width: 100%;
}
element {
}
.widget-wrap {
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.widget-wrap {
  position: relative;
  background-color: transparent;
  padding: 15px 0;
}
.content-footer {
  padding-top: 50px;
}
.content-wrap-img {
  display: none;
}

.tf-banner h1 {
  font-size: 48px;
  line-height: 54px;
}
.tf-service-builder .title-heading {
  font-size: 42px;
}
  .about-main-img {
    max-width: 100%;
  }
  .about-left {
  max-width: 480px;
  display: flex;
  flex-direction: row;
  }
.about-main-img{
  position: static;
}
  .about-left {
    display: block;
  }
.ct-about-4-list{
  margin-top: 50px;
}
.about-experience {
  position: block;
  display: block;
}
  .about-left {
    max-width: 360px;
  }

  .about-main-area-wrap::after {
    width: 60%;
  }
  .logo img {
  width: 90%;
}


}


@media only screen and (min-width: 1024px) and (max-width: 1440px) {


}
@media only screen and (min-width: 600px) and (max-width: 1024px) {


}


@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ct-footer-1-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .ct-work-4-wrap {
    display: block;
  }
   .content-wrap {
    display: block;
  }
   .content-wrap-img {
    margin-left: 0px;
    padding: 0;
  }
   .content-wrap{
     padding: 100px 0;
  }
    .ct-contact-4-left {
    margin-left: 0;
  }
    .ct-contact-4-shape-img {
    display: none;
  }
    .content-wrap-title {
    font-size: 30px;
    line-height: 38px;
  }
    .ct-work-4-navigator {
    position: relative;
    margin-top: 35px;
    flex-direction: row;
    max-width: 480px;
    justify-content: center;
    gap: 20px;
  }
  .swiper-slide{
    width: 100%;
  }
  
  .slider-wrap .slide-item{
    width: 100%;
    padding: 20px;
  }

.overlay-feature {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1;
}

.top-bar-wrap{
  display: none;
}

.contact-header.fl-st-2, .contact-header {
    padding: 60px;
  }

.btn-contact-header{
  display: none;
}
.logo img {
  width: 100%;
}
.site-header-inner .logo a {
  padding-left: 0;
  line-height: 120px;
}

#header.bg-style-1 {
  height: 100px;
}
  .list-info .content, .site-header-inner .top-header {
    width: 56%;
  }
    .contact-header.fl-st-2, .contact-header {
    padding: 56px;
  }
    .logo img {
    margin-left: -50px;
  }
  .slider .content {
  padding: 150px 2% 80px 20px;
  z-index: 9;
}
.slide-item h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
}

.carousel-banner{
height: 700px;
}
.slide-item .btn-slide {
  padding-top: 20px;
}

.ct-section-title-4 {
  font-size: 35px;
  line-height: 42px;
}

.feature-item-1 {
  margin-top: 20px;
}
.features .col-lg-3{
padding-left: 15px;
}
.feature-item-2 {
  margin-top: 20px;
}

.feature-item-3 {
margin-top: 20px;
}

.about-wrap {
  padding: 100px 0 0;
}



.welcome-section {
  padding: 80px 0px 80px 0px;
}

.ct-work-4-navigator .swiper-button-prev, .ct-work-4-navigator .swiper-button-next{
  width: 60px;
  height: 60px;
}
.content-wrap-cont{
  padding: 0;
}
 .ct-contact-4-form .title {
    font-size: 26px;
  }
  .ct-contact-4-form {
  padding: 48px 24px 40px 24px;
}
.contact-form-wrap .container{
  padding: 0;
} 
  .ct-contact-4-right {
    display: block;
    padding: 15px;
    height: 100%;
    min-height: 1px;
  }
  .ct-contact-4-right img{
    border-radius: 10px;
  }

 .ct-contact-4-right .main-img {
    max-width: 100%;
  }

.tf-banner{
   padding-left: 15px;
  padding-right: 15px; 
  padding-top: 80px;
}
.tf-banner h1{
  font-size: 30px;
  line-height: 42px;
}
.tf-title-heading .title-banner-source{
  padding-top: 5px;
}
  .themesflat-button.big {
    padding: 15px 19px 15px 19px;
  }
  .tf-banner .btn-banner {
  padding-top: 12px;
  padding-bottom: 60px;
}
.tf-service-builder .title-heading {
    font-size: 30px;
    line-height: 38px;
  }
.sub-title-heading{
  margin-bottom: 5px;
}
.tf-service-builder .title-heading{
  margin-bottom: 20px;
}
.box-services-builder {
  padding: 0 15px 0 15px;
  margin-bottom: 1rem;
}
.ct-feature-1-card .content {
  margin-top: -42px;
}

.ct-feature-1-card .content .icon{
  width: 72px;
  height: 72px;
}
.ct-feature-1-card .content .title{
  margin-top: 15px;
}
  .ct-about-4-experience {
    margin-top: 60px;
    position: static;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 0;
  }
   .ct-about-4-experience .number-top {
    display: none;
  }
    .about-left {
    gap: 60px;
  }
.about-main-img .img-wrap {
    position: relative;
    left: 0;
  }
.about-main-area-wrap::after {
  position: static;
}

.about-main-img{
  position: static;
}
.about-wrap ul li{
  margin-left: 0;
  font-size: 16px;
  line-height: 16px;
}
.about-experience{
  position: static;
  display: block;
  text-align: center;
  padding: 50px;
}
.about-experience .plus2{
  font-size: 150px;
}
.about-experience h5{
  font-size: 24px;
  margin-top: 20px;
}
.content-footer .info-left {

  width: 100%;
}
.footer-info {
  display: block;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {

  padding-right: 15px !important;

}
.widget-wrap {
  padding: 10px 0;
}
 .coppyright {
    font-size: 14px;
  }

.footer-newsletter {
  display: block;
  
}
.footer-newsletter-section{
padding: 0 10px;
}

.contact-form {
  padding: 80px 0 120px 0;
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  margin-bottom: 0;
}
  .footer-newsletter .content .icon {
    font-size: 45px;
  }
   .ct-footer-1-newsletter .content .title {
    font-size: 24px;
  }

    .footer-newsletter form {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
    .footer-newsletter {
    padding: 25px 20px;
    border-radius: 30px;
  }

   .footer-newsletter form input {
    height: 60px;
    padding: 5px 20px;
  }
   .footer-newsletter form .subscribe-btn {
    position: relative;
    right: auto;
  }
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
.slide-item h1 {
    font-size: 40px;
    line-height: 50px;
  }
.site-header-inner .top-header {
  width: 68%;
}
.top-bar-wrap .link{
  display: none;
}
.top-bar-wrap .action{
  display: none;
}
.btn-contact-header{
  display: none;
}

.primary-btn {
  font-family: "Archivo", sans-serif;
  padding: 15px 15px;}


}


@media (max-width: 767px) {
  .ct-contact-4-right {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .elementor-section .elementor-container {
    flex-wrap: wrap;
  }
}


@media (min-width: 1200px) {
  .container {
    width: 1200px !important;
    max-width: 100% !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ct-header-1-divider {
    display: none;
  }
}


/* about page */
.bg-light{
  background-color: #F6F6F6;
}

.mainabout {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px 0px;
}
.mainabout-left {
  border-radius: 16px;
  overflow: hidden;
}
.mainabout-right {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 105px;
}

.img-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.para-1 {
  font-size: 16px;
  font-family: var(--urbanist);
  font-weight: 500;
  color: var(--ct-heading-1);
  line-height: 28px;
  margin-bottom: 0;
}

.dedicate-1-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-left: -175px;
}
.dedicate-1-card {
  padding: 44px 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  /* transform: translateX(-100px); */
  transition: all 1s ease;
}
.dedicate-1-card .title {
  font-family: var(--urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #1C1C1C;
  margin-top: 40px;
}
.box-services-builder h6{
  padding-bottom: 0;
}
.dedicate-1-card .card-disc {
  color: #717171;
  margin-top: 15px;
  font-weight: 400;
}
.dedicate-1-card-wrap:is(.active) .ct-dedicate-1-card {
  transform: translateX(0px);
}
.dedicate-1-card:nth-child(2) {
  transition-delay: 0.2s;
}


.box-services-builder.fl-st-3{
background:none;
}

.title-sr{
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #1C1C1C;
  font-family: var(--bs-font-sans-serif);
}
.title-sr a{
  color: #1C1C1C;
}
.para-style-1{
  color: #717171;
  font-weight: 400;
  font-size: 15.9px;
}
.divider {
  height: 2px;
  width: 100%;
  border: 1px dashed #0f5dfb;
  margin: 20px 0 16px 0;
  transition: all 1.3s ease;
}
.box-services-builder.fl-st-3::before {
background: none;
}
/* about page */


/* guiding principles */

.ourprinciples{
  padding: 130px 0px 90px 0px;
}


.business-wrap{
  position: relative;
}

.business-title-wrap {
  position: absolute;
  left: 0;
  top: 120px;
  z-index: 2;
}

.title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}
.business-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  color: #1C1C1C;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  padding: 0 5px;
}
.business-content{
  max-width: 1037px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 40px 60px;
  align-items: center;
}

.business-content .main-img {
  border-radius: 16px;
  overflow: hidden;
}
.business-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.business-item-wrap .heading-1{

}
.business-item .title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: #1C1C1C;
}
.subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #248cc6;
  margin-bottom: 5px;
}


.business-item .disc {
  font-weight: normal;
  color: #717171;
  margin-top: 10px;
}

.business-item-wrap .para-1{
  font-size: 18px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  color: #717171;
  line-height: 30px;
  margin-bottom: 0;

}

/* guiding principles */

/* services */

#header.bg-style-2{
  min-height: 400px;
}

/* services */

/* contact form */

.card-registration .select-input.form-control[readonly]:not([disabled]) {
font-size: 1rem;
line-height: 2.15;
padding-left: .75em;
padding-right: .75em;
}
.card-registration .select-arrow {
top: 13px;
}

.jobseeker .card{
  display: flex;
  border-radius: 15px 15px 15px 15px;
  padding-top: 0px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

.jobseeker h3{
  font-family: "Archivo", sans-serif;
  font-size: 46px;
  font-weight: 600;
  color: #000000;
}

.btn-primary{
  padding: 10px 20px !important;
}

.btn-primary {
  color: #fff;
  background-color: #ff5b2e !important;
  border-color: #ff5b2e !important;
}

.btn-primary:hover {
  color: #fff;
  background-color: #248cc6 !important;
  border-color: #248cc6 !important;
}

.jobseeker .btn{
 width: 100%;
}
.baner-title h1 {
  text-align: center;
  font-family: "Archivo", Sans-serif;
  font-size: 69px;
  font-weight: 600;
  color: #FFFFFF;
 
}
#header-baner .baner-title {
  margin-top: 80px;
  margin-bottom: 30px;
}


/* contact form */


/* contact page */

.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
  display: flex;
}
.widget-wrap {
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}


.contact-details-main-wrap {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ct-contact-details-shape-left {
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  mix-blend-mode: luminosity;
}

.contact-details-shape-right {
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  mix-blend-mode: luminosity;
}

.container-style{
  background-color: #f2f2f3;
  border-radius: 15px;
  padding: 50px;
}

.contact-details-item {
  padding: 32px 32px 35px 32px;
  background: #FFFFFF;
  border-radius: 12px;
}

.contact-details-item .title {
  font-family: "Archivo", Sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 24px 0 10px 0;
}

.contact-details-item .disc {
  font-family: var(--urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #717171;
}

.contact-details-item .link-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 2px 25px;
  flex-wrap: wrap;
}

.bg-white{
  background-color: #fff !important;
}

.contact-section-top{
  margin-top: 50px;
}


 iframe{
  border: none;
  line-height: 1;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 390px;
}

/* contact page */
/*--------------------------------------------------------------
# New Footer Styles (footer-style-2)
--------------------------------------------------------------*/

/* Main Footer Container */
#footer {
  background-color: #0d1a2f; /* Dark blue background */
  color: rgba(255, 255, 255, 0.7); /* Light grey for default text */
  font-size: 16px;
  line-height: 1.6;
}

/* Top part of the footer with content */
#footer .footer-top {
  padding: 80px 0 60px 0; /* Generous spacing above and below content */
}

/* About Widget (Logo & Text) */
#footer .widget-about .footer-logo {
  display: block;
  margin-bottom: 25px;
}

#footer .widget-about .footer-logo img {
  max-width: 180px; /* Adjust logo size if needed */
}

#footer .widget-about .disc {
  color: rgba(255, 255, 255, 0.7); /* Muted paragraph text */
  margin-bottom: 30px;
}

/* Address Widgets */
#footer .widget-address {
  margin-bottom: 30px; /* Adds space between address blocks on mobile */
}

#footer .widget-address .title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff; /* White, bold titles */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#footer .widget-address p {
  color: #ffffff; /* White address text */
  margin-bottom: 0;
  line-height: 1.7;
}

/* Social Media Icons */
#footer .social-media-footer a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px; /* Centers icon vertically */
  text-align: center;
  border-radius: 50%; /* Makes it circular */
  background-color: rgba(255, 255, 255, 0.1); /* Dark, semi-transparent background */
  color: #ffffff; /* White icon */
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}

#footer .social-media-footer a:hover {
  background-color: #FAAC3F; /* Example hover color (your theme's accent color) */
  color: #ffffff;
}

/* Footer Bottom (Copyright) */
#footer .footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Faint separator line */
}

#footer .footer-bottom .coppyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* This is the style for your existing scroll-to-top arrow */
#scroll-top {
    /* You can style your arrow here if it's not already */
    /* Example from image 2: */
    /*
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #FAAC3F; 
    color: #fff;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    */
}
section.contact-form {
  margin-bottom: 0; /* Removes any bottom margin */
  padding-bottom: 30px; /* Adjust this value (e.g., 20px, 0px) to control the space */
}