:root {
  --primary-color: #45C1C2;
  --white-color: #FFFFFF;
  --black-color: #000000;
}

/* RESET CSS */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}


body {
  background-color: var(--black-color);
}

.container {
  display: flex;
  align-items: center;
  background-color: var(--black-color);
  color: #fff;
}

.intro-section {
  height: 430px;
  border-bottom: 2px solid #ffffff;
}

.image-section {
  flex: 1;
  width: 100%;
  height: 100%;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-section {
  flex: 1;
  padding: 0 20px 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.logo {
  height: 60px;
  margin-top: 20px;
}

.logo img {
  width: auto;
  height: 100%;
}

.title {
  font-size: 28px;
  font-weight: bold;
  line-height: 40px;
  margin: 15px 0;
  color: var(--primary-color);
}

.speaker {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.speaker img {
  width: auto;
  height: 230px;
  border-radius: 50%;
}

.speaker-info {
  font-size: 26px;
  line-height: 40px;
}

.speaker-info .name {
  font-weight: bold;
}

.speaker-info .name .social {
  height: 18px;
  width: 18px;
  margin-left: 5px;
  display: inline-block;
}

.speaker-info .name .social img {
  height: 100%;
  width: 100%;
  border-radius: 0;
}

.webinar-section {
  color: #fff;
  text-align: center;
  padding: 50px;
  margin-top: 2px;
}

.webinar-text {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 30px;
  padding: 0 6%;
}

.webinar-highlight {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--black-color);
  font-weight: bold;
  padding: 12px 35px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 28px;
  box-shadow: 5px 5px 0px var(--white-color);
}

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 60%;
  margin: 0 auto;
}

.insights-section {
  background-color: var(--primary-color);
  color: var(--black-color);
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px 10px 0 0;
}

.insights-section h2 {
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--white-color);
}

.insights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 100px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.insight-item {
  display: flex;
  align-items: center;
}

.insight-item span {
  font-size: 20px;
  line-height: 24px;
}

.insight-item img {
  width: 55px;
  height: 55px;
  margin-right: 15px;
}

.case-studies-section {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 40px 60px;
}

.case-studies-section h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.case-studies-section p {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 35px;
}

.case-studies-section h4 {
  color: var(--primary-color);
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.case-studies-section strong {
  color: var(--primary-color);
}

.cta-section {
  height: 180px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cta-section h2 {
  font-size: 30px;
  color: var(--white-color);
}

.cta-section .cta-button {
  font-size: 28px;
  margin-top: 20px;
  background-color: var(--white-color);
  box-shadow: 2px 2px var(--black-color);
}

.popup-form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(69, 193, 194, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-form .form {
  background-color: var(--white-color);
  width: 500px;
  padding: 35px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(12, 12, 12, 50%);
}

.popup-form form {
  text-align: center;
}

.popup-form form input {
  padding: 15px 10px;
  border-radius: 4px;
  box-shadow: 0 1px 0 1px rgba(12, 12, 12, 50%);
  background-color: rgba(12, 12, 12, 5%);
  width: 100%;
  margin: 10px 0;
  border: 0;
  font-size: 16px;
}

.popup-form form input#submit {
  width: auto;
  font-size: 24px;
  background-color: var(--primary-color);
  box-shadow: none;
  padding: 15px 20px;
  margin-top: 20px;
  margin-bottom: 0;
  cursor: pointer;
}

.popup-form form ::placeholder {
  color: var(--black-color);
  opacity: 1;
  /* Firefox */
}

.popup-form form ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: var(--black-color);
}

#popup_close {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 12px;
  background: #ccc;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  text-align: center;
}

.hidden {
  display: none !important;
}

.disabled {
  pointer-events: none;
}

@media(max-width: 992px) {
  .intro-section {
    height: auto;
    flex-direction: column;
  }

  .logo img {
    margin: 0 auto;
  }

  .title {
    text-align: center;
  }

  .text-section {
    padding: 10px;
  }

  .speaker img {
    height: 200px;
  }

  .speaker-info {
    font-size: 24px;
    line-height: 34px;
  }

  .webinar-section {
    padding: 25px;
  }

  .webinar-text {
    padding: 0;
  }

  .cta-button {
    font-size: 22px;
  }

  .video-section {
    width: 100%;
    padding: 0;
  }

  .insights-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-studies-section {
    padding: 40px 20px;
  }

  .cta-section {
    height: auto;
    text-align: center;
    padding: 30px;
  }

  .popup-form .form {
    width: 95%;
  }
}


