* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    --maincolor: #131d3b;
    /*--maincolor: #006e54;*/
    --btnred: #9b0000;
    --bgcheader: #f8f8f8;
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1300px;
}


/* HEADER */

.first_header {
    text-align: center;
    background-color: #000000;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

.first_header a {
    text-decoration: none;
    color: var(--btnred);
    transition: 0.2s;
}

.first_header a:hover {
    color: white;
}

.second_header {
    padding-right: 100px;
    padding-left: 100px;
}

.second_header {
    border-bottom: 4px solid var(--btnred);
}

/* NAV */

.sticky {
	position: fixed;
	top: 0;
	background-color: white;
	z-index: 5;
	width: 100%;
	max-width: 3000px;
}

.navbar-expand-lg {
    justify-content: space-between;
}

.navbar-nav button:not(:disabled) {
	display: none;
}

.sub-menu {
    top:30px;
	display: none;
	position: absolute;
	z-index: 3;
	padding-left: 0px;
	list-style: none;
	background-color: white;
	padding: 15px;
    box-shadow:0 15px 20px rgba(0,0,0,0.25);
    width:350px;
	margin-top: 40px;
}

.menu-item-61:hover .sub-menu {
	display: block!important;
}

.navbar-nav .fa-angle-down:before {
	display: none;
}

.navbar-light .navbar-nav .menu-item a {
    margin-right: 40px;
    color: #1c1b1f;
    font-weight: bold;
    font-size: 18px;
    transition: .2s;
	text-decoration: none;
}

.navbar-light .navbar-nav .menu-item a:hover {
    color: var(--btnred);
}

.button_in_nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_in_nav a {
    width: 45%;
    text-align: center;
    text-decoration: none;
}

.button_in_nav a.nav_call {
    color: var(--btnred);
    font-weight: bold;
    font-size: 20px;
    transition: .2s;
    margin-right: 10px;
}

.button_in_nav a.nav_call:hover {
    color: black;
}

.button_in_nav a.nav_button {
    color: white;
    background-color: #51a400;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.2s;
}

.button_in_nav a.nav_button:hover {
    background-color: var(--btnred);
}

/* SECTION BANNER */

h1 {
    color: white;
    font-size: 60px;;
    font-family: "Montserrat";
    font-weight: 800;
    padding-right: 200px;
}

.row_banner {
    justify-content: center;
}

.text_top {
    color: #ff4f47;
    font-size: 28px;
    font-family: "Montserrat";
    font-weight: 600;
}

.text_bottom {
    color: #707071;
    font-size: 21px;
    display: block;
    width: 50%;
    margin-bottom: 30px;
}

.section_banner {
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_banner a {
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    padding: 15px 35px 15px 35px;
    margin-top: 50px;
}

.section_banner a.banner_button {
    background-color: var(--btnred);
    border: 2px solid var(--btnred);
    border-radius: 5px;
    margin-right: 20px;
    transition: .2s;
}

.section_banner a.banner_button:hover {
    background-color: transparent;
    border-color: white;
}

.section_banner a.banner_call {
    border: 2px solid white;
}

.section_banner a.banner_call:hover {
    border-color: var(--btnred);
    background-color: var(--btnred);
}

/* SECTION 1 */

.section1 {
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.section1_square {
    background-color: white;
    padding-top: 25px;
    padding-bottom: 20px;
    padding: 40px 40px 40px 40px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 31.5%;
    -webkit-box-shadow: 0px 2px 4px 1px rgba(214,214,214,1);
-moz-box-shadow: 0px 2px 4px 1px rgba(214,214,214,1);
box-shadow: 0px 2px 4px 1px rgba(214,214,214,1);
position: relative;
}

.section1_square .dots_img {
    position: absolute;
    bottom: -80px;
    right: -80px;
    z-index: -1;
}

.section1_square p {
    color: #6f6c73;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.section1_square h3 {
    font-size: 35px;
    font-weight: normal;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

/*.section1_square:nth-child(2) {
    background-color: black;
}*/

/*.section1_square:nth-child(2) h3 {
    color: white;*/
}

/*.section1_square:nth-child(2) a {
    color: #ff4f47;
    transition: .2s;
}*/

.section1_square:nth-child(2) a:hover {
    color: white;
}

.section1_square a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    transition: .2s;
}

.section1_square a:hover {
    color: #ff4f47;
}

.row_section1 {
    justify-content: space-between;
    padding-bottom: 100px;
}

/* SECTION 2 */

.section2_square1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    width: 49%;
}

.section2_square2 {
    padding-left: 40px;
    width: 49%;
}

.section2_square2 p {
    color: #6f6c73;
    font-size: 18px;
    line-height: 2;
}

.section2_square2 h3 {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    color: #ff4f47;
    font-weight: bold;
}

.section2_square2 h2 {
    font-size: 41px;
    font-weight: bold;
    padding-right: 80px;
}

.section2_square2 span {
    font-weight: bold;
    font-size: 19px;
    margin-top: 30px;
    display: inline-block;
    margin-left: 10px;
}

.section2_square2 a.btn-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: var(--btnred);
    letter-spacing: 2px;
    padding: 15px 35px 15px 35px;
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid var(--btnred);
    transition: .2s;
}

