/* Global CSS for the entire application */
:root { 
    --primary: #e04847;
    --secondary: #009f85;
    --grayBg:#f5f5f5;
    --black: #000000;
    --white: #ffffff;  
    --lightgray:#F8F9FB; 
    --transition: all 0.5s ease;
  }     
 

body{ padding: 0; margin: 0; font-family: "Gotham", sans-serif;}


/* @font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff'),
        url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

  */

 

@font-face {
  font-family: Gotham;
  src: url("https://cdn.prod.website-files.com/65c3d98fba1c7ddede03c23b/65c4db8447a97a71d089cdcc_Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url("https://cdn.prod.website-files.com/65c3d98fba1c7ddede03c23b/65c4db8419a6007c594d9aba_Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url("https://cdn.prod.website-files.com/65c3d98fba1c7ddede03c23b/65c4db84a76f863b61361a54_Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url("https://cdn.prod.website-files.com/65c3d98fba1c7ddede03c23b/65c4db845467aab041daddff_Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



.container{
    width: auto;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
}

select,option,table,tr,td,td,h1,h2,h3,h4,h5,h6,p,textarea,button,input,a,ul,li,ol{
	padding: 0;	margin: 0; color:var(--black);  list-style: none; 
}
  
ul.dots{
  padding-left: 20px;
  list-style-type: disc;
}
ul.dots li{  
  margin-bottom: 15px;
  list-style-type: disc;
}

*{ 
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
  }

.formwrap input,
 select{
    width: 100%;
    padding: 0px 10px;
    border: solid 1px var(--grayBg);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    height: 44px;
  -webkit-appearance: none;
  -moz-appearance:none;
  appearance:none;
}

input[type='text'], 
input[type='password'], 
input[type='email'], 
input[type='number'], 
input[type='url'], 
input[type='date'], 
input[type='datetime-local'], 
input[type='month'], 
input[type='week'], 
input[type='time'], 
input[type='search'], 
input[type='tel']{
    width: 100%;
    border-radius: 0;
    background: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--text-color);
    letter-spacing: 0.8px;
    background-color: #f5f5f5;
    border: 1px solid #707070;
    height: 43px; 
    padding: 12px 19px;
    font-size: 18px;
    transition: all .2s;
    font-weight: 400;
     font-family: 'Gotham';
}

 select{ background: var(--white) url(../images/bottom-select-arrow.svg) no-repeat 0 center;
    background-position-x: calc(100% - 10px);line-height: 22px;}

input[type="radio"]{
  background: url(../images/radio-blank.svg) no-repeat 0 0;
  width: 20px;
  height: 20px;
  background-size:cover;
    border: none;
    -webkit-appearance: none;
    -moz-appearance:none;
    appearance:none;
    vertical-align: middle;
} 
input[type="radio"]:checked{
  background: url(../images/radio-fill.svg) no-repeat 0 0;
  width: 20px;
  height: 20px;
  background-size:cover;
    border: none;
    -webkit-appearance: none;
    -moz-appearance:none;
    appearance:none;
}

 textarea {
    width: 100%;
    border-radius: 0;
    background: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--text-color);
    letter-spacing: .8px;
    background-color: #f5f5f5;
    border: 1px solid #707070;
    height: 150px;
    margin-bottom: 0;
    font-weight: 400;
    font-family: 'Gotham';
    padding: 12px 19px;
    font-size: 18px;
    transition: all .2s;
}  

.bg-gray{background: var(--grayBg);}
 
/* Paragraph  */
p {padding:0; margin: 0; font-size: 18px; font-weight: 400; line-height: 1.3; margin-bottom: 20px;}

/* Heading  */  
h1{font-weight: 700;    line-height: 1.2;font-size: 60px;}
.heading-h2{padding-bottom: 30px; font-size: 32px; font-weight: 700; line-height: 1.2;}
h2{font-size: 36px; font-weight: 500; line-height: 1.2;}
h3{ font-size: 24px; line-height: 1;}
h4{font-weight: 600; line-height: 1; font-size: 28px;}
h5{font-size: 22px; font-weight: 600; line-height: 1.4; }
h6{font-size: 20px; font-weight: 600; line-height: 1.4; }
a {color: var(--text);text-decoration: none;cursor: pointer;}
img,svg,video,canvas,audio,iframe,embed,object {border: 0; vertical-align: top;	max-width: 100%;}
img{transition: var(--transition);}

