@font-face {
  font-family: "Link Start";
  src: url("../fonts/link_start/LinkStartRegular.eot");
  src: url("../fonts/link_start/LinkStartRegular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/link_start/LinkStartRegular.woff2") format("woff2"),
    url("../fonts/link_start/LinkStartRegular.woff") format("woff"),
    url("../fonts/link_start/LinkStartRegular.ttf") format("truetype"),
    url("../fonts/link_start/LinkStartRegular.svg#LinkStartRegular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CeraPro-Light";
  src: url("../fonts/CeraPro/CeraPro-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: "CeraPro-Medium";
  src: url("../fonts/CeraPro/CeraPro-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "CeraPro-Bold";
  src: url("../fonts/CeraPro/CeraPro-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy/CeraPro-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Inter/Inter-SemiBold.ttf");
  font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #303094;
}

.white {
  color: var(--white) !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: var(--black);
  font-family: "Link Start";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--black);
  font-weight: 400;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 100px;
  letter-spacing: 3px;
}
h2 {
  font-size: 65px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 21px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
  transition: all 0.5s ease;
}
span {
  display: inline-block;
}
img,
video {
  max-width: 100%;
  display: block;
}
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}
:focus-visible {
  outline: none;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px rgba(159, 159, 159, 0.3);
}
#header {
  background: transparent;
  transition: 0.5s all;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .button-box .btn-common {
  font-weight: normal;
  padding: 8px 15px;
}
#header .logo-box img {
  max-width: 200px;
  width: 100%;
}
#header .logo-box a {
  display: block;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--black);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
#header .main-nav nav ul li a {
  color: var(--black);
  padding: 10px;
  font-size: 23px;
  letter-spacing: 1px;
}
#header .social-icon-box ul li {
  margin-right: 30px;
}
.social-icon-box ul li:last-child {
  margin-right: 0;
}
.social-icon-box ul li a {
  transition: all 0.5s ease;
  display: block;
}
.social-icon-box ul li a:hover {
  transform: rotate(360deg);
}

.banner-section {
  padding: 30px 0;
  background-image: url(../images/Canvas.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background-position: center;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.banner-section .container-fluid {
  padding: 0 50px;
  display: flex;
  /* overflow: hidden; */
}
.left-col-text h1 {
  position: relative;
  color: var(--blue);
}
.left-col-text h1 strong {
  color: var(--black);
}
.left-col-text h1::before {
  border-bottom: 10px solid var(--blue);
  content: "";
  position: absolute;
  bottom: -20px;
  height: 10px;
  max-width: 40%;
  width: 100%;
}
.banner-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* position: relative; */
  flex-wrap: nowrap;
}
.social-icon-box ul li a img {
  max-width: 22px;
  width: 100%;
}
.banner-section .left-col-text h2 {
  color: var(--blue);
}
.bottom-img img {
  margin: 0 auto;
}
.middle-col-img img {
  position: absolute;
  top: 55%;
  max-width: 34%;
  width: 100%;
  margin: 0 auto;
  right: 0;
  left: 0;
  transform: translate(0, -50%);
}
.right-col-text {
  padding-top: 10%;
  padding-left: 50px;
}
.img-box {
  display: flex;
}
.img-box a {
  margin-right: 30px;
  display: inline-block;
}

/**/
.common-pages {
  padding: 20px 0;
  background-color: var(--white);
}
.common-pages .section-heading {
  margin-bottom: 20px;
}
.common-pages .section-heading h2 {
  font-size: 25px;
  -webkit-text-fill-color: #000;
  font-family: "CeraPro-Medium";
  text-transform: uppercase;
}
.common-pages p {
  font-family: "CeraPro-Medium";
  font-size: 16px;
  line-height: 1.3;
  color: #272727;
}
.common-pages h5 {
  font-family: "CeraPro-Medium";
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

.common-pages .section-heading h2 {
  text-align: center;
  font-family: "CeraPro-Bold";
  font-weight: 700;
}
.common-pages ol {
  list-style-type: decimal;
  color: #272727;
  font-family: "CeraPro-Medium";
  padding-left: 30px;
}
.common-pages ol li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.3;
}
