/*
Theme Name: Elixir Arabia 
Theme URI: https://www.elixirarabia.com/
Author: Elixir Arabia 
Author URI: https://www.elixirarabia.com/
Description: Elixir Arabia WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: elixir-wp
*/
body {
    background: #fff;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}
.wrapper{
/*  background: #0062ff;*/
  position: fixed;
  width: 100%;
  z-index: 9;
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  margin-left: 80px;
  display: flex;
}
.content .logo a{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.content .links li{
  list-style: none;
  line-height: 70px;
}
.content .links li a,
.content .links li label{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.content .links li label{
  display: none;
}
/*.content .links li a:hover,
.content .links li label:hover{
  background: #0374e3;
}*/
.wrapper .search-icon,
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
}

.wrapper .search-box{
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box{
  opacity: 1;
  pointer-events: auto;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #171c24;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder{
  color: #f2f2f2;
}
.search-box .go-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"]{
  display: none;
}

/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: #171c24;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul{
  top: 60px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px!important;
  font-size: 16px;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
  }
  nav .content .links{
    margin-left: 30px;
  }
  .content .links li a{
    padding: 8px 13px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input{
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px){
  .wrapper .menu-icon{
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: #005eff;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li a.desktop-link{
    display: none;
  }

  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px!important;
  }
}

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 27px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon{
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input{
    padding-right: 30px;
  }
}
#navbar.scrolled {
    background-color: #333; /* Change to your desired color */
  color: black;
  box-shadow: 0px 4px 7px #777;
}

