@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: linear-gradient(to top, #00172B, #002E4D);
    --first-color: #00172B;
    --second-color: #002E4D;
    --black-color: #000000;
    --white-color: #ffffff;
    --offwhite-color: #eeeeee;
    --brown-color: #965500;
    --heading-font: "Cinzel", serif;
    --paragraph-font: "Ubuntu", sans-serif;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    html,body {
        overflow-x: hidden;
    }
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
a {
    text-decoration: none;
    font-size: 18px;
}

p {
	font-weight: 400;
    font-size: 18px;
}

p,li,a,span,small,label,button {
    font-family: var(--paragraph-font);
}
input::placeholder {
    font-family: var(--paragraph-font);
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--heading-font);
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--first-color);
}
.form-select:focus {
    box-shadow: none;
    border: 1px solid var(--first-color);
}

/* Breadcrumb */
#breadcrumb {
    margin-top: 50px;
}
/* Breadcrumb */

/* Top bar */
#top_nav {
    padding: 8px 100px;
    background-color: var(--second-color);
}
#top_nav a {
	font-size: 17px;
    font-weight: 500;
	color: var(--white-color);
}
.top_nav_social_icon .top_social_media li {
	display: inline-block;
	padding-right: 15px;
}
.top_nav_social_icon .top_social_media li a {
    color: var(--white-color);
}
.top_nav_social_icon .top_social_media li a i {
	font-size: 18px;
}
.top_nav_social_icon .top_social_media li a i:hover {
	color: var(--offwhite-color);
}


/* Main Navbar */
.navbar {
    position: sticky;
    top: 0px;
    background-color: transparent;
    z-index: 999;
	margin-left: 20px;
	margin-right: 20px;
	border-radius: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar_icons_item {
    flex-direction: row;
}
.navbar img {
    height: auto;
    width: 140px;
}
.navbar .navbar-nav {
    background: var(--background);
    padding: 15px 10px;
    border-radius: 10px;
}
.navbar-nav .nav-item {
    padding: 0 5px;
}
.nav-link {
	color: var(--white-color);
	font-weight: 500;
	font-size: 18px;
}
.nav-link:hover {
	color: var(--offwhite-color) !important;
}
.navbar-nav .nav-link.active {
	color: var(--offwhite-color) !important;
}
.navbar-nav .nav-link:focus {
	color: var(--offwhite-color) !important;
}
.appointment_btn {
    background-color: var(--white-color);
    margin-left: 20px;
    border-radius: 5px;
    color: var(--first-color);
}
.appointment_btn:hover {
    color: var(--second-color) !important;
}


@media only screen and (min-width: 300px) and (max-width: 500px) {
	#top_nav {
		padding: 8px 0;
	}
	#top_nav .justify-content-between {
		justify-content: center !important;
	}
	.top_nav_social_icon {
		display: none;
	}
	.navbar {
		margin-left: 5px;
		margin-right: 5px;
		top: 5px;
        background-color: var(--white-color) !important;
	}
	.navbar img {
		height: auto;
		width: 100px;
	}
    .navbar .navbar-nav {
        background-color: transparent !important;
    }
	.navbar-toggler {
		background-color: var(--white-color);
	}
	.offcanvas {
		background-color: var(--black-color);
		overflow: scroll;
	}
    .top_nav_text_menue .top_mail_id {
        display: none;
    }
	.offcanvas .navbar-nav {
		padding: 20px;
	}
    .appointment_btn {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (min-width: 501px) and (max-width: 799px) {
    .navbar {
        background-color: var(--white-color);
    }
    .appointment_btn {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    #top_nav .justify-content-between {
		justify-content: center !important;
	}
    .navbar .navbar-nav {
        background-color: transparent !important;
    }
	#top_nav {
		padding: 8px 10px;
	}
    .top_nav_social_icon {
		display: none;
	}
    .navbar img {
		height: auto;
		width: 100px;
	}
	.navbar-toggler {
		background-color: var(--white-color);
	}
	.offcanvas {
		background-color: var(--black-color);
		overflow: scroll;
	}
	.offcanvas .navbar-nav {
		padding: 20px;
	}
}
@media only screen and (min-width: 800px) and (max-width: 1230px) {
	.nav-link {
		font-size: 15px;
	}
}