.section2_square2 a.btn-link:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.row_section2 {
    margin-bottom: 20px;
}

/* SECTION 22 */

.section2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section2 h2 {
    color: white;
    padding-bottom: 40px;
}

.section2 .section22_square2 p {
    color: white;
}

.section2 .section22_square2 ul li{
	color: white;
}
.section2 .section2_square2 {
    padding-left: 0px;
}

.section22_square1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    width: 49%;
}

.section22_square2 {
    padding-right: 40px;
    padding-left: 40px;
    width: 49%;
}

.section22_square2 p {
    line-height: 2;
    color: #6f6c73;
    font-size: 18px;
}

/* CTA */

.cta {
    padding-top: 30px;
    padding-bottom: 30px;
}
  
  .cta h2 {
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 38px;
  }

.cta_linksquare {
    display: flex;
    align-items: center;
}

.cta a {
    background-color: var(--btnred);
    text-decoration: none;
    display: inline-block;
    color: white;
    background-color: var(--btnred);
    letter-spacing: 2px;
    padding: 15px 35px 15px 35px;
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid var(--btnred);
    transition: .2s;
}

.cta a:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

/* CTA2 */

.cta2 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta2_square1 p {
    color: white;
    font-size: 40px;
    padding-right: 160px;
}

.cta2_square2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta2_square2 .row {
    margin-top: 22px;
    margin-bottom: 22px;
    justify-content: center;
}

.cta2_square2 a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 20px 30px 20px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    width: 90%;
    transition: .2s;
}

.cta2_square2 a:hover {
    background-color: var(--btnred);
    color: white;
}

.cta2 .cta2_linksquare {
    text-align: center;
}

/* SECTION 4 */

