@charset "utf-8";
/*----------
* theme: 
* Author: ANTS Creation
* Url : https://www.ants.lk/
----------------------------
* main css file
----------------------------------*/

/*--
Font Pluging
-----------------------------------*/
@font-face{
	font-family: font-1;
    src: url("../fonts/Roboto/Roboto-Regular.ttf"); 
    /* src: url("../fonts/lulusma/Lulusma-x3oGK.otf");  */
}

@font-face{
	font-family: font-2;
    src: url("../fonts/Roboto/Roboto-Bold.ttf"); 
    /* src: url("../fonts/lulusma/LulusmaBold-EaXon.otf");  */
}

@font-face{
    font-family: font-3;
    src: url("../fonts/Roboto/Roboto-Black.ttf");
    /* src: url("../fonts/lulusma/LulusmaThin-ZVJLm.otf"); */
}

 /*--
 Comman class
 ----------------------------------*/
body, div, section, a, ul, li, ol{
    font-family: font-1;
} 

p{
    font-family: font-1;
    color: var(--txt-color);
}

h1{
    font-family: font-2;
    color: var(--theme-2);
}

h2{
    font-family: font-1;
    color: var(--theme-2);
}

h3{
    font-family: font-2;
    color: var(--theme-2);
}

h5{
    font-family: font-2;
    color: var(--theme-2);
}

h6{
    position: relative;
    font-family: font-2;
    color: var(--theme-1);
}

h6:after {
    background: var(--theme-1);
    position: absolute;
    content: "";
    margin: 9px 10px auto;
    height: 3px;
    width: 35px;
}

.section-p-tb{
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-p-t{
    padding-top: 40px;
}

.section-p-b{
    padding-bottom: 40px;
}

.bg-theme{
    background-color: var(--theme-1);
}

a{
    text-decoration: none !important;  
}

ul{
    margin: 0;
    padding: 0;
}

ul li{
    list-style: none;
}


/*--
Button Styles
-----------------------------------*/
.style-btn {
    font-size: 16px;
    color: var(--theme-1);
    padding: 12px 25px;
    line-height: 1;
    text-align: center;
    margin: 0px;
    background-color: transparent;
    border: 1px solid var(--theme-1);
    transition: 0.5s;
    display: inline-block;
}

.style-btn:hover{
    background-color: var(--theme-1);
    /* border: 1px solid var(--theme-3); */
    border: 1px solid var(--theme-4);
    color: var(--theme-3);
}

/*--
page-benner
-----------------------------------*/
.banner-section{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 275px;
    z-index: 0;
}

.banner-section::after{
    background: rgba(3, 23, 34, 0.801);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner-title{
    display: table;
    vertical-align: middle;
    height: 275px;
}

.banner-title .titles{
    display: table-cell;
    vertical-align: middle;
}

.page-title{
    position: relative;
    z-index: 2;
}

.page-title h2 {
    font-size: 36px;
    color: var(--theme-3);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-title ol.breadcrumb {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.page-title ol.breadcrumb li a {
    color: var(--theme-3);
    transition: all 0.3s ease-out;
}

.page-title ol.breadcrumb li.active {
    color: var(--theme-4);
}

.page-title .breadcrumb li + li::before {
    content: "- ";
    font-weight: 600;
    margin-left: 10px;
    margin-right: 5px;
    color: var(--theme-3);
}

/* Preloader */

.loader_bg{
    position: fixed;
    z-index: 999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--theme-1);
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: calc(50vh - 65px);
    left: calc(50vw - 50px);
}
  
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* End Preloader */

/* scroll up button */

#back2Top{
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: -15px;
    text-decoration: none;
}

/* form error messages */

.alert-danger {
    position: relative;
    color: #ac1322;
    background-color: transparent !important;
    border-color: transparent !important;
    padding: 0;
}

/* .alert-danger::before {
    content: '\f071';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 14px;
    color: #af0415;
} */

.alert-success {
    position: relative;
    color: #155724;
    background-color: transparent !important;
    border-color: transparent !important;
}

.alert-success::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 13px;
    font-size: 14px;
    color: #104e1e;
}


