@font-face {
    font-family: 'icon';
    src: url('../fonts/FontAwesome/fa-brands-400.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url('../fonts/FontAwesome/fa-light-300.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.fa-light,
.fa-brands {
  font-family: icon !important;
}



/* Montserrat START */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Montserrat END */


/* Blogger START */
@font-face {
    font-family: 'Blogger';
    src: url('../fonts/Blogger/BloggerSans-Bold.woff') format('woff');
    font-style: normal;
    /* font-display: swap; */
    font-weight: 700;
}
/* Blogger END */

/* Grid START */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.wrapper {
  flex: 0 0 75%;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.jc-center {
  justify-content: center;
}
.jc-right {
  justify-content: right;
}
.jc-space {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.content-center {
  align-content: center;
}
.tl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%,-50%);
}
.claer {
  clear: both;
}

@media screen and (max-width: 1199px) {
  .container {
    padding: 0 40px;
  }
  .tablet-off {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 526px) {
  .container {
    padding: 0 15px;
  }
}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,
.col-7,.col-8,.col-9,.col-10,.col-11,.col-12 {
  width: 100%;
}
.col-1 {
  max-width: 8.333333%;
}
.col-2 {
  max-width: 16.666667%;
}
.col-3 {
  max-width: 25%;
}
.col-4 {
  max-width: 33.333333%;
}
.col-5 {
  max-width: 41.666667%;
}
.col-6 {
  max-width: 50%;
}
.col-7 {
  max-width: 58.333333%;
}
.col-8 {
  max-width: 66.666667%;
}
.col-9 {
  max-width: 75%;
}
.col-10 {
  max-width: 83.333333%;
}
.col-11 {
  max-width: 91.666667%;
}
.col-12 {
  max-width: 100%;
}

/* Grid END */

:root {
  --body-color: #2b2b2b;
  --color-1: #ff4901;
  --color-2: #414a51;
  --color-3: #313131;
  --color-4: #eefbff;
  --color-5: #7d5add;
  --color-6: #f1f2ff;
  --color-7: #f3fff6;
  --link-color: #048997;
  --hover-color: #048997;
  --border-color: #d5d5d5;
  --linear-gr1: linear-gradient(90deg, #ff4901, var(--color-2));;
  --transition: all 0.3s ease-in-out; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  font-family: Montserrat;
  font-size: 16px;
  color: var(--body-color);
  line-height: 130%;
  font-weight: 400;
  overflow-x: hidden;
}

section {
  padding: 70px 0;
}
.p-0 {
  padding: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-0  {
  padding-top: 0;
}

ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  display: block;
  text-decoration: none;
  color: var(--link-color);
  transition: var(--transition);
}
a.line {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}

/* Heading Titles START */

h1, h2, h3, h4, h5, h6 {
  font-family: Blogger;
  line-height: 130%;
}

.page__header,
.heading__title {
    margin-bottom: 70px;
}
.page__header {
  font-size: 42px;
}
.heading__title.center {
  text-align: center;
}
.heading__title.row {
    justify-content: space-between;
}
.heading__title.row .title {
    width: 100%;
    max-width: 90%;
    padding-right: 20px;
}
.heading__title.row .slick-buttons {
    width: 100%;
    max-width: 80px;
}

/* Heading Titles END */

/* Custom List START */

.custom__list ul {
  margin: 16px 0;
}

.custom__list ul > li {
  position: relative;
  padding-left: 32px;
  line-height: 140%;
  font-weight: 500;
}
.custom__list ul > li:not(:last-child) {
  margin-bottom: 16px;
}
.custom__list ul > li:before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--color-5);
  content: "";
}
.custom__list ul > li > a {
  color: var(--color-2);
}
.custom__list ul > li > a:hover {
  color: var(--color-5);
}
.custom__list.type-2 li,
.custom__list.type-4 li {
  align-items: center;
  gap: 16px;
  padding-left: 0;
}
.custom__list.type-2 li:before,
.custom__list.type-4 li:before {
  content: none;
}
.custom__list.type-2 li .title {
  display: inline-block;
  width: 100%;
  max-width: 84.9%;
}
.custom__list.type-2 li .icon,
.custom__list.type-4 li .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--color-5);
  border-radius: 6px;
  padding: 8px;
}
.custom__list.type-2 li .icon img {
  filter: invert(1) brightness(10);
}

.custom__list.type-4 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.custom__list.type-4 ul > li {
  width: 100%;
  max-width: 46.3%;
  margin: 0 !important;
}

.custom__list.type-4 li .icon {
  background: none;
  padding: 0;
}
.custom__list.type-4 .title {
  width: 100%;
  max-width: 100%;
  font-weight: 600;
}

.custom__list.ol li {
  position: relative;
  counter-increment: list-counter;
  font-weight: 500;
  line-height: 140%;
}
.custom__list.ol li:not(:last-child) {
  margin-bottom: 16px;
}
.custom__list.ol li:before {
  display: inline-block;
  content: counter(list-counter);
  position: relative;
  top: -2px;
  width: 35px;
  min-width: 35px;
  height: 35px;
  margin-right: 12px;
  background: var(--color-2);
  color: #fff;
  border-radius: 12px;
  align-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  z-index: 4;
}


/* Custom List END */


/* Paragraph START */

p {
    line-height: 140%;
    margin: 0;
}
p:not(:last-child) {
    margin-bottom: 12px;
}

/* Paragraph END */

h1 {
    text-align: center;
    margin-bottom: 20px;
}

figure {
    width: 100%;
    max-width: 580px;
    height: 470px;
}
figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item h3 {
    margin-top: 15px;
}
.item {
    margin-bottom: 40px;
    padding: 0 20px;
}
.col-12 {
    padding: 0 20px;
}
.description,
.description-2 {
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .col-6 {
        max-width: 100%;
    }
    figure {
        height: 30vh;
    }
}