@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
    /* Fonts */

    --body-font: "Manrope", sans-serif;

    

    /* Color */
    --primary: ;
    --black: #000;
    --white: #fff;

}

body {
    font-family: var(--body-font);
    color: var(--black);
    background-color: #F8F8F8;
}

h1,
h2,
h3 {
    font-family: var(--body-font);
    font-weight: 700;
}
p{
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #2C2B2B;
    font-family: var(--body-font);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 300ms ease-in all;
    color: #7535E9;
    text-decoration: none;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::: */



.btn {
    text-transform: uppercase;
    font-weight: 500;
}

@media(min-width:575px) {
    .btn:not(.btn-lg) {
        font-size: 1.125rem;
        padding: 12px 28px;
        border-radius: 10px;  
    }
}

.btn-lg {
    padding-left: 1.75em;
    padding-right: 1.75em;
}




/*.input-group-lg>.btn,*/
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    font-size: 0.75em;
    font-family: var(--body-font);
}
input.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
input.form-control.error-class {
    border-color: red;
}
input.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
    
}
textarea.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 50px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
textarea.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select option{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
.form-control:focus{
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
}
.form-check{
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-check-input{
    width: 16px;
    height: 16px;
    margin-top: 0;
    border: 1px solid #0000001A;
}
.form-check-input:checked{
    background-color: var(--primary);
    border-color: var(--primary);;
}

.input-group-with-icon{
    position: relative;
}

.input-group-icon-1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    display: flex;
    align-items: center;
}
.input-group-icon-2{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    display: flex;
    align-items: center;
}
.input-group-with-icon i{
    font-size: 22px;
    color: var(--primary);
}
.input-group-with-box{
    display: flex;
    gap: 15px
}
.input-group-with-box input{
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 20px;
    text-align: center;

}
.form-check-inline{
    display: inline-block !important;
}
 form label{
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

}
input.form-control[type="date"]{
    color: #969696;
}
.relative {
    position: relative;
}

.max-720 {
    max-width: 720px;
}

.max-790 {
    max-width: 790px;
}

.shadow-md {
  box-shadow: 0 0.125rem 1.5rem rgba(0, 0, 0, 0.075) !important;
}
.defult-font{font-family: var(--defult-font);}
.bold-text p{
    font-weight: 700 !important;
}

.sec-title h2{
    font-size: 38px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #060606;
}
.sec-title p{
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: #FFFFFFB2;
}

.primary-btn{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    letter-spacing: 0.003em;
    color: #fff;
    background-color: var(--primary);
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    padding: 26px 76px;
    border: 2px solid var(--primary);
}
.primary-btn:hover{
    color: var(--primary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) !important;
}

.container-custom{
    max-width: 1266px;
    padding: 0 24px;
}
.container-custom.sm{
    max-width: 1200px;
}
.cs_row{
    display: flex;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    COMMON
::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::
                HEADER-START
::::::::::::::::::::::::::::::::::::::::::::: */

.header {
    background-color: transparent;
    padding: 8px 0;
    position: fixed;
    top: 40px !important;
    left: 0;
    right: 0;
    z-index: 100;
}
.header .custom-container{
	max-width: 100%;
}
#header .nav-header .nav-row .nav-logo .custom-logo{
	width: 200px;
		display: none;
	}
.header-btn{
  display: flex;
  gap: 15px;
}
.header-btn a{
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: right;
  color: #FFFFFF;
  padding: 22px;
  border-radius: 100px;
  border: 1px solid #FFFFFF;
}
.header-btn a img{
  margin-right: 10px;
}
.header-btn a:last-child{
  color: #060606;
  background-color: #fff;
}
/* :::::::::::::::::::::::::::::::::::::::::::::
                 HEADER-END
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
                BANNER-START
::::::::::::::::::::::::::::::::::::::::::::: */
.ss-hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  padding: 0 2rem;
  text-align: center;
  margin: 18px 19px 20px 19px;
}

.ss-hero-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 1028px;
    font-family:  var(--body-font);
}

.hero-content h1 {
    font-weight: 600;
    font-size: 65px;
    line-height: 75px;
    letter-spacing: 0%;
    text-align: center;
    color:#FFFFFF;
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: #F8F8F8;
    margin-bottom: 20px;
}

