Thank you for purchasing our template. If you have any questions that are beyond the scope of this help file, please feel free to modinatheme@gmail.com email us
<!-- Google Fonts
============================================ -->
Unbounded - <link href='https://fonts.googleapis.com/css2?family=Unbounded' rel='stylesheet' type='text/css'>
<!-- =========== All Stylesheet ================= -->
<!-- font-awesome css plugins
============================================ -->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!-- meanmenu CSS
============================================ -->
<link rel="stylesheet" href="assets/css/meanmenu.css">
<
!-- animate CSS
============================================ -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- magnific-popup CSS
============================================ -->
<link rel="stylesheet" href="assets/css/magnific-p19opup.css">
<!-- swipper JS CSS
============================================ -->
<link rel="stylesheet" href="assets/css/slick.main.css">
<!-- odometer CSS
============================================ -->
<link rel="stylesheet" href="assets/css/odometer.css">
<!-- helper CSS
============================================ -->
<link href="assets/css/helper.css" rel="stylesheet">
<!-- Bootstrap CSS
============================================ -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Template Style CSS
============================================ -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- Style CSS
============================================ -->
<link rel="stylesheet" href="style.css">
<!-- All JS Plugins -->
<!-- jQuery
============================================ -->
<script src="assets/js/jquery.min.js"></script>
<!-- Bootstrap
============================================ -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Others jQuery Plugins
============================================ -->
<script src="assets/js/jquery.easing.1.3.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/scrollUp.min.js"></script>
<script src="assets/js/swpier.min.js"></script>
<script src="assets/js/magnific-popup.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/meanmenu.js"></script>
<!-- Main JS
============================================ -->
<script src="assets/js/main.js"></script>
I'm using One SCSS files in this template. You change the SCSS Code of style.scss file
================================= |*** Table of contents: ***| ================================= 1. General styles 2. Typography 3. Helpers 4. Preloader 5. Go up button 6. Header and navigation 7. Hero Section 8. About us 9. Causes 10. Fun facts 11. Events 12. Blog *Note: Responsive css in style.css file bottom.
If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.
/* ----------------------------------
Hero Section - Styles
------------------------------------ */
.hero-1 {
padding: 0 0 100px;
background-position: bottom !important;
position: relative;
@include breakpoint (max-xl4){
overflow: hidden;
}
@include breakpoint (max-xxxl){
background-image: none !important;
background: $theme-color;
padding-top: 100px;
margin-bottom: 120px;
}
@include breakpoint (max-xl){
margin-bottom: 100px;
}
@include breakpoint (max-lg){
margin-bottom: 80px;
}
.hero-shape {
position: absolute;
bottom: -25%;
left: 0;
right: 0;
z-index: -1;
@include breakpoint (max-xxxl){
display: none;
}
}
.hero-content {
text-align: center;
position: relative;
z-index: 9;
.border-shape {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%,-50%);
@include breakpoint (max-xxxl){
display: none;
}
}
p {
font-weight: 600;
color: $white;
border: 1px solid #31546e;
display: inline-block;
padding: 8px 30px;
border-radius: 100px;
margin-bottom: 20px;
}
h1 {
color: $white;
@include breakpoint (max-xxl){
font-size: 70px;
}
@include breakpoint (max-md){
font-size: 60px;
}
@include breakpoint (max-sm){
font-size: 48px;
}
@include breakpoint (max-xxs){
font-size: 38px;
}
}
.theme-btn {
margin-top: 40px;
&::after {
background: $white;
}
&:hover {
color: $header-color;
}
}
}
.hero-image {
margin-left: -200px;
@include breakpoint (max-xxxl){
margin-left: 0;
img {
@include imgw;
}
}
}
}
.section-padding {
padding: 120px 0px;
}
Change The Carousel & Others with your's choice
function loader() {
$(window).on('load', function() {
// Animate loader off screen
$(".preloader").addClass('loaded');
$(".preloader").delay(600).fadeOut();
});
}
loader();
new WOW().init();
$(".img-popup").magnificPopup({
type: "image",
gallery: {
enabled: true,
},
});
$('.video-popup').magnificPopup({
type: 'iframe',
callbacks: {}
});
$('select').niceSelect();
$('.odometer').appear(function(e) {
var odo = $(".odometer");
odo.each(function() {
var countNumber = $(this).attr("data-count");
$(this).html(countNumber);
});
});
const sliderActive2 = ".hero-slider";
const sliderInit2 = new Swiper(sliderActive2, {
loop: true,
slidesPerView: 1,
effect: "fade",
speed: 3000,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
navigation: {
nextEl: ".array-prev",
prevEl: ".array-next",
},
pagination: {
el: ".dot",
clickable: true,
},
});
function animated_swiper(selector, init) {
const animated = function animated() {
$(selector + " [data-animation]").each(function () {
let anim = $(this).data("animation");
let delay = $(this).data("delay");
let duration = $(this).data("duration");
$(this)
.removeClass("anim" + anim)
.addClass(anim + " animated")
.css({
webkitAnimationDelay: delay,
animationDelay: delay,
webkitAnimationDuration: duration,
animationDuration: duration,
})
.one("animationend", function () {
$(this).removeClass(anim + " animated");
});
});
};
animated();
init.on("slideChange", function () {
$(sliderActive2 + " [data-animation]").removeClass("animated");
});
init.on("slideChange", animated);
}
animated_swiper(sliderActive2, sliderInit2);