/* Sidebar Icon */
#sidebar_icon {
    background-color: var(--first-color);
    position: fixed;
    right: 0;
    top: 200px;
    padding: 0px 8px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 900;
}
#sidebar_icon hr {
    color: var(--white-color);
}
#sidebar_icon sup {
    color: var(--red-color);
    padding: 2px;
    border-radius: 50%;
}
#sidebar_icon ul li {
    margin: 5px 0;
}
#sidebar_icon ul li a {
    color: var(--white-color);
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #sidebar_icon {
        display: none;
    }
}

/* Home */

/* Hero */
.heroSwiper img {
    width: 100%;
}
/* Hero */

/* Home About */
.home_about_section {
    padding: 50px 0;
}
.home_about_section h5 {
    background-color: var(--second-color);
    display: inline;
    padding: 5px 15px;
    color: var(--white-color);
    border-radius: 10px;
}
.home_about_section h2 {
    font-size: 40px;
    margin-top: 20px;
}
.home_about_section img {
    margin: 10px 0;
    width: 100%;
    border-radius: 20px;
}
.home_about_section ul li {
    margin-bottom: 10px;
}
.home_about_section ul li i {
    color: #002E4D;
}
.home_about_section .btn {
    background: var(--background);
    color: var(--white-color);
    margin-top: 30px;
}
/* Home About */

/* Services Section */
.home_services_section {
    padding: 50px 0;
    
}
.home_services_section h5 {
    background-color: var(--second-color);
    display: inline;
    padding: 5px 15px;
    color: var(--white-color);
    border-radius: 10px;
}
.home_services_section h2 {
    font-size: 40px;
    margin-top: 20px;
}
.home_services_section .serviceSwiper a {
    color: var(--first-color);
}
/* Services Section */

/* Home Third */
.home_third_section {
    padding: 50px 0;
}
.home_third_count_section {
    color: var(--white-color);
    background: var(--second-color);
    padding: 60px;
    border-radius: 20px;
}
.home_third_count_section h3 {
    font-size: 40px;
    font-weight: 600;
}
.home_third_count_section .d-flex {
    margin: 20px 0;
}
.home_third_section i {
    font-size: 40px;
}
/* Home Third */

/* Home Video */
.home_video_section {
    padding: 50px 0;
    background: var(--offwhite-color);
}
.home_video_section ul li {
    margin: 10px 0;
}
.home_video_section ul li i {
    color: #002E4D;
}
/* Home Video */

/* fifth section */
.home_fifth_section {
    padding: 50px 0;
}
.home_fifth_section i {
    font-size: 40px;
    color: var(--brown-color);
    margin-bottom: 15px;
}
.home_fifth_section h5 {
    background-color: var(--second-color);
    display: inline;
    padding: 5px 15px;
    color: var(--white-color);
    border-radius: 10px;
}
.home_fifth_section h2 {
    font-size: 40px;
    margin-top: 20px;
}
/* fifth section */

/* Review Section */
.home_review_section {
    padding: 50px 0;
}
.home_review_section h5 {
    background-color: var(--second-color);
    display: inline;
    padding: 5px 15px;
    color: var(--white-color);
    border-radius: 10px;
}
.review_left_section_img {
    width: 100%;
    margin-top: 20px;
}
.home_review_section h2 {
    font-size: 40px;
    margin-top: 20px;
}
.review_box {
    background-color: var(--offwhite-color);
    padding: 20px;
    border-radius: 10px;
}
.rating_star ul li {
    display: inline-block;
    color: #ffb700;
}
.fa-quote-right {
    font-size: 80px;
    color: #b8b8b8;
}
/* Review Section */

/* Blog Section */
.home_blog_section {
    padding: 50px 0;
}
.home_blog_section h5 {
    background-color: var(--second-color);
    display: inline;
    padding: 5px 15px;
    color: var(--white-color);
    border-radius: 10px;
}
.home_blog_section a {
    color: var(--first-color);
}
.home_blog_section h2 {
    font-size: 40px;
    margin-top: 20px;
}
.home_blog_section .btn {
    background: var(--background);
    color: var(--white-color);
    margin-top: 30px;
}
/* Blog Section */

