* {
  /* because CSS sucks, need to reset margins
    to make sure that navbar is presented 0px in from the left
    and 0px in from top
    */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: geometricPrecision;
}

@font-face {
  font-family: "Titillium Web";
  src: url("assets/fonts/TitilliumWeb-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Titillium Web Bold";
  src: url("assets/fonts/TitilliumWeb-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Titillium Web Black";
  src: url("assets/fonts/TitilliumWeb-Black.ttf") format("truetype");
}

body {
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 18px;
  background-color: #ffffff;
  /*background-color: #000099; */
  color: white;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-family: "Titillium Web Bold", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 40pt);
}
h2 {
    font-family: "Titillium Web Bold", Arial, sans-serif;
  font-size: clamp(1rem, 3vw, 30pt);
}
.navbar-hero-container {
  background-image: url("assets/images/banner.png");
  background-size: cover;
  background-position: top;
  min-height: 800px;
  border-bottom: 15px solid #0f1f8c;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.navbar {
  background-image: url("assets/images/header.png");
  background-size: cover;
  background-position: top;
  width: 100%;
  background-color: #000033;
  color: #fff;
  padding: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.navbar div.wrapper{
  width: 100%;
  max-width: 1680px;
}

.navbar-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1% 10% 0% 10%;
  max-width: 1680px;
}

.navbar-top li a {
  font-size: clamp(0.5rem, 2vw, 20pt);
}
.navbar-top li:last-child a {
  padding-right: 0px;
}

.navbar-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9%;
  max-width: 1680px;
}
.navbar-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: clamp(8px, 0.78125vw, 15px) clamp(10px, 1.04167vw, 20px);
  background-color: #66b83e;
  color: white !important;
  text-decoration: none;
  font-size: 0.8em;
  border-radius: 20px;
  cursor: pointer;
  max-width: 260px;
}

.navbar-button .left-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-button img {
  width: clamp(20px, 1.8vw,35px);
  height: clamp(20px, 1.8vw,35px);
}

.navbar-button .right-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 15px;
  font-size: clamp(0.8rem, 1.3vw, 13.66pt);
}

.right-button .sub-button-text {
  font-size: clamp(0.5rem, 0.9vw, 9.76pt);
}

.navbar-content {
  display: flex;
  justify-content: flex-start;
  padding: 0 34px 0 0;
}

.navbar-content a {
  top: 15px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 1.25s;
}

.navbar-content a:hover {
  border-bottom: 1px solid #0000ff;
  /* now underline the links when you mouseover /hover them */
  text-decoration: underline;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  float: left;
}

.navbar-bottom li:not(:last-child) {
  border-right: 3px solid #0e1d87;
}

.navbar a {
  color: #ffffff;
  /*color: #000033;*/
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
  font-size: clamp(1rem, 1.4vw, 14pt);
}

.hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(3%, 6vw ,7%) 0;
  min-height: 800px;
  color: #0e1e8b;
  /* padding: 0 11.5%; */
  max-width: 1283px;
}

.hero-banner h1 {
  text-transform: uppercase;
}
.hero-banner h2 {
    text-transform: uppercase;
  font-style: italic;
}

.hero-banner .hero-description {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 1.5vw, 15pt);
    line-height: 1.2;
    width: 45%;
    color: #000033;
}

.hero-description p:nth-of-type(2){
    margin-top: 25px;
}

/* now main body content */
.content {
  background-color: #ffffff;
  border-bottom: 15px solid #0f1f8c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content ul {
  /* lists & bullet points need to be indented in a paragraph */
  padding-left: 40px;
}
.content ol {
  /* lists & bullet points need to be indented in a paragraph */
  padding-left: 40px;
}
.content h2 {
  margin: 30px 0px;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 2;
}

.content-image img {
  align-items: center;
}

.content button {
  display: inline-block;
  margin-left: auto;
  padding: 10px 20px;
  /*background-color: #454567;*/
  background-color: #0e007f;
  color: white !important;
  text-decoration: none;
  font-size: 1em;
  border-radius: 5px;
}
.content button a {
  color: white !important;
}

.heading {
  width: 100%;
}

.error-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  min-height: 800px;
  color: #0e1e8b;
  /* padding: 0 11.5%; */
  max-width: 1283px;
  width: 100%;
}

.error-content .heading{
  color:#000033;
}

.columns {
  padding: clamp(20px,5%,85px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: px;
  grid-row-gap: 0px;
  max-width: 1700px;
}

.column {
  padding: 1% 18%;
}

.column:not(:last-child) {
  border-right: 2px solid #1b2991;
}

.column a {
  color: #000033;
}
.column h3 {
  font-family: "Titillium Web Bold", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2vw, 20pt);
  min-height: 81.33px;
}

.column a {
    display: block;
    text-decoration: none;
    color: #0f1f8c;
    padding: 20px 0;
}

.column ul {
  /* lists & bullet points need to be indented in a paragraph */
  padding-left: 20px;
}

.column p {
  color: #000033;
}

/* images that float-left */
.float-left {
  float: left;
  margin-right: 20px;
}

