html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-width: 320px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.container, .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */

@font-face {
    font-family: 'Socialico';
    src: url('../fonts/Socialico/Socialico.eot');
    src: url('../fonts/Socialico/Socialico.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Socialico/Socialico.woff2') format('woff2'),
        url('../fonts/Socialico/Socialico.woff') format('woff'),
        url('../fonts/Socialico/Socialico.ttf') format('truetype'),
        url('../fonts/Socialico/Socialico.svg#svgFontName') format('svg');
}

.socialico {
    font-family: 'Socialico';
    font-size: 2rem;
}

@font-face {
    font-family: 'Socialico Plus';
    src: url('../fonts/SocialicoPlus/SocialicoPlus.eot');
    src: url('../fonts/SocialicoPlus/SocialicoPlus.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SocialicoPlus/SocialicoPlus.woff2') format('woff2'),
        url('../fonts/SocialicoPlus/SocialicoPlus.woff') format('woff'),
        url('../fonts/SocialicoPlus/SocialicoPlus.ttf') format('truetype'),
        url('../fonts/SocialicoPlus/SocialicoPlus.svg#svgFontName') format('svg');
}

.socialico-plus {
    font-family: 'Socialico Plus';
    font-size: 2rem;
}

a {
    color: inherit;
    text-decoration: none;
    color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}


ul,
ol {
    color: #444444;
}

p {
    font-family: inherit;
    margin: 1rem 0;
    font-size: 18px;
    color: #444444;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    h1,
    h2 {
        font-size: 40px;
    }
}

/* Buttons */
.button {
    position: relative;
    display: inline-block;
    padding: 25px;
    border: none;
    color: #FFF;
    background-color: #DC3E84;
    line-height: 1;
    min-width: 200px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.button-pink {
    background: #DC3E84;
}

.button-pink:hover {
    background: rgb(177, 50, 107);
}

.button-purple {
    background: #9A5AB6;
}

.button-purple:hover {
    background: rgb(120, 72, 141);
}

.button-green {
    background: #63C8C4;
}

.button-green:hover {
    background: rgb(72, 145, 142);
}


@media screen and (max-width: 600px) {
    .button {
        display: block;
    }
}


/* contact form messages */
form .messages p {
    display: none;
    font-family: Arial !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    font-size: 16px !important;
}

form .loading {
    display: none;
}

form .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

form .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

form .alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

form [type="submit"] {
    margin: 20px auto;
}

/* contact form */
.ctc-form {
    margin: 0 auto;
    text-align: center;
}

.ctc-form .wrap {
    display: flex;
    justify-content: space-between;
}

.ctc-form .wrap input {
    flex-basis: 49%;
}

.ctc-form input[type="text"],
.ctc-form textarea,
.ctc-form select {
    font-family: inherit;
    font-size: 16px;
    color: #000;
    height: 45px;
    display: block;
    width: 100%;
    border: 1px solid #DC3E84;
    padding: 5px 10px;
    box-sizing: border-box;
    margin: 10px 0;
}

.ctc-form input[type="text"]::placeholder,
.ctc-form textarea::placeholder,
.ctc-form select::placeholder {
    color: #DC3E84;
}

.ctc-form textarea {
    height: 120px;
    padding-top: 10px;
}

.ctc-form .g-recaptcha {
    display: block;
}

.ctc-form .g-recaptcha > div {
    margin: 10px auto;
}

.ctc-hide {
    display: none;
}

.home-form {
    text-align: left;
}

.home #footer {
	padding: 0;
	margin-top: -30px;
}

.footer-logo-mobile {
	display: none;
}

@media screen and (max-width: 850px) {
    .ctc-form .wrap {
        flex-wrap: wrap;
    }

    .ctc-form .wrap input {
        flex-basis: 100%;
        margin: 5px 0;
    }
}

/* Header */
#header{display: none;}
#header {
    background: url(../images/common/header_bg1.jpg) center no-repeat;
    background-size: cover;
    padding: 20px 0 40px;
    border-bottom: 10px solid #DC3E84;
}
#header .container {
    position: relative;
}
/* 
#header .header-phone {
    position: absolute;
    bottom: -10px;
    left: 15px;
    color: #FFF;
} */

#header .header-phone::before {
    content: url(../images/common/phone.png);
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