@media only screen and (min-width: 300px) and (max-width: 500px) {
    .home_third_count_section {
        padding: 30px;
    }
    .home_about_section {
        padding: 30px 0;
    }
    .home_about_section h2 {
        font-size: 30px;
        margin-top: 20px;
    }
    .home_services_section {
        padding: 30px 0;
    }
    .home_services_section h2 {
        font-size: 30px;
        margin-top: 20px;
    }
    .home_third_section {
        padding: 30px 0;
    }
    .home_video_section {
        padding: 30px 0;
    }
    .home_fifth_section {
        padding: 30px 0;
    }
    .home_fifth_section h2 {
        font-size: 30px;
        margin-top: 20px;
    }
    .home_review_section h2 {
        font-size: 30px;
    }
    .home_blog_section {
        padding: 30px 0;
    }
    .home_blog_section h2 {
        font-size: 30px;
        margin-top: 20px;
    }
}

/* Home */


/* About Page */

/* About First */
#about_first_section {
    padding: 50px 0;
}
#about_first_section img {
    width: 100%;
}
#about_first_section .btn {
    background: var(--background);
    color: var(--white-color);
    margin-top: 30px;
}
#about_first_section h2 {
    font-size: 60px;
    font-weight: 600;
}
#about_second_section {
    padding: 150px 0;
    background-image: url("../image/bg-16.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#about_second_section .counting_div {
    text-align: center;
    background-color: var(--offwhite-color);
    padding: 20px;
    margin: 13px 0;
    border-radius: 10px;
}
#about_second_section h3 {
    font-size: 70px;
    font-weight: 600;
    color: var(--first-color);
}
#about_second_section p {
    color: var(--first-color);
}   
#about_third_section {
    padding: 150px 0;
    background-image: url("../image/bg-17.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#about_third_section h3 {
    font-size: 50px;
    font-weight: 600;
}
#about_third_section h4 {
    color: var(--brown-color);
}
#about_third_section i {
    font-size: 50px;
    color: var(--brown-color);
}
#about_forth_section {
    padding: 50px 0;
}
#about_forth_section h3 {
    font-size: 50px;
    font-weight: 600;
}
#about_forth_section .accordion-button:not(.collapsed) {
    background-color: var(--brown-color) !important;
    color: var(--offwhite-color);
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #about_first_section {
        padding: 30px 0;
    }
    #about_first_section h2 {
        font-size: 40px;
        font-weight: 600;
    }
    #about_second_section {
        padding: 30px 0;
    }
    #about_second_section h3 {
        font-size: 50px;
    }
    #about_third_section {
        padding: 30px 0;
    }
    #about_third_section h3 {
        font-size: 40px;
    }
    #about_forth_section h3 {
        font-size: 40px;
    }
}
/* About First */

/* About Page */


/* Services */

/* Wedding */
#service_section {
    padding: 50px 0;
}
#service_section img {
    width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}
/* Wedding */

#service_right {
    background-color: var(--offwhite-color);
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
    margin-top: 10px;
}
#service_right .btn {
    background-color: var(--first-color);
    color: var(--white-color);
}
#service_right ul li {
    margin: 10px 0;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #service_section {
        padding: 30px 0;
    }
}
/* Services */


/* Meet Team */

/* First Section */
#first_meet_section {
    padding: 50px 0;
}
#first_meet_section #first_meet_section_title {
    background-image: url("../image/bg18.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    padding: 50px 0;
}
#first_meet_section h2 {
    font-size: 50px;
}
#first_meet_section ul li {
    display: inline-block;
    margin-right: 10px;
}
#first_meet_section ul li a {
    color: var(--brown-color);
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #first_meet_section {
        padding: 30px 0;
    }
    #first_meet_section #first_meet_section_title {
        padding: 10px;
    }
    #first_meet_section h2 {
        font-size: 40px;
    }
}
/* First Section */

/* Meet Team */