/* content that aligns center */
.whatwedo {
  /*display: flex;*/
  justify-content: center;
  text-align: center;
}

.whatwedo img{
    width: 100px;
    height: 100px;
}

.footer{
    width: 100%;
    background-color: #000034;
    color: #ffffff;
    /* padding: 5% 7% 5% 4%; */
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 300px;
    max-width: 1680px;
    width: 100%;
}

.footer-wrapper .logo-container{
    width: 20%;
    position: relative;
    /* right: 3%; */
}

.footer-wrapper .menu-container{
    width: 50%;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: space-between;
    position: relative;
    right: 2.2%;
}

.footer-wrapper .menu-container .menu-wrapper {
    width: 100%;
    border-bottom: 1px solid #fff;
    align-self: flex-start;
}

.footer-wrapper .menu-container .social-wrapper {
    width: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
}

.footer-wrapper .menu-container .social-wrapper a {
    cursor: pointer;
    align-self: center;
}


.footer-wrapper .menu, .drop-menu{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-wrapper .menu{
    display: flex;
    justify-content: space-between;
}

.footer-wrapper .menu .menu-item{
    display: inline-block;
    margin-right: 15px;
}

.footer-wrapper .menu .menu-item:last-child{
    margin-right: 0;
}

.footer-wrapper .menu .menu-item a{
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
    font-size: clamp(1rem, 1.5vw, 15pt);
}

.sub-menu{
    position: relative;
}

.drop-menu {
    display: none;
    position: absolute;
    background-color: #020a3e;
    min-width: 200px;
    left: -32px;
    top: 62px;
    padding: 25px 15px 15px 15px;
    max-height: 320px;
    overflow-y: auto;
    
}

.drop-menu-item {
    width: 100%;
}

.drop-menu-item a:hover {
    background-color: #020a3e;
    border-left: 2px solid #0f1f8c;
}

.drop-menu-item a {
    color: #fff;
    font-size: 11pt !important;
}

.menu-item:hover .drop-menu {
    display: block;
}

.navbar-logo{
  width: 180px;
  height: 180px;
}

.navbar-mobile, .hero-description-mobile{
  display: none;
}

.navbar-right-wrapper{
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.services-content{
  padding: 5% 9% 5% 12.2%;
  border-bottom: 15px solid #0f1f8c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Add other pages bg like the below for grc, etc. and add the appropriate class to the div - check services page for reference */
.service-bg{
  background: url('./assets/images/services-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.grc-bg{
  background: url('./assets/images/grc-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testing-bg{
  background: url('./assets/images/testing-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.training-bg{
  background: url('./assets/images/training-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.specialist-bg{
  background: url('./assets/images/specialist-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.services-container{
  max-width: 1680px;
}

.services-container p{
  color: white;
}

.services-content h1{
  font-size: clamp(1.5rem, 2.7vw, 27pt);
}

.services-content p{
  font-size: clamp(1rem, 1.4vw, 14pt);
  width: 94%;
  margin-top: 20px;
  color: white;
}

.services-content .content-wrapper{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
}

.content-wrapper .left-content, .content-wrapper .right-content{
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  column-gap: 10px;
}

.service-wrapper a{
  width: 100%;
  display: flex;
  margin-top: 50px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 14pt);
  align-items: center;
}

.service-icon{
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.low-height{
  height: 50px;
}

.medium-height{
  height: 70px;
}

.blog-content{
  background: url('./assets/images/blog-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2% 9% 5% 12.2%;
  border-bottom: 15px solid #0f1f8c;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

.blog-wrapper{
  max-width: 1680px;
  width: 100%;
}

.blog-content h1{
  font-size: clamp(2rem, 6vw, 60pt);
  text-align: center;
  color: #011993;
}


.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 2rem;
  gap: 2rem;
}

.blog-container a{
  text-decoration: none;
  color: #000033;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.card .blog-arrow{
  width: 60px;
  height: 60px;
  position: absolute;
  top: 31.5%;
  right: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  /* border-radius: 1em; */
  background-color: #fff;
  color: #000033;
  position: relative;
}



.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 20px;
  flex-grow: 1;
}
  
.card__body h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  text-transform: capitalize;
}
.card__body p {
  font-size: 14pt;
  line-height: 16pt;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: -webkit-box;
    -webkit-line-clamp: 7; /* Change this to the number of lines you want to display */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
  background-color: #454545;
  height: 55px;
  color: #fff;
  align-items: center;
  font-size: 0.9rem;
}

.footer-icon{
  margin-right: 5px;
}

.blog-post{
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #000033;
}

.blog-post-img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-post-content{
  padding: 5% 9%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-post-content ol{
  position: relative;
  left: 4%;
}

.blog-post-content p{
  margin-top: 2%;
  font-size: clamp(1rem, 1.6vw, 16pt);
  line-height: clamp(1rem, 1.6vw, 16pt);
}

.blog-post span{
  width: fit-content;
}

#share-buttons svg{
  height: 18px;
    margin-top: 9px;
    fill: #d5d5d5;
}
#share-buttons > div:hover {
  cursor: pointer;
}
#share-buttons > div {
  position: relative;
  text-align: left;
  height: 36px;
  width: 40px;
  float: left;
  text-align: center;
}

#share-buttons {
  display: inline-block;
  vertical-align: middle;
  width: fit-content;
  
}

.share-container{
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.desktop-logo{
  display: block;
}

.mobile-logo{
  display: none;
}

.contact-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-banner{
  width: 100%;
  height: 400px;
  background: url('./assets/images/contact-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 15px solid #0f1f8c;
}

.contact-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5% 0%;
  border-bottom: 15px solid #0f1f8c;
  justify-content: center;
  align-items: center;
}

.contact-container-wrapper{
  max-width: 1680px;
  width: 100%;
  padding: 0 11.5%;
}

.contact-container > div:not(.contact-container-wrapper){
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0.4%;
}

.contact-container h1{
  font-size: clamp(1rem, 3vw, 30pt);
  color: #011993;
}

.contact-container a{
  font-size: clamp(1rem, 3vw, 30pt);
  color: #011993;
  text-decoration: none;
  font-family: "Titillium Web Bold", Arial, sans-serif;
  margin-left: 1%;
}

.contact-container a:hover{
  text-decoration: underline;
}

.contact-container img{
  width: 50px;
  height: auto;
  position: relative;
  top: 2px;
}

.about-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-banner{
  width: 100%;
  height: 400px;
  background: url('./assets/images/about-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 15px solid #0f1f8c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-banner div{
  /* padding: 5% 9% 5% 12.1%; */
  max-width: 1680px;
}

.about-banner h1{
  font-size: clamp(2rem, 4.2vw, 42pt);
}

.about-banner p{
  font-size: clamp(1.5rem, 2.3vw, 23pt);
}

.about-container{
  display: flex;
  width: 100%;
  padding: 5%;
  border-bottom: 15px solid #0f1f8c;
  min-height: 50vh;
  column-gap: 5%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-container-wrapper{
  max-width: 1680px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-left{
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-right: 5%;
}

.about-right{
  display: flex;
  flex-direction: column;
  width: 40%;
  color: #011993;
}

.about-right .right-heading{
  font-size: clamp(1.5rem, 2.3vw, 23pt);
  margin-bottom: 2%;
  font-family: "Titillium Web Bold", Arial, sans-serif;
}

.about-right p{
  font-size: clamp(1rem, 1.7vw, 17pt);
  line-height: clamp(1.2rem, 2vw, 20pt);
  margin-bottom: 6%;
}

.about-right .about-button{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 15px 20px 15px 20px;
  background-color: #66b83e;
  color: white !important;
  text-decoration: none;
  font-size: 0.8em;
  border-radius: 20px;
  cursor: pointer;
}

.about-button img{
  margin-right: 10px;
}

.about-button a{
  color: white !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16pt;
  font-family: "Titillium Web Bold", Arial, sans-serif;
}

.about-left .left-first{
  /* background: url('./assets/images/problem-bg.svg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  */
  background-color:#444444;
  background-image:none;
  min-height: 235px;
  position: relative;
}

.about-left .left-second{
  background: url('./assets/images/solution-bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 235px;
  position: relative;
  margin-top: 5%;
}

.left-first img, .left-second img{
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  z-index: 0;
}

.left-first .left-heading-1, .left-second .left-heading-1{
  font-size: clamp(1.5rem, 2.3vw, 23pt);
  margin-bottom: 2%;
  font-family: "Titillium Web Bold", Arial, sans-serif;
}

.left-first .left-heading-2, .left-second .left-heading-2{
  font-size: clamp(1.5rem, 2.3vw, 23pt);
  margin-bottom: 2%;
  font-family: "Titillium Web Bold", Arial, sans-serif;
}

.left-first-iso .compliance-automation-section {
    position: absolute;
    bottom: 30px;
    left: 5%;
    right: 5%;
}

.left-first .text-wrapper, .left-second .text-wrapper{
  padding: 3% 5% 5% 5%;
  position: relative;
}

.left-first p, .left-second p{
  font-size: clamp(1.2rem, 1.7vw, 17pt);
  line-height: clamp(1.4rem, 2vw, 20pt);
}

.about-iso-left .text-wrapper {
  background: url('./assets/images/iso27001-lead-auditor.png');
  /*background-size: cover;*/
  background-repeat: no-repeat;
  background-position: center;
  min-height: 235px;
}

.left-first-iso img, .left-second-iso img {
  width: 50%;
  height: 50%;
  opacity: 0.8;
  position: absolute;
  z-index: 0;
}
.left-first-iso {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/images/iso27001-lead-auditor.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  flex-grow: 1;
}

.left-first-iso .text-wrapper {
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.left-first-iso h3, .left-first-iso p {
  color: white;
}

.left-first-iso a {
  color: #9999ff;
}

.about-banner p {
 font-size: clamp(1.5rem, 2.3vw, 23pt);
 color: white;
}
.nolink{
  pointer-events: none;
}