#header .header-phone a {
    color: #FFF;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 17px;
}

/* #header .header-facebook { 
    position: absolute;
    right: 15px;
    bottom: -30px;
} */

/* Navigation */

#header nav a#pull {
    display: none;
}

#header nav>ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

#header nav>ul>li {
    position: relative;
}

#header nav>ul>li#header-home {
    display: none;
}

#header nav>ul>li>a {
    /* font-family: ; */
    color: #FFF;
    font-size: 13px;
    display: block;
}

#header nav>ul>li.active-menu>a,
#header nav>ul>li>a:hover {
    color: #fff;
}

/* Navigation > sub-menu */

#header nav>ul>li>ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 150px;
    transition: all .3s ease;
}

#header nav>ul>li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header nav>ul>li>ul.sub-menu>li {
    text-align: left;
}

#header nav>ul>li>ul.sub-menu>li>a {
    font-family: 'Staatliches', cursive;
    color: #FFF;
    font-size: 20px;
}

.header-navigation {
	color: #fff !important;
	font-weight: bold;
}

@media screen and (max-width: 1024px) {

    #header {
        padding-top: 65px;
    }

    #header .container {
        padding-top: 50px;
    }

    #header nav {
        flex-basis: unset;
    }

    #header nav a#pull {
        position: fixed;
        z-index: 9999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #9A5AB6;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 15px;
        color: #FFF;
    }

    #header nav a#pull img {
        max-width: 160px;
    }

    #header nav>ul {
        display: block;
        position: fixed;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #9A5AB6;
        z-index: 9998;
        text-align: left;
        padding: 65px 15px 0;
        margin: 0;
    }

    #header nav>ul>li#header-logo {
        display: none;
    }

    #header nav>ul>li#header-home {
        display: block;
    }

    #header nav>ul>li {
        padding: 15px 0;
    }

    #header nav>ul>li>ul.sub-menu {
        position: relative;
        visibility: visible;
        opacity: 1;
        display: block !important;
        list-style-type: disc;
    }

    #header2{display: none;}
    #header{display: block;}
}



/*banner*/
#banner {
    background-size: cover;
}

#banner .container {
    padding: 0;
    max-width: 100%;
}


#banner .banner-img {
    display: block;
    width: 100%;
}

/*content*/

/* Home Page */
/* Home Page > About Section */
#about-section {
    background: url(../images/content/shelly_bg.jpg) center no-repeat;
    background-size: cover;
    padding: 90px 0;
}

#about-section .container {
    max-width: 990px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about-section .about-image {
    flex-basis: 190px;
}

#about-section .about-image img {
    display: block;
    max-width: 100%;
}

#about-section .about-text {
    flex-basis: 78%;
    text-align: left;
}

#about-section .about-text p {
    font-size: 17px;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    #about-section .container {
        flex-wrap: wrap;
    }

    #about-section {
        padding: 40px 0;
    }

    #about-section .about-image {
        flex-basis: 100%;
    }

    #about-section .about-image img {
        margin: 0 auto;
    }

    #about-section .about-text {
        flex-basis: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 717px) {
	#footer .footer-contents {
		text-align: center !important;
	}
}

/* Home Page > Services Section */
#services-section {
    background: url(../images/content/services_bg.jpg) center no-repeat;
    background-size: cover;
    padding: 75px 0;
}

#services-section .service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#services-section .service.service-image-left .service-image {
    order: 1;
}

#services-section .service.service-image-left .service-text {
    order: 2;
}

#services-section .service.service-image-right .service-image {
    order: 2;
}

#services-section .service.service-image-right .service-text {
    order: 1;
}

#services-section .service .service-image {
    position: relative;
    flex-basis: 50%;
}

#services-section .service-1 .service-image::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 20px;
    background: #DC3E84;
}

#services-section .service-2 .service-image::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 20px;
    background: #9A5AB6;
}

#services-section .service-3 .service-image::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 20px;
    background: #63C8C4;
}

#services-section .service .service-image img {
    display: block;
    width: 100%;
}

#services-section .service .service-text {
    flex-basis: 50%;
    text-align: left;
    padding: 0 50px;
}

#services-section .service .service-text p {
    font-size: 17px;
    margin: 30px 0;
}

