@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Bold.woff2") format("woff2"), url("../font/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Regular.woff2") format("woff2"), url("../font/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato-SemiBold.woff2") format("woff2"), url("../font/Lato-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Medium.woff2") format("woff2"), url("../font/Lato-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-SemiBold.woff2") format("woff2"), url("../font/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.woff2") format("woff2"), url("../font/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-white: #fff;
  --color-light: #EEEEEE;
  --color-black: #040C1A;
  --basic-200: #BCBECC;
  --basic-500: #777B94;
  --basic-600: #686C83;
  --basic-700: #55596C;
  --basic-800: #444655;
  --basic-900: #31323D;
  --primary: #F8FAFE;
  --primary-300: #E1EBFB;
  --primary-400: #1A66DF;
  --primary-500: #114291;
  --primary-600: #0E387B;
  --primary-800: #0A2959;
  --primary-900: #09234C;
  --Lato:"Lato", sans-serif;
  --Mont: "Montserrat", sans-serif;
}

*, *:before,
*:after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

*, body, html {
  -webkit-text-size-adjust: none;
  -webkit-appearance: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button {
  /*background: transparent;*/
  border: none;
}

mark {
  -webkit-text-fill-color: initial;
  text-fill-color: transparent;
  background: none;
}

.img {
  display: block;
}

.img.contain img {
  object-fit: contain;
}

.img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}


h1 {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}