@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,700|Roboto:300,400,500,700,900";
@import url(https://fonts.googleapis.com/css?family=Mukta:200,300,regular,500,600,700,800);

:root {
    --theme-color: rgb(2, 111, 127);
    --theme-light-color: rgb(2, 111, 127);
    --white-color: #fff;
    --secondary-color: rgb(197,7,20);
    --themeAdvance-color: 2, 111, 127;
    --widget-font: 'mukta', sans-serif;
    --section-title-font-size: 30px; 
    --nepali-font: 'Kokila', sans-serif;
    --mukta-font:  'mukta', sans-serif;

    --headline-xlarge: 42px;
    --headline-large: 37px;
    --headline-semi-middle: 34px;
    --headline-middle: 28px;
    --headline-semi-small: 26px;
    --headline-small: 24px;
    --headline-xsmall: 22px;

    --para-big: 28px;
    --para-middle: 26px;
    --para-small: 24px;
    --para-xsmall: 22px;
}


@media (max-width:575px) {
    :root {
        --headline-xlarge: 36px;
        --headline-large: 32px;
        --headline-semi-middle: 28px;
        --headline-middle: 26px;
        --headline-semi-small: 24px;
        --headline-small: 22px;
        --headline-xsmall: 20px;

        --para-big: 24px;
        --para-middle: 24px;
        --para-small: 22px;
        --para-xsmall: 18px;
    }
}

/* Regular */
@font-face {
  font-family: 'Kokila';
  src: url('../fonts/kokila.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Kokila';
  src: url('../fonts/kokilab.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: 'Kokila';
  src: url('../fonts/kokilai.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: 'Kokila';
  src: url('../fonts/kokilabi.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

.fontcapsioncredit-bigstory {
    display: none
}

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

body {
    font-size: 16px;
    font-family: var(--nepali-font);
    font-weight: 400;
    height: 100%;
    line-height: 28px;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #646464;
    background-color: #fff
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 20px;
    color: #000
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: var(--nepali-font) !important;
    margin: 0 0 20px;
    color: #111
}

a {
    text-decoration: none !important
}


.backdrop__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 5554;
}

.custom-container{
    padding: 0 3rem;
}

@media (max-width:575px) {
    
    .custom-container{
        padding: 0 1.5rem;
    }
}


.light__linear-bg {
    background: linear-gradient(180deg, #fff9f9 0%, #f2f9ff 100%);
}

.theme__bg {
    background: var(--theme-color);
}

.theme__linear-bg {
    background: linear-gradient(180deg, #112d56, var(--theme-color));
}

.theme__light-bg {
    background: #f1f7ff;
}

.light__grey-bg {
    background: #f9fcff;
}