@media screen and (max-width: 990px) {

    #services-section .service {
        flex-wrap: wrap;
    }

    #services-section .service.service-image-left .service-text,
    #services-section .service.service-image-right .service-text {
        flex-basis: 100%;
        order: 2;
        margin: 20px 0;
        text-align: center;
    }
    #services-section .service .service-image {
        flex-basis: 100%;
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    #services-section {
        padding: 40px 0;
    }
}

/* Home Page > Gallery Section */
#gallery-section {
    padding: 70px 0;
    background: url(../images/content/gallery_bg.jpg) center no-repeat;
    background-size: cover;
}

#gallery-section .container {
    max-width: 1920px;
    padding: 0;
}

#gallery-section h2 {
    color: #FFF;
}

#gallery-section .gallery-wrapper {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

#gallery-section .gallery-wrapper .gallery-1,
#gallery-section .gallery-wrapper .gallery-2,
#gallery-section .gallery-wrapper .gallery-3,
#gallery-section .gallery-wrapper .gallery-4 {
    position: relative;
    flex-basis: 25%;
    flex-grow: 1;
}

#gallery-section .gallery-wrapper .gallery-1 img,
#gallery-section .gallery-wrapper .gallery-2 img,
#gallery-section .gallery-wrapper .gallery-3 img,
#gallery-section .gallery-wrapper .gallery-4 img {
    display: block;
    max-width: 100%;
    width: 100%;
}

#gallery-section .gallery-title {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    background: rgba(220, 62, 132, .75);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

#gallery-section .gallery-title span {
    font-size: 45px;
    color: #fff;
    margin-bottom: 20px;
}

#gallery-section .gallery-title img {
    width: auto !important;
    display: block;
}

#gallery-section div[class*="gallery"]:hover > .gallery-title{
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1200px) {
    #gallery-section .gallery-title span {
        font-size: 35px;
    }
    #footer .footer-contents {
	    margin-top: -90px !important;
	}
	#footer .footer-logo .font-poppins {
		padding-top: 0 !important;
	}
}

@media screen and (max-width: 1073px) {
	#footer .footer-contents {
		margin: 0 !important;
	    background-color: #444444;
	    padding: 25px 50px;
	    row-gap: 25px;
	    justify-content: space-around !important;
    }

    #footer .footer-logo .container {
    	padding: 0;
    }
    .footer-logo-desktop {
    	display: none;
    }
    .footer-logo-mobile {
    	display: block;
    }
}

@media screen and (max-width: 990px) {
    #gallery-section .gallery-wrapper {
        flex-wrap: wrap;
    }
    #gallery-section .gallery-wrapper .gallery-1, 
    #gallery-section .gallery-wrapper .gallery-2, 
    #gallery-section .gallery-wrapper .gallery-3, 
    #gallery-section .gallery-wrapper .gallery-4 {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 768px) {
    #gallery-section {
        padding: 40px 0;    
    }

    #gallery-section .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 600px) {
    #gallery-section .gallery-wrapper .gallery-1, 
    #gallery-section .gallery-wrapper .gallery-2, 
    #gallery-section .gallery-wrapper .gallery-3, 
    #gallery-section .gallery-wrapper .gallery-4 {
        flex-basis: 100%;
    }
}


/* footer */
#footer {
    background: url(../images/common/footer_bg.jpg) center no-repeat;
    background-size: cover;
    padding: 90px 0 0 0;
    border-bottom: 20px solid #E23D87;
}

#footer .footer-contents {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -130px;
    text-align: start;
}

#footer .footer-contents h5 {
	padding-bottom: 15px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}

#footer .footer-contents .footer-links,
#footer .footer-contents .footer-links a {
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer .footer-contents .footer-links {
	column-gap: 15px;
}

#footer .footer-contents .footer-links a {
	column-gap: 5px;
}

#footer .footer-contents .footer-links span {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
    #footer {
        padding: 40px 0;
    }
}

/* footer > footer contact */
#footer .footer-contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .footer-contact h4 {
    color: #E23D87;
    font-size: 13px;
    margin: 0;
}

#footer .footer-contact .footer-phone {
    text-align: left;
}

#footer .footer-contact .footer-phone::after {
    content: "";
    width: 50px;
    height: 5px;
    background: #3c763d;
    display: block;
}

#footer .footer-contact .footer-phone a {
    display: block;
    line-height: 1;
    font-size: 25px;
    margin: 25px 0;
}

