@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/Poppins/Poppins-Regular.ttf"); 
}

@font-face{
	font-family: font-2;
    src: url("../fonts/Poppins/Poppins-Bold.ttf"); 
}

@font-face{
    font-family: font-3;
    src: url("../fonts/Poppins/Poppins-Italic.ttf");
}

@font-face{
    font-family: font-sign;
    src: url("../fonts/PhotographSignature.ttf");
}

 /*--
 Comman class
 ----------------------------------*/
 body, div, section, h5, h6, p, a, ul, li, ol{
    font-family: font-1;
} 

h1{
    font-family: font-2;
    color: #000;
}

h2{
    font-family: font-2;
    color: #000;
}

h3{
    font-family: font-2;
}

h4{
    font-family: font-1;
    color: var(--theme-2);
    font-weight: 700;
}

h5{
    font-family: font-2;
    color: #000;
}

h6{
    font-family: font-1;
    color: var(--theme-2);
    font-weight: 600;
}

p{
    color: var(--theme-txt);
}

.section-p-tb{
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-p-t{
    padding-top: 40px;
}

.section-p-b{
    padding-bottom: 40px;
}

a{
    text-decoration: none !important;  
}

ul{
    margin: 0;
    padding: 0;
}

ul li{
    list-style: none;
}

/*--
Button Styles
-----------------------------------*/
.btn-style{
    font-size: 15px;
    color: #fff;
    background-color: var(--theme-2);
    border-radius: 2px;
    padding: 10px;
    transition: 0.5s;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-style:hover{
    color: #fff;
    /* background-color: var(--theme-4); */
    background-color: var(--theme-5);
}

/*--
Section-benner
-----------------------------------*/
.page-title-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0c0a30a2;
}

.breadcrumb{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-color: transparent;
    justify-content: center;
    display: table;
    vertical-align: middle;
    height: 300px;
    padding: 0px;
}

.breadcrumb .banner-title{
    display: table-cell;
    vertical-align: middle;
}

.breadcrumb h1 {
    position: relative;
    color: #fff;
    font-size: 40px;
    margin-bottom: 0px;
}

.breadcrumb .nt-breadcrumbs {
    margin: 0;
}

.nt-breadcrumbs {
    padding: 0px 0px 0px 0;
}

.nt-breadcrumbs .nt-breadcrumbs-list {
    padding: 0;
    list-style: none;
    font-size: 13px;
    text-transform: capitalize;
}

.breadcrumb ul {
    position: relative;
    margin: 0;
}

.nt-breadcrumbs .nt-breadcrumbs-list li {
    display: inline-block;
}

.breadcrumb ul li {
    color: #fff;
    font-size: 14px;
    opacity: .8;
}

.breadcrumb ul li {
    margin: 0px 0px;
}

.breadcrumb ul li a {
    color: #fff;
}

.breadcrumb ul li:after {
    content: " : ";
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    opacity: .8;
    padding-left: 10px;
    padding-right: 10px;
}

.breadcrumb ul li:last-child::after {
    display: none;
}

/* scroll up button */
#back2Top{
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 25px;
    text-decoration: none;
}

.scroll-up-btn i{
    /* background-color: var(--theme-4); */
    background-color: var(--theme-5);
    font-size: 35px;
    color: var(--theme-4);
    padding: 0px 10px 4px 10px;
    border-radius: 3px;
    opacity: 0.4;
    transition: 0.4s;
}

.scroll-up-btn i:hover{
    opacity: 1;
}


/* form error messages */

.alert-danger {
    position: relative;
    color: #ac1322;
    background-color: transparent !important;
    border-color: transparent !important;
}

.alert-danger::before {
    content: '\f071';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 12px;
    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;
}