@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit: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');

:root {
    --primary-color: #55E6A5;
    --secondary-text-color: #999999;
    --white-text: #FFFFFF;
    --dark-color: #000000;
    --secondary-color: #1B1B1B;
    --primary-font: "Teko", sans-serif;
    --secondary-font: "Kanit", sans-serif;
    --h1: 48;
    --h2: 40;
    --h3: 36;
    --h4: 28;
    --h5: 24;
    --h6: 20;
    --p: 16px;
    --transition: 0.3s all ease-in-out 0s;
}

html {
  scroll-behavior: smooth;
}

.mt-30{
  margin-top: 30px;
}

.mb-30{
  margin-bottom: 30px;
}

.mt-50{
  margin-top: 50px;
}

a{
  color: #000;
  text-decoration: none;
  transition: var(--transition);
}

a:hover{
  color: var(--primary-color);
}

.bg-properties{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

.dark *{
  color: #fff;
}

ul,li,p{
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.inr-bnr-heading {
  font-weight: 600;
  line-height: 1.4em;
  margin:0;
  margin-bottom:10px;
  font-family: var(--primary-font);
}

h1 {
  font-size: calc(48px + (60 - 48) * (100vw - 320px) / (1920 - 320));
}

h2 {
  font-size: calc(32px + (60 - 32) * (100vw - 320px) / (1920 - 320));
  text-transform: uppercase;
}

h3 {
  font-size: calc(28px + (var(--h3) - 28) * (100vw - 320px) / (1920 - 320));
}

h4 {
  font-size: calc(20px + (var(--h4) - 20) * (100vw - 320px) / (1920 - 320));
}

h5 {
  font-size: calc(18px + (var(--h5) - 18) * (100vw - 320px) / (1920 - 320));
}

h6 {
  font-size: calc(16px + (var(--h6) - 16) * (100vw - 320px) / (1920 - 320));
}

p {
  font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1920 - 320));
  font-family: var(--secondary-font);
}

.sec-padding{
  padding: 120px 0;
}

.sec-padding-top{
  padding-top: 120px;
}

.sec-padding-bottom{
  padding-bottom: 120px;
}

.sec-padding-bottom-40{
  padding-bottom: 40px;
}

.sec-padding-top-40{
  padding-top: 40px;
}

.row {
    display: flex;
    gap: 40px;
}

.secondary--btn {
    border: 1px solid #FFFFFF26;
}

.btn {
    padding: 13px 20px;
    border-radius: 10px;
    display: inline-flex;
    font-family: var(--secondary-font);
    gap: 10px;
    align-items: center;
}