:root {
    --gap50: 50px;
    --gap40: 40px;
    --gap30: 30px;
    --gap25: 25px;
    --gap20: 20px;
    --gap15: 15px;
    --gap10: 10px;

    --h1_size: clamp(2.5rem, 4vw, 4.5rem);
    --h2_size: clamp(2rem, 3.5vw, 3rem);
    --h3_size: clamp(1.5rem, 2.5vw, 2.5rem);
    --h4_size: clamp(1.25rem, 2vw, 1.75rem);
    --h5_size: clamp(1.1rem, 2vw, 1.5rem);
    --h6_size: clamp(1rem, 0.9vw, 1.25rem);

    --h1_lineheight: calc(var(--h1_size) * 1.1);
    --h2_lineheight: calc(var(--h2_size) * 1.1);
    --h3_lineheight: calc(var(--h3_size) * 1.1);
    --h4_lineheight: calc(var(--h4_size) * 1.2);
    --h5_lineheight: calc(var(--h5_size) * 1.3);
    --h6_lineheight: calc(var(--h6_size) * 1.3);

    --heading_font_family: "Zen Dots", sans-serif;

    --headingColor1: #0f172a;
    --headingColor2: #ffffff;
    /*--headingColor3: #2563eb;*/
    --headingColor4: #0844c9;


    --pera_font_family: "Elms Sans", sans-serif;
    --peraSize: 17px;
    --pera_line_height: 1.4;

    --peraColor1: #0f172a;
    --peraColor2: #ffffff;

    --peraColor3: #596273;
    --peraColor4: #2563eb;
    --peraColor5: #da251d;
    --peraColor6: #8993a6;


    --bgColor1:#000000;
    --bgColor2:#ffffff;

    --bgColor5:#050419;
    --bgColor6:#2563eb;
    --bgColor7:#de2c2c;


    --body_font_family: "Elms Sans", sans-serif;

    --activecolor:#0844c9;

    --innercontainer:1400px;


    --extafont1:"Quicksand", sans-serif;

}




*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--pera_font_family);
    font-size: var(--peraSize);
    line-height: var(--pera_line_height);
    color: var(--peraColor3);
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font_family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font_family);
    color: var(--headingColor1);
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    font-weight: 700;
}

h1 {
    font-size: var(--h1_size);
    line-height: var(--h1_lineheight);
}
h2 {
    font-size: var(--h2_size);
    line-height: var(--h2_lineheight);
}
h3 {
    font-size: var(--h3_size);
    line-height: var(--h3_lineheight);
}
h4 {
    font-size: var(--h4_size);
    line-height: var(--h4_lineheight);
}
h5 {
    font-size: var(--h5_size);
    line-height: var(--h5_lineheight);
}
h6 {
    font-size: var(--h6_size);
    line-height: var(--h6_lineheight);
}

p {
    font-family: var(--pera_font_family);
    font-size: var(--peraSize);
    line-height: var(--pera_line_height);
    color: var(--peraColor3);
    font-weight: 500;
    margin-bottom: 15px;
    overflow-wrap: break-word;
}

p:last-child {
    margin-bottom: 0;
}

span {
    font-family: var(--pera_font_family);
    font-size: var(--peraSize);
    line-height: var(--pera_line_height);
    color: var(--peraColor3);
    font-weight: 500;
}

a:focus-visible,
a:focus,
img:focus-visible,
img:focus {
    outline: none;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: auto;
    padding: 0 80px;
}

.custom_space_50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom_pb_space_50 {
    padding-bottom: 50px;
}
.custom_pt_space_50 {
    padding-top: 50px;
}



.custom_heading {
    margin-bottom: 35px;
}

.custom_heading .custom_title {
    font-size: var(--h2_size);
    line-height: var(--h2_lineheight);
    margin-bottom: 15px;
    color: var(--headingColor4);
}

.custom_heading .custom_title .custom_span{
    font-size: calc(clamp(2rem, 3.5vw, 3rem));
    margin-bottom: inherit;
    color: inherit;
}

.custom_heading .custom_pera {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.custom_heading .custom_title{
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}


.custom_tags {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #d9e9fe;
    color: var(--peraColor4);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.text-center {
    text-align: center;
}

.text-white{
    color: white;
}

.custom_heading.text-center .custom_title {
    text-align: center;
}

.custom_heading.text-left{
    text-align: left;
}

.custom_heading.text-left .custom_pera {
    margin-left: inherit;
}

.custom_heading.text-white .custom_title {
    color: var(--headingColor2);
}

.custom_btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: .4s ease;
    z-index: 9;
    outline: none !important;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid var(--activecolor);
    color: var(--activecolor);
}

.custom_btn:hover{
    background-color: var(--activecolor);
    color: #ffffff;
}

.custom_btn svg,
.custom_btn i{
    transition: 0.2s all ease;
}

.custom_btn:hover svg,
.custom_btn:hover i{
    transform: translateX(5px);
}

.btn1{
    background-color: var(--activecolor);
    border: 2px solid var(--activecolor);
    color: #fff;
}

.btn1:hover{
    background-color: #000000;
    border: 2px solid #000000;
}

.btn2{
    color: #fff;
    border: 2px solid #fff;
    background-color: transparent;
}

.btn2:hover{
    background-color: var(--activecolor);
    border: 2px solid var(--activecolor);
}



/* Animation css start */

/* Initial State */
.reveal,
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right{
    opacity: 0;
    transition: all .8s cubic-bezier(.215,.61,.355,1);
    will-change: transform, opacity;
}

.reveal-up{
    transform: translateY(80px);
}

.reveal-down{
    transform: translateY(-80px);
}

.reveal-left{
    transform: translateX(-80px);
}

.reveal-right{
    transform: translateX(80px);
}

/* Active State */
.reveal-active{
    opacity: 1 !important;
    transform: translate(0,0) !important;
}

/*Grid / Group Animation CSS*/

.reveal-group > *{
    opacity: 0;
    transform: translateY(60px);
    transition:
    opacity 1s cubic-bezier(.215,.61,.355,1),
    transform 1s cubic-bezier(.215,.61,.355,1);
}

.reveal-group > *.reveal-active{
    opacity: 1;
    transform: translateY(0);
}


/* Animation css End */






















@media only screen and (max-width: 1500px) {
    .container{padding: 0px 50px;}
}

@media only screen and (max-width: 980px) {
    .container{padding: 0px 30px;}
}

@media only screen and (max-width: 840px) {
    :root {
        --gap50: 30px;
        --gap40: 30px;
    }

    .custom_heading {margin-bottom: 15px;}    

}

@media only screen and (max-width:768px){

    :root{
      --gap50: 20px;
      --gap40: 20px;
      --gap30: 20px;
      --gap25: 20px;
      --gap20: 20px;

      --peraSize: 16px;
  }

  .container {padding: 0 15px;}

  .custom_space_50 {padding-top: 30px;padding-bottom: 30px;}
  .custom_pb_space_50 {padding-bottom: 30px;}
  .custom_pt_space_50 {padding-top: 30px;}

  .custom_btn{font-size: 16px;padding: 12px 20px;}

}


