/*****Common Styles*****/
body, div, a{
    font-family: 'Roboto', sans-serif;
    font-size:14px;
    color:#000000;
   }
   
   h1{
       font-family: 'Roboto', sans-serif;
       font-size: 48px;
       margin-bottom: 15px;
       font-weight: 700;
   }
   h2{
       font-family: 'Roboto', sans-serif;
       font-size: 35px;
       margin-bottom: 30px;
       font-weight: 500;
   }
   
   h3{
       font-family: 'Roboto', sans-serif;
       font-size: 26px;
       margin-bottom: 30px;
       font-weight: 500;
   }
   
   h4{
       font-family: 'Roboto', sans-serif;
       font-size: 22px;
       margin-bottom: 30px;
       font-weight: 500;
   }
   h5{
       font-family: 'Roboto', sans-serif;
       font-size: 16px;
       margin-bottom: 30px;
       font-weight: 500;
   }
   h6{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}
   a{
       text-decoration: none;
       -webkit-transition: all .25s ease-in;
       -moz-transition: all .25s ease-in;
       -o-transition: all .25s ease-in;
       transition: all .25s ease-in;
   }
   a:hover{
       text-decoration: none;
       cursor: pointer;
   }
   p{
       margin: 0 0 10px 0;
       font-size: 12px;
   }
   
   .container{
       max-width: 1230px;
       width:100%;
   }
   .text_red{
       color:#ff0024;
   }
   .text_blue{
    color: #1975d0;
   }
   .text_orange {
    color: #fb7000;
  }
  .text_grey{
      color:#777777;
  }
   section{
       padding:60px 0px;
   }
   :root{
    --orange__back:#fb7000;
    --blue__back:#1975d0;
    --green__back:#46a109;
    --red__back:#ff0024;
    --darkgreen__back:#0bba45;
    --gray__back:#e8e8e8;
    --darkgray__back:#747474;
    --lightblue__back:#eaf0f9;
}
.lightblue__back{
	background-color: var(--lightblue__back);
}
.orange__back{
	background-color: var(--orange__back);
}
.blue__back{
    background-color: var(--blue__back);
}
.green__back{
    background-color: var(--green__back);
}
.red__back{
    background-color: var(--red__back);
}
.darkgreen__back{
    background-color: var(--darkgreen__back) ;
    }
.gray__back{
    background-color: var(--gray__back) ;
}
.darkgray__back{
    background-color: var(--darkgray__back);
}

/**Header section css starts**/
header{
    background: #0246b6;

}

 header.py-2 {
    padding-bottom: 70px !important;
} 


/**Header section css ends**/

/**Footer section css starts**/
.footer_section{
    background: #e9e9ea;
}
.footer_text h6{
    font-size: 16px;
    font-weight: 500;
    color:#777778
}
/**Footer section css ends**/







/******************************************************RESPONSIVE CSS*******************************************************/

/*

 * Table of Contents:

 * 	   - Media Queries

 *   0 - media screen and (max-width: 1170px)

 *   1 - media screen and (max-width: 1152px) 

 *   2 - media screen and (max-width: 1024px)

 *   3 - media screen and (max-width: 992px)

 *   4 - media screen and (max-width: 800px)

 *   5 - media screen and (max-width: 768px)

 *   6 - media screen and (max-width: 728px)

 *   7 - media screen and (max-width: 640px)

 *   8 - media screen and (max-width: 500px)

 *   9 - media screen and (max-width: 480px)

 *  10 - media screen and (max-width: 414px)

 *  11 - media screen and (max-width: 375px)

 *  12 - media screen and (max-width: 360px)

 *  13 - media screen and (max-width: 320px)

---------------------------------------------------------------------- */

@media screen and (max-width: 1170px){

    .container{
        padding: 0px 15px;
    }
}