/********** GENERAL**********/

body {
	color: #292E33;
	font-family: 'Poppins', sans-serif;
}

/*** grid ***/

.container-narrow {
	/*padding-left: 5.5rem;
	padding-right: 5.5rem;*/
	padding-left: 8.5rem;
	padding-right: 8.5rem;
}

/*** padding ***/

.pt-7 {
	padding-top: 2rem;
}
.pb-7 {
	padding-bottom: 2rem;
}
.px-7 {
	padding-left: 2rem;
	padding-right: 2rem;
}
.px-8 {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}


/*** width ***/

.w-60 {
	width: 60%;
}
.w-70 {
	width: 70%;
}
.w-80 {
	width: 80%;
}
.w-90 {
	width: 90%;
}
.w-95 {
	width: 95%;
}

/*** typography ***/

h1, h2, h3, h4 {
	font-family: 'Red Hat Display', sans-serif;
	line-height: 1.1;
}
h1 {
	font-weight: 900!important;
}
h2{	
	font-size: 3rem;
	font-weight: 700!important;
}

p {
	font-size: 1.25rem;
	line-height: 1.4;
	font-weight: 300;
}

.fs-64 {
	font-size: 4rem;
}


.fs-7 {
	font-size: 1.125rem;	
}
.fs-8 {
	font-size: 0.875rem;
}

/*letter spacing*/

.letter-spacing {
	letter-spacing: 1px;
}

/*line height*/

.lh-xxs {
	line-height: 0.8;
}
.lh-xs {
	line-height: 1.2;
}
input,
button {
	line-height: 1.33;
}

/*font weight*/

.fw-medium {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}

/*** text-color ***/

.text-blue {
	color: #1CA0E1!important;
}	
.text-pink {
	color: #E90A8A!important;
}	
.text-light-gray {
	color: #8A8C8F!important;
}
.text-dark-gray {
	color: #4A515B!important;
}


/*** button ***/

.btn {
	border-radius: 0;
	font-size: 1.125rem;
	padding: 1rem 2.5rem;
	text-transform: capitalize;
}

.btn-pink {
	color:  #fff;
	background-color: #E90A8A;
}
.btn-blue {
	color:  #fff;
	background-color: #1CA0E1;
}
.btn-outline-white {
	color: #fff;
	border: 1px solid #fff;
}
.btn-outline-black {
	color: #000;
	border: 1px solid #000;
}
.btn-outline-pink {
	color: #E90A8A;
	border: 1px solid #E90A8A;
}
.btn-link-pink {
	color: #E90A8A;
	font-size: 0.875rem;
	padding: 10px 0;
	line-height: 1.7;
}

.btn-link {
	text-align: left;
	padding: 0;
	line-height: 1.33;
	text-decoration: none!important;
}

/*button-arrow*/

.triangle-right {
	width: 0;
	height: 0;
	border-top: 31px solid transparent;
	border-bottom: 31px solid transparent;
	border-left: 31px solid white;
	position: absolute;
	top: -1px;
	right: -31px;
}
.triangle-right:after {
	content: '';
	position: absolute;
	top: -29px;
	left: -31px;
	width: 0;
	height: 0;
	border-top: 29px solid transparent;
	border-bottom: 29px solid transparent;
	border-left: 29px solid #000;
}

/*btn-cursor*/

.text {
	padding-left: 26px;
	display: inline-block;
	position: relative;
	transform: translateX(0);
	transition: all 0.5s linear
}
.btn-cursor:hover .text {
	transform: translateX(-26px);
}
.text:before {
	content: "\F2E3";
    font-family: 'bootstrap-icons';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    transform: translateX(0%) rotate(45deg);
   	transition: all 0.35s linear
}
.btn-cursor:hover .text:before {
	content: "\F2E1";
    font-family: 'bootstrap-icons';
    transform: translateX(226px) rotate(45deg);
}
	
/*btn size*/

.btn-smaller {
	padding: .5rem 2.5rem;
}

/*btn hover*/

.btn-pink:hover,
.btn-blue:hover {
	color:  #fff;
	background-color: #A91369;
	border-color: #A91369;
}
.btn-outline-white:hover {
	color: #000;
	background-color: #fff;
	border-color: #fff;	
}
.btn-outline-black:hover {
	color: #fff;
	background-color: #000;
	border-color: #000;	
}
.btn-outline-pink:hover {
	color: #fff;
	background-color: #E90A8A;
	border-color: #E90A8A;
}
.btn-link-pink:hover {
	border: 1px solid transparent;
	color: #1CA0E1;
}
.btn-link-gray:hover {
	border: 1px solid transparent;
	color: #1CA0E1;
}
.btn-link:hover {
	border: 1px solid transparent;
}
.btn-outline-white:hover .triangle-right:after {
	border-left: 29px solid #fff;
	transition: border-color 0.15s ease-in-out;
}

