/******** Google Fonts ********/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&display=swap');

/** ****** Color Scheme ****** **/
:root {
  --clr-primary: #EAEEED;
  --clr-accent: #11A1BC;

  --clr-white: #ffffff;
  --clr-white-200: #E6E6E6;
  --clr-black: #000000;
  --clr-black-100: #131313;
  --clr-black-200: #242424;
  --clr-black-300: #3c3c3c;

  --ff-primary:  "Lexend", sans-serif;
  --ff-body:  "Lato", sans-serif;
}

/** ****** CSS Resets ****** **/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: 16px;
  line-height: 1.5;
}

p {
  font-weight: 400;
  margin-bottom: 0;
  color: var(--clr-black-300);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/** ****** Utility Classes ******* */


.fixed-top {
  background-color: var(--clr-black-200) !important;
  position: fixed !important;
}

@media only screen and (max-width: 991px) {

}

.overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.72);
  z-index: 0;
  backdrop-filter: blur(190px);
  top: 0;
  left: 0;
  opacity: 0.72;
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

[class^=section__] {
  position: relative;
  z-index: 3
}

/* Theme Classes */
.bg-gradient {
  background-image: linear-gradient(238deg, #0a1e22 0%, #3C3C3C 100%) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.clr-text {
  color: var(--clr-black-200);
}

/** ****** Custom Properties ******* */
.custom-pad {
  padding: 70px 0;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

background: linear-gradient(20deg, rgba(15,92,148,1) 42%, rgba(17,161,188,1) 100%);
  color: var(--clr-white);
  border: none;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 0px 30px 0 15px;
  height:51px;
  border-radius: 50px;
  position: relative;
  text-transform: capitalize;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  gap: 10px;

  font-family: var(--ff-primary);
  /* background-image: linear-gradient(160deg, #42BBFF 0%, #0372A3 100%); */
}
.custom-button span{font-size: 18px;margin-right: 10px;}
.custom-button:hover {
  background-color: var(--clr-accent);
  background: linear-gradient(20deg,rgba(17,161,188,1) 42%, rgba(15,92,148,1) 100% );
}



.cb-white:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.custom-button_form {
  background-color: transparent;
  padding: 0;
  font: inherit;
  /* add custom-button fonts */
  color: inherit;
  /* add custom-button color */
  text-transform: inherit;
  /* add custom-button text-transform */
  border: none;
}

.custom-heading {
  margin-bottom: 32px;
}

.custom-heading h2 {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
  color:#0F5C94;
  font-family: var(--ff-body);
}

.custom-heading h6 {
  font-size: 18px;
  color: #0F5C94;
  text-transform: capitalize;
  line-height: 26px;
  font-family: var(--ff-primary);
  font-weight: 400;
  margin-bottom: 10px;
}