.foot-para p {
    font-size: 11px;
    color: #ffffff;
    position: relative;
    top: 3px;
}
ul.socail {
    padding: 0px;
}
.footerr {
    background-color: #000000;
    padding: 35px 70px 20px;
}
.row {
    display: flex;
    justify-content: space-between;
}

p.call a {
    color: #000000;
    text-decoration: none;
}
.foot-right img {
    width: 20px;
    height: auto;
}
.foot-right {
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
}
ul.socail li {
    display: inline-block;
    padding: 0px 8px;
}
.foot-right span {
    font-size: 14px;
    line-height: 27px;
}
p.call {
    text-align: center;
    padding: 30px;
}


.
form.Viredform {
    background: #fff;
    padding: 40px;
    border: 1px solid #ed1b24;
}

p.centerr {
    text-align: center;
}

i.fa.fa-mobile {
    font-size: 20px;
}
.Viredform .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f3f3f5;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.fullform {
    padding: 175px 0px 0px;
}


section.certification {
    padding: 50px 0px;
}
.certification h1 {
    font-size: 36px;
        font-weight: 700;
    color: #ed1b24
}

.tech {
    color: #fff;
}
p.tech-para {
    padding-top: 30px;
}
.social ul li {
    list-style-type: none;
    margin: 15px;
}
.social ul {
    display: flex;
}

.space {
    height: 30px;
}


section.web {
    display: block;
}
section.mobile {
    display: none;
}





/*media query css*/
@media only screen and (max-width: 767px) {
	
	
.footerr {
    background-color: #000000;
    padding: 35px 0px 20px;
}
.row {
    display: block;
    justify-content: space-between;
}
.footerr p {line-height: 25px;}
.border-door {
    border: 2px solid #ebebeb;
    padding: 10px 0px;
    padding-right: 35px;
}
.spectra-logo img {
    width: 250px;
}
.spectra-para p {
    padding-right: 0px;
    line-height: 28px;
}
.logo {
    
}
.sp4 .col-md-3 {
    width: 50%;
}
.col-md-1.hide {
    display: none;
}
.col-md-2.spectra2 {
    width: 50%;
}
section.web {
    display: none;
}
section.mobile {
    display: block;
}
section.sp3 {
    padding: 30px 0px;
}
.space {
    height: 20px;
}
.col-md-12.space-box {
    height: 0px;
}
.icon-box img {
    float: none;
    margin-right: 10px;
}
section.sp5 {
    padding: 30px 0px 0px;
}
.footerr .row {
    padding: 0px 6px;
    text-align: center;
}
.foot-right {
    margin-left: 33px;
}
section.sp2 h2 {
    text-align: center;
    font-size: 25px;
    line-height: 33px;
    color: #806cb1;
}
.iconn1 {
    padding-left: 70px !important;
}
.iconn2 {
    padding-left: 70px;
}
.iconn3 {
    padding-left: 70px;
}
.iconn4 {
    padding-left: 70px;
}
.aipowered { display:block !important;}

.mobilefoot { display: none !important;}
.copyrightsr { display: block !important;}
.foot-para p {
    font-size: 9px  !important;
  
}
.mobileiconq { text-align:center; text-wrap: nowrap;}
.logo{ padding: 5px 7px 6px 15px;
}
.logo img {width: 30% !important;}
}
.aipowered { display:none;}

.foot-para a {
    color: #ffffff;
    text-decoration: none;
}
.footerr .row {
    width: 100%;
}

#header {
    height: 60px;
    padding: 5px 30px;
    margin-bottom: 15px;
}
#header img {
    width: auto;
    height: 100%;
}
.container {
    padding: 0 !important;
	max-width: 100% !important;
	margin-top: 75px;
}
a:hover {
   
    text-decoration: none !important;
}
#right_side_sticky {
    display: none;
}