/* Word With Page */
#first_work_section {
    padding: 50px 0;
}
#first_work_section img {
    border-radius: 20px;
    width: 100%;
}
#first_work_section h3 {
    font-size: 40px;
    font-weight: 600;
}
#second_work_section {
    padding: 50px 0;
    background-color: var(--offwhite-color);
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #first_work_section {
        padding: 30px 0;
    }
    #first_work_section h3 {
        font-size: 30px;
        margin-top: 20px;
    }
    #second_work_section {
        padding: 30px 0;
    }
}
/* Word With Page */

/* Choose Page */
#first_choose_section {
    padding: 50px 0;
}
#first_choose_section img {
    width: 100%;
    border-radius: 10px;
}
#first_choose_section h3 {
    font-weight: 600;
}
#first_choose_section p {
    margin-bottom: 30px;
}
#second_choose_section {
    padding: 50px 0;
}
#second_choose_section img {
    width: 100%;
    border-radius: 10px;
}
#second_choose_section h3 {
    font-weight: 600;
}
#third_choose_section {
    padding: 50px 0;
    background-color: var(--brown-color);
}
#third_choose_section h3 {
    color: var(--offwhite-color);
}
#forth_choose_section {
    padding: 50px 0;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #first_choose_section {
        padding: 30px 0;
    }
    #second_choose_section {
        padding: 30px 0;
    }
    #third_choose_section {
        padding: 30px 0;
    }
    #forth_choose_section {
        padding: 30px 0;
    }
}
/* Choose Page */

/* Contact Us Page */

/* Form */
#contact_first_section {
    padding: 40px 0;
}
#contact_first_section h2 {
    font-size: 60px;
}
#contact_first_section ul li {
    margin: 10px 0;
}
#contact_first_section button {
    background-color: var(--white-color);
    color: var(--first-color);
    border-radius: 30px;
}
#contact_first_section button:hover {
    background-color: var(--offwhite-color);
    color: var(--first-color);
}
#contact_first_section .contact_form_side {
    background: var(--background);
    padding: 20px;
    border-radius: 10px;
}
.contact_form_side label {
    color: var(--white-color);
}
/* Form */

/* contact second */
#contact_second {
    padding: 60px 0;
}
#contact_second img {
    width: 100%;
    border-radius: 10px;
}
#contact_second h2 {
    font-size: 60px;
}
#contact_second .btn {
    background-color: var(--second-color);
    color: var(--white-color);
    border-radius: 30px;
}
#contact_second .btn:hover {
    background-color: var(--first-color);
}
/* contact second */

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #contact_first_section {
        padding: 30px 0;
    }
    #contact_second {
        padding: 30px 0;
    }
    #contact_second img {
        margin-bottom: 20px;
    }
    #contact_first_section h2 {
        font-size: 40px;
    }
    .contact_form_side {
        margin-top: 20px;
    }
    #contact_second h2 {
        font-size: 40px;
    }
}

/* Contact Us Page */


/* FAQ */
#faq_page {
    padding: 60px 0;
}
#faq_page h2 {
    font-size: 60px;
    font-weight: 600;
}
.faq_form_box {
    background-color: var(--div-color-one);
    padding: 20px;
    border-radius: 10px;
}
.faq_form_box .btn {
    background-color: var(--first-color);
    color: var(--white-color);
    margin-top: 30px;
}
.faq_form_box .btn:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}
.accordion-button:focus {
    box-shadow: none;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #faq_page {
        padding: 30px 0;
    }
    #faq_page h2 {
        font-size: 40px;
    }
    .faq_form_box {
        margin-top: 30px;
    }
}
/* FAQ */


/* Video */
#video_page {
    padding: 60px 0;
}
#video_page iframe {
    border-radius: 5px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
   #video_page {
        padding: 30px 0;
   } 
}
/* Video */


/* Gallery */
#gallery_page {
    padding: 60px 0;
}
#gallery_page img {
    width: 100%;
    height: 400px;
}
#gallery_page .nav-tabs button {
    background-color: var(--second-color);
    color: var(--white-color);
    margin: 0 2px;
}
#myTabContent img {
    border-radius: 10px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
   #gallery_page {
        padding: 30px 0;
   } 
   #gallery_page .nav-tabs button 
   {
    margin: 2px;
   }
}
/* Gallery */