.img-effect{position:relative;}
.img-effect:before, 
.img-effect:after {content: "";position: absolute;right: 0;left: 0;top: 0;bottom: 0;
-webkit-transition: all 0.6s ease-out 0s;
-moz-transition: all 0.6s ease-out 0s;
transition: all 0.6s ease-out 0s;}
.img-effect:hover:after {background-color: rgba(255,255,255,0.2);top: 50%;bottom: 50%;}
.img-effect:hover:before {background-color: rgba(255,255,255,0.2);right: 50%;left: 50%;}

/* Dark bg */
.dark ul,.dark li,.dark ol,.dark table,.dark tr,.dark td,.dark th,
.dark div,.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark p,.dark a,.dark span {color: var(--white);}


/* padding 150 */
.py-150{padding: 150px 0;}
.pt-150{ padding-top: 150px;}
.pb-150{ padding-bottom: 150px;}

/* padding 50 */
.py-100{padding: 100px 0;}
.pt-100{ padding-top: 100px;} 
.pb-100{ padding-bottom: 100px;} 

/* padding 50 */
.py-50{padding: 50px 0;}
.pt-50{ padding-top: 50px;} 
.pb-50{ padding-bottom: 50px;} 

/* margin  100*/
.my-100{margin: 100px 0;}
.mt-100{ margin-top: 100px;}
.mb-100{ margin-bottom: 100px;} 

/* margin  30*/
.mt-30{ margin-top: 30px;} 
.my-30{ margin-bottom: 30px; margin-top: 30px;} 

/* padding 30 */
.py-30{padding: 30px 0;}
.pt-30{ padding-top: 30px;}
.pb-30{ padding-bottom: 30px;}


/* margin  50*/
.my-50{margin: 50px 0;}
.mt-50{ margin-top: 50px;}
.mb-50{ margin-bottom: 50px;}

/* text-ailgn-center */
.text-center{text-align: center;}
 
/* Heading title */
.title-heading {
    margin: auto;
    color: var(--black);
    text-align: center;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5em;
}
.title-heading img {
    max-height: 71px;
}
.title-heading .heading-h5 {
    margin-top: 50px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5em;
}
.title-heading .heading-h5 p{
    margin-top: 50px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5em;
}
.title-heading .heading-h5 a {
    color: var(--secondary);
}
/* Button component */