.hero-btn-container{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.hero-btn-container a {
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #060606;
    cursor: pointer;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    padding: 25px 35px;
	background-color: #fff;
}
.hero-btn-container a:nth-child(2) {
    background-color: transparent;
    color: #FFFFFF; 
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                 BANNER-END
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
                company-logos-start
::::::::::::::::::::::::::::::::::::::::::::: */


.company-logos{
  padding: 60px 0;
}
.c-logo{
  max-width: 962px;
  margin: 0 auto !important;
}
.c-logo .image{
  text-align: center;
	margin: 0 20px;
}
.c-logo .image img{
  margin: 0 auto;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                company-logos-end
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
              transform-factory-start
::::::::::::::::::::::::::::::::::::::::::::: */

.factory-container{
    /* background-image: url('/assets/images/factory-bg.png'); */
    background-color: #DBEAFF;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 26px 50px;
    margin-top: 19.78px;
    margin-bottom: 20.22px;
}
.factory-container h2{
    margin-bottom: 62px;
}
.transform-factory{
  padding: 100px 0;
}
.transform-factory-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec-title h2{
    font-family:  var(--body-font);
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #000000;
}
.sec-title h3{
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 31px;
  color: #0060EA;
  margin-bottom: 0;
}
.sec-title p{
    font-family:  var(--body-font);
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
}

.transform-factory .sec-title{
    width: 50%;
}
.transform-factory .sec-title h2{
    margin-bottom: 24px;
}
.transform-factory .sec-title p{
    margin-bottom: 35px;
}
.transform-factory .sec-title button{
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 100px;
    padding: 25px 35px;
    background: #060606;
}
.transform-factory-img{
    width: 50%;
    padding: 34px;
}
.transform-factory-img img{
  width: 100%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
              transform-factory-end
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
              type-video-start
::::::::::::::::::::::::::::::::::::::::::::: */

.type-video{
  padding: 100px 0;
}
.type-video .sec-title{
  text-align: center;

}
.type-video .sec-title h2{
    margin-bottom: 24px;
}
.type-video .sec-title p{
    color: #3A3A3A;
    margin-bottom: 24px;
}
.type-video .video-wrapper {
      position: relative;
      width: 100%;
      height: 497px;
	  border-radius: 25px;
      cursor: pointer;
	  overflow: hidden;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  display: flex;
	  justify-content: center;
	  align-items: center;
    }
.type-video-modal .modal-body video{
	width: 100%;
}
.type-video-modal .modal-dialog{
	max-width: 800px;
}
.type-video-modal .modal-header{
	border: none;
}
.type-video-modal .modal-header button{
	background-color: #fff;
    opacity: 1;
}
.type-video-modal .modal-content{
	background-color: transparent;
}
    
/* :::::::::::::::::::::::::::::::::::::::::::::
              type-video-end
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
            company-testimonials-start
::::::::::::::::::::::::::::::::::::::::::::: */

.company-testimonials{
  padding: 100px 20px;
}
.c-testimonials{
    background-image: url('../images/bg-frame.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    padding-top: 50px;
    font-family: var(--body-font);
}
.testimonial-slider{
  text-align: center;
}
.testimonial-slider .logo{
  text-align: center;
}
.testimonial-slider .logo img{
  margin: 0 auto;
}
.testimonial-slider .pro-img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto;
}
.testimonial-slider .pro-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-slider h2{
    font-weight: 600;
    font-size: 45px;
    line-height: 44px;
    letter-spacing: -2%;
    text-align: center;
    color: #060606;
    margin-bottom: 30px;
    margin-top: 30px;
}
.testimonial-slider .name{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color:#060606;
    margin-top: 16px;
    margin-bottom: 4px;
}
.testimonial-slider .designation{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #667085;
    margin-top: 0px;
    margin-bottom: 30px;
}
.c-progress {
  display: block;
  width: 30%;
  margin: 0 auto; 
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #B0DCFF;
  background-image: linear-gradient(to right, #0060EA, #0060EA);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .4s ease-in-out;
}
.c-sr-only {
position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
            company-testimonials-start
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
                 OPERATOR-START
::::::::::::::::::::::::::::::::::::::::::::: */

.operators{
    /* background: #F8F8F8 url(../images/operators-bg-frame.png); */
    background: #F8F8F8 url(../images/operators-dashboard-bg-frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}
.operators-content{
    display: flex;
    gap: 66px;
}
.operators-content .block{
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 100px;
}
.operators-content .block:last-child{
	margin-bottom: 0;
}
.operators-content .block .image{
  width: 55%;
  overflow: hidden;
  border-radius: 22px;
}
.operators-content .block .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.operators-content .block .sec-title{
  width: 40%;
}
.operators-slider{
    width: 94%;
    margin: 0 auto;
}
.progress {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-46%);
  width: 6px;
  height: 70vh;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(342.82deg, #0060EA 2.68%, #01BFFB 100%);
  transition: height 0.4s ease-in-out, width 0.4s ease-in-out;
}
.operators-content .sec-title h2{
  margin: 15px 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                 OPERATOR-END
::::::::::::::::::::::::::::::::::::::::::::: */






/* :::::::::::::::::::::::::::::::::::::::::::::
            solutions-section-start
::::::::::::::::::::::::::::::::::::::::::::: */

.solutions-section {
    background: #DBEAFF url(../images/solutions-section-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 3.125rem 1rem;
    border-radius: 2rem;
    text-align: center;
    margin: 20px;
  }
  
  .solutions-section h2 {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 35px;
    line-height: 43px;
    letter-spacing: 0%;
    text-align: center;
    color:  #060606;
    margin-bottom: 62px;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .solution-card {
    background: #FFFFFF4A;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
  }
  
  .solution-card:hover {
    transform: translateY(-4px);
  }
  
  .solution-card img {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
  }
  
  .solution-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .solution-card p {
    font-size: 15px;
	 line-height: 22px;
    color: #333;
  }
  
  .contact-card {
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact-btn {
    display: inline-block;
    margin-top: 0px;
    padding: 19.63px 27.49px;
    background: #000;
    color: #fff;
    border-radius: 78.53px;
    text-align: center;
    font-weight: 500;
    width: fit-content;
  }
  /* Responsive Layout */
@media (min-width: 600px) {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 900px) {
    .solutions-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .solutions-section.career-why-iot .solutions-grid{
        grid-template-columns: repeat(3, 1fr);
}
    .solutions-section.book-demo-why-iot .solutions-grid{
        grid-template-columns: repeat(2, 1fr);
}
  }

/* :::::::::::::::::::::::::::::::::::::::::::::
            solutions-section-end
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             whyiotiview-start
::::::::::::::::::::::::::::::::::::::::::::: */


.whyiotiview{
  padding: 50px 0;
}
.whyiotiview .custom-container{
  max-width: 840px;
}
.whyiotiview .sec-title{
  text-align: center;
  max-width: 657px;
  margin: 0 auto;
  margin-bottom: 45px;
}
.whyiotiview .sec-title h2{
  margin-bottom: 24px;
}
.whyioti-slider{
  padding-bottom: 44px;
}
.whyioti-slider .slick-prev,
.whyioti-slider .slick-next{
	display: none;
}
.whyioti-slider .slider-card {
  border-radius: 20px;
  padding: 40px 30px 40px 30px;
  transition: all 0.3s ease-in-out;
  margin: 25px;
  background: #F3F3F3;
  border: 1px solid #2E2E1F1F;
  width: 400px;
  height: 350px !important;
  transition: transform .5s ease;
  position: relative;
  transform: scale(0.7)  translate(640px);
}
.whyioti-slider .slider-card.slick-current{
  background-color: #F3F3F3;
  box-shadow: 0px 4px 44.8px 0px #D8E8FF;
}
.slider-card.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-250px);
  z-index: 10;
}

.slider-card.slick-slide.slick-center + .slick-slide + .slider-card.slick-slide {
  transform: scale(0.7)  translate(-640px);
  z-index: 5;
}

.slider-card.slick-slide.slick-active {
  transform: scale(0.8) translate(250px);
}

.slider-card.slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
 
}
.slider-card .icon{
  margin-bottom: 10px;
}
.slider-card h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.15px;
    text-align: center;
    color: #060606;
    margin-bottom: 16px;
}
.whyioti-s-slider .slider-card h3{
  text-align: left;
}
.slider-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.slider-card ul li {
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.12px;
    vertical-align: middle;
    color: #3A3A3A;
    margin-bottom: 16px;
}

.slider-card ul li span {
  color: #007BFF;
  margin-right: 10px;
}
.slider-card p {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #3A3A3A;
  margin-bottom: 0;
}
.slider-progress {
  margin-top: 30px;
}

.progress-bar {
  width: 60%;
  height: 5px;
  background-color: #e0e0e0;
  border-radius: 100px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-bar .progress {
  width: 33%; 
  height: 100%;
  background-color: #2196f3;
  border-radius: 100px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             whyiotiview-end
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
             contact-section-start
::::::::::::::::::::::::::::::::::::::::::::: */


.contact-section{
  padding: 50px 0 100px;
}
.contact-section-content {
  display: flex;
  justify-content: space-between;
}
.contact-form-content{
  width: 45%;
}
.contact-form-content .sec-title{
  margin-bottom: 48px;
}
.contact-form-content .sec-title h2{
  margin: 15px 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #3A3A3A;
  box-shadow: 0px 1px 2px 0px #1018280D;
  border: 1px solid #D0D5DD;
  background: #FFFFFF;


}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: #3A3A3A;
}
.checkbox-label a{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: #3A3A3A;
}
.checkbox-label label{
	display: flex;
	align-items: center;
}
.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  border: 1px solid #D0D5DD;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border-width: 1px;
}

.contact-form button {
  padding: 25px 35px;
  border: none;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 9999px;
  cursor: pointer;
  width: fit-content;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  margin-top: 8px;
}
.contact-form input.wpcf7-submit {
  padding: 25px 35px;
  border: none;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 9999px;
  cursor: pointer;
  width: fit-content;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  margin-top: 8px;
}




.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #3A3A3A;
  margin-bottom: 6px;
}


.contact-image-bg {
  width: 45%;
  background-image: url("../images/operators-dashboard-bg-frame.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CDE4FF;
  padding: 100px 50px;
}

.contact-image-bg img{
    width: 100%;
    border-radius: 20.24px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             contact-section-end
::::::::::::::::::::::::::::::::::::::::::::: */



/* footer section start  */

.footer {
  background: #DBEAFF url("../images/footer-bg-frame.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 45px 45px 0 0;
  font-family: var(--body-font);
}


.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 86px 0px 95px 0px;
}


.footer-brand {
    max-width: 26%;
}


.footer-logo {
  width: 120px;
  margin-bottom: 35px;
}


.footer-brand p {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #060606;
  margin-bottom: 35px;
}


.social-icons a {
  margin: 0 8px;
  display: inline-block;
}


.footer-links {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 2rem;
}


.footer-column h4 , .accordion-button{
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 17px;
  line-height: 31px;
  letter-spacing: 0%;
  color: #060606;
  margin-bottom: 17px;
}
.accordion-button{
  margin-bottom: 0;
}
.accordion-body{
  padding-block: 0;
  padding-inline: 0;
}


.footer-column ul, .accordion-body ul {
  list-style: none;
  padding: 0;
}


.footer-column a, .accordion-body a {
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  line-height: 53px;
  letter-spacing: 0%;
  color: #060606;
}


.footer hr {
  border: 1px solid #060606;
  margin: 0;
  opacity: 1;
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #444;
  text-align: center;
  padding: 28px 0 58px;
}
.footer-bottom ul{
	display: flex;
    margin-bottom: 0;
    padding-left: 0;
}
.footer-bottom ul li{
    list-style-type: none;
}
.footer-bottom ul li a{
  font-weight: 400;
  font-size: 17px;
  color: #3A3A3A;
  position: relative;
  padding: 0 8px;
}
.footer-bottom ul li:last-child a{
  padding-right: 0;
}
.footer-bottom ul li a::before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #444;
}
.footer-bottom ul li:last-child a::after{
	display: none;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.footer-bottom p{
  font-weight: 400;
  font-size: 17px;
  color: #3A3A3A;
  margin-right: 8px;
  margin-bottom: 0;
}
.accordion-item{
  background: transparent;
  border: none;
}
.accordion-button{
  background: transparent;
  padding-inline: 0;
}
.accordion-button:not(.collapsed){
  background: transparent;
  box-shadow: none;
  color: #060606;
  padding-inline: 0;
}
.accordion-button:focus{
  border: none;
  box-shadow: none;
}



/* footer section end  */


/* contact-us page */

 /* :::::::::::::::::::::::::::::::::::::::::::::
           common banner css start 
::::::::::::::::::::::::::::::::::::::::::::: */
.common-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    text-align: center;
    margin: 18px 19px 20px 19px;
    flex-direction: column;
    font-family: var(--body-font);
    position: relative;
}
.common-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}
.common-banner-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.common-banner-gradient{
    background-color: #00000066;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 45px;


}
.common-banner-content h1{
    font-weight: 600;
    font-size: 65px;
    line-height: 75px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.common-banner-content p{
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: #F8F8F8;
}
.blog-banner .common-banner-content p{
font-size: 17px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;
}
.blog-banner .common-banner-content{
  max-width: 762px;
}      

/* :::::::::::::::::::::::::::::::::::::::::::::
            common banner css end
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
            help section start
::::::::::::::::::::::::::::::::::::::::::::: */

.help-section {
  background-image: url("/assets/images/footer-bg-frame.png");
  padding: 50px 26px;
  border-radius: 20px;
  text-align: center;
  background-color: #DBEAFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--body-font);
  margin: 20px;
  margin-top: 100px;
}

.help-section h2 {
  margin-bottom: 62px;
}

.help-grid {
  display: grid;
  gap: 13px;
    max-width: 1219px;
    margin-inline: auto; ;
}
.help-grid-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px; 
    width: 100%;
}
.help-grid-bottom{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 2fr));
    gap: 13px;
    width: 100%;
}

.help-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.help-card:hover {
  transform: translateY(-5px);
}

.help-card img {
  width: 24px;
  height: 24px;
}

.help-card p {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.15px;
    color:  #060606;
}
.costom-p{
    max-width: 337px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             help section end 
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             Contact Information section start
::::::::::::::::::::::::::::::::::::::::::::: */
.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 0;
    margin: auto;
    gap: 2rem;
    font-family: var(--body-font);
  }
  .contact-info-left{
    width: 45%;
  }
  .contact-info-left-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
  }
  .contact-info-right{
    width: 45%;
  }
  .contact-info-left .sec-title p{
    color: #3A3A3A;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-top: 15px;
  }
  .contact-info-list a{
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
     max-width: 70%;
     margin-bottom: 0;
  }
  .contact-info-list p{
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
     max-width: 70%;
     margin-bottom: 0;
  }
  .contact-info-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .contact-info-right .contact-description{
    color: #3A3A3A;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-top: 15px;
  }
  
/* :::::::::::::::::::::::::::::::::::::::::::::
             Contact Information section end
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             Stay Connected section start 
::::::::::::::::::::::::::::::::::::::::::::: */
 .connection-compnay{
    background-image: url("/assets/images/stay_connected-img.png");
    padding: 50px 40px;
    border-radius: 25px;
    background-color: #DBEAFF;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--body-font);
 }
 .connection-compnay h2{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: -1.5%;
    color: #000000;
 }
 .connection-compnay p{
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color:#060606;
 }
.connection-compnay p a{
	color: inherit;
}
 .connection-compnay p a{
    font-weight: 700;
 }
 .connection-compnay .sec-title p{
    color: #3A3A3A;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
 }
 .connection-compnay-container{
    display: grid;
    grid-template-columns:  1fr 1fr;
    gap: 2rem;
    padding: 100px 0;
 }
 .connection-compnay button{
    padding: 25px 35px;
    gap: 10px;
    border-radius: 100px;
    background:  #060606;
    color: #FFFFFF;
    margin-top: 25px;
 }
  .connection-compnay button img{
    margin-right: 10px;
  }
  .connection-compnay .social-icons{
    margin-top: 45px;
  }
.connection-compnay .social-icons a {
    margin-right: 1rem;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             Stay Connected section end 
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
                IoTiView Blog section start
::::::::::::::::::::::::::::::::::::::::::::: */
.blog-container{
    font-family: var(--body-font);
    background-color: #F8F8F8;
	padding: 100px 0;

}
.blog-container .sec-title h2{
    line-height: 43px;
    margin-bottom: 55px;
    text-align: center;
}
.blog-card{
    background-color: #FFFFFF;
    border-radius: 25px;
}
.blog-card > img{
    width: 100%;
    height: 273px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.blog-card h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #060606;
}
.blog-card p{
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #060606;
    margin-bottom: 0;
}
.blog-card .learn-more{
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.12px;
    vertical-align: middle;
    color: #060606;
    margin-right: 5px;
    cursor: pointer;
}
.blog-card-content{
    padding: 30px 52px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-card-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.blog-card-content .resourceActionWrap{
	display: flex;
	gap: 16px;
}
.blog-card-content .resourceActionWrap p{
	display: flex;
	align-items: center;
	gap: 5px;
	color: #060606;
	font-weight: 600;
}
.blog-card-content .resourceActionWrap img{
	filter: brightness(0%);
}


/* :::::::::::::::::::::::::::::::::::::::::::::
                 IoTiView Blog section end
::::::::::::::::::::::::::::::::::::::::::::: */


/* contact-us page */




/* service page */


 /* :::::::::::::::::::::::::::::::::::::::::::::
        Monitoring section start 
::::::::::::::::::::::::::::::::::::::::::::: */
.monitoring-container{
    text-align: center;
	padding: 100px 0;
    font-family: var(--body-font);
}
.monitoring-container .sec-title{
    max-width: 745px;
    margin: 0 auto;
}
.monitoring-container h2{
    margin-bottom: 24px;
}
.monitoring-container p{
    margin-bottom: 24px;
    margin-inline: auto;
    color: #3A3A3A;
}
.monitoring-btn-container{
    gap: 15px;
    display: flex;
    justify-content: center;
}
.common-button-blck{
    padding: 25px 35px;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border-radius: 9999px;
    cursor: pointer;
    width: fit-content;
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
	border: 1px solid  #060606;
	display: inline-block;
}
.common-button-white{
	padding: 25px 35px;
    border: none;
    font-weight: bold;
    border-radius: 9999px;
    cursor: pointer;
    width: fit-content;
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
	border: 1px solid  #060606;
    color: #060606;
    background-color: #fff;
	display: inline-block;

}
  
 /* :::::::::::::::::::::::::::::::::::::::::::::
        Monitoring section end
::::::::::::::::::::::::::::::::::::::::::::: */


 /* :::::::::::::::::::::::::::::::::::::::::::::
        The Challenge section start 
::::::::::::::::::::::::::::::::::::::::::::: */

.challenge-sec{
	padding: 100px 0;
}
.challenge-container{
    display: flex;
    justify-content: space-between;
    font-family: var(--body-font);
}
.challenge-content{
    width: 45%;
}
.challenge-image-container{
    width: 45%;
}
.challenge-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}
.challenge-list-container{
    display: flex;
    justify-content: space-between;
}
.challenge-list-container ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.challenge-list-container ul li{
	display: flex;
	align-items: baseline;
	font-weight: 600;
    font-size: 17px;
    line-height: 30px;
    color: #000;
}
.challenge-list-container ul li i{
    background: linear-gradient(342.82deg, #0060EA 2.68%, #01BFFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}
.challenge-title{
    font-weight: 600;
    line-height: 31px;
    background: linear-gradient(342.82deg, #0060EA 2.68%, #01BFFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.sec-title .challenge-title-heading{
    margin-bottom: 15px;

}
.sec-title .challenge-title-para{
    margin-bottom: 35px;
}

 /* :::::::::::::::::::::::::::::::::::::::::::::
       The Challenge section end 
::::::::::::::::::::::::::::::::::::::::::::: */


 /* :::::::::::::::::::::::::::::::::::::::::::::
       The Solution section start
::::::::::::::::::::::::::::::::::::::::::::: */
.solution-section{
    background: #DBEAFF url(/assets/images/solution-card-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-inline: 25px ;
    border-radius: 25px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    font-family: var(--body-font);
}
.solution-container{
    padding-top: 50px;
    padding-bottom: 50px;

}
.solution-content-text{
    text-align: center;
    max-width: 60%;
    margin-inline: auto;
    margin-bottom: 62px;
}
.solution-container .help-card .card-sub-pera{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.12px;
    color:  #060606;
}
.sec-title .solution-title-heading{
    margin-bottom: 15px;
}
.sec-title .solution-title{
    background: linear-gradient(342.82deg, #0060EA 2.68%, #01BFFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 17px;
    line-height: 31px;
    text-align: center;
    margin-bottom: 15px;
}


 /* :::::::::::::::::::::::::::::::::::::::::::::
       The Solution section end
::::::::::::::::::::::::::::::::::::::::::::: */

 /* :::::::::::::::::::::::::::::::::::::::::::::
       Asset Reliability section Start 
::::::::::::::::::::::::::::::::::::::::::::: */
.capabilities-section {
    padding: 100px 0;
}
.capabilities-section .custom-container{
	max-width: 990px;
}
.reliability-content{
    display: flex;
    gap: 66px;
}
.reliability-content .slick-track{
    padding: 10px 0;
}
.reliability-container{
    display: flex !important;
    justify-content: space-between;
    font-family: var(--body-font);
    width: 100%;
}
.reliability-left{
    width: 44%;
    text-align: left;
}
.reliability-right{
    width: 49%;
    text-align: left;
	position: relative;
	padding-top: 120px;
}
.reliability-right h2{
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	color: #060606;
	position: absolute;
	top: 0;
    margin-bottom: 88px;
}
/* .reliability-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
} */


.capabilities-section .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #EFF1F3;
  box-shadow: 0 0 0 1px #e0e0e0;
  transition: transform 0.3s ease;
}

.capabilities-section .accordion-item:hover {
  transform: scale(1.02);
}

.capabilities-section .accordion-button {
  border-radius: 12px !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 16px;
  background-color: #f8f9fb;
  box-shadow: none;
  background-color: transparent;
}

.capabilities-section .accordion-button:not(.collapsed) {
  color: #0a0a0a;
}

.capabilities-section .accordion-body {
  font-size: 14px;
  color: #444;
  padding: 0 1rem 1rem;
}

#accordionImage {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 45px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  object-position: right top;
}

 /* :::::::::::::::::::::::::::::::::::::::::::::
       Asset Reliability section End
::::::::::::::::::::::::::::::::::::::::::::: */


 /* :::::::::::::::::::::::::::::::::::::::::::::
       Analytics and Continuous section Start
::::::::::::::::::::::::::::::::::::::::::::: */
.analytics-container{
	padding: 100px 0;
    font-family: var(--body-font);
}
.analytics-container h2{
    text-align: center;
    text-transform: capitalize;
    line-height: 43px;
}
.analytics-card-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px;
    margin-top: 55.5px;
}
.analytics-card-container img{
    height: 282px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}
.analytics-card{
       border-radius: 25px; 
}

.analytics-card-container .card-1 {
    background: #FFE4F9;
}

.analytics-card-container .card-2{
    background: #FFF8D1;
}
.analytics-card-container .card-3{
    background: #CCE4FF;
}

.sec-title .analytics-card-container .card-1 .analytics-card-content .card-title{
    color: #7D396E;
}

.sec-title .analytics-card-container .card-1 .analytics-card-content .card-sub-pera{
    color: #7D396E;
}

.sec-title .analytics-card-container .card-2 .analytics-card-content .card-title{
    color: #5E5627;
}

.sec-title .analytics-card-container .card-2 .analytics-card-content .card-sub-pera{
    color: #5E5627;
}

.sec-title .analytics-card-container .card-3 .analytics-card-content .card-title{
    color: #2A4A6E;
}

.sec-title .analytics-card-container .card-3 .analytics-card-content .card-sub-pera{
    color: #2A4A6E;
}

.analytics-card-content {
    padding: 40px 30px 60px 30px;
    text-align: left;
}

.sec-title .analytics-card-container .card-title{
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.15px;
    margin-bottom: 16px;
}

.sec-title .analytics-card-container .card-sub-pera{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.12px;
    vertical-align: middle;
}

 /* :::::::::::::::::::::::::::::::::::::::::::::
       Analytics and Continuous section End
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
      Why IoTiView Stands Out - service page section start
::::::::::::::::::::::::::::::::::::::::::::: */
.whyioti-service-icon{
    margin-bottom: 10px;
}

 /* :::::::::::::::::::::::::::::::::::::::::::::
      Why IoTiView Stands Out - service page section end
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
  Industry-Specific Solutions  section start 
::::::::::::::::::::::::::::::::::::::::::::: */

.industry-section {
  font-family: var(--body-font);
  text-align: center;
  border-radius: 20px;
  /* background-color: #e0f0ff; */
  /* background-image: url('/assets/images/industry-solution-bg.png'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec-title .industry-title {
    line-height: 40px;
    margin-bottom: 15px;
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 55px;
  margin-top: 55px;
}

.industry-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  background: #EFF1F3;
  border: 1.05px solid #B3C6D7
}

.industry-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  background: transparent;
  border: 1.05px solid #B3C6D7;
}

.industry-card.active {
  background: #e8f4ff;
}
.industry-card-left{
    width: 50%;
    text-align: left;
}
.industry-card-right{
    width: 50%;
        text-align: left;
}

.sec-title .industry-card h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -1.5%;
    color: #000000;
}
.sec-title .industry-card h3 span{
    color: #00000026;
    margin-right: 12px;
}
.sec-title .industry-card p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.12px;
    color: #060606;
    margin-bottom: 0;
}
.industry-bottom-img{
    margin-top: 55px;
    margin-bottom: 62.82px;
}
.industry-bottom-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
 Industry-Specific Solutions  section end 
::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::
  Service page Get in touch start
::::::::::::::::::::::::::::::::::::::::::::: */
.contact-form-container h3{
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color:  #3A3A3A;
    margin-bottom: 30px;
}
/* :::::::::::::::::::::::::::::::::::::::::::::
    Service page Get in touch end
::::::::::::::::::::::::::::::::::::::::::::: */



/* service page */


/* intelligence page */

.intelligence{
  padding: 52px 0;
}
.intelligence-content{
  display: flex;
  align-items: center;
  gap: 100px;
}
.intelligence-content .sec-title{
  width: 45%;
}
.intelligence-content .sec-title h2{
  margin: 15px 0;
}
.intelligence-content .intelligence-boxes{
    width: 55%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 11px;
}
.intelligence-boxes .box{
  width: 49%;
  padding: 38px 30px;
  border-radius: 25px;
  background-color: #FFE4F9;
  border: 1px solid #2E2E1F1F;
}
.intelligence-boxes .box:nth-child(2){
  background-color: #FFF8D1;
}
.intelligence-boxes .box:nth-child(3){
  background-color: #CCE4FF;
}
.intelligence-boxes .box:nth-child(4){
  background-color: #FFFFFF;
}
.intelligence-boxes .box h4{
  font-weight: 500;
  font-size: 35px;
  line-height: 100%;
  letter-spacing: 0.15px;
  color: #060606;
  margin-bottom: 0;
}
.intelligence-boxes .box h5{
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.15px;
  vertical-align: middle;
  margin: 5px 0 16px;
}
.intelligence-boxes .box p{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.12px;
  vertical-align: middle;
  color: #3A3A3A;
  margin-bottom: 0;
}

/* intelligence page */

/* blog page */

.blog-search{
  max-width: 490px;
  margin: 0 auto;
  margin-bottom: 22px;
}
.blog-search form{
  position: relative;
}
.blog-search form input{
  height: 70px;
  padding: 23px 16px 23px 48px;
}
.blog-search form button{
  position: absolute;
  left: 4px;
  top: 0;
  padding: 20px 10px !important;
  border: none;
}
.blog-list{
  padding: 100px 0 10px;
}
.b-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 10px;
}
.b-list li a{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 12px 20px;
  background-color: transparent;
  color: #3A3A3A;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  display: inline-block;
}
.b-list li a:active,.b-list li a:hover{
  background-color: #060606;
  color: #FFFFFF;
  border-color: #060606;
}

.stay-connect{
  margin-bottom: 100px;
}
.stay-connect-content{
  background-image: url('../images/bg-frame.png') !important;
  padding: 50px 40px;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
}
.stay-connect-content .sec-title p{
  margin: 20px 0 45px;
}
.stay-btn{
  display: flex;
  gap: 25px;
}

/* blog page */



/* single page */

.single .header{
  background-color: #000;
  top: 0 !important;
}
.single-post .header{
  background-color: #000;
  top: 0 !important;
}

.single-page-content{
  max-width: 964px;
  margin: 0 auto;
  padding: 160px 0 10px;
}
.single-page-content .title{
  text-align: center;
  margin-bottom: 50px;
}
.single-page-content .title h2{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12px;
  color: #3A3A3A;
  padding-bottom: 0;
}
.single-page-content .title h1{
  font-size: 65px;
  font-weight: 600;
  color: #060606;
  padding: 12px 0 20px;
}
.single-page-content .title p{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12px;
  color: #3A3A3A;
  margin-bottom: 0;
}
.single-page-content .image{
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  margin: 50px 0 40px;
}
.single-page-content .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-page-content p{
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}
.single-page-content h3{
  font-weight: 600;
  font-size: 45px;
  line-height: 70px;
  color: #060606;
  margin-top: 40px;
}
.single-page-content h4{
  font-weight: 600;
  font-size: 35px;
  color: #060606;
  margin-top: 40px;
}
.single-page-content ul li{
    font-size: 17px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}
.single-page-content ul.side-list{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 40px 0;
}
.single-post .blog-container{
  max-width: 964px;
  margin: 0 auto;
}
.single-post .blog-card-container{
  grid-template-columns: 1fr 1fr;
}
.single-post .blog-card-container .blog-card:last-child{
	display: none;
}

.pagination{
	width: 100%;
	gap: 10px;
	margin-top: 60px;
}
.pagination .page-numbers{
	background: #ccc;
    padding: 10px;
    color: #000;
	border-radius: 4px;
}
.pagination .current.page-numbers {
	background-color: #060606;
	color: #fff;
}
.pagination .page-numbers:hover{
	background-color: #060606;
	color: #fff;
}
/* single page */



/* policy */


.page-template-template-terms-condition .nav-header .nav-row .menu-container .nav-menu,
.page-template-template-policy .nav-header .nav-row .menu-container .nav-menu{
  background: #C5C5C530;
  backdrop-filter: blur(56.5px);
}
.page-template-template-terms-condition .nav-header .nav-row .menu-container .nav-menu>li,
.page-template-template-policy .nav-header .nav-row .menu-container .nav-menu>li{
  color: #060606;
}
.page-template-template-terms-condition .header-fixed .nav-header .nav-row .menu-container .nav-menu>li,
.page-template-template-policy .header-fixed .nav-header .nav-row .menu-container .nav-menu>li{
  color: #fff;
}
.page-template-template-terms-condition .nav-header .nav-row .menu-container .nav-menu>li>a:hover,
.page-template-template-policy .nav-header .nav-row .menu-container .nav-menu>li>a:hover{
  color: #fff;
    background-color: #060606;
}
.page-template-template-terms-condition .header-fixed .nav-header .nav-row .menu-container .nav-menu>li>a:hover,
.page-template-template-policy .header-fixed .nav-header .nav-row .menu-container .nav-menu>li>a:hover{
  color: #060606;
    background-color: #fff;
}
.page-template-template-terms-condition .header-btn a,
.page-template-template-policy .header-btn a{
  color: #060606;
  border-color: #060606;
}
.page-template-template-terms-condition .header-fixed .header-btn a,
.page-template-template-policy .header-fixed .header-btn a{
  color: #fff;
  border-color: #fff;
}
.page-template-template-terms-condition .header-btn a:last-child,
.page-template-template-policy .header-btn a:last-child {
    color: #fff;
    background-color: #060606;
}
.page-template-template-terms-condition .header-fixed .header-btn a:last-child,
.page-template-template-policy .header-fixed .header-btn a:last-child {
    color: #060606;
    background-color: #fff;
}
.page-template-template-terms-condition .header-btn a img,
.page-template-template-policy .header-btn a img{
  filter: brightness(0%);
}
.page-template-template-terms-condition .header-fixed .header-btn a img,
.page-template-template-policy .header-fixed .header-btn a img{
  filter: none;
}
.page-template-template-terms-condition #header .nav-header .nav-row .nav-logo a img,
.page-template-template-policy #header .nav-header .nav-row .nav-logo a img{
  filter: brightness(0%);
}
.page-template-template-terms-condition #header.header-fixed .nav-header .nav-row .nav-logo a img,
.page-template-template-policy #header.header-fixed .nav-header .nav-row .nav-logo a img{
  filter: none;
}




.page-template-template-terms-condition .common-banner-gradient,
.page-template-template-policy .common-banner-gradient{
  display: none;
}
.hide-gradient-content h1 {
  color: #060606;
}
.policy-sec{
  padding: 50px 0;
}
.policy-sec .custom-container{
  max-width: 966px;
  margin: 0 auto;
}
.policy-sec p{
font-weight: 500;
font-size: 17px;
line-height: 30px;
letter-spacing: 0.12px;
color: #3A3A3A;
}
.policy-sec p a{
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #00B6F8;
}
.policy-sec h2{
font-weight: 600;
font-size: 45px;
line-height: 70px;
color: #060606;
}
.policy-sec h3{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
  margin-top: 20px;
  margin-bottom: 15px;
}
.policy-sec ul{
  list-style: none;
  padding-left: 0;
}
.policy-sec ul li{
  margin-bottom: 8px;
}
.policy-sec .list-flex li{
  display: flex;
  gap: 8px;
}
.policy-sec .list-block li{
  display: block;
}
.policy-sec li{
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}
.policy-sec li a{
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #00B6F8;
}
.policy-sec .form-card{
  background: linear-gradient(to bottom right, #A3C6FF, #E3F2FD);
  border-radius: 15px;
  padding: 30px;
  max-width: 540px;
  margin: 100px auto;
}
.policy-sec .form-card form{
  margin: 48px 0 24px;
}
.policy-sec .form-card h3{
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  color: #060606;
  text-align: center;
}
.policy-sec .form-card p{
  text-align: center;
}
.policy-sec .form-card .form-group{
  margin-bottom: 24px;
}
.policy-sec .form-card input{
  width: 100%;
  height: 48px;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #D0D5DD
}
.policy-sec .form-card .common-button-blck{
  width: 100%;
  text-align: center;
}
.policy-sec table {
  width: 100%;
  margin-top: 1rem;
  border-radius: 15px;
  border: 0.5px solid #00000033;
  margin-bottom: 15px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.policy-sec th, td {
  padding: 10px;
  text-align: center;
  border: 0.5px solid #00000033;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}


th {
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}




/* policy */



.career-banner-bottom{
  padding: 100px 0;
}
.career-banner-bottom .content{
  max-width: 929px;
  margin: 0 auto;
}
.career-banner-bottom .content p{
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #3A3A3A;
  text-align: center;
}

.solutions-section.career-why-iot{
  padding: 50px 16px 100px;
}


.career-value .whyioti-slider .slider-card{
  height: 240px !important;
}

.career-life{
  padding: 100px 0;
}
.career-life .sec-title{
  text-align: center;
  margin-bottom: 55px;
}
.career-life .sec-title h2{
  margin-bottom: 15px;
}
.career-life .sec-title h3{
  font-weight: 700;
  color: #000000;
  padding-top: 20px;
}
.career-life-images{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}
.career-life-images .image{
  height: 434px;
  border-radius: 45px;
  overflow: hidden;
}
.career-life-images .image:last-child{
   grid-column: span 2 / span 2;
}
.career-life-images .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.career-open-positions{
  padding: 40px 0 80px;
}
.career-open-positions .sec-title{
  margin-bottom: 55px;
}
.career-open-positions .sec-title h2{
  font-size: 30px;
  text-align: center;
}
.career-open-positions .position-boxes{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
.career-open-positions .position-boxes .box{
  width: 47%;
  border-radius: 25px;
  padding: 40px 30px;
  background-color: #FFE4F9;
}
.career-open-positions .position-boxes .box .title{
  display: flex;
  align-items: center;
}
.career-open-positions .position-boxes .box .title .left-box{
  width: 80%;
}
.career-open-positions .position-boxes .box .title .left-box h3{
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.15px;
  color: #7D396E;
  margin-bottom: 16px;
}
.career-open-positions .position-boxes .box .title .left-box ul{
  display: flex;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.career-open-positions .position-boxes .box .title .left-box ul li{
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.12px;
  color: #7D396E;
  padding: 5px 10px;
  border-radius: 40px;
}
.career-open-positions .position-boxes .box .title .left-box ul li:first-child{
  background-color: #DAB8D2;
}
.career-open-positions .position-boxes .box .title .left-box ul li:last-child{
  border: 1px solid #DAB8D2
}
.career-open-positions .position-boxes .box .title .left-box ul li i{
  margin-right: 5px;
}
.career-open-positions .position-boxes .box .title .right-box{
  width: 20%;
  text-align: center;
}
.career-open-positions .position-boxes .box .title .right-box .image{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  background-color: #DAB8D2;
  border-radius: 50%;
  margin: 0 auto;
}
.career-open-positions .position-boxes .box .desc{
  padding: 16px 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DAB8D2
}
.career-open-positions .position-boxes .box h4{
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.12px;
  color: #7D396E;
  margin-bottom: 10px;
}
.career-open-positions .position-boxes .box  p,
.career-open-positions .position-boxes .box  .requirements li{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.12px;
  color: #7D396E;
  margin-bottom: 0;
}
.career-open-positions .position-boxes .box  .requirements{
  margin-bottom: 45px;
}
.career-open-positions .position-boxes .box  .requirements ul{
  padding-left: 0;
  list-style: none;
}
.career-open-positions .position-boxes .box  .requirements ul li{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.career-open-positions .position-boxes .box .apply-btn a{
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #060606;
  padding: 25px;
  border-radius: 100px;
}


.career-open-positions .position-boxes .box:nth-child(2){
  background-color: #CCE4FF;
}
.career-open-positions .position-boxes .box:nth-child(2) .title .left-box ul li{
  color: #2A4A6E;
}
.career-open-positions .position-boxes .box:nth-child(2) .title .left-box ul li:first-child{
  background-color: #98C9FF;
}
.career-open-positions .position-boxes .box:nth-child(2) .title .left-box ul li:last-child{
  border: 1px solid #98C9FF;
}
.career-open-positions .position-boxes .box:nth-child(2) .title .right-box .image{
  background-color: #98C9FF;
}
.career-open-positions .position-boxes .box:nth-child(2) .title .left-box h3{
  color: #2A4A6E;
}
.career-open-positions .position-boxes .box:nth-child(2) h4{
  color: #2A4A6E;
}
.career-open-positions .position-boxes .box:nth-child(2) p,
.career-open-positions .position-boxes .box:nth-child(2) .requirements li{
  color: #2A4A6E;
 }




.faq{
  padding: 20px 0 100px;
}
.faq .sec-title{
  margin-bottom: 55px;
}
.faq .sec-title h2{
  text-align: center;
}
.faq .accordion{
  max-width: 768px;
  margin: 0 auto;
}
.faq .accordion .accordion-item{
  padding: 20px 0 26px;
  border-bottom: 1px solid #EAECF0;
}
.faq .accordion .accordion-item:last-child{
  border: none;
}
.faq .accordion .accordion-button{
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.12px;
  color: #060606;
}
.faq .accordion .accordion-body{
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
  padding-right: 28px;
}




/* book-demo */

.immediate-assistance{
  padding: 10px 0 50px;
}
.immediate-assistance .immediate-assistance-content{
  background-image: url(../images/bg-frame.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.immediate-assistance .immediate-assistance-content .sec-title{
  width: 40%;
}
.immediate-assistance .immediate-assistance-content .sec-title h2{
  margin-bottom: 15px;
}
.immediate-assistance .immediate-assistance-content .sec-title p{
  margin-bottom: 0;
}
.immediate-assistance .immediate-assistance-content .contact{
  width: 25%;
  list-style: none;
  padding-left: 0;
}
.immediate-assistance .immediate-assistance-content .contact li{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.immediate-assistance .immediate-assistance-content .contact li:last-child{
  margin-bottom: 0;
}
.immediate-assistance .immediate-assistance-content .contact li p{
  margin-bottom: 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #3A3A3A;
}
.immediate-assistance .immediate-assistance-content .contact li a{
  color: inherit;
}
.immediate-assistance .immediate-assistance-content .contact li:last-child a{
  color: #00B6F8;
}

.book-demo-bottom-text{
  padding: 50px 0 100px;
}
.book-demo-bottom-text .content{
  max-width: 968px;
  margin: 0 auto;
  text-align: center;
}
.book-demo-bottom-text .content p{
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  color: #3A3A3A;
}


/* book-demo */



/* about-us */

.who-we{
  position: relative;
}
.who-we::before{
  content: url(../images/who-we-bg-frame.png);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.who-we-content{
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.who-we-content .image{
  width: 55%;
  height: 570px;
  border-radius: 45px;
  overflow: hidden;
}
.who-we-content .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-we-content .sec-title{
  width: 45%;
}
.who-we-content .sec-title ul{
  padding-left: 0;
  list-style: none;
}
.who-we-content .sec-title ul li{
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 15px;
}
.who-we-content .sec-title ul li:last-child{
  margin-bottom: 0;
}
.who-we-content .sec-title ul li i{
  color: #0060EA;
}


.about-our-vision{
  padding: 100px 0;
}
.about-our-vision .sec-title{
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.about-our-vision .image{
  height: 546px;
  border-radius: 45px;
  overflow: hidden;
}
.about-our-vision .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.immediate-assistance .immediate-assistance-content .contact.join-button{
  text-align: right;
}


.our-leadership{
  padding: 100px 24px;
}
.our-leadership .sec-title{
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.our-leadership .sec-title p{
  margin-top: 12px;
}
.our-leadership-slider .box{
  margin: 0 10px;
  background-color: #00ACF685;
  backdrop-filter: blur(219.89999389648438px);
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  position: relative;
  display: flex;
  align-items: end;
}
.our-leadership-slider .box img{
  width: 100%;
}
.our-leadership-slider .box .text{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -209px;
    z-index: 1;
    transition: 300ms ease-in all;
    padding: 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(10deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 82.34%);

}
.our-leadership-slider .box .text h3{
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.15px;
  color: #F8F8F8;
}
.our-leadership-slider .box .text h4{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.12px;
  color: #F8F8F8;
  margin-bottom: 20px;
}
.our-leadership-slider .box .text p{
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12px;
  color: #FFFFFF;

}
.our-leadership-slider .box:hover .text{
    height: 100%;
    bottom: 0;
    background: #015EEA;
}

.our-leadership-slider .slick-dots{
  bottom: -52px;
}
.our-leadership-slider .slick-dots li button:before{
  font-size: 52px;
}
.our-leadership-slider .slick-dots li.slick-active button:before{
  color:  #0060EA;

}


/* about-us */

/* team */

.solutions-section .sec-title{
  max-width: 787px;
  margin: 0 auto;
  margin-bottom: 62px;
}
.solutions-section .sec-title h2{
  margin-bottom: 12px;
}



.team-vision .sec-title p{
  font-size: 30px;
  line-height: 42px;
  color: #3A3A3A;
}



.our-leadership-boxes{
  position: relative;
  z-index: 1;
}
.our-leadership-boxes .panel{
  background-color: #E5F0FF;
  position: relative;
  height: 100vh;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  top: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 25px;
  margin-bottom: 20px;
  padding: 50px;
}
.after-section {
  height: 100vh;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.our-leadership-boxes .panel:last-child{
  margin-bottom: 0;
}
.our-leadership-boxes .panel .image{
  width: 44%;
  background-color: #00ACF685;
  border-radius: 25px;
  height: 480px;
  overflow: hidden;
}
.our-leadership-boxes .panel .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-leadership-boxes .panel .text{
  width: 56%;
}
.our-leadership-boxes .panel .text h3{
  font-weight: 600;
  font-size: 25px;
  line-height: 28px;
  color: #060606;
}
.our-leadership-boxes .panel .text h4{
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #3A3A3A;
  margin: 8px 0 15px;
}
.our-leadership-boxes .panel .text p{
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #3A3A3A;
  margin-bottom: 0;
}

/* team */



.shop-floor{
  padding: 100px 0;
}
.shop-floor .sec-title{
  text-align: center;
  margin-bottom: 60px;
}
.shop-floor-slider .sfblock{
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
  margin-bottom: 40px;
}
.shop-floor-slider .sfblock:last-child{
  margin-bottom: 0;
}
.shop-floor-slider .text{
  width: 40%;
}
.shop-floor-slider .text h3{
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}
.shop-floor-slider .text p{
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
  margin-bottom: 35px;
}
.shop-floor-slider .text ul{
  list-style: none;
  padding-left: 0;
}
.shop-floor-slider .text ul li{
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.shop-floor-slider .text ul li:last-child{
  margin-bottom: 0;
}
.shop-floor-slider .text ul li::before{
  content: url(../images/tick-circle.svg);
}
.shop-floor-slider .image{
  width: 60%;
  height: 560px;
  border-radius: 45px;
  overflow: hidden;
}
.shop-floor-slider .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfprogress {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-46%);
  width: 6px;
  height: 70vh;
  background-color: #efefef;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.sffill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(342.82deg, #0060EA 2.68%, #01BFFB 100%);
  transition: height 0.4s ease-in-out, width 0.4s ease-in-out;
}

.shop-floor-slider .slick-dots li button:before{
	font-size: 40px;
	color: #0060EA;
}
.shop-floor-slider .slick-prev{
	left: -6px;
}
.shop-floor-slider .slick-prev:before{
	content: url(http://www.iotiview.io/wp-content/uploads/2025/07/left-arrow.png);
	font-size: 30px;
	color: #ccc;
}
.shop-floor-slider .slick-next{
	right: -6px;
}
.shop-floor-slider .slick-next:before{
	content:  url(http://www.iotiview.io/wp-content/uploads/2025/07/right-arrow.png);
	font-size: 30px;
	color: #ccc;
}


.download_content{
	padding: 80px 0;
}
.download_content .download_info{
	text-align: center;
}
.download_content .download_content_wrap{
	margin-bottom: 30px;
}
.download_content .download_info .downloadBtn{
	font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    color: #FFFFFF;
    padding: 6px 25px;
    border-radius: 100px;
	background-color: #060606;
    color: #fff;
}

#resource-download-form p{
	margin-bottom: 0;
}
#resource-download-form .contact-form{
	gap: 16px;
	flex-direction: row;
    flex-wrap: wrap;
}
#resource-download-form .form-group{
	width: 48%;
}
#resource-download-form .form-group:last-child{
	width: 100%;
}
#resource-download-form .contact-form .checkbox-label span{
	margin-left: 0;
}
#resource-download-form .form-row{
	width: 100%;
	flex-direction: row;
}
#resource-download-form .form-row .form-group{
	width: 50%;
}
#resource-download-form input.wpcf7-text{
	height: 36px;
}
#resource-download-form .wpcf7-textarea{
	width: 468px;
	height: 80px;
}
#resource-download-form .contact-form input.wpcf7-submit{
	padding: 15px 35px;
}