.section4 {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.section4 .section2_square2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.section4 .section2_square2 a {
    display: block;
    width: 35%;
    text-align: center;
}

.section4_squareimg {
    position: relative;
    padding-left: 40px;
}

.section4 .dots_img {
    position: absolute;
    bottom: -80px;
    right: -60px;
    z-index: -1;
}

.section1_second {
    padding-top: 100px;
}

/* TESTIMONIALS */

.testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonials .container {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SECTION 5 */

.section5 {
    background-color: #f6f6f6;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section5 h2 {
    font-weight: bold;
    text-align: center;
}

.section5 p {
    text-align: center;
    color: #6c6b6f;
}

.row_section5_title {
    justify-content: center;
    padding-bottom: 30px;
}

.recent_square_photo {
    height: 350px;
    text-align: center;
}

.recent_square_photo img {
    width: 100%
}

/* CTA3 */

.cta3 {
    background-color: #f6f6f6;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    height: 300px;
}
.cta3 .cta3_subpage {
	background-color: white;
}

.cta3_row {
    justify-content: flex-end;
    padding-top: 40px;
}

.cta3 span {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta3 h2 {
    color: white;
    font-size: 45px;
}

.cta3_button {
    display: flex;
    align-items: center;
}

.cta3_button a {
    background-color: #1c1b1f;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 35px 15px 35px;
    border-radius: 5px;
    transition: .2s;
}

.cta3_button a:hover {
    background-color: white;
    color: #1c1b1f;
}

/* FOOTER */

footer {
    background-color: #1c1b1f;
    padding-top: 100px;
}

footer .footer_square1 div {
    padding-top: 30px;
}

footer .footer_square1 div a {
    display: block;
    font-size: 18px;
    color: white;
    text-decoration: none;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: .2s;
}

footer .footer_square1 div a:hover {
    color: var(--btnred);
}

footer .footer_square1 div a i {
    color: var(--btnred);
    margin-right: 5px;
    font-size: 18px;
}

.footer_square2 h2{
    color: white;
    font-size: 25px;
    padding-top: 25px;
    margin-bottom: 20px;
}

.footer_square2 a {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 5px;
    transition: .2s;
}

.footer_square2 a:hover {
    color: var(--btnred);
}

.footer_square2 .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.container_footer {
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.copyright {
    color: white;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

/* SUBPAGE */

.content_full_width {
	padding-top: 40px;
}

.content_full_width ul li {
	color: #6f6c73;
    font-size: 18px;
    line-height: 2;	
}

.content_full_width p {
	color: #6f6c73;
    font-size: 18px;
    line-height: 2;
}

.content_full_width h2 {
	font-size: 41px;
    font-weight: bold;
    padding-right: 80px;
}

.cta3_subpage {
	background-color: white;
}

.subpage_banner {
	height: 650px;
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.title_square_subpage_banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.subpage_banner a.banner_button {
	width: 30%;
	text-align: center;
}

.subpage_banner a {
	margin-top: 0px;
}

.subpage_banner h1 {
	padding-right: 0px;
}

.subpage_banner .text_bottom {
	width: 100%;
}

.subpage_banner .forms {
	margin-bottom: -200px;
}

.subpage_banner .forms h2{
	background-color: white;
}

#nf-form-2-cont {
	padding: 30px 60px 0px 60px;
	background-color: white;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	    -webkit-box-shadow: 0 15px 25px 1px rgb(0 0 0 / 10%);
    box-shadow: 0 15px 25px 1px rgb(0 0 0 / 10%);
}

#nf-field-9-wrap {
	text-align: center;
}

#nf-field-9-wrap:hover {
	color: white !important;
}

#nf-form-title-2 {
	text-align: center;
}
.subpage_banner .forms .nf-form-content .label-above .nf-field-label {
	display: none;
}

.subpage_banner .forms .nf-form-content input[type=submit] {
	background-color: var(--btnred);
	margin-left: auto;
	margin-right: auto;
}

.section2_square2_padding {
	padding-left: 0px;
}

/* GALLERY TEMPLATE */

.section_gallery {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section_gallery .gallery {
	margin-bottom: 20px;
	position: relative;
	height: 340px;
}
.section_gallery .gallery a {
	position: relative;
	height: 100%;
	display: block;
	border-radius: 10px;
}

.section_gallery .gallery a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
	border-radius: 5px;
	transition: .2s;
}

.section_gallery .gallery a:hover::after{
	background: rgba(0, 0, 0, 0.0);
}

.section_gallery .gallery img {
	width: 100%;
	position: relative;
	border-radius: 5px;
	height: 340px;
}

/* CONTACT TEMPLATE */

.contact_banner {
	height: 250px;
}
.contact_banner h1 {
	text-align: center;
}

.section_contact_form {
	padding-bottom: 30px;
}
/* ========== RESPONSIVE ========== */

@media (max-width: 1500px) {
    .section1_square .dots_img {
        right: 0;
    }

    .section4 .dots_img {
        right: 0;
    }
}
@media (max-width: 1400px) {
    .navbar-light .navbar-nav .menu-item {
        font-size: 13px;
        margin-right: 15px;
    }
	
	.navbar-light .navbar-nav .menu-item a {
		font-size: 14px;
		margin-right: 15px;
	}

    .button_in_nav a.nav_call {
        font-size: 14px;
    }

    .button_in_nav a.nav_button {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cta2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cta_linksquare {
        justify-content: center;
    }

    .section_banner {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .section1_square .dots_img {
        right: 0;
    }

    .section4 .dots_img {
        right: 0;
    }
} 
@media (max-width: 1199px) {

    h1 {
        font-size: 50px;
    }

    .text_top {
        font-size: 25px;
    }

    .navbar-light .navbar-nav .menu-item {
        font-size: 16px;
    }

    .button_in_nav {
        display: none;
    }

    .button_in_nav a.nav_button {
        display: none;
    }

    .button_in_nav a.nav_call {
        font-size: 12px;
    }
    .section_banner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section1_square .dots_img {
        right: 0;
    }

    .section4 .dots_img {
        right: 0;
    }

    .section4 .section2_square2 a {
        width: 45%;
    }

    .cta_linksquare {
        justify-content: center;
    }
	
	/* SUBPAGE */
	
	.subpage_banner a.banner_button {
		width: 40%;
	}
	
	#nf-form-2-cont {
		width: 90%;
	}
}
@media (max-width: 991px) {

    .row-nav {
        display: block;
        width: 100%;
        padding-right: 5px;
    }
	
	.sub-menu {
		position: static;
		margin-top: 0px;
		width: 100%;
	}
    
    .button_in_nav {
        display: none;
    }

    .navbar {
        margin-right: 10px;
    }

    .second_header {
        padding-right: var(--bs-gutter-x,.75rem);
        padding-left: var(--bs-gutter-x,.75rem);
    }

    .navbar-brand img {
        width: 160px;
        padding-left: 30px;
    }

    .first_header {
        font-size: 12px;
    }

    .section_banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .text_top {
        font-size: 24px;
    }

    h1 {
        font-size: 35px;
        padding-right: 10px;
    }

    .text_bottom {
        font-size: 18px;
        width: 100%;
    }

    .section_banner a {
        padding: 10px 20px 10px 20px;
        font-size: 12px;
    }

    .section1_square {
        width: 100%;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .section1_square .dots_img {
        bottom: -40px;
        right: 0;
    }

    .section1_square h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .section1_square p {
        font-size: 18px;
    }

    .row_section1 {
        padding-bottom: 30px;
    }

    .section2_square1 {
        display: none;
    }

    .section2_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2_square2 h2 {
        padding-right: 10px;
        font-size: 30px;
    }

    .section2_square2 span {
        margin-top: 15px;
    }

    .section2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section22_square1 {
        width: 100%;
    }

    .section22_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2 .section2_square2 {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .cta {
        text-align: center;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 25px 15px 25px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .cta2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .cta2_square1 p {
        padding-right: 10px;
        font-size: 30px;
    }

    .cta2_square2 {
        padding-bottom: 60px;
    }

    .cta2_square2 a {
        border-radius: 0px;
        border: 1px solid var(--btnred);
        margin-bottom: 5px;
    }

    .cta2_square2 .row {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .section4 {
        padding-top: 0px;
    }

    .section4 .section2_square2 a {
        width: 50%;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 15px 15px 15px;
        margin-bottom: 20px;
    }

    .section4_squareimg {
        padding-left: calc(var(--bs-gutter-x) * .5);
        text-align: center;
    }

    .section4 .dots_img {
        right: 0;
        bottom: -40px;
    }

    .section1_second {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .recent_square_photo {
        height: 270px;
    }

    .recent_square_photo img {
        width: auto;
        margin-bottom: 5px;
    }

    .section5 {
        padding-bottom: 0px;
        padding-top: 30px;
    }

    .cta3 h2 {
        font-size: 35px;
    }

    .cta3_button a {
        font-size: 12px;
        margin-top: 15px;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .cta3_row {
        text-align: center;
    }

    footer {
        padding-top: 30px;
    }

    .footer_square1 img {
        width: 200px;
    }

    .container_footer {
        text-align: center;
    }
	
	/* SUBPAGE */
	
	.subpage_banner {
		height: auto;
		margin-bottom: 10px;
	}
	
	.subpage_banner .forms {
		margin-bottom: 0px;
		margin-top: 20px;
	}
	
	#nf-form-2-cont {
		width: 60%;
		padding: 30px 15px 0px 15px;
	}
	
	.subpage_banner a.banner_button {
		width: 40%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content_full_width {
		padding-top: 10px;
	}
	
	.content_full_width h2 {
		font-size: 30px;
	}
	
	/* CONTACT PAGE */
	
	.section_contact_form .section2_square2 {
		text-align: center;
		padding-top: 20px;
	}
}
@media (max-width: 767px) {
    .button_in_nav {
        display: none;
    }

    .second_header {
        padding-right: var(--bs-gutter-x,.75rem);
        padding-left: var(--bs-gutter-x,.75rem);
    }

    .navbar-brand img {
        width: 160px;
        padding-left: 30px;
    }

    .first_header {
        font-size: 12px;
    }

    .section_banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .text_top {
        font-size: 24px;
    }

    h1 {
        font-size: 35px;
        padding-right: 10px;
    }

    .text_bottom {
        font-size: 18px;
        width: 100%;
    }

    .section_banner a {
        padding: 10px 20px 10px 20px;
        font-size: 12px;
    }

    .section1_square {
        width: 100%;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .section1_square .dots_img {
        bottom: -40px;
        right: 0;
    }

    .section1_square h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .section1_square p {
        font-size: 18px;
    }

    .row_section1 {
        padding-bottom: 30px;
    }

    .section2_square1 {
        display: none;
    }

    .section2_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2_square2 h2 {
        padding-right: 10px;
        font-size: 30px;
    }

    .section2_square2 span {
        margin-top: 15px;
    }

    .section2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section22_square1 {
        width: 100%;
    }

    .section22_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2 .section2_square2 {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .cta {
        text-align: center;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 25px 15px 25px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .cta2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .cta2_square1 p {
        padding-right: 10px;
        font-size: 30px;
    }

    .cta2_square2 {
        padding-bottom: 60px;
    }

    .cta2_square2 a {
        border-radius: 0px;
        border: 1px solid var(--btnred);
        margin-bottom: 5px;
    }

    .cta2_square2 .row {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .section4 {
        padding-top: 0px;
    }

    .section4 .section2_square2 a {
        width: 50%;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 15px 15px 15px;
        margin-bottom: 20px;
    }

    .section4_squareimg {
        padding-left: calc(var(--bs-gutter-x) * .5);
        text-align: center;
    }

    .section4 .dots_img {
        right: 0;
        bottom: -40px;
    }

    .section1_second {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .recent_square_photo {
        height: 270px;
    }

    .recent_square_photo img {
        width: auto;
        margin-bottom: 5px;
    }

    .section5 {
        padding-bottom: 0px;
        padding-top: 30px;
    }

    .cta3 h2 {
        font-size: 35px;
    }

    .cta3_button a {
        font-size: 12px;
        margin-top: 15px;
    }

    footer {
        padding-top: 30px;
    }

    .footer_square1 img {
        width: 200px;
    }

    .container_footer {
        text-align: center;
    }
	
		/* SUBPAGE */
	
	.subpage_banner {
		height: auto;
		margin-bottom: 10px;
	}
	
	.subpage_banner .forms {
		margin-bottom: 0px;
		margin-top: 20px;
	}
	
	#nf-form-2-cont {
		width: 90%;
		padding: 30px 15px 0px 15px;
	}
	
	.subpage_banner a.banner_button {
		width: 40%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content_full_width {
		padding-top: 10px;
	}
	
	.content_full_width h2 {
		font-size: 30px;
	}

	/* GALLERY */

	.section_gallery .gallery {
		height: 250px;
	}

	.section_gallery .gallery img {
		height: 250px;
	}
}
@media (max-width: 575px) {
    .button_in_nav {
        display: none;
    }

    .second_header {
        padding-right: var(--bs-gutter-x,.75rem);
        padding-left: var(--bs-gutter-x,.75rem);
    }

    .navbar-brand img {
        width: 160px;
        padding-left: 30px;
    }

    .first_header {
        font-size: 12px;
    }

    .section_banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .text_top {
        font-size: 24px;
    }

    h1 {
        font-size: 35px;
        padding-right: 10px;
    }

    .text_bottom {
        font-size: 18px;
        width: 100%;
    }

    .section_banner a {
        padding: 10px 20px 10px 20px;
        font-size: 12px;
    }

    .section1_square {
        width: 100%;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .section1_square .dots_img {
        bottom: -40px;
        right: 0;
    }

    .section1_square h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .section1_square p {
        font-size: 18px;
    }

    .row_section1 {
        padding-bottom: 30px;
    }

    .section2_square1 {
        display: none;
    }

    .section2_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2_square2 h2 {
        padding-right: 10px;
        font-size: 30px;
    }

    .section2_square2 span {
        margin-top: 15px;
    }

    .section2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section22_square1 {
        width: 100%;
    }

    .section22_square2 {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section2 .section2_square2 {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .cta {
        text-align: center;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 25px 15px 25px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .cta2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .cta2_square1 p {
        padding-right: 10px;
        font-size: 30px;
    }

    .cta2_square2 {
        padding-bottom: 60px;
    }

    .cta2_square2 a {
        border-radius: 0px;
        border: 1px solid var(--btnred);
        margin-bottom: 5px;
    }

    .cta2_square2 .row {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .section4 {
        padding-top: 0px;
    }

    .section4 .section2_square2 a {
        width: 50%;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 15px 15px 15px;
        margin-bottom: 20px;
    }

    .section4_squareimg {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .section4 .dots_img {
        right: 0;
        bottom: -40px;
    }

    .section1_second {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .recent_square_photo {
        height: 270px;
    }

    .recent_square_photo img {
        width: auto;
        margin-bottom: 5px;
    }

    .section5 {
        padding-bottom: 0px;
        padding-top: 30px;
    }

    .cta3 h2 {
        font-size: 30px;
    }

    .cta3_button a {
        font-size: 12px;
        margin-top: 15px;
    }

    footer {
        padding-top: 30px;
    }

    .footer_square1 img {
        width: 200px;
    }

    .container_footer {
        text-align: center;
    }
	
	/* SUBPAGE */
	
	.subpage_banner {
		height: auto;
		margin-bottom: 10px;
	}
	
	.subpage_banner .forms {
		margin-bottom: 0px;
		margin-top: 20px;
	}
	
	#nf-form-2-cont {
		width: 90%;
		padding: 30px 15px 0px 15px;
	}
	
	.subpage_banner a.banner_button {
		width: 40%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content_full_width {
		padding-top: 10px;
	}
	
	.content_full_width h2 {
		font-size: 30px;
	}
	
}