#footer .footer-contact .footer-email {
    text-align: right;
}

#footer .footer-contact .footer-email::after {
    content: "";
    width: 50px;
    height: 5px;
    background: #3c763d;
    display: block;
    margin-left: auto;
}

#footer .footer-contact .footer-email a {
    display: block;
    line-height: 1;
    font-size: 14px;
    margin: 25px 0;
}

@media screen and (max-width: 600px) {
    #footer .footer-contact .container {
        flex-wrap: wrap;
    }

    #footer .footer-contact .footer-phone,
    #footer .footer-contact .footer-email {
        flex-basis: 100%;
        text-align: center;
        margin: 15px 0;
    }

    #footer .footer-contact .footer-phone::after,
    #footer .footer-contact .footer-email::after {
        margin: 0 auto;
    }
}

/* footer > footer logo */
#footer .footer-logo {
    margin: 20px 0 40px;
}

#footer .footer-logo img {
    display: block;
    max-width: 100%;
}

#footer .footer-logo .font-poppins {
	text-align: center;
	color: #DC3E84 !important;
	letter-spacing: 5px;
	font-size: 16px;
	padding-top: 50px;
}

/* footer > footer nav */
#footer .footer-nav .container {
    border-bottom: 1px solid rgba(85, 85, 85, 0.25);
}

#footer .footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

#footer .footer-nav ul li a {
    display: block;
    padding: 20px 40px;
    letter-spacing: 1px;
    font-size: 13px;
}

#footer .footer-nav ul li.active-menu a,
#footer .footer-nav ul li:hover a {
    color: #DC3E84;
}

@media screen and (max-width: 990px) {
    #footer .footer-nav ul li a {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    #footer .footer-nav ul {
        flex-wrap: wrap;
    }

    #footer .footer-nav ul li {
        flex-basis: 100%;
    }

    #footer .footer-nav ul li a {
        padding: 10px;
    }
}


/* footer > copyright */
#footer .footer-copyright {
    padding: 0 0 30px 0;
}

#footer .footer-copyright p {
    /* color: #FFF; */
    margin: 0;
    font-size: 14px;
font-family:'Poppins';
}

#footer .company img {
    display: inline-block;
    vertical-align: middle;
    max-width: 40px;
}
img.company-logo{
width:40px;}

/* Inner Pages */

.inner .page-header {
    background: url(../images/common/banner_inner.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.inner .page-header h1 {
    color: #FFF;
    text-transform: uppercase;
}

.inner #content {
    min-height: 400px;
    padding: 40px 0
}

/* Invitations Page */
.invitations-page .invitations-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
}

.invitations-page .invitations-wrapper .invitations-images {
    /*flex-basis: 50%;*/
    flex-basis: 70%;
    position: relative;
}

.invitations-page .invitations-wrapper .invitations-links {
    flex-basis: 40%;
    text-align: left;
    padding-top: 100px;
}

.invitations-page .invitations-wrapper .invitations-links p a {
    display: block;
    color: #9A5AB6;
}

.invitations-page .invitations-wrapper .invitations-images > img {
	width: 194px;
	height: 194px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.invitations-page .invitations-wrapper .invitations-images .new-invitation-img {
	box-shadow: 10px 10px 5px #ccc;
 	-moz-box-shadow: 10px 10px 5px #ccc;
  	-webkit-box-shadow: 10px 10px 5px #ccc;
  	-khtml-box-shadow: 10px 10px 5px #ccc;
  	width: 185px;
  	margin: 5px 10px 5px 0;
}

img.new-invitation-img.absolute-img {
    position: absolute;
    top: 0;
    right: -190px;
    height: 180px !important;
    margin-top: 0 !important;
}

@media screen and (max-width: 1054px) {
	img.new-invitation-img.absolute-img {
	    position: unset;
	    height: 194px !important;
	}
	.invitations-page .invitations-wrapper .invitations-links {
		padding-top: 0;
	}
}

@media screen and (max-width: 1024px) {
    .invitations-page .invitations-wrapper {
        flex-wrap: wrap;
    }
    .invitations-page .invitations-wrapper .invitations-images,
    .invitations-page .invitations-wrapper .invitations-links {
        flex-basis: 100%;
        text-align: center;
    }
}

/* Event Planning Page */
.event-planning-page .events-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
}

