/********** Template CSS **********/
body{
	  font-family: "Roboto", sans-serif !important;
}
h1{
	 font-family: "Roboto", sans-serif !important;
}
h2{
	 font-family: "Roboto", sans-serif !important;
}
h3{
	 font-family: "Roboto", sans-serif !important;
}
h4{
	 font-family: "Roboto", sans-serif !important;
}
h5{
	 font-family: "Roboto", sans-serif !important;
}
h6{
	 font-family: "Roboto", sans-serif !important;
}
p{
	font-family: "Roboto", sans-serif !important;
}

@font-face { font-family: "sinhalabold"; font-display: swap;  src: url("fonts/NotoSerifSinhalaBold_2.ttf") format("truetype"); }@font-face { font-family: "sinhalaregular"; font-display: swap;  src: url("fonts/NotoSerifSinhalaRegular_1.ttf") format("truetype"); }
@font-face { font-family: "sinhalasemibold"; font-display: swap;  src: url("fonts/NotoSerifSinhalaSemiBold_1.ttf") format("truetype"); }
/*
body,html{font-family:'sinhalabold',Helvetica,Arial,Lucida,sans-serif;}
h1,h2,h3,h4,h5,h6,p,span,a,div{font-family:'sinhalabold',Helvetica,Arial,Lucida,sans-serif;}



*/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 20px;
    height: 20px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
	background: #062f7e;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#ff9702;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}
/*.navbar {
		border:solid #060 5px !important;
    }*/
@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }
    .navbar {
        height: 68px;
		border:solid #060 5px !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(3, 27, 78, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-primary);
    border: 15px solid var(--bs-primary);
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}


/*** Features ***/
.feature {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/feature.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.experience .nav-pills .nav-link {
    color: var(--dark);
}

.experience .nav-pills .nav-link.active {
    color: #FFFFFF;
}

.experience .tab-content hr {
    width: 30px;
}


/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) left center no-repeat;
    background-size: cover;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}
.social-media i{
	font-size:12px;
	color:#ff9700;
}
.green_clr{
	background:#062f7e;
}
.logo img{
	width:30%;
}
.logo h1{
	font-size:40px;
}
.logo h2{
	font-size:40px;
}
.logo .co-name{
	padding-top:15px;
}
.mobile-menu{
	padding: 10px;
}
.langage{
	position: absolute;
    background: azure;
    z-index: 9999;
    top: 0;
	border-radius: 5px;
    margin: 10px;
}
/* friendly style */
.padding-20{
	padding:20px;
}
.padding-10{
	padding:10px;
}
.whte_clr{
	color:#fff;
}
.b-color-wht{
	background:#fff;
}
.padding-10{
	padding:10px;
}
/* end friendly style */
.logo h1, h2{
	color:#fff;
}
.form-inline{
	display:flex;
}
.language{
	text-align:right;
	padding:5px;
}
.search_box{
	display: revert;
}
.form-inline{
	background:#ff9702;
	padding:10px;
}
.search_box button{
	background:#006600;
	color:#fff;
	padding:10px;
}
.home_slder_area{
	background: #ff9702;
    margin-top: -34px;
    padding:60px 15px 30px 20px;
}
.home_slder_area img{
	width:100%;
}
.director{
	padding: 20px;
    background: #062f7e;
}
.director-area h2{
    font-size: 14px;
    margin: 0;
    color: #000;
    text-align: center;
}
.director-area h3{
	font-size: 20px;
    margin: 0;
    color: #006600;
    font-weight: 800;
}
.home_page_news{
	background: #1016d5;
    width: 97%;
    margin: 0 auto;
    margin-top: 20px;
	color:#fff;
}
.home_page_news{
	/*padding:10px;*/
}
.news{
	background:#FF0000;
	padding:10px;
	font-weight: 600;
}
.slider-text{
	padding:10px;
}
.home-page-with{
	width:97%;
}
.our-story h2{
	color:#464646;
	padding:10px 0px;
}
.our-story{
	padding:0px;
}
.home-news h2{
	font-size: 23px;
    color: #363636;
    font-weight: 500;
}
.home-news img{
	width:100%;
}
.padding-0{
	padding:0px;
}
.home-news p{
	text-align:justify;
}
.backgroud-image-news-1{
	background-image:url(../img/slider-images/001.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.home-news button{
	border:none;
	background:#006600;
	color:#fff;
	border-raduse:unset;
	padding:5px 10px 5px 10px;
}
.home-story{
	text-align:right;
	padding-top:20px;
}
.home-story button{
	background:#ff0000;
	color:#fff;
	padding:5px 10px 5px 10px;
	border:none;
}
.margin-top-50{
	margin-top:50px;
}
.highlits-news img{
	width:100%;
    padding: 20px 15px 18px 15px;
}

.highlits-news h3{
	font-size:18px;
}
.highlits-news button{
    background: #006600;
    border: none;
    padding: 5px 10px 5px 10px;
    color: #fff;
    margin-bottom: 17px;
    margin-left: 13px;
}
.container-service {
	margin-top: 100px !important;
    margin-bottom: 100px;
}
.story_of_slider_home{
	margin-top:100px;
	margin-bottom:100px;
}
.story_of_slider_home {
	background:#ff9702;
	padding:20px;
}
.story_of_slider_home h2{
	font-size: 19px;
    color: #fff;
    background: #1016d5;
    padding: 10px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.story-title h4{
	font-size:24px;
	color:#fff;
}
.story_of_slider_home h4{
	font-size: 24px;
    padding: 10px 0;
}
.story_of_slider_home .more-btn{
	text-align:right;
	
}
.story_of_slider_home button{
	background: #ff0000;
    color: #fff;
    padding: 5px 10px 5px 10px;
    border: none;
}
#visiton h2{
	color:#060;
   /* padding-bottom: 50px;*/
    text-align: center;
	margin:0;
}
.side-bar{
	background:#060;
	padding:10px;
}
.text-justify{
	text-align:justify;
}

.input-group button{
    background: #ff9702;
    color: #fff;
    border: none;
}
.latest-news{
	
}
.side-bar h4{
	padding: 10px 0px;
    color: #fff;
}
.side-bar img{
	width:100%;
}
.padding-0{
	padding:0;
}
.side-bar h5{
	font-size:12px;
	color:#fff;
}
.title_image{
	text-align:center;
	padding-bottom:50px;
}
.title_image img{
	width:5%;
}
.copy-right p{
	font-size:14px;
	margin:0;
	background:#072972;
	color:#fff;
}
.copy-right a{
	color:#fff;
}
.all-width{
	max-width:96% !important;
}
ul li{
	color:#000 !important;
}
p{
	color:#000;
}
.history_director img{
	width:100%;
	padding:10px;
}
.footer p{
	color:#fff !important;
}
.book button{
	padding:30px;
	margin:20px 0px;
}
/*.gallery p{
	background: #ff9702;
    padding: 10px;
    line-height: 16px;
}*/


.gallery-container img{
	width:100%;
	margin-bottom:20px;
}
#baguetteBox-overlay .full-image imgP{
	padding:50px !important;
}
#baguetteBox-figure-2 img{
	max-height: 90% !important;
}