.btn{ 
    padding: 14px 20px;
    display: inline-flex;
    position: relative;
    transition: all 0.5s ease-in-out;
    white-space: nowrap;
    font-size: 18px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.btn img{display: inline-block; }
.primary-btn{
    background:var(--primary); 
    border: solid 2px var(--primary);
    color: var(--white); 
    text-transform: uppercase;
    font-weight: 500;
}
.arrow-right::after{content: '';background: url(../images/bottom-select-arrow.svg) no-repeat center center;width: 20px;
height: 20px;display: inline-block;transition: var(--transition);rotate: -90deg;margin: 0;}
.primary-btn:hover{ 
    background: transparent;
     color: var(--primary);
    transition: var(--transition);
    border: solid 2px var(--primary);

}


.secondary-btn{background:var(--white); border: solid 1px var(--graytext);}
.ghost-btn{font-size: 18px;  padding: 0 10px 0 0; font-weight: normal; gap: 5px;}
.ghost-btn::after{content: '';  background: url(../images/right-arrow-orange.svg) no-repeat right center;  width: 18px;  height: 18px;display: inline-block;  margin-left: 0; filter: brightness(0.1);transition: var(--transition);}
.ghost-btn:hover::after{content: '';  background: url(../images/right-arrow-orange.svg) no-repeat right center;  width: 18px;  
  height: 18px;  display: inline-block;  margin-left: 0; filter: brightness(1); transition: var(--transition);}

  
.ghost-btn:hover{color: var(--primary);}


.border-btn{
    background: var(--white);
    border: solid 2px var(--primary);
    color: var(--primary);
}
.border-btn:hover{
    background: var(--primary);
    color: var(--white);
}

.primary-link{ color: var(--primary); }
.secondary-link{ color: var(--blue-color); font-weight: 600; cursor: pointer; font-size: 18px;}
.secondary-link:hover{ text-decoration: underline;}

.primary-button{
    background:var(--secondary); border: none;
    color: var(--white);
    }
.primary-button:hover{
    background:var(--primary); 
    color: var(--white);
    }


.member-tag {font-size: 14px;font-weight: 500;background: var(--blue-color);color: var(--white);padding: 7px 17px;border-radius: 100px; }
.member-tag-gray{background: var(--grayBg);font-size: 14px;font-weight: 500;color: var(--footerBg);padding: 7px 17px;border-radius: 100px; }   

/*header*/
.top-bar{background: var(--text); color: var(--white); font-size: 14px;}
.top-bar .top-bar-content{padding: 10px 0; font-size: 14px;text-align: right;}
.top-bar .top-bar-content p{margin: 0; }
.top-bar .top-bar-content .logout{margin: 0 0 0 20px;transition: var(--transition);}
.top-bar .top-bar-content .logout::after{content: '';display: inline-block;margin-left: 8px;vertical-align: middle;height: 17px;width: 15px;background: url(../images/logout-icon.svg) 0 0px repeat-x;filter: brightness(0) invert(1);transition: var(--transition);}
.top-bar .top-bar-content .logout:hover{ color: var(--primary); transition: var(--transition);}
.top-bar .top-bar-content .logout:hover::after{filter: initial;background-position: 15px 0px; transition: var(--transition);}


header{box-shadow: 0 0 3px #ddd; position: sticky; top: 0; background: var(--white); z-index: 2;}
.header {display: flex;justify-content: space-between;align-items: center;padding: 22px 0; position: relative;}
.header .logo{
    max-width: 270px;
}
.header .nav ul {display: flex; gap: 80px; list-style: none; align-items: center;}
.header .nav ul a {font-size: 18px; text-transform: uppercase; font-weight: 500;} 
.header .nav ul .dropdown ul.dropdown-menu{
    flex-direction: column;
    position: absolute;
    gap: 0;
    text-align: left;
    align-items: start;
    background: var(--white);
    padding: 49px 26px 12px 26px;
    transform: translate(0, -4px);
    opacity: 0;
    visibility: hidden;
    transition:var(--transition);
}  
.header .nav ul .dropdown ul li{
    padding-bottom: 15px;
} 
.header .nav ul .dropdown ul li a{
    text-transform: capitalize;
} 
.header .nav ul .dropdown ul li a:hover{
    color: var(--secondary);
} 

@media (min-width:992px) {
    .header .nav ul .dropdown:hover ul.dropdown-menu{
     transform: translate(0, -0px);
    opacity: 1;
    visibility: visible;
    transition:var(--transition);
}
}

.header .nav ul.main-navigation .dropdown {
    position: relative;
}
.header .nav ul.main-navigation .dropdown:after {
    content: '';
    position: absolute;
    border-top: solid 2px var(--black);
    border-right: solid 2px var(--black);
    width: 7px;
    height: 7px;
    display: inline-block;
    rotate: 134deg;
    right: -17px;
    top: 3px;
}
.header .nav ul.main-navigation .dropdown:hover>a{
    color: var(--secondary);
} 
.header .nav ul.main-navigation .dropdown:hover::after{
     border-top: solid 2px var(--secondary);
    border-right: solid 2px var(--secondary);
}


.header .nav ul .contact-us .border-btn:hover{
    color: var(--white);text-decoration: none;
}
.header .nav ul a:hover{ 
    color: var(--secondary);
    text-decoration: underline;
}

 
.toggle-btn{
    display: none;
}
.main-nav .mob-logo{
    display: none;
}
.main-nav .close-btn{
    display: none;
}

 


/* The problem section */
.warning-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1185px;
    margin: auto;
}
.warning-block .warning-card .warning-icon {
    min-height: 122px;
}
.warning-block .warning-img {
    margin-bottom: 16px;
}
.warning-block .warning-card {
    margin-top: 30px;
}

.warning-block .warning-content {
    max-width: 217px;
    margin: auto;
}


/*Hero banner*/
 
.hero-banner{  
    background: url(../images/hero-bg.jpg) no-repeat center center; 
    background-position: 50%;
    padding: 200px 0;
    background-size: cover;   
    overflow: hidden;
}
.hero-banner .banner-content{   
    max-width: 703px; 
} 
.hero-banner p{  
    color: var(--secondary);
    max-width: 520px; 
    font-size: 26px;
    margin: 40px 0;
}  



/* The solution */
.solution-list {
    flex-direction: column;
    display: flex;
    max-width: 760px;
    margin: auto;
    padding-top: 79px;
    grid-row-gap: 40px;
}

.solution-list .solution-item {
    justify-content: space-between;
    align-items: center;
    display: flex;
    text-align: left;
    grid-column-gap: 40px;
}

.solution-list .solution-item .solution-image {
    flex-shrink: 0;
    max-width: 150px;
}

.solution-list .solution-item .solution-text {
    width: 100%;
}


/* A Tech Stack Full of Functionality */


.check-holder{
    max-width: 760px;
    margin: auto;
}
.check-holder h2{}
.check-holder .check-list{
    grid-row-gap: 50px;
    font-size: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: left;
    margin-top: 50px;
	margin-left: 50px;
}
.check-holder .check-list li{
    background: url(../images/checkmark.svg) no-repeat 0 center;
    padding: 0px 0 0px 52px;
    max-width: 305px;
    min-height: 40px;
    display: flex;
    align-items: center;
}



/* How it work */
.stack-image {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    max-width: 518px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 89px;
    display: flex;
}


/* Use case */

.use-case-image {
    max-width: 468px;
    text-align: center;
    margin: auto;
}



/* Our team has worked with great companies */
.great-companies .title-heading{max-width: 100%;}
.image-list {
    grid-row-gap: 32px;
    display: flex;
    align-items: center;
    max-width: 1105px;
    margin: auto;
}

.image-list .company-image {width: 25%;}

.title-heading h2 {
    margin-bottom: 50px;
}

.image-list .company-image img {
    max-width: 80%;
}






.trusted-image-list {
    max-width: 1125px;
    margin: auto;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 30px;
}

.trusted-image-list .trusted-image .count-heading {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 13px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 15px;
}


/* Footer */

.ready-section{
 max-width: 400px; margin: auto;
}

.footer-bg {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}
 

.footer-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-logo .footer-list {
margin-top: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.footer-logo .footer-list .link {
    display: block;
    font-size: 18px;
}
.footer-logo .footer-list .link:hover {
    color: var(--secondary);
} 
.footer-logo .footer-list .linkdin:hover{ opacity: 0.7; }

.footer-logo .footer-list+p {
     margin-top: 25px;
    margin-bottom: 25px;
    font-size: 16px;
}

.footer-logo .footer-list+p a {
    font-weight: 600;
    color: var(--secondary);
    font-style: italic;
}

.footer-logo .footer-list .linkdin {
    width: auto;
    max-width: 150px;
    margin: auto;
}

#topBtn {
    position: fixed;
    bottom: -60px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-weight: 500;
    box-shadow: 0 0 8px rgb(199 96 96 / 35%);
    cursor: pointer;
    transition: var(--transition);
}

#topBtn.show {
    opacity: 1;
    pointer-events: auto;
    bottom: 20px;
    transition: var(--transition);
}