.dummy-text{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: -1;
  padding: 0 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.dummy-text h2{
    color: #005eff;
  font-size: 45px;
  margin: 5px 0;
}

.headerslider img{
    width: 100%;
    opacity: 0.4;
}
.headerslider{
    background: #000;
}

.herotext{
    position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.logo img{
    width: 50%;
    min-width: 50%;
}

.herotext h1{
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    color: #fff;
}

.herotext p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #fff;
}
.counter-wrapper{
    padding: 50px 0;
    background: #0E7BE3;
    background: linear-gradient(90deg, rgba(14, 123, 227, 1) 0%, rgba(12, 157, 151, 1) 61%, rgba(59, 175, 24, 1) 100%);
}

.countertitle h3{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.count{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.countericon i{
        color: #fff;
    padding: 10px 10px;
    background: #ffffff2e;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 50%;
}

.specialcouinter{
    text-align: center;
}

.herobtn a{
    background: #0374e3;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 10px;
}

.herobtn{
    margin: 15px 0 0 0;
}

.herobtn a:hover{
    color: #0374e3;
    background: #fff;
    transition: all 0.6s ease-in;
}

.whyelixircontainer{
    background: #f9fafb;
    padding: 50px 0;
}

.whyelixircontainer h2{
    color: #0374e3;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

.whyelixircontainer p{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: oklch(.446 .03 256.802);
    text-align: center;
    margin-bottom: 15px;
}

.whyelixirbox img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.whyelixircontebnt i{
    background: #0175E1;
    background: linear-gradient(90deg, rgba(1, 117, 225, 1) 0%, rgba(87, 199, 133, 1) 61%, rgba(50, 172, 12, 1) 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 10px;
    padding: 10px;
}

.whyelixircontebnt{
    padding: 20px;
}
.whyelixircontebnt h3{
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color:oklch(.21 .034 264.665);
    text-align: left;
    padding: 15px 0;
    margin-bottom: 0;
}

.whyelixircontebnt p{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.whyelixirbox{
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 510px;
    border-radius: 10px;
}

.whyelixirbox:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all 0.5s ease-in-out;
}

.featureedsolutions{
    padding: 50px 0;
}

.featureedsolutions h2{
    color: #0374e3;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}


.featureedsolutions p{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: oklch(.446 .03 256.802);
    text-align: center;
    margin-bottom: 15px;
}

.bluebox{
    border: 15px solid #0374e3;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.greenbox {
    border: 15px solid #32ac06;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.featuredbox h3{
    color: oklch(.21 .034 264.665);
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    text-align: left;
}

.featuredbox p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    color: oklch(.446 .03 256.802);
    text-align: left;
}

.featuredbox{
    border: 1px solid oklch(0.97 0 0);
    padding: 20px;
    border-radius: 10px;
}

.featurtedicon a{
    color: #0374e3;
    border: 1px solid #0374e3;
    border-radius: 10px;
    padding: 5px 20px;
}

.featurtedicon a:hover{
    color: #fff;
    background: #0374e3;
    transition: all 0.5s ease-in-out;
}

.partnershipcontenr{
    background: #F2F8FE;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
    padding: 100px 0;
    position: relative;
}

.partnerimg img{
    width: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
}

.partnerimg{
    margin: 0 20px;
    border-radius: 15px;
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
            radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
            radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
            radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
            linear-gradient(90deg, #d8ebf8 0%, #d6e9dc 100%);
padding: 5px;
box-sizing: border-box;
}
.partnershiptext{
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.partnershiptext h5 {
    color: #32ac06;
    background: oklab(65.1726% -.161257 .133691 / .1);
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    width: 31%;
    text-align: center;
    border-radius: 20px;
}

.partnershiptext h2{
    color: oklch(.21 .034 264.665);
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    text-align: left;
}

.partnershiptext p{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    padding-right: 100px;
}

.partnershiptext ul li::before {
    position: relative;
    top: 2px;
    left: 0px;
    font-family: "Font Awesome 7 Free";
    content: "\f058";
    font-size: 16px;
    font-weight: 900;
    color: #32ac06;
    padding-right: 10px;
}

.partnershiptext ul li{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    padding-bottom: 10px;
}

.partnershipbtn a{
    background: #0374e3;
    color: #fff;
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 10px;
}

.partnershipbtn{
    margin: 10px 0;
}

.partnershiptext span{
    color: oklch(.446 .03 256.802);
    font-weight: 300;
    line-height: 1.6;
    font-size: 13px;
}


.industrialcontainer{
    padding: 70px 0;
    background: #0E7BE3;
    background: linear-gradient(90deg, rgba(14, 123, 227, 1) 0%, rgba(12, 157, 151, 1) 61%, rgba(59, 175, 24, 1) 100%);
}

.industrialtext h2{
    color: #fff;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

.industrialtext p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.industrialbtn a{
    background: #fff;
    color: #0374e3;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
     transition:  all 0.5s ease-in-out;
}

.industrialbtn a:hover{
    background: #0374e3;
    color: #fff;
    transition:  all 0.5s ease-in-out;
}

.industrialbtn{
    text-align: center;
}

.footercontaner{
    padding: 50px 0;
    background: #101828;
}

.footerlogo h2{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.footerlogo span {
    margin-right: 10px;
    font-weight: 400;
    padding: 9px 15px;
    border-radius: 10px;
    background: #0E7BE3;
    background: linear-gradient(90deg, rgba(14, 123, 227, 1) 0%, rgba(12, 157, 151, 1) 61%, rgba(59, 175, 24, 1) 100%);
}

.footerlogo p{
    color: oklch(.707 .022 261.325);
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

.quicklinks h2{
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color: #fff;
    padding-bottom: 10px;
}

.quicklinks ul li {
    padding-bottom: 2px;
    list-style: none;
    position: relative;
    padding-left: 16px; /* space for icon */
}

.quicklinks ul li::before {
    font-family: "Font Awesome 7 Free"; /* YES — still the correct name */
    font-weight: 900;                   /* Solid icons */
    content: "\f0da";                   /* caret-right icon */
    color: #fff;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}


.quicklinks ul li a{
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}
.quicklinks ul li a:hover{
    color: #0374e3;
    transition: all 0.5s ease-in;
}
.footercontaxt h2{
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color: #fff;
    padding-bottom: 10px;
}

.footercontaxt p{
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

.footercontaxt p a{
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

.followus h2{
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color: #fff;
    padding-bottom: 10px;
}

.followus{
    margin: 10px 0 0 0;
}

.followus ul li{
    display: inline-block;
    padding-right: 5px;
}

.followus ul li i{
    color: #fff;
    background: #ffffff14;
    padding: 13px 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 15px;
    padding-right: 10px;
}

.followus ul li i:hover{
    background: #0374e3;
    transition: all 0.5s ease-in;
}

.copyrightsmenu ul li{
    display: inline-block;
    padding: 0 15px;
   
}

.copyrightsmenu{
     text-align: right;
}

.copyrightsmenu ul li a{
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

.footercontaner hr{
    color: #fff;
    padding: 10px 0 0 0;
    margin-top: 30px;
}

.copyrightstext p{
    color: oklch(.707 .022 261.325);
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

.innerheader{
    position: relative;
    background: #000;
}

.innerherotext {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.innerherotext h1{
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    color: #fff;
}

.innerheader img {
    width: 100%;
    opacity: 0.4;
    height: 450px;
    object-fit: cover;
}

.emailphonesec{
    padding: 50px 0;
    background: #0E7BE3;
    background: linear-gradient(90deg, rgba(14, 123, 227, 1) 0%, rgba(12, 157, 151, 1) 61%, rgba(59, 175, 24, 1) 100%);
}
.contactformcontainer{
    margin: 50px 0 0 0;
}

.address i{
    color: #fff;
    font-size: 20px;
}

.address p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #fff;
    padding: 0 50px;
}

.address{
    text-align: center;
}

.email i{
    color: #fff;
    font-size: 20px;
}

.email p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #fff;
    padding: 0 50px;
}

.email p a{
    color: #fff;
}

.email{
    text-align: center;
}

.phone i{
    color: #fff;
    font-size: 20px;
}

.phone p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #fff;
    padding: 0 50px;
}

.phone p a{
    color: #fff;
}
.phone{
    text-align: center;
}

.fromcontainer{
    margin: 50px 0;
}

.contactformsmfield{
    width: 100%;
    height: 40px;
    color: #000;
    padding: 0 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

.contactformbgfield{
    width: 100%;
    height: 100px;
    color: #000;
    padding: 10px;
    margin-bottom: 0px;
    border: 1px solid #000;
    border-radius: 5px;
}

.contactformdropdown{
    width: 100%;
    height: 40px;
    color: #000;
    padding: 0 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
}

.contactformsmbtn{
    background: #0374e3;
    color: #fff;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
}

.contactform{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 10px;
}

.innerherotext p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    color: #fff;
}

.solutionscontainer{
    margin: 50px 0;
}

.solutionsbox img{
    width: 100%;
}

.solutionsbox {
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 670px;
    border-radius: 10px;
}

.solutionsbox img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.solutiopnscontebnt {
    padding: 20px;
}

.solutiopnscontebnt i {
    background: #0175E1;
    background: linear-gradient(90deg, rgba(1, 117, 225, 1) 0%, rgba(87, 199, 133, 1) 61%, rgba(50, 172, 12, 1) 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 10px;
    padding: 10px;
}

.solutiopnscontebnt h3 {
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color: oklch(.21 .034 264.665);
    text-align: left;
    padding: 15px 0;
    margin-bottom: 0;
}

.solutiopnscontebnt p {
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.servicebtmn a{
    background: #fff;
    color: #0374e3;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    transition: all 0.5s ease-in-out;
}

.solutionscontainer h2{
    color: #0374e3;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

.aboutinnerherotext{
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.aboutinnerherotext h1{
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    color: #fff;
}

.aboutinnerherotext p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #fff;
}

.ourstorycontainer{
    background: #F2F8FE;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
    padding: 100px 0;
    position: relative;
}

.ourstoryimg img{
    width: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
}

.ourstoryimg {
    margin: 0 20px;
    border-radius: 15px;
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0% / 8px 8px no-repeat, radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0% / 8px 8px no-repeat, radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100% / 8px 8px no-repeat, radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100% / 8px 8px no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 10px) calc(100% - 16px) no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 16px) calc(100% - 10px) no-repeat, linear-gradient(90deg, #d8ebf8 0%, #d6e9dc 100%);
    padding: 5px;
    box-sizing: border-box;
}

.storydetails h2{
    color: oklch(.21 .034 264.665);
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    text-align: left;
}

.storydetails p{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    padding-right: 100px;
}

.storydetails{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.corevaluescontainer {
    margin: 50px 0;
}

.corevaluescontainer h2{
    color: #0374e3;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

.corevaluesbox h3{
    font-weight: 600;
    line-height: 1.4;
    font-size: 25px;
    color: oklch(.21 .034 264.665);
    text-align: left;
    padding: 15px 0;
    margin-bottom: 0;
}


.corevaluesbox p{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.corevaluesbox i{
    background: #0175E1;
    background: linear-gradient(90deg, rgba(1, 117, 225, 1) 0%, rgba(87, 199, 133, 1) 61%, rgba(50, 172, 12, 1) 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 10px;
    padding: 10px;
}

.corevaluesbox{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 10px;
    border-radius: 10px;
}

.partnershipimg img{
    width: 100%;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 10px;
}

.aboutpartnershiptext h2{
        color: oklch(.21 .034 264.665);
    font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    text-align: left;
}

.aboutpartnershiptext p{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.aboutpartnershiptext{
        position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.partnershipcontainer{
    margin: 50px 0;
}


.producttablecontainer{
    background: #F2F8FE;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
    padding: 50px 0;
    position: relative;
}

.producttablecontainer table thead tr th{
    color: oklch(.446 .03 256.802);
    font-weight: 600;
    line-height: 1.6;
    font-size: 20px;
    padding-bottom: 10px;
    width: 25%;
}

.producttablecontainer table tbody tr td{
    color: oklch(.446 .03 256.802);
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    padding-bottom: 10px;
}

.producttablecontainer table tbody tr td a{
    color: #0374e3;
    font-size: 14px;
    border-radius: 10px;
}

.producttablecontainer h1{
    color: #0374e3;
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
}

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}


.solutionsinnerherotext{
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.solutionsinnerherotext h1{
        font-weight: 600;
    line-height: 1.3;
    font-size: 36px;
    color: #fff;
}

.solutionsinnerherotext p{
        font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    color: #fff;
}

.commonInnerPageContainer{
    background: #F2F8FE;
    background: linear-gradient(90deg, rgba(242, 248, 254, 1) 0%, rgba(238, 246, 246, 1) 61%, rgba(244, 251, 246, 1) 100%);
    padding: 100px 0 40px 0;
    position: relative;
}
.storydetails{
    margin: 0px 0 0 0;
}

.menubgclass{
    background-color: #333;
    color: black;
    box-shadow: 0px 4px 7px #777;
}

.servicedropdown{
    width: 100%;
    height: 40px;
    color: #747474;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

p.contactformbgfield{
    padding-bottom: 0px;
}

.commonInnerPageContainer h2{
      position:relative;
      padding-bottom:5px;
      display:inline-block;
      color:blue;
 }

.commonInnerPageContainer h2::after{
      position: absolute;
      bottom: 0px;
      content: " ";
      width:50%;
      background:#0374e3;
      height:2px;
      left:0%;
      right:10%;
 }

 .innerPageContainer h2{
      position:relative;
      padding-bottom:5px;
      display:inline-block;
      color:blue;
 }

.innerPageContainer h2::after{
      position: absolute;
      bottom: 0px;
      content: " ";
      width:50%;
      background:#0374e3;
      height:2px;
      left:0%;
      right:10%;
 }

 .searchresult h5{
    margin-top: 5px;
 }