#baguetteBox-figure-1 img{
	max-height: 90% !important;
}
#baguetteBox-figure-3 img{
	max-height: 90% !important;
}
#baguetteBox-figure-0 img{
	max-height: 90% !important;
}
.cenitary h3{
	background: #ff9702;
    padding: 10px;
    color: #fff;
    text-align: center;
}
.cenitary button{
	padding: 10px 10px 10px 10px;
    background: #ff9702;
    border: none;
    color: #fff;
    border-radius: 10px;
    width: 34%;
	margin-bottom:30px;
}
.cenitary a{
	color:#fff;
}
.cenitary h4{
	background: #006600;
    padding: 10px;
    color: #fff;
    text-align: center;
}
.contact{
	padding: 30px;
    background: #e5e5e5;
    margin: 10px 0px;
    color: #000;
    border-radius: 10px;
}
.contact h3{
	color:#000;
}
.divice-directers{
    text-align: center;
    background: #f7f7f7;
    padding: 20px;
    margin: 10px 0;
}
.distric h3{
	font-size:20px;
}




.wrap-contact100 {
    width: 920px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 62px 55px 90px;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 13px;
    padding: 10px 30px 9px 22px;
    margin-bottom: 20px;
}
.bg1 {
    background-color: #f7f7f7;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 13px;
    padding: 10px 30px 9px 22px;
    margin-bottom: 20px;
}
.rs1-wrap-input100 {
    width: calc((100% - 30px) / 2);
}
.validate-input {
    position: relative;
}

.w-full {
    width: 100%;
}
ul li{
	color:#000 !important;
}
ol li{
	color:#000 !important;
}
.text-j{
	text-align:justify;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}
@font-face {
    font-family: "My Custom Font";
    src: url(fonts/NotoSerifSinhalaBold_2.ttf) format("truetype");
	
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
.m-logo img{
	width:20%;
}
.contact a{
	color:#000;
}
.contact a:hover{
	color:#000;
}
.all_contact a{
	color:#000;
}
.all_contact a:hover{
	color:#000;
}

.home-back-box{
    background-color: #ece7e7;
}
.home-back-box h3{
    padding: 0px 13px;
}
.home-back-box p{
    padding: 0px 13px;
}
/*
.gal-box :hover {
   
    box-shadow: 0px 4px 15px rgb(129 118 118 / 92%);
}*/
.gal-box{
    background-color: #fefefe;
    border: 2px solid #f08c00;
    transition: box-shadow 0.3s ease-in-out;
}
.gal-box-p{
   padding: 0px 10px 0px 10px;
   min-height: 85px;
   font-size: 14px;
}
.gal-box img{
    padding: 10px;
}

.gal-box button{
    background: #006600;
    border: none;
    padding: 5px 10px 5px 10px;
    color: #fff;
    margin-bottom: 17px;
    margin-left: 13px;
}

.gal-box-more p {
    padding: 15px 44px 0px 10px;
    text-align: justify;
}
.gal-box-more h5 {
    padding: 15px 44px 15px 10px;
    text-align: justify;
}
.gal-box-more2 p {
    padding: 0px 44px 15px 10px;
    text-align: justify;
}
.gal-box:hover{
    box-shadow: 0px 4px 15px rgb(129 118 118 / 92%);
}
.menu-logo img{
	width: 100%;
}