.event-planning-page .events-wrapper .events-images {
    flex-basis: 50%;
}

.event-planning-page .events-wrapper .services-list {
    flex-basis: 40%;
    text-align: left;
}

.event-planning-page .events-wrapper .services-list h4 {
    display: block;
    color: #9A5AB6;
    margin: 20px 0;
}

@media screen and (max-width: 1024px) {
    .event-planning-page .events-wrapper {
        flex-wrap: wrap;
    }
    .event-planning-page .events-wrapper .events-images,
    .event-planning-page .events-wrapper .services-list {
        flex-basis: 100%;
        text-align: center;
    }

    .event-planning-page .events-wrapper .services-list ul {
        list-style: none;
        padding: 0;
    }
}

/* Gallery Page */
.gallery-page h3 {
    color: #9A5AB6;
    margin-bottom: 20px;
}

#content .gallery-container {
    text-align: center;
}

#content .gallery {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#content .gallery li {
    display: inline-block;
}

#content .thumbnail {
    display: block;
    margin-bottom: 5px;
    transition: border 0.2s ease-in-out 0s;
}

#content .thumbnail img {
    width: 220px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

#content .page_navigation {
    display: inline-block;
}

#content .page_link,
#content .previous_link,
#content .next_link,
#content .first_link,
#content .last_link,
#content .ellipse {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #0275d8;
    display: inline-block;
    line-height: 1.25;
    margin-left: -1px;
    padding: 0.5rem 0.75rem;
    position: relative;
}

#content .page_navigation>a:hover,
.page_navigation>a.active_page {
    background-color: #eceeef;
    border-color: #ddd;
    color: #014c8c;
    text-decoration: none;
}

div[id*="gall"] {
    margin: 30px 0;
}

@media screen and (max-width: 600px) {
    #content .page_link,
    #content .previous_link,
    #content .next_link,
    #content .first_link,
    #content .last_link,
    #content .ellipse {
        padding: 10px;
    }
    #header nav a#pull img {
        max-width: 100px;
    }
}

/* Contact Page */
.contact-page #content .container {
    display: flex;
    justify-content: space-between;
}

.contact-page #content h4 {
    color: #9A5AB6;
    font-size: 20px;
}

.contact-page .container .contact-info {
    flex-basis: 50%;
}

.contact-page .container .ctc-form {
    flex-basis: 45%;
}

@media screen and (max-width: 1024px) {

    .contact-page #content .container {
        flex-wrap: wrap;
    }

    .contact-page .container .contact-info,
    .contact-page .container .ctc-form {
        flex-basis: 100%;
        margin: 30px 0;
    }
}

.cta {
    display: none;
}

#g-recaptcha-response {
    display: none;
}


#header2 .header2-content{
    display: flex;
    justify-content: space-between;
}
#header2 .container{
    max-width: 1440px;
}
#header2 .top,
#call-cont, #fb-cont, #insta-cont{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#header2 .right-content{
    flex: 0 0 838px;
}

.font-poppins{font-family: 'Poppins'; color: #fff; text-align: end;}

#email-cont a{ font-size: 16px;}
#call-cont a{font-size: 18px;}
#fb-cont .title, 
#insta-cont .title{ font-size: 15px; text-transform: uppercase;}

#email-cont,
#call-cont,
#call-cont .left,
#fb-cont, 
#fb-cont .right,
#insta-cont, 
#insta-cont .right{
    align-self: center;
}

.right-content .bot .title{
    font-size: 19px;
    letter-spacing: 5px;
}

#header2 {
    background: url(../images/common/header_bg1.jpg) center no-repeat;
    background-size: cover;
    padding: 20px 0 0px;
}

#header2 .left-content{    
    top: 20px;
    position: relative;
}

#header2 .left-content img{
    width: 100%;
}
html, body{overflow-x: hidden;}

/* @media(max-width:1270px){
    #header2 .right-content {
        flex: 0 0 764px;
    }    
} */

.instagram{width: 100%; max-width: 134px; border-radius: 10px;}
.header-socials{display: flex; justify-content: space-between;}
.header-facebook img{width: 100%; max-width: 134px;}
.header-phone{display: flex; align-self: center;}

@media(max-width:500px){
    .header-socials{flex-direction: column;gap: 10px;}
}