/* Blog */
#blog_page {
    padding: 50px 0;
}
#blog_side .card h4 {
    color: var(--second-color);
}
#blog_side .card h4:hover {
    color: var(--first-color);
}
#blog_side .card p {
    color: var(--black-color);
}
#blog_side .card small {
    color: var(--black-color);
}

#blog_page .blog_right_search {
    background-color: var(--second-color);
    padding: 15px;
    border-radius: 5px;
}
#blog_page .blog_right_search .btn {
    background-color: var(--offwhite-color);
    color: var(--first-color);
    border: none;
}
#blog_page .blog_right_search .btn:hover {
    background-color: var(--brown-color);
    color: var(--white-color);
}
#blog_page .blog_right_category {
    background-color: var(--offwhite-color);
    padding: 15px;
    border-radius: 5px;
}
#blog_page .blog_right_category ul li {
    margin: 5px 0;
}
#blog_page .blog_right_category ul li a {
    color: var(--red-color);
}
#blog_page .blog_right_shef {
    margin: 30px 0;
}
#blog_page .blog_right_shef img {
    width: 60%;
    border-radius: 40%;
}
#blog_page .blog_right_tags {
    background-color: var(--first-color);
    padding: 15px;
    border-radius: 5px;
}
#blog_page .blog_right_tags hr {
    color: var(--offwhite-color);
}
#blog_page .blog_right_tags h4 {
    color: var(--offwhite-color);
}
#blog_page .blog_right_tags ul li {
    display: inline-block;
    background-color: var(--offwhite-color);
    margin: 3px;
    padding: 5px;
    border-radius: 3px;
}
#blog_page .blog_right_tags ul li a {
    color: var(--first-color);
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #blog_page {
        padding: 30px 0;
    }
    .blog_right_side {
        margin-top: 30px;
    }
}
@media only screen and (min-width: 501px) and (max-width: 900px) {
    #blog_page {
        padding: 30px 0;
    }
}
/* Blog */

/* Mission */
#mission_vision_section {
    padding: 50px 0;
}
.mission_vision_left_img {
    width: 100% !important;
    border-radius: 10px;
}
#mission_vision_section h3 {
    font-weight: 600;
}
#mission_vision_section img {
    width: 150px;
}
#mission_vision_div_first {
    background-color: var(--offwhite-color);
    border-radius: 10px;
    padding: 20px;
}
#mission_vision_div_second {
    background-color: var(--offwhite-color);
    border-radius: 10px;
    padding: 20px;
}
#mission_vision_div_third {
    background-color: var(--offwhite-color);
    border-radius: 10px;
    padding: 20px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #mission_vision_section {
        padding: 30px 0;
    }
    .mission_vision_left_img {
        display: none;
    }
}
/* Mission */

/* Single Blog */
#blog_single_page {
    padding: 50px 0;
}
#single_blog_write {
    padding-bottom: 30px;
}
#blog_single_page img {
    width: 100%;
    border-radius: 10px;
}
.single_blog_tags {
    background-color: var(--first-color);
    border-radius: 5px;
}
.single_blog_tags ul li {
    display: inline-block;
    background-color: var(--red-color);
    margin: 3px;
    padding: 5px;
    border-radius: 3px;
}
.single_blog_tags ul li a {
    color: var(--white-color);
}
.single_social_icon ul li {
    display: inline-block;
    margin-right: 15px;
}
.single_social_icon ul li:last-child {
    margin-right: 0;
}
.single_social_icon ul li a {
    color: var(--first-color);
    font-size: 20px;
}
.single_social_icon ul li a:hover {
    color: var(--red-color);
}
#comment_form .btn {
    background-color: var(--first-color);
    color: var(--white-color);
    border: none;
}
#comment_form .btn:hover {
    background-color: var(--second-color);
    color: var(--white-color);
    border: none;
}
#comments img {
    width: 50px;
    height: 50px;
}
#visitor_comments {
    border-bottom: 1px solid var(--black-color);
    padding-top: 20px;
}
#related_post_div {
    margin-bottom: 40px;
}
#related_post_div h4 {
    color: var(--second-color);
}
#related_post_div h4:hover {
    color: var(--first-color);
}
#related_post_div p, small {
    color: var(--black-color);
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #blog_single_page {
        padding: 30px 0;
    }
}
/* Single Blog */

