
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic.woff2') format('woff2'),
        url('../fonts/Inter-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


:root {
  --primary:#DE2B3C;
  --white:#fff;
  --font-primary:'Inter';
  --font-secondary:'Nunito';
  --font-third:'Space Grotesk';
  --transition: all 0.3s ease-in-out;
}


::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;background: rgba(255, 255, 255, 1); 
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255, 255, 255, 1); 

}
::-webkit-scrollbar-thumb {
  background: #212121; 
  border-radius: 10px;
  width: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #111; 
}

body {
  background-color:#fff;
  font-size: 16px;
  line-height:24px;
  font-family:var(--font-primary);
  font-weight:normal;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

* h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--font-primary);
  font-weight:700;
  color:var(--primary);
  margin-bottom:25px;
  letter-spacing: 0.01em;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

p{
  font-size:18px;
  line-height:27px;
  font-family:var(--font-primary);
  font-weight:400;
  color:#000;
  margin-bottom:25px;
}
p:last-child{
  margin-bottom:0px;
}

ul {
  margin-bottom: 0px;
}
ul li {
  list-style: none;
}

a {
  font-size:14px;
  text-decoration: none;
  font-family:var(--font-primary);
  font-weight:500;
  line-height:19px;
  color:#000;
  transition:var(--transition);
}

a:hover {
  text-decoration: none !important;
  color: #1A1C1E;
}

input,
textarea,
select {
  background: none;
  outline: none;
  font-size:1rem;
  color: var(--black);
  border: 1px solid;
  font-family:var(--font-primary);
}

img {
  outline: none;
  max-width: 100%;
  height: auto;
  border: 0px none;
}

input[type='submit'] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

:focus {
  outline: none;
}

.els-wrap{
	width:100%;
	height:100vh;
  background:url(../images/bg.png) #fff;
  background-repeat: no-repeat;
  background-position: center right;
  background-size:contain;
	position: relative;
	padding:25px 60px;
}

.els-contennt-info{
  padding-top: 150px;
  z-index:1;
  position: relative;
}
.els-contennt-info h1{
  font-size:46px;
  line-height: 55px;
  margin-bottom:20px;
}
.els-contennt-info ul{
  margin-bottom:30px;
}
.els-contennt-info ul li{
  display: flex;
  align-items: center;
  gap:12px;
  margin-bottom: 10px;
}
.els-contennt-info ul li a{
  color:var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height:27px;
}
.els-contennt-info ul li a:hover{
  color:#269f72;
}
.els-contennt-info ul li:last-child{
  margin-bottom: 0px;
}
.els-contennt-info p a{
  font-weight:500;
  font-size: 20px;
  text-decoration: underline;
  font-style: italic;
  color:var(--primary);
}
.els-contennt-info p a:hover{
  color:#269f72;
}
.els-contennt-info p strong{
  font-weight:600;
}
.not-last{
  margin-bottom:15px;
}
.copy-right{
  position: absolute;
  bottom:20px;
  right:20px;
}
.copy-right p{
  color:#fff;
}

@media only screen and (max-width:1650px){
  .els-contennt-info h1{
    font-size:36px;
    line-height: 46px;
  }
}
@media only screen and (max-width:1199px){
  .els-wrap{
    background-size:45% 100%;
  }
}
@media only screen and (max-width:991px){
  .els-wrap{
    background:#fff;
    padding:25px 35px;
  }
  .copy-right p{
    color:#000;
  }
  .els-contennt-info h1{
    font-size:30px;
    line-height: 30px;
  }
}
@media only screen and (max-width:820px){
  .els-contennt-info{
    padding-top: 100px;
  }
}
@media only screen and (max-width:480px){
  .els-wrap{
    padding:25px;
  }
  .els-contennt-info{
      padding-top:50px;
    }
    .els-contennt-info h1{
      font-size: 20px;
      line-height: 20px;
    }
    .els-contennt-info p,
    .els-contennt-info p a{
      font-size: 16px;
    }
    .els-contennt-info p br{
      display: none;
    }
}