/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Proxima Nova bold";
}
h1 {
	font-size: 3rem;
	line-height: 3.5rem;
}
h2 {
	font-size: 2rem;
    line-height: 2.5rem;
}
p {font-size: 1.125rem;}

body {
    font-family: "Poppins";
    color:#393939;
    font-size: 1rem; 
    line-height: normal;
	background: #fff;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
      url("../fonts/Poppins-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Nova Rg";
    src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"),
      url("../fonts/ProximaNova-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Nova Lt";
    src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"),
      url("../fonts/proximanova-semibold/ProximaNova-Semibold.woff")
        format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Nova bold";
    src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"),
      url("../fonts/ProximaNova-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  .container {
	  max-width: 1170px;
	  margin:0 auto;
	  width: 100%;
	  padding: 0px 20px;
  }
header {
    padding: 15px 0px;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
}
  
  .header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .brand_logo {
    display: inline-block;
    text-decoration: none;
    outline: none;
}
 .brand_logo img{
	 max-width: 180px;
 }
 ul.menu-section {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
ul.menu-section li a {
    margin: 0px;
    padding: 0px 0px;
    text-decoration: none;
	color:#393939;
	font-size: 1.125rem;
	display: flex;
    align-items: center;
}
ul.menu-section li a img {
    max-width: 24px;
    margin-right: 12px;
}
ul.menu-section li.active a {
	color: #00d6e1
}
ul.menu-section li a:hover {
	color: #00d6e1
}
ul.menu-section li a:hover img {
	filter: brightness(0) saturate(100%) invert(70%) sepia(19%) saturate(6794%)
      hue-rotate(136deg) brightness(99%) contrast(101%);
}

.banne_section {
	background: linear-gradient(0deg, rgba(0, 214, 225, 0.9) 0%, rgba(0, 214, 225, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
	padding: 80px 0px;
}
.banne_section h1 {
	color:#393939;
	text-align: center;
}

.why_choose_section {
	background: #9a9a9a10;
    padding: 60px 0px;
    margin-bottom: 60px;
}
.why_choose_section h2{
	margin-bottom: 20px;
}

.discover_section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 50px;
	flex-direction: row-reverse;
}

.discover_img img {
	max-width: 100%;
}
.discover_content {
    width: calc(60% - 50px);
}
.discover_row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
	margin-top: 30px;
}
.discover_col {
    width: calc(33.333% - 27px);
	position: relative;
	background: linear-gradient(0deg, rgb(0, 214, 225) 0%, rgb(0, 214, 225) 0%, rgb(255, 255, 255) 100%);
    border-radius: 0.625rem;
}

.discover_col:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    background: #fff;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 0.5rem;
}
.discover_box {
	position: relative;
	z-index:99;
	padding: 30px;

    text-align: center;
}
.discover_box img {
    max-width: 80px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(19%) saturate(6794%) hue-rotate(136deg) brightness(99%) contrast(101%);
}
.discover_box strong {
    font-size: 1.25rem;
	margin-top: 15px;
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
}
.discover_box p{
	font-size: 1.125rem;
	margin-bottom: 0px;
}

.industry_trends_section {
    background: #9a9a9a10;
    padding: 60px 0px;
    margin-top: 60px;
}
.industry_trends_section h2 {
	margin-bottom: 20px;
}

.it_services_section {
    padding: 60px 0px;
}
.it_services_row {
    display: flex;
    flex-wrap: wrap;
	flex-direction: row-reverse;
    gap: 50px;
	margin-top: 20px;
}
.it_services_img {
    width: calc(45% - 25px);
}
.it_services_img img {
	max-width: 100%;
	border-radius: 15px;
}
.it_services_content {
    width: calc(55% - 25px);
}
.it_services_content ul {
	padding-left: 20px;
}
.it_services_content ul li {
    margin-top: 15px;
}
.it_services_content ul li:first-child {
	margin-top: 0px;
}
.it_services_content ul strong {
	font-size: 1.25rem;
    margin-bottom: 5px;
    display: inline-block;
}
.it_services_content ul p {
	font-size: 1.125rem;
}
.get_started_section {
	background: #9a9a9a20;
    padding: 60px 0px;
}
.get_started_section ul {
    padding-left: 20px;
    margin-top: 5px;
}
.get_started_section ul li {
    margin-top: 15px;
    font-size: 1.125rem;
}

/*---About us page---*/
.about_section {
	padding: 60px 0px;
}
.about_section p {
	margin-top: 20px;
}
.inner_page_title {
    font-size: 2.5rem;
    line-height: 3rem;
    color: #393939;
}

.services_section {
	padding: 60px 0px;
	background: #9a9a9a10;
}

footer {
	background: linear-gradient(0deg, rgb(0, 214, 225) 0%, rgb(0, 214, 225) 0%, rgb(0 151 225) 100%);
	padding: 60px 0px 10px 0px;
}

.footer_row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.footer_col-logo {
    width: 30%;
}
.footer_col-logo img {
    max-width: 160px;
}
.footer_col-nav {
	width: 70%;
	display: flex;
    justify-content: flex-end;
}
.footer_col-nav ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
	justify-content: flex-end;
}

.footer_col-nav ul li a{
	text-decoration: none;
	color: #fff;
	font-size: 1.125rem;
	padding: 0px;
	display: flex;
    align-items: center;
}
.footer_col-nav ul li a img {
    max-width: 24px;
    margin-right: 12px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%)
      hue-rotate(319deg) brightness(108%) contrast(101%);
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #fff;
    border-top: 1px solid #ffffff50;
    padding-top: 10px;
    margin-top: 20px;
}
@media (min-width: 767px) and (max-width: 991px) {
	.discover_row {
		gap: 20px;
	}
	.discover_col {
		width: calc(33.333% - 14px);
	}
}
@media(max-width: 767px) {
	h1 {
		font-size: 2.25rem;
		line-height: 3rem;
	}
	h2 {
		font-size: 1.75rem;
		line-height: 2rem;
	}
	p {
		font-size: 1rem;
	}
	.banne_section {
		padding: 60px 0px
	}
	.why_choose_section {
		padding: 40px 0px;
		margin-bottom: 40px;
	}

	.industry_trends_section {
		padding: 40px 0px;
		margin-top: 40px;
	}
	.it_services_section, .get_started_section, .about_section, .services_section {
		padding: 40px 0px;
	}
	
	.why_choose_section h2, .industry_trends_section h2,  {
		margin-bottom: 15px;
	}
	.about_section p {
		margin-top: 15px;
	}
	.discover_row {
		margin-top: 20px;
	}
	.discover_col {
		width: 100%;
	}
	.it_services_row {
		gap: 20px;
	}
	.it_services_img {
		width: 100%;
	}
	.it_services_content {
		width: 100%;
	}
}
@media(max-width: 575px) {
	
	.brand_logo img {
		max-width: 100px;
	}
	ul.menu-section li a {
		padding: 0px 0px;
		font-size: 1rem;
	}
	.banne_section h1 br {
		display: none;
	}
	footer {
		padding: 30px 0px 10px 0px;
	}
	.footer_col-logo {
		width: 100%;
		text-align: center;
	}
	.footer_col-nav {
		width: 100%;
	}
	.footer_col-nav ul {
		justify-content: center;
		margin-top: 10px;
	}
}
@media(max-width: 359px) {
	.brand_logo img {
		max-width: 80px;
	}
	ul.menu-section li a {
		padding: 0px 8px;
		font-size: 1rem;
	}
}

.button {
  background-color: rgb(0, 151, 225);  
  border-radius: 5px;
  color: white;
  padding: .5em;
  text-decoration: none;
}

.button:focus,
.button:hover {
  background-color: rgb(0, 214, 225);
  color: White;
}

.content {
  display: none;
  margin: 1em 0;
}

.content.active,
.no-js .content {
  display: block;
}