/* technology page */
.hero-banner-inner{
    background: url(../images/pharma-hero.jpg) no-repeat;
    background-position: 0 0;
    background-size: auto;
    justify-content: flex-start;
    align-items: center; 
    display: flex;
    position: relative;
    overflow: hidden;
}
.hero-banner-inner:after {
    content: '';
    background: rgb(0 0 0 / 41%);
    inset: 0;
    position: absolute;
}
.hero-banner-inner .banner-content{ 
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;  
}

 

.text-content {
    max-width: 760px;
    margin: auto;
}
.text-content p {
    text-align: center;
    font-size: 22px;
    line-height: 1.27273;
	color: #231f20;
	
}

.patent-wrap {
    max-width: 1095px;
    margin-left: auto;
    margin-right: auto;
        grid-column-gap: 100px;
    grid-row-gap: 100px;
    flex-flow: column;
    display: flex;
}
.patent-wrap .patents-row {
    grid-column-gap: 92px;
    grid-row-gap: 92px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 22px;
    display: flex;
     
}

.patent-wrap .patents-row .patent-image {
    flex: none;
    width: 40%;
}
.patent-wrap .patents-row .patent-text {
    flex: 1;
}
.patent-wrap .patents-row .patent-text .patent-heading{
	    font-weight: 500;
}
.patent-wrap .patents-row .patent-text p{
       font-size: 22px;
       line-height: 24px;
           color: #231f20;
}
 
