@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
}

a, button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  text-wrap: balance;
}


.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}

.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}

.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: inherit;
  color: var(--color-white-200);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}

.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}
.header.on-scroll {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
}
.header {
  background-color: #072646;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.header.on-scroll {
  background: #072646;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  padding: 15px 0px;
  margin: 0 auto;
}

.brand:hover {
  color: #fff;
}

.brand {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #FFFFFF;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: #072646;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  padding: 0px;
}

.menu-link:hover, .menu-link.active {
  background-image: url('../images/background-arrow.svg');
  background-size: 14px;
  background-position: left;
  background-repeat: no-repeat;
  color: #eeeeee;
}

.menu-link {
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  color: #FFFFFF;
  padding-left: 20px;
}

.menu-block {
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  color: #FFFFFF;
  background: #0158B5;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

.menu-block span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
}

.menu-block:before,
.menu-block:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #0158B5;
  transition: all 0.3s ease;
}

.menu-block:before {
  height: 0%;
  width: 2px;
}

.menu-block:after {
  width: 0%;
  height: 2px;
}

.menu-block:hover {
  background: #072646;
  box-shadow: none;
}

.menu-block:hover:before {
  height: 100%;
}

.menu-block:hover:after {
  width: 100%;
}

.menu-block span:hover {
  color: #fff;
}

.menu-block span:before,
.menu-block span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #0158B5;
  transition: all 0.3s ease;
}

.menu-block span:before {
  width: 2px;
  height: 0%;
}

.menu-block span:after {
  width: 0%;
  height: 2px;
}

.menu-block span:hover:before {
  height: 100%;
}

.menu-block span:hover:after {
  width: 100%;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .header .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1.75px;
  border: none;
  outline: none;
  opacity: 1;
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.topbar {
  background: #0158B5;
  padding: 6px 0px;
  text-align: right;
}

 i.fa.fa-phone{
  transform: rotate(90deg);
  margin-right: 8px;
}

.topbar a {
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
}


.inner-hero h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  text-align: left;
  color: #FFFFFF;
}

.inner-hero p {
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  color: #FFFFFF;
}
.heroslider{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  padding: 100px 0px;
}
.inner-hero{
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box-rotate:hover .imgrotatebox{ 
  background: #0158B5;
}
.imgrotatebox {
  background: #F5F5F5;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  transform: rotate(44.44deg);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.box-rotate:hover .imgrotatebox img{
  filter: brightness(0) invert(1);
}
.imgrotatebox img{
    transform: rotate(-44.44deg);
    height: 60px;
}
.box-rotate h4{
font-weight: 700;
font-size: 22px;
line-height: 32px;
text-transform: capitalize;
color: #FFFFFF;
text-align: center;
margin-top: 35px;
}
.row-flow{
  display: flex;
  margin-top: 60px;
}
.objectives {
  padding: 70px 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.objectives h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
}

.objectives p {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: #FFFFFF;
}

.whatwedo h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #0158B5;
}

.whatwedo p {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: #000;
}
.what-box-rotate{
  background: #F5F5F5;
  padding: 15px;
  /* border: 1px solid   rgb(245, 245, 245); */
  position: relative;
  height: 100%;
}
.what-box-rotate h4{
font-weight: bold;
font-size: 20px;
margin-bottom: 0px;
letter-spacing: 0px;
line-height: 30px;
text-transform: capitalize;
color: #0158B5;
margin-top: 10px;
}
.whatimg img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.countingbox {
  background: #CCDFFF;
  border-radius: 0px 40px 40px 40px;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 7px; */
}
.countingbox span {
  width: 30px;
  height: 30px;
  background: #053864;
  font-family: 'Jost';
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 100px;
}
.whatwedo{
  padding: 60px 0px;
}
.custom-btn {
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  background: #0158B5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  display: inline-block;
  outline: none;
}

.custom-btn:hover path{
  fill: #0158B5;
}
.custom-btn span {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 25px;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: #0158B5;
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.custom-btn span:hover{
   color: #0158B5;
}
.custom-btn span:before,
.custom-btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: #0158B5;
  transition: all 0.3s ease;
}
.custom-btn span:before {
  width: 2px;
  height: 0%;
}
.custom-btn span:after {
  width: 0%;
  height: 2px;
}
.custom-btn span:hover:before {
  height: 100%;
}
.custom-btn span:hover:after {
  width: 100%;
}


.countingplay {
  background: #CCDFFF;
  border-radius: 100px;
  position: absolute;
  width: 65px;
  height: 65px;
  left: 0px;
  display: flex;
  border: 8px solid #E5EFFF;
  align-items: center;
  justify-content: center;
}
.countingplay span {
  width: 30px;
  height: 30px;
  background: #053864;
  font-family: 'Jost';
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 100px;
}

.growthplaybokks {
  padding: 70px 0px 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.growthplaybokks h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
}

.growthplaybokks p {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: #FFFFFF;
}
.playbokkssteps h4{
font-family: 'Jost';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 29px;
width: 100%;
margin-bottom: 0px;
padding: 7px 10px 7px 30px;
border-radius: 5px;
color: #044173;
background-color: #fff;
}
.playbokkssteps {
  position: relative;
  padding-left: 45px;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.contactus h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 60px;
  text-align: left;
  color: #0158B5;
  border-bottom: 1px solid #044478;
}
.contactus {
  padding: 70px 0px 70px;
}
.form-control::placeholder{
  color: #5B5B5B;
}
.contactus .form-group input, .contactus .form-group textarea, .contactus .form-group select, .contactus .form-control{
    border: 0px;
    border-bottom: 1px solid #044478;
    border-radius: 0px;
    font-size: 14px;
font-weight: 600;
line-height: 25px;
color: #000;
padding-left: 0px;
}
.form-control:focus {
  box-shadow: unset;
  border-bottom: 1px solid #0158B5!important;
}
footer{
  padding-top: 40px;
background: linear-gradient(0deg, #0169B5 0%, #072646 109.08%);

}
footer .logo a{
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    color: #FFFFFF;
}
footer ul{
  padding: 0px;
  list-style: none;
}
footer ul li{
  list-style: none;
  margin-bottom: 15px;
}
footer ul li a i {
  margin-right: 5px!important;
  width: 20px;
  margin-bottom: 0px;
}
footer ul li a:hover{
  color: #ffffffab;
}
footer ul li a{
font-family: 'Jost';
display: flex;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 23px;
color: #FFFFFF;
}

.copyrights{
  margin-top: 60px;
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
  padding-bottom: 30px;
}
.copyrights p, .copyrights a{
font-family: 'Jost';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 23px;
color: #FFFFFF;
margin-bottom: 0px;
}

.what-box-rotate:hover{
  /* border: 1px solid #0158b5; */
  background: #0158b5;
  color: #fff;
}
.what-box-rotate:hover h4{
  color: #fff;
}

.playbokkssteps:hover .countingplay span{
background: #0158b5;
}
.playbokkssteps:hover h4{
  background: #0158b5;
  color: #fff;
}
.heroslider.iinerbredcrum  .inner-hero h2{
text-align: left;
}
.heroslider.iinerbredcrum  {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 280px;
  padding: 50px 0px;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.what-box-rotate ul {
  padding-left: 20px;
  margin-top: 10px;
}
.what-box-rotate li {
  list-style: disc;
  font-size: 14px;
  margin-bottom: 8px;
}
