@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@400;500;600;700;800;900&display=swap");
/*! normalize css start */button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button;-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}
/* normalize css end */

:root {
  --solu-blue-100: #D2EDFF;
  --solu-blue-200: #B4E1FF;
  --solu-blue-600: #1da4ff;
  --solu-blue-800: #136DAA;
  --solu-blue-1100: #062133;
  --breakpoint-sm: 576px;
  --breakpoint-lg: 992px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  color: #161717;
  width: 100vw;
  overflow-x: hidden;
}

p{
  line-height: 1.5;
}
.hidden-lg {
  display: block !important;
}
.hidden-sm {
  display: none !important;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: #333;
}

img{
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Create a new class for btns that requires flexible width */
.primary-btn, .secondary-btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  min-width: 10em;
  width: fit-content;
  height: 3.1em;
  border-radius: 8px;
  position: relative;
}
.primary-btn .btn-text, .secondary-btn .btn-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.primary-btn {
  border: none;
  background-color: var(--solu-blue-600);
}
.primary-btn:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
}
.primary-btn:focus {
  background-color: var(--solu-blue-800);
}
.primary-btn:disabled{
  background-color: #B5B8BA !important;
  cursor: default;
}
.primary-btn .btn-text {
  color: #ffffff;
}

.secondary-btn {
  border: 1px solid var(--solu-blue-600);
  background-color: #ffffff;
}
.secondary-btn:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
}
.secondary-btn:focus {
  border: 1px solid var(--solu-blue-800);
}
.secondary-btn:disabled {
  border: none;
  background-color: #B5B8BA !important;
  cursor: default;
}
.secondary-btn .btn-text {
  color: var(--solu-blue-600);
}
.secondary-btn:hover .btn-text {
  color: var(--solu-blue-800);
}

.row {
  max-width: 85rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.75rem;
}

.solubay-logo {
  display: inline-block;
  width: fit-content;
}
.solubay-logo img {
  height: 100%;
  max-height: 4rem;
  max-width: 8rem;
  display: block;
}

#site-header {
  width: 100vw;
  height: 5rem;
  position: relative;
}
#site-header-container {
  background-color: #ffffff;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 5rem;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  padding: 0 1.5rem;
  z-index: 999;
}
#nav-container-sm {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: width 0.7s !important;
}
#nav-container-sm.display-menu {
  width: 100vw;
}
.site-navigation .nav-item {
  list-style-type: none;
}
.site-navigation .nav-item a.active{
  font-size: 1rem;
  font-weight: 600;
  color: var(--solu-blue-600);
}
.site-navigation .nav-item a:hover{
  color: var(--solu-blue-600);
}
#site-navigation-sm {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  z-index: 99;
}
#site-navigation-sm .nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 100vw;
  width: 100%;
  height: 70px;
  border-bottom: 2px solid var(--solu-blue-200);
}
#site-navigation-sm .nav-item {
  width: fit-content;
}
#site-navigation-sm .nav-item a{
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  display: block;
  font-size: 1rem;
  color: var(--solu-blue-600);
}
#site-navigation-sm .nav-item .top-item{
  width: fit-content;
  margin: 0 auto;
}
.hamburger-menu-btn, .close-btn {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.hamburger-menu-bar, .close-btn-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background-color: #333;
  margin-bottom: 6px;
}
.close-btn-bar { 
  position: absolute;
}
.close-btn-bar:first-child {
  transform: rotate(45deg);
}
.close-btn-bar:last-child {
  transform: rotate(-45deg);
}

.p-x{
  padding: 0 0.84rem !important;
}

.page-title {
  margin-top: 0.6rem;
}

.blue-bg-card{
  background-color: var(--solu-blue-100, #D2EDFF);
  border-radius: 8px;
  padding: 8px 20px 20px;
}

.card{
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid var(--solu-blue-200);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(21, 131, 233, 0.04), 0px -2px 4px 0px rgba(21, 131, 233, 0.04);
}

#site-footer {
  display: flex;
  flex-direction: column;
}
#site-footer ul {
  list-style-type: none;
  margin-block-start: 0px;
  padding-inline-start: 0;
}
#site-footer .footer-top-layer{
  border-top: 1px solid var(--solu-blue-600);
  padding-top: 1.75rem;
  margin-bottom: 1.5rem;
}
#site-footer .footer-bottom-layer{
  border-top: 1px solid var(--solu-blue-600);
}
#site-footer .row{
  margin-bottom: -1.75rem;
}
#site-footer .section-item h3, #site-footer .section-item .logo-container{
  margin-bottom: 1.75rem;
}
#site-footer .section-item h3 + *, #site-footer .section-item .logo-container + p{
  margin-top: 0;
  margin-bottom: 1.75rem;
}
#site-footer .list-item{
  padding-bottom: 1rem;
}
#site-footer .links .list-item a{
  display: flex;
  gap: 1rem;
}
#site-footer .links .list-item a .link-icon svg{
  width: 1rem;
  height: 1rem;
  fill: #161717;
}
#site-footer .links .list-item a:hover{
  color: var(--solu-blue-600);
}
#site-footer .links .list-item a:hover .link-icon svg{
  fill: var(--solu-blue-600);
}
#site-footer .list-item:nth-last-child(1){
  padding-bottom: 0;
}
#site-footer .footer-contact-us{
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 769px) {
  /* tablet/desktop styles */
  .hidden-lg {
    display: none !important;
  }
  .hidden-sm {
    display: block !important;
  }

  .row {
    margin-bottom: 6rem;
  }

  .p-x{
    padding: 0 7.5rem !important;
  }
   
  #site-navigation-lg ul {
    display: flex;
    justify-content: space-between;
  }
  #site-navigation-lg ul li {
    padding: 0 1rem;
  }

  .cards-table{
    flex-direction: row;
  }
  .card{
    max-width: 340px;
    max-height: 340px;
  }
  #site-footer .footer-top-layer{
    padding-top: 3.75rem;
    display: flex;
  }
  #site-footer .footer-top-layer section{
    flex: 1 1 0px;
  }
  #site-footer .footer-top-layer section:nth-child(2) .section-item {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #site-footer .footer-top-layer section:nth-child(3) .section-item {
    width: fit-content;
    margin-left: auto;
  }
  #site-footer .footer-top-layer section h3 {
    margin-block-start: 0;
  }

  .shape-bg, .shape-bg-sm{
    position: absolute;
    border: 1px solid var(--solu-blue-200);
    border-radius: 50%;
    opacity: 0.2;
  }
  .shape-bg{
    width: 116px;
    height: 116px;
    padding: 1rem;
  }
  .shape-bg-sm{
    width: 58px;
    height: 58px;
    padding: 0.5rem;
  }
  .shape-bg div, .shape-bg-sm div{
    background-color: var(--solu-blue-200);
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
}
