@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
:root {
    --title-font:"Quicksand", sans-serif;
    --paragraph-font:"Quicksand", sans-serif;
    ---secondary-font: "Quicksand", sans-serif;
    --h1:62px;
    --h2:42px;
    --h3:32px;
    --h4:22px;
    --h5:18px;
    --p:16px;

    --main_accent:#1D1D1D;

}
.h1, 
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--title-font);
    font-weight: 400;
}
h1 {
    font-size: var(--h1);
    text-transform: uppercase;
    * {
        font-size: var(--h1);
    }
}
h2 {
    font-size: var(--h2);
    * {
        font-size: var(--h2);
    }
}
h3 {
    font-size: var(--h3);
    * {
        font-size: var(--h3);
    }
}
h4 {
    font-size: var(--h4);
    * {
        font-size: var(--h4);
    }
}
h5 {
    font-size: var(--h5);
    * {
        font-size: var(--h5);
    }
}
body,
p {
    font-size: var(--p);
    font-family: var(--paragraph-font);
}
a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
img {
    max-width: 100%;
    height: auto;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-top-240 {
    padding-top: 240px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}
body {
    background:var(--main_accent);
    background-image: url('img/sellebrations-bg-1.jpeg');
    background-size: 100% auto;
    background-attachment: fixed;
    background-position: center center;
}
/* End Default Styling */

/* Modular Styling */

/* Header */
header {  
    background: linear-gradient(180deg, #000, rgba(12, 29, 57, 0));
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 0;
}

header .header_1 { position: relative; }
header .header_1 img { max-width: 125px; }

header .header_2 { text-align: right; }
header .header_2 .menu-main-container { margin-top: -5.5px; }
header .header_2 .float_menu_items {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 45px;
    margin-bottom: -7px;
}
header .header_2 a.social_media { margin-left: 7.5px; }
header .header_2 a.social_media svg {
    width: 20px;
    max-height: 20px;
    height: auto;
}
header .header_2 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-right: 7.5px;
}
header .header_2 ul li {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}
header .header_2 ul li a {
    color: #fff;
    font-family: var(---secondary-font);
    text-transform: uppercase;
}
header .header_2 ul li ul {
    display: none;
    min-width: 250px;
    left: -15px;
    padding: 15px;
    z-index: 25;
    position: absolute;
    background: #fff;
    text-align: left;
    box-shadow: 0px 15px 40px 0px rgba(13, 29, 13, 0.1);
    border-radius: 3.75px;
}
header .header_2 ul li ul li { width: 100%; }
header .header_2 ul li:hover ul { display: block; }

header.scroll-nav img { max-width: 100px; }
/* End of Header */


/* Banner Variation 1 Styling */
.banner_var-1 {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 60px 0;
    text-align: center;
}
.banner_var-1 *:not(a) { color: #fff; }
.banner_var-1 h1 { margin-bottom: 1rem; }
.banner_var-1 .banner_btns { margin-top: 30px; text-align: center; }
.banner_var-1 .banner_btns a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.banner_var-1:has(p) p { margin-bottom: 30px; }
.banner_var-1:has(p) .banner_btns { margin-top: 0; }
/* Banner Variation 1 Styling End */


/* Module 0 Styling */
.module_0 h1 {
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 4px;
    font-size: var(--h2);
}
.module_0 h2 {
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 4px;
}
.module_0 p { margin-bottom: 0; color: #fff; }
/* Module 0 Styling Ending */


/* Module 1 Styling */
.module_1 .section_panel {
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0px 3px 30px #00000014;
    text-align: center;
}
.module_1 .section_panel .section_panel_details { padding: 30px; }
.module_1 .section_panel .section_panel_details h3 { margin-bottom: 1rem; }
.module_1 .section_panel .section_panel_details p { margin-bottom: 0; }
.module_1 .section_panel .section_panel_details a {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
}
.module_1 .section_panel .section_panel_details a:hover {
    background: var(--main_accent);
    color: #fff;
}
/* Module 1 Styling End */


/* Module 2 Styling */
.module_2 h1, .module_2 h2 { margin-bottom: 1rem; }
.module_2 img { border-radius: 0.25rem; }
.module_2 .btn_items { display: inline-flex; align-items: center; }
.module_2 .btn_items a { border-radius: 3.75px; }
.module_2 .btn_items a.btn_1 {
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--main_accent);
    color: #fff;
}
.module_2 .btn_items a.btn_1:hover {
    color: var(--main_accent);
    background: #fff;
}
.module_2 .btn_items a.btn_2 {
    color: var(--main_accent);
    margin-left: 15px;
}

a.btn_2 {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    outline: none;
    transition: 1s ease-in-out;
    position: relative;
    border-radius: 0;
    border: 1px solid #b21f23;
    border-bottom: 1px solid #b21f23 !important;
    padding: 0 !important;
}
a.btn_2 svg {
    position: absolute;
    left: -1px;
    top: -1px;
    fill: none;
    stroke: #FF3131;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    transition: 1s ease-in-out;
    border: none !important;
    width: 180px;
    height: 40px;
}
a.btn:hover {
  transition: 0.5s ease-in-out;
  background: rgba(178,31,35,0.4);
}
a.btn:hover svg { stroke-dashoffset: -480; }
a.btn span {
    font-family: var(---secondary-font);
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1.5px;
}
/* Module 2 Styling End */


/* Module 3 Styling */
.module_3 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.module_3 ul li { margin-bottom: 0.25rem; }
.module_3 span {
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}
.module_3 h1, .module_3 h2, .module_3 h3 { margin-bottom: 1rem; }
.module_3 img { border-radius: 0.25rem; }
.module_3 .btn_items { display: inline-flex; align-items: center; }
.module_3 .btn_items a.btn_1 {
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--main_accent);
    color: #fff;
    border-radius: 3.75px;
}
.module_3 .btn_items a.btn_1:hover {
    color: var(--main_accent);
    background: #fff;
}
.module_3 .btn_items a.btn_2 {
    color: var(--main_accent);
    margin-left: 15px;
}
/* Module 3 Styling End */


/* Module 4 Styling */
.module_4 .section_panel {
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0px 3px 30px #00000014;
    text-align: center;
}
.module_4 .section_panel .section_panel_details { padding: 30px; }
.module_4 .section_panel .section_panel_details h3 { margin-bottom: 1rem; }
.module_4 .section_panel .section_panel_details p { margin-bottom: 0; }
.module_4 .section_panel .section_panel_details a {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
}
.module_4 .section_panel .section_panel_details a:hover {
    background: var(--main_accent);
    color: #fff;
}
/* Module 4 Styling End */


/* Module 5 Styling */
.module_5 { text-align: center; }
.module_5 p { margin-top: 1rem; margin-bottom: 0; }
.module_5 a {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
}
.module_5 a:hover { background: var(--main_accent); color: #fff; }
/* Module 5 Styling End */


/* Module 6 Styling */
.module_6 input:not([type="submit"]) {
    width: 100%;
    height: 50px;
    margin-top: 7.5px;
}
.module_6 textarea { margin-top: 15px; width: 100%; }
.module_6 label,
.module_6 .wpcf7-form-control-wrap { display: inline-block; width: 100%; }
.module_6 input[type="submit"] {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
    cursor: pointer;
}
.module_6 input[type="submit"]:hover { background: var(--main_accent); color: #fff; }
.module_6 .r_contact_1 p { margin-top: 1rem; }
.module_6 .r_contact_1 a { margin-top: 1rem; color: #000; text-decoration: underline; }
/* Module 6 Styling End */
/* Footer */
footer {
    padding: 30px 0 0;
    background: #fff;
}
footer img {
    margin-bottom: 1rem;
    max-width: 200px;
    margin: 0 auto 1rem;
}
footer .footer_2 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer .footer_2 ul li a { color: #000; }
footer .footer_3 p a {
    margin-left: 0;
    display: inline-block;
    width: 100%;
}
footer .footer_3 p a:hover { color: #b21f23; }
footer .copy_item {
    text-align: center;
    padding: 7.5px 0;
    background: rgb(57, 71, 55);
}
footer .copy_item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}
footer .copy_item p a { color: #fff; }
/* Footer End */


/* Top Banner */
.top_banner_home {
    position: relative;
    height: 100vh;
    width: 100%;
}
.top_banner_home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End Top Banner */


/* Generic Buttons */
a.btn {
    font-family: var(---secondary-font);
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1.5px;
    padding-bottom: 2px;
    border-bottom: solid thin transparent;
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
}
a.btn:hover { color: #fff; }
/* End Buttons */


/* Panel Items */
.panel_items h2 {
    font-family: var(---secondary-font);
    font-weight: 300;
    font-size: var(--h3);
}
/* End Panel Items */


/* Gallery Items */
.gallery_items a { display: inline-block; width: 100%; }
.gallery_items img {
    height: 350px;
    object-fit: cover;
    -webkit-object-fit: cover;
    width: 100%;
    border-radius: 7.5px;
}
.gallery_items.gallery_pg img {
    height: 250px;
    width: 100%;
}
/* End Gallery Items */


/* Footer (Overwrites / Alternate) */
footer * {
    font-size: 14px;
    color: #fff;
}
footer { background: #000; }
footer .copyright {
    opacity: 0.8;
}
footer .copyright p {
    color: #fff;
    font-size: 12px;
}
footer .copyright p a {
    color: #fff;
    font-size: 12px;
}
footer .footer_2 ul {
    opacity: 0.8;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer .footer_2 ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
footer .footer_2 ul li a {
    color: #fff;
    font-family: var(---secondary-font);
    text-transform: uppercase;
}
footer .footer_2 ul li ul { display: none; }
footer .footer_3 {
    opacity: 0.8;
}
footer .footer_3 a {
    margin-left: 7.5px;
}
footer .footer_3 a svg {
    width: 20px;
    fill: #fff;
    max-height: 20px;
    height: auto;
}
/* End Footer Overrides */


/* Default Banner */
.default_banner {
    min-height: 450px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 200px;
}
.default_banner h1 { color: #fff; }
/* End Default Banner */


/* Default Content */
.default_content * { color: #fff; }
.default_content h2 { margin-bottom: 1rem; }
.default_content h3 { margin-bottom: 1rem; }
.default_content img { border-radius: 7.5px; }
/* End Default Content */


/* Button Group */
.btn_group { text-align: center; }
.btn_group a { margin: 0 7.5px; }
/* End Button Group */


/* Bottom Sector */
.btm_sector p { margin-bottom: 1rem; }
/* End Bottom Sector */


/* Header Menu Effects */
header .menu-item a { border-bottom: solid thin transparent; }
header .menu-item a:hover { border-bottom: solid thin #fff; }
header .current-menu-item.menu-item a { border-bottom: solid thin #fff; }
/* End Header Menu */


/* Header Mobile */
#mobile_toggle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 99999;
}
#mobile_toggle nav {
    background-color: var(--main_accent);
    height: 50px;
    position: relative;
    box-shadow: 0 4px 4px rgba(0,0,0,.4);
}
#mobile_toggle #menuToggle input {
    display: flex;
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    left: 0;
    top: 0;
}
#mobile_toggle #menuToggle .ham span {
    display: flex;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    position: relative;
    background: #fff;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform .5s cubic-bezier(.77,.2,.05,1),
                background .5s cubic-bezier(.77,.2,.05,1),
                opacity .55s ease;
}
#menuToggle .ham span:first-child { transform-origin: 0% 0%; }
#menuToggle .ham span:nth-last-child(2) { transform-origin: 0% 100%; }
#menuToggle .ham span {
    display: block;
    background-color: #fff;
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    transition: transform .3s, opacity .3s;
}
#menuToggle input:checked ~ label span:first-child {
    transform: rotate(45deg) translate(1px,1px);
}
#menuToggle input:checked ~ label span:nth-child(2) { opacity: 0; }
#menuToggle input:checked ~ label span:nth-child(3) {
    transform: rotate(-45deg) translate(0,-1px);
}
#mobile_toggle .menu-main-container_outer {
    box-shadow: 4px 0 4px rgba(0,0,0,.4);
    left: 0;
    position: absolute;
    width: 100%;
    height: calc(100vh + 50px);
    padding: 30px;
    background-color: var(--main_accent);
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%,0);
    transition: transform .5s cubic-bezier(.77,.2,.05,1);
    top: 50px;
}
#mobile_toggle .menu-main-container_outer strong {
    margin-bottom: 15px;
    font-size: var(--h3);
    text-align: center;
    color: #fff;
    font-family: var(--title-font);
    display: inline-block;
    font-weight: 400;
}
#mobile_toggle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
#mobile_toggle ul li { 
    text-align: left;
    margin-bottom: 7.5px;
    color: #fff;
    font-size: var(--h5);
    width: 100%;
}
#mobile_toggle ul li ul { display: none; }
#mobile_toggle ul li a {
    color: #fff;
    padding: 0 0;
    line-height: 1.5;
}
#mobile_toggle ul li a:hover { background: none !important; }
#mobile_toggle #menuToggle input:checked ~ div { transform: none; }
.ham {
    position: absolute;
    top: 35px;
    transform: translate(-50%,-50%);
    left: 30px;
    z-index: 9999;
    height: 41px;
}
#mobile_toggle a.mobile-toggle-img {
    position: absolute;
    top: calc(50% + 1px);
    left: calc(50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}
#mobile_toggle a.mobile-toggle-img img {
    height: 30px;
    width: auto;
}
/* End Header Mobile */