/*** background color ***/

.bg-pink {
	background-color: #E90A8A;
}
.bg-light-pink {
	background-color: rgba(233, 10, 138, 0.06);
}
.bg-gray {
	background-color: #4a515b;
}
.bg-dark-gray {
	background-color: #292e33;
}

/*** z-index ***/

.z-index-3 {
	z-index: 3;
}
.z-index--1 {
	z-index: -1;
}
.z-index-0 {
	z-index: 0;
}

.top-25 {
	top: 25%;
}

/*** images ***/

img {
	object-fit: cover;
}

.bg-image {
	z-index: -1;
}
.bg-cover {
	background-size: cover;
	background-repeat: no-repeat;
}
.bg-contain {
	background-size: contain;
	background-repeat: no-repeat;
}

/*** transform ***/

.transform-rotate-180 {
	transform: rotate(180deg);
}

/*** custom-scroll ***/

.custom-scroll {
	max-height: 55vh;
	overflow-y: scroll;
}
.custom-scroll::-webkit-scrollbar {
	width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
	background-color: #F0F0F0;
	border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #ababab;
}

/*** icon-animation ***/
.icon-animation {
  animation: upDown 0.75s linear infinite;
	position: relative;
	top: 0;
}

@keyframes upDown {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 13px;
  }
}


/********** HEADER **********/

.main-header .bg-header {
	width: 100%;
	height: 776px;
	clip-path: polygon(0% 0%,100% 0%,100% 71%,79.5% 100%,59% 76%,53.5% 87%,36% 86.5%,18% 100%,0% 84%);
}
.main-header .bg-opacity {
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}
.main-heading {
	font-size: 4rem;
}

.subpage-header .bg-header {
	height: 550px;
}
.subpage-header .bg-opacity {
	height: 100%;
}
.subpage-heading {
	font-size: 8rem;
}



/*** top-navbar ***/

.header-nav {
	height: 80px;
	top: 80px;
}

/* header-logo */

.navbar-logotype {
	width: 102px;
}
.navbar-logotype-img:first-child {
	filter: drop-shadow(3px 0 20px rgba(0,0,0, 0.25));
}
.navbar-logotype-img:last-child {
	width: 94%;
}
.navbar-logo {
	width: 177px;
}

/* menu */

.menu {
	display: flex;
}
.menu-link {
	font-size: 1.125rem;
	text-decoration: none;
	transition: all .15s ease-in-out;
}
.menu-link:hover {
	color: #4a515b!important;
}
.toggle {
	display: none;
}

/********** MAIN **********/

/*** shadow ***/

.img-bottom-shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: inset 0px -88px 50px -35px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 0px -88px 50px -35px rgba(0, 0, 0, 1);
	box-shadow: inset 0px -88px 50px -35px rgba(0, 0, 0, 1);
	top: 0;
	left: 0;
}

/*** popover ***/

.popover {
	--bs-popover-border-radius:  0;
}
.popover .popover-arrow {
	display: none!important;
}
.popover-body {
	padding: 5px 25px;
}

/*** overlay ***/

.overlay:after {
	content: "";
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;	
	transition: all 0.3s ease;
	z-index: 1;
	opacity: 0;
}
.overlay .bi-search {
	opacity: 0;
	position: absolute;
}
.overlay:hover:after {
	opacity: 1;
}
.overlay:hover .bi-search {
	opacity: 1;
	z-index: 5;
}

/*card*/

.card {
	border: none;
}


/*** image color change ***/

.img-color-change {
	background-color: gray;
	background-blend-mode: luminosity;
}
.img-color-change:hover {
	background-color: transparent;
	background-blend-mode: normal;
	transition: background-color 2s ease-out 100ms
}

.img-color-change {
	background-color: gray;
	background-blend-mode: luminosity;
}
.img-color-change:hover {
	background-color: transparent;
	background-blend-mode: normal;
	transition: background-color 2s ease-out 100ms
}

/*** imgage outline border ***/

.img-outline-border {
	outline: 1px solid #fff;
	outline-offset: -12px;
}

/*** point-item ***/

.point-item {
	width: 28px;
	height: 28px;
	background-color: #E90A8A;
	border-radius: 50%;
	opacity: 1;
}
.point-item-sm {
	width: 16px!important;
	height: 16px!important;
}
.bi-plus {
	font-size: 28px;
	line-height: 28px;
}

/*** logo animation ***/

.logo-pulse {
	animation: pulse 1.5s infinite;
	animation-timing-function: steps(2, start);
} 