/* Appointment */
#appointment_form_section {
    padding: 50px 0;
}
#appointment_form_section .btn {
    background: var(--background);
    color: var(--white-color);
}
/* Appointment */

/* Subscribe */
#subscribe_form {
    background-color: var(--first-color);
    padding: 40px 0;
}
#subscribe_form h3 {
    font-size: 40px;
}
#subscribe_form .btn {
    background-color: var(--white-color);
}
#subscribe_form .btn:hover {
    background-color: var(--offwhite-color);
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #subscribe_form h3 {
        font-size: 30px;
    }
}
/* Subscribe */


/* Footer */
footer {
	background: var(--background);
	padding: 30px 0;
}
footer img {
	width: 120px;
	height: auto;
	margin-bottom: 30px;
}
footer hr {
	margin: 50px 0;
	color: var(--white-color);
}
footer p {
	color: var(--white-color);
}
footer .btn {
	background: var(--first-color);
	color: #ffffff;
	font-weight: 500;
}
footer .btn:hover {
	background: var(--second-color);
	color: var(--white-color);
}
.foooter_top h4 {
    color: var(--white-color);
    margin-bottom: 20px;
}
footer .footer_menu_1 li {
	margin-bottom: 10px;
}
footer .footer_menu_1 li i {
    color: var(--white-color);
    padding-right: 10px;
}
footer .footer_menu_1 li a:hover {
	color: var(--offwhite-color);
}
footer .footer_menu_2 li {
	margin-bottom: 10px;
}
footer .footer_menu_2 li i {
    color: var(--white-color);
    padding-right: 10px;
}
footer .footer_menu_2 li a:hover {
	color: var(--offwhite-color);
}
footer .footer_contact_info li {
	margin-bottom: 10px;
	color: var(--white-color);
}
footer .footer_contact_info li i {
    color: var(--white-color);
    padding-right: 10px;
}
footer .footer_contact_info li i {
	color: var(--white-color);
}
footer .footer_contact_info li a:hover {
	color: var(--offwhite-color);
}
footer a {
	color: var(--white-color);
}

.footer_bottom {
    padding: 5px 0;
}
.footer_bottom a { 
    color: var(--white-color);
}
.footer_bottom a:hover {
	color: var(--offwhite-color);
}
.footer_social_icon .footer_social_media li {
    display: inline-block;
    margin-left: 10px;
}
.footer_social_icon .footer_social_media li:first-child {
    margin-left: 0px;
}
.footer_social_icon .footer_social_media li a {
    color: var(--white-color);
}
.footer_social_icon .footer_social_media li a:hover {
    color: var(--offwhite-color);
}


@media only screen and (min-width: 300px) and (max-width: 500px) {
	footer .btn {
		margin-bottom: 30px;
	}
	footer .footer_menu_1 {
		margin-bottom: 30px;
	}
	footer .footer_menu_2 {
		margin-bottom: 30px;
	}
    .footer_bottom p {  
        padding-bottom: 10px;
    }
}


/* Bottom Bar */
#bottombar_icon {
    background-color: var(--offwhite-color);
    position: fixed;
    width: 100%;
    bottom: 0px;
    padding: 10px 8px;
    text-align: center;
    z-index: 900;
    display: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#bottombar_icon ul {
    display: flex;
    justify-content: space-around;
}
#bottombar_icon ul li a {
    color: var(--first-color);
}
#bottombar_icon sup {
    color: var(--second-color);
    padding: 2px;
    border-radius: 50%;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #bottombar_icon {
        display: block;
    }
}



#btn-back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    z-index: 999;
    background-color: var(--second-color);
}
#btn-back-to-top i {
    color: var(--white-color);
}