.secondary_text {
    position: absolute;
    bottom:0px;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
}
.scroll_down_box_second {
    margin-top: -8px;
}
.scroll_down_box_first img {
    animation: pulse_down 2.4s ease 1s infinite;
    opacity: .2;
    width: 22px;
}
.scroll_down_box_second img {
    animation: pulse_down 2.5s ease 1.2s infinite;
    opacity: .2;
    width: 22px;
}
.secondary_text .text {
    color: #fff;
    display: block;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--title-font);
}
.scroll_down_box, .secondary_text {
    align-items: center;
    display: flex;
    width: 100%;
}
.secondary_text
 {
    flex-direction: column;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 50px;
}
.contact_section_2 .wpcf7 input:not([type="submit"]):not([type="radio"]) {
	color:#fff;
	border:none;
	outline:none;
	border-radius: 0;
	border-bottom: 1px solid #fff;
	padding:15px 0;
    background-color: transparent;
	width:100%;
}
::placeholder {
    color:#fff;
    opacity: 1;
}
.contact_section_2 .wpcf7 textarea {
	color:#fff;
	border:none;
	outline:none;
	padding:15px;
	border: 1px solid #fff;
	width:100%;
    background-color: transparent;
}
.contact_section_2 .wpcf7 input[type="submit"] {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    background: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
.contact_section_2 .wpcf7 input[type="submit"]:hover {
    background:#fff;
    color:#000;
}
.contact_section_2 .wpcf7 select {
	color:#000;
	border:none;
	outline:none;
	border-radius: 0;
	border-bottom: 1px solid #000;
	padding:15px 0;
	width:100%;
    background-color: transparent;
}
.contact_section_2 .wpcf7-form-control-wrap {
	margin-bottom:30px;
	width:100%;
	display: inline-block;
}
.icon_item {
    margin-bottom: 1rem;
}
.icon_item svg {
    margin-right: 10px;
}
.icon_item svg path {
    fill: var(--second_accent);
}
.icon_item strong {
    text-transform: uppercase;
    font-size: 14px;
}
.icon_item a {
    display: inline-block;
    width: 100%;
    margin-bottom: 3.75px;
    color: var(--second_accent);
}
.icon_item {
    text-align: center;
}
.icon_item a {
    display: inline-block;
    width: 100%;
}
.icon_item span {
    display: inline-block;
    width: 100%;
    color: var(--second_accent);
}

.contact_section_2 h2 {
    margin-bottom: 30px;
    position: relative;
}
.contact_section_2 h3 {
    margin-bottom: 1rem;
    text-align: center;
}
.contact_section_2 h2:after {
    content: '';
    border-bottom: solid thin var(--second_accent);
    width: 100px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.contact_section_2 img {
    border-radius: 0.25rem;
    margin-bottom: 30px;
}

.social_icons {
    display: flex;
    justify-content: center;
}
.social_icons a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #000;
    margin: 0 7.5px;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100%;
}
.social_icons a svg {
    fill: #fff;
    width: 20px;
}
.social_icons a:hover {
    background: #fff;
}
.social_icons a:hover svg {
    fill: #000 !important;
}

.content_block_contact p {
    text-align: center;
}

@keyframes pulse_down {
    0% {
        opacity: .2
    }
    50% {
        opacity: 1
    }
    to {
        opacity: .2
    }
}

@keyframes pulse {
    to {
        opacity: 1
    }
}
@media (max-width: 1199.98px) {
    body {
        background-color: var(--main_accent) !important;
        background-image: none !important;
    }
}

@media (max-width: 991.98px) {

    :root {
        --h1:42px;
        --h2:32px;
        --h3:24px;
        --h4:22px;
        --h5:18px;
        --p:16px;
    }



    .margin-bottom-60 {
        margin-bottom: 30px;
    }
    .margin-bottom-90 {
        margin-bottom: 60px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    .margin-top-60 {
        margin-top: 30px;
    }
    .margin-top-90 {
        margin-top: 60px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-90 {
        padding-bottom: 60px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-90 {
        padding-top: 60px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }
    .padding-top-240 {
        padding-top: 240px;
    }
}

@media (max-width: 767.98px) {
    .m-bottom-60 {
        margin-bottom: 60px;
    }

    .top_banner_home {
        height:0;
        padding-bottom:113.2%;
    }
    footer {
        text-align: center;
    }
    footer .footer_3 {
        text-align: center;
    }
    .default_banner {
        padding-top: 0;
        min-height: 350px;
    }
}

/* End Responsive Styling */