@keyframes pulse {
  0% {
	transform: scale(1);
  }
  100% {
	transform: scale(1.1);
  }
}

/*** blob animation ***/

.blob {
	box-shadow: 0 0 0 0 rgba(169, 19, 105, .1);
	transform: scale(1);
	animation: pulse-blob 2s infinite;
}
@keyframes pulse-blob {
  0% {
	transform: scale(0.95);
	box-shadow: 0 0 0 0 rgba(169, 19, 105, 0.4);
  }
  
  70% {
	transform: scale(1);
	box-shadow: 0 0 0 7px rgba(169, 19, 105, 0.5);
  }
  
  100% {
	transform: scale(0.95);
	box-shadow: 0 0 0 0 rgba(169, 19, 105, 0.6);
  }
}

/* baner-logo */

.baner-logo-img {
	width: 148px;
}


/*** magenta-002 ***/

.magenta-002 .bg-img {
	height: 735px;
	background-position: 50%;
}

/*popover*/
.popover .img-block-item {
	height: 47px;
}

/*popover wide*/
.popover.popover-wide {
	--bs-popover-max-width: 751px;
	height: 292px;
}
.popover-wide .popover-body {
	padding: 32px;
}
.popover-wide .img-cover {
	width: 244px;
	height: 227px;
}
.popover-wide .img-block-item {
	margin-bottom: 14px;
}
.popover-wide .img-block-item:last-child {
	margin-bottom: 0;
}
.popover .btn-sm {
	padding: .5rem 2rem;
}

/*popover narrow*/

.popover.popover-narrow {
	--bs-popover-max-width: 356px;
}
.popover-narrow .popover-body {
	padding: 24px;
}
.popover-narrow .img-block-item {
	margin-right: 14px;
}
.popover-narrow .img-block-item:last-child {
	margin-right: 0;
}

/*point-item*/

.magenta-002 .point-item-01 {
	top: 27.92%;
	left: 46.66%;
}
.magenta-002 .point-item-02 {
	top: 61.13%;
    left: 25.33%;
}
.magenta-002 .point-item-03 {
	top: 67.45%;
	left: 45.92%;
}
.magenta-002 .point-item-04 {
	top: 43%;
	left: 60%;

}
.magenta-002 .point-item-05 {
	top: 69.87%;
    right: 24.67%;

}

.magenta-002 .btn-arrow-right {
	width: 100%;
}

/*shape-shadow*/

.shape-shadow {
	filter: drop-shadow(-1px 7px 35px rgba(0, 0, 0, 0.65));
}
.shape-1 {
	height: 112px;
	clip-path: polygon(17% 97%,0% 56%,0% 0%,100% 0%,100% 90%,59% 65%,30.5% 100%,23.6% 43%);
	margin-top: -1px;
}

/*logo-pulse*/
.magenta-002 .logo-pulse {
	width: 16%;
	left: 16%;
	top: 95px;
} 


/*** magenta-004 ***/

.magenta-004 .img-color-change {
	height: 450px;
}
.magenta-004 .img-color-change:first-child {
	border-right: 1px solid #fff;
}

/*** magenta-005 ***/

.magenta-005 .bg-img {
	height: 825px;
	z-index: -1;
	background-position: 50% 0%;
	margin-top: -22%;
}

/*** magenta-006 ***/

.map-item {
   width: 65%;
	left: -webkit-calc(-100% + 85%);
    left: -moz-calc(-100% + 85%);
    left: calc(-100% + 85%);
}
.magenta-006 .point-item-sm:first-child {
	top: 33.15%;
	left: 24.81%;
}
.magenta-006 .point-item-sm:nth-child(2) {
	bottom: 50.68%;
	left: 60.92%;
}
.magenta-006 .point-item-sm:nth-child(3) {
	bottom: 30%;
	left: 80%;
}
.magenta-006 .point-item-sm:last-child {
	bottom: 14.79%;
	left: 17.59%;
}

/*** magenta-007 ***/ 

.carousel-indicators [data-bs-target] {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #d9d9d9;
	opacity: 1;
	margin: 0 13px;
}
.carousel-indicators [data-bs-target].active {
	width: 14px;
	height: 14px;
	background-color: #E90A8A;
}

.magenta-007 .carousel-control-next, 
.magenta-007 .carousel-control-prev {
	opacity: 1;
}
.carousel-control-prev {
	justify-content: start;
}
.carousel-control-next {
	justify-content: end;
}
.magenta-007 .carousel-control-next-icon, 
.magenta-007 .carousel-control-prev-icon {
	background-size: 50% 50%;
}

/*** magenta-008 ***/ 

.magenta-008 .container-narrow {
	padding: 0 7.25rem;
}