.patent-wrap .patents-row .patent-number {
    margin-bottom: 19px;
    font-size: 18px;
    font-style: italic;
    margin-top: 10px;
    font-weight: 400;
}

.patent-wrap .patents-row .patent-number strong{
    color: var(--secondary);
}
.patent-wrap .patents-row:nth-child(2n) {
    flex-direction: row-reverse;
}
 


/* Real Estate */
.problme-solution {
    flex-flow: wrap;
    display: flex;
    max-width: 1125px;
    margin: auto;
}

.problme-solution .box.box-black { 
    border-color: var(--black);
    background-color: var(--black);
    color: var(--white);
}

.problme-solution .box {
    border-style: solid;
    border-width: 2px;
    border-color: var(--secondary);
    text-align: center;
    width: 50%;
    padding: 48px 49px 52px;
    font-size: 22px;
    line-height: 1.27273;
}

.problme-solution .box p {
    font-size: 22px;
    line-height: 1.27273;
    margin-top: 15px;
	color: #231f20;
}
 
.use-case-section .case-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.text-green {
    color: var(--secondary);
}

.use-case-section .case-text p {
    font-size: 22px;
    line-height: 1.27273;
    margin-top: 15px;
}

.feature-list {
    grid-row-gap: 84px;
    text-align: center;
    flex-flow: wrap;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    max-width: 1125px;
    margin-left: auto;
    margin-right: auto;
}
.feature-list h5{
  font-weight: 500;
}


/* Contact Us */
.contact-wrap{
    position: relative;
    min-height: 900px;
}
.contact-wrap .wpcf7-not-valid-tip{
    font-size: 14px;
}
.contact-wrap>img{
    height:522px;
    width: 100%;
    object-fit: cover;
}
.contact-wrap .contact-block {
    z-index: 1;
    padding-top: 106px;
    padding-bottom: 0;
    position: absolute;
    flex-flow: wrap;
    display: flex;
    width: 100%;
    align-items: self-end;
    justify-content: space-between;
    top: 0;
    max-width: 1198px;
    margin: auto;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
}
.contact-form{
    background-color: #fff;
    border: 1px solid #707070;
    width: 58%;
    padding:40px 40px 20px 40px;
}   
.contact-form p{
    position: relative;
    margin-bottom: 15px;
}
.contact-form h2{
    color: var(--secondary);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 36px;
}
.contact-form form .btn{
    font-weight: 500;
    width: 100%;
} 
.contact-address{
    width: 37%;
} 
.contact-address .address-detail h5{
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}
.contact-address .address-detail a{
    display: block;
    font-weight: 400;
}
.contact-address .address-detail a:hover{
    color:var(--secondary)
}
.contact-form p .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 12px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 10px; 
    font-size: 14px;
}