/*** magenta-010 ***/

.magenta-010 .card {
	width: 352px;
}
.magenta-010 .bg-img {
	top: 40px;
}


/** calender **/

.mystyle{
	border: 1px solid #EB008B;	
	color: #EB008B;
}

.days,
.dates {	
	grid-template-columns: repeat(7, 1fr);
}
.dates {	
	font-size: 14px;
	font-weight: 300;
}
.date {
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	border: 1px solid #fff;
}
.date:hover:not(.today) {	
	border-color: #EB008B;	
	color: #EB008B;
}
.prev-month,
.next-month {
	cursor: pointer;
}
.prev-date,
.next-date {
	padding: 10px;
	color: rgba(0, 0, 0, .5);
}
.today {
	color: #fff;
	background-color: #EB008B;
	border-radius: 50%;
	
}

/*** magenta-011 ***/

.magenta-011 .bg-img {
	height: 200px;
	border-left: 1px solid #fff;
}
.magenta-011 .col:first-child .bg-img {
	border-left: 0;
}

/*magenta-012*/

.magenta-012 .bg-img {
	height: 882px;
	background-position-y: 60%;
	margin-top: -182px;
}

.magenta-012 .card-tile {
	width: 277px;
}
.magenta-012 .card-img {
	height: 351px;
}
.magenta-012 .card:hover .card-img  {
	background-color: transparent;
}
.magenta-012 .card:hover .btn-link  {
	color: #1CA0E1!important;
}


.magenta-012 .main-card {
	width: 416px;
	top: 5.6%;
	right: 11.8%;
}
.magenta-012 .row-margin-top {
	margin-top:  -195px;
}


/*magenta-013 */

.magenta-013 .icon-building {
	height: 152px;
}


/********** FOOTER **********/

.footer {
	overflow-x: hidden;
}


/*footer-contact-map*/


.footer-section-map.bg-img {
	height: 755.5px;
	background-position-y: 155.5px;
}

.footer-section-map .btn-link {
	font-size: 1.25rem;
}

.bg-house-plan {
	background-size: 55%;
	background-repeat: no-repeat;
	background-position-x: 100%;
	background-position-y: -190%;
}
.footer-contact-form {
	padding: 1px;
}
.form-box {
	margin-top: -157px;
}


#formFile {
	position: relative;
	font-size: 0.875rem;
    background-color: rgba(28, 160, 225, 0.05);
    margin: 11px 0;
    height: 27px;
    width: auto;
	padding: 5px 10px;
	border-radius: 0!important;
}

#formFile::before {
    content: " ";
    position: absolute;
    z-index: 2;
    display: block;
    background-color: white;
    width: 110px;
    height: 100%;
    left: 0;
    top: 0;
}
#formFile::after {
    content: "+";
    position: absolute;
    z-index: 4;
    display: block;
    background-color: #F0F0F0;
    width: 34px;
    height: 27px;
    top: 0;
    left: 48px;
    color: #BDBFC1;
    text-align: center;
    padding: 4px 0;
}

.footer-form-label {
	width: 132px;
	font-size: 1rem;
	padding: 12px 0;
}
.footer .form-control {
	padding: 12px 10px;
	width: calc(100% - 140px);
}
.footer .form-textarea {
	height: 152px;
	resize: none;
}

.footer .form-control:focus {
	box-shadow: none;
	outline: none;
	border: none;
}


.footer-shape {	
	margin-bottom: -1px;
	height: 113px;
	clip-path: polygon(0% 0%,17% 100%,74.5% 44%,83% 100%,100% 0%,100% 100%,0% 100%);
}
.phone-input {
	border: 2.5px solid #fff;
	width: 64%;
}
.phone-submit {
	margin-left: -4px;
	margin-top: -3px;
	width: 35%;
}

.footer-logotype {
	width: 21%;
}
.footer-logo {
	width: 73%;
	margin-left: 4%;
}


/********** MODAL **********/

.modal {
	background-color: rgba(0, 0, 0, 0.5);
}
.modal-header {
	border-bottom: none;
}

.modal .box {
	padding: 0.75rem 1rem;
	border-radius: 0;
	font-size: 1rem;
}

/*** hourBox ***/

.hourBox {
	cursor: pointer;
}
.hourBox .hourBox-btn {
	display: none;
}
.hourBox.active .hourBox-item {
	width: 48.5%;
	position: relative;
	display: inline-block;
}
.hourBox.active .hourBox-item:before {
	content: "\F26A";
	font-family: 'bootstrap-icons';
	position: absolute;
	left: 0;
	margin-left: 1rem;
}
.hourBox.active .hourBox-btn {
	display: inline-block;
	width: 48.5%;
	margin-left: 2%;
}
