@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');

@font-face {
	font-family: 'Exo';
	src: url('../fonts/Exo-ThinItalic.woff2') format('woff2'),
		url('../fonts/Exo-ThinItalic.woff') format('woff');
	font-weight: 100;
	font-style: italic;
	font-display: swap;
}

html{
	overflow-x: hidden;
}

:root {
	--primary-color: #6c46ab;
	--secondary-color: #32294b;
	--yellow-color: #FFD700;
	--white-color: #FFFFFF;
	--black-color: #000000;
	--gray-color: #8f8f8f;
	--lightGyay: #393939;

	--spacing: 1rem;
	--text-shadow: 1px -1px 4px #e7f4d3;

	--font-main: 'Exo';
	--secondary-fonts: "Poppins", sans-serif;
	--heading-font: "Gloria Hallelujah";
}

input::placeholder {
  color: #FFFFFF !important;
  opacity: 1;
}


/* test st */
   .sprinkle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      opacity: 0;
      animation: sprinkle-move 2s ease-in-out infinite;
    }

    /* Sprinkle colors */
    .gold { background: gold; box-shadow: 0 0 8px gold; }
    .blue { background: #4acfff; box-shadow: 0 0 8px #4acfff; }
    .white { background: white; box-shadow: 0 0 8px white; }

    /* Keyframes for curved motion */
    @keyframes sprinkle-move {
      0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
      }
      50% {
        transform: translate(80px, -30px) scale(0.8) rotate(20deg);
        opacity: 0.8;
      }
      100% {
        transform: translate(200px, 50px) scale(0.3) rotate(45deg);
        opacity: 0;
      }
    }
/* test */

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: var(--secondary-fonts);
}



.title{
	font-size: 52px;
    font-weight: 700;
}

header {
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
	padding: 25px 0;
}

.more_btn {
	background-color: #4B2E83;
	/* Main purple */
	color: white;
	padding: 12px 32px;
	font-family: var(--secondary-fonts);
	font-size: 15px;
	border: none;
	border-radius: 12px 12px 0 0;
	/* Rounded top corners */
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
	position: relative;
	z-index: 1;
	text-decoration: none;
	overflow: visible;
}

/* Bottom-right dark shadow */
.more_btn::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 12px;
	background-color: var(--secondary-color);
	clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}

.chat_now {
	background-image: url(../images/btn-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 10px;
	color: var(--white-color);
	width: 125px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: var(--secondary-fonts);
	font-size: 16px;
	font-weight: 600;

}


.get_now_btn {
	background-image: url(../images/btn2.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 10px;
	color: var(--white-color);
	width: 200px;
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: var(--secondary-fonts);
	font-size: 16px;
	font-weight: 600;
}

.get_now_btn:hover, .chat_now:hover{
	color: var(--yellow-color);
}

.Book_Form {
	margin: 0 auto;
}

.Form_Sec h3 {
	font-size: 30px;
	text-align: center;
	color: var(--white-color);
	font-weight: 700;
	text-shadow: 1px 2px 4px #00000054;
}

.Form_Sec p {
    color: var(--white-color);
    font-size: 13px;
    text-align: center;
    font-weight: 400;
    max-width: 98%;
    margin: 15px auto 22px;
}


.logo {
	width: 150px;
}

.btn {
	border-radius: 0;
	padding: 10px 15px;
}

.BtnSec {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 9;
}

.Get_Touch {
    border-radius: 55px;
    background: #AF84FF;
    color: var(--white-color);
    text-shadow: 0px 1px 2px #707070;
    font-weight: 600;
    font-size: 15px;
    text-shadow: 1px 2px 4px #00000054;
    padding: 12px 15px;
    box-shadow: 3px 3px 7px #00000047;
    font-family: var(--secondary-fonts);
}

.Get_Quote {
    background-color: transparent !important;
    border: 3px solid #AF84FF;
    border-radius: 38px !important;
    overflow: hidden;
    color: #FFF;
	font-weight: 600;
    padding: 15px 25px;
}
.Get_Touch:hover, .Get_Quote:hover{
	background-color: #7e52d1 !important;
	color:#FFF;
}

.live_text{
	color: #FFFFFF;
	max-width: 100%;
	float: none;
	text-align: center;
	font-size: 11px !important;
    font-weight: 300;
	text-align: left;
	padding-left: 0 !important;
}

/*  Banner_Sec Css ST */
.Banner_Sec {
	padding:75px 0 47px 0;
	position: relative;
	background-image: url('../images/bg1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 1090px;
}

.gap-30{
	gap: 30px;
}

.flex_btn{
	display: flex;
	align-content: center;
	justify-content: flex-start;
}


/* .Banner_Sec::before{
	position: absolute;
	content: '';
	background-image: url(../images/border.png);
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 315px;
}  */


.sprinkle_img {
    position: absolute;
	left: -5px;
	width: 260px;
	top: -77px;
    animation: floatBear 4s ease-in-out infinite;
}


.LeftContent_Banner {
	padding: 125px 45px 0px 10px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.LeftContent_Banner h1 {
	font-size: 42px;
	font-weight: 400;
	color:var(--white-color);
	letter-spacing: 0.5px;
	text-shadow: 1px 4px 8px #141414;
    font-family: "Paytone One", sans-serif;
	padding-bottom: 8px;
}


.LeftContent_Banner h2 {
	color: #E2D3FF;
	font-size: 19px;
	text-shadow: 1px 4px 3px #141414;
	text-align: left;
	font-weight: 600;
	width: 100%;
	line-height: normal;
}


.LeftContent_Banner h3 {
	font-size: 35px;
	text-shadow: var(--text-shadow);
	font-weight: 700;
}

.Form_Sec {
	padding:40px 34px 30px;
	position: relative;
	background: url('../images/img1.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 100%;
	margin-top: 3rem;
}

.Form_Sec h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
	line-height: 30px;
	padding: 0;
}

.Form_Sec .form-control {
	font-size: 12px;
    height: 46px;
    color: #ffffff;
    background-color: #00000036;
    font-weight: 300;
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
	font-family: var(--secondary-fonts);
}

textarea.form-control::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.label {
	margin-bottom: 10px;
	color: var(--white-color);
	font-size: 12px;	
	text-align: center;
	font-weight: 300;
	font-family: var(--secondary-fonts);
}

.Form_Sec textarea {
	min-height: 100px;
	padding-top: 11px;
}

.form-select {
	font-size: 12px;
	height: 45px;
	background-color: #00000036;
	border-radius: 5px;
	font-family: var(--secondary-fonts);
	font-weight: 500;
	color: #FFF;
	border:none;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form-select {
    color: #ffffff; /* text color */
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
}


option {
    background: #af84ff;
}

.submit_btn {
    background: #AF84FF;
	color:#FFFFFF;
    width: 100%;
    height: 57px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    display: block;
    padding: 12px 27px;
    margin: 5px auto 5px auto;
	box-shadow: 0px 4px 3px #00000047;
    border: 3px solid #AF84FF;
	text-shadow: 1px 2px 4px #00000054;
}

.submit_btn:hover {
	background-color:  #7e52d1;
	color:#FFF
}




.OrderList {
    padding: 10px;
    float: left;
    width: 100%;
}

.OrderList li {
    font-size: 15px;
    font-weight: 400;
    color: var(--white-color);
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding: 3px 0px 3px 24px;
}


.OrderList li:before {
    position: absolute;
    content: "";
    background-image: url(../images/tick-icon.png);
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    left: 0;
    top: 8px;
}

/* About Sec Css  */

.AboutSec{
	position: relative;
	background-image: url('../images/cloud.png');
	background-repeat: no-repeat;
	top:0;
	left:0;
	margin-top: -200px;
	z-index: 9;
}

.AboutSec:before{
    position: absolute;
    content: '';
    background-image: url(../images/after-cloud.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 159px;
    top: 43px;
    z-index: -9;
}



.AboutSec h3{
	font-size: 44px;
    text-shadow: var(--text-shadow);
    line-height: 51px;
	color:var(--black-color);
	font-family: "Paytone One", sans-serif;
}

.color_text{
	color:#7443C3;
}

.AboutContent {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10rem;
}

.AboutContent p{
	color: #656565;
	font-size: 16px;
	font-family: var(--secondary-fonts);
	line-height: 28px;
	font-weight: 400;
	padding: 17px 0;
}

.BearKidOne{
	position: absolute;
    top: 149px;
    right: 184px;
	animation: floatBear 4s ease-in-out infinite;
}

.BearKidTwo{
	position: absolute;
    bottom: 109px;
    right: 84px;
	animation: floatBear 4s ease-in-out infinite;
}

.BearKidOne img, .BearKidTwo img{
	width: 150px;
}


.section{
	padding: 55px 0;
}

.pulse{
	animation: pulse 2s infinite ease-in-out;
}

/* Portfolio_Sec Css St */
.Portfolio_Sec{
	padding: 45px;
	background-image: url('../images/portfolio-bg.png');
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: relative;
	overflow: hidden;
}

.Portfolio_Content{
	padding: 1rem 0 0;
}

.Portfolio_Sec h3{
	font-size: 54px;
	color : #7443C3;
	line-height: 51px;
	text-align: center;
	font-family: "Paytone One", sans-serif;
	position: relative;
}

.Portfolio_Sec h3:before{
	position: absolute;
	content: "";
	width: 30%;
	margin: 0 auto;
	float: none;
	display: table;
	border-bottom: 1px solid #cccccc8f;
	bottom: -15px;
	left: 0;
	right: 0;
}

.Portfolio_Content .small_para{
	width: 49%;
}

.small_para {
    color: #656565;
    text-align: center;
    font-weight: 300;
    margin: 1.8rem 0 3rem;
    line-height: 26px;
    font-size: 15px;
    max-width: 57%;
}

.port_img{
	margin: 25px 0;
	overflow: hidden; /* Hides overflow when image scales */
    position: relative;
	padding: 0 15px;
}

.port_img img{
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
}

.port_img:hover img {
    filter: grayscale(100%);
}

.port_img:hover img {
    box-shadow: 0 0 20px #4d2d7e;
}

.port_img:hover img {
    transform: scale(1.05) rotate(2deg);
}


.color-black{
	color:var(--black-color)
}

/* Portfolio Css End  */

/* Book Publish Css Start */

.Book_Publish_Sec {
    background: url(../images/bg2.png);
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
	padding-bottom: 22px;
    display: inline-block;
    width: 100%;
}

.MainContent{
    padding: 45px 0;
    background-image: url(../images/bg02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    width: 100%;
	}


.MainContent .title {
    font-size: 27px;
	color:#FFFFFF;
	font-weight: 400;
	font-family: "Paytone One", sans-serif;
}

.MainContent .small_para {
	color: #FFF !important;
	text-align: center;
	font-weight: 300;
	margin: 1rem 0 1rem;
	line-height: normal;
	font-size: 11px;
	max-width: 100%;
	line-height: 20px;
}


.MainContent .flex_btn{
	justify-content: center;
}

.cent_btn{
	margin:0 auto;
	float: none;
	display: table;
}




/* Testimonial_Sec Css ST */

.Testimonial_Sec{
	background:#AF84FF;
	padding: 5rem 0;
	position: relative;
	min-height: 740px;
}

.Testimonial_Sec:before{
	position: absolute;
	content:'';
	background-image: url('../images/bg3.png');
	background-size: 100% auto;
	padding: 2rem 0;
	height: 100%;
	top:0;
	left: 0;
	right: 0;

}

.Testimonial_Sec .slick-dots li button:before{
	color: var(--secondary-color) !important;
	opacity: 9;
	font-size: 14px;
}

.Testimonial_Sec li.slick-active{
	width: 30px;
	height: 10px;
	border-radius: 5px;
	background: var(--secondary-color) !important;
}

html .Testimonial_Sec .slick-dots .slick-active button:before{
	color: transparent !important
}


.Testimonial_Sec .slick-dots{
	display: flex;
	align-items: center;
	justify-content: center;
}

.Testimonial_Sec .slick-dots{
	bottom: -90px;
}

.Testimonial_Box {
	background:#FFFFFF;
	height: auto !important;
	padding: 2rem 1rem 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: relative;
}

.Testimonial_Box p{
	font-size: 10px;
	color: #919191;
	font-weight: 300;
	text-align: center;
	line-height: 17px;
	min-height: 120px;
}



.star-icon {
    padding: 0 0 0 10px;
}

.Testimonial_Box h6 {
    color: #919191;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    padding: 20px 0 3px;
	position: relative;
}

.Testimonial_Box h6:before{
	position: absolute;
	content: "";
	width: 100%;
	margin: 0 auto;
	float: none;
	display: table;
	border-bottom: 1px solid #cccccc47;
	top: 7px;
	left: 0;
	right: 0;
}

.Testimonial_Sec .slick-slide {
    min-height: 360px;
    margin: 0 15px;
    border-radius: 42px;
    max-height: 360px;
    box-shadow: 1px 4px 12px 1px #413b3b6e;
}

.Testimonial_Sec h3{
	font-size: 44px;
	color:#FFFFFF;
	text-shadow: 1px 2px 4px #00000054;
	font-weight: 400;
	font-family: "Paytone One", sans-serif;
	position: relative;
	letter-spacing: 1px;
}

.Testimonial_Sec h3:before{
	position: absolute;
    content: "";
    width: 30%;
    margin: 0 auto;
    float: none;
    display: table;
    border-bottom: 1px solid #cccccc8f;
    bottom: -15px;
    left: 0;
    right: 0;
}

.Testimonial_Sec h4{
	font-size: 35px;
	font-weight: 500;
}


.Testimonial_Sec .small_title{
	font-weight: 700;
	color:var(--black-color)
}	

.small_paragraph{
	font-size: 13px;
	color:var(--white-color);
    text-align: center;
}

.bio_data {
   display: block;
   text-align: center;
}


.bio_data h5{
	font-weight: 700;
	margin: 0;
	font-size: 20px;
	color: #000;
	padding-top: 15px;
	border-top: 1px solid #cccccc91;
}

.autor_text{
	font-size: 13px;
	color:#919191;
}

.User{
	width: 30px;

}

/* ContactSec Css St */
.Contact_Sec{
	background: url('../images/contact-bg.png');
	background-size: cover;
	padding: 2rem 0;
	position: relative;
}

.Contact_Sec:before{
	position: absolute;
	content:'';
	background-image: url('../images/Left-kids.png');
	background-repeat: no-repeat;
	bottom: 0;
    left: 0;
    background-size: 70%;
    width: 718px;
    height: 527px;
}

/* .Contact_Sec:after{
	position: absolute;
	content:'';
	background-image: url('../images/Right-kids.png');
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
	background-size: 100%;
	width: 472px;
	height: 536px;
} */


.Contact_Sec h2{
	font-size: 42px;
	font-weight: 400;
	color: var(--white-color);
	letter-spacing: 0.5px;
	text-shadow: 1px 4px 8px #141414cf;
	font-family: "Paytone One", sans-serif;
	padding-bottom: 8px;
	text-align: center;
}


.light_color_text {
    color: #AF84FF;
}

.Content_Sec{
	background-image: url('../images/contact-bg02.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 3rem;
}

.Content_Sec .title{
	color:var(--white-color);
	text-align: center;
	font-size: 29px;
	text-shadow: 11px 2px 4px #00000000;
}
.Content_Sec p {
    text-align: center;
    color: var(--white-color);
    font-size: 14px;
    padding: 20px 49px;
    font-weight: 300;
}

.Contact_Sec .form-control{
	font-size: 12px;
	height: 50px;
	color: #ffffff;
	background-color: #00000036;
	font-weight: 300;
	border-radius: 5px;
	border: none;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
	font-family: var(--secondary-fonts);
}

.Contact_Sec textarea{
	min-height: 150px;
}

.Contact_Sec .form-select{
	font-size: 12px;
	height: 45px;
	background-color: #00000036;
	border-radius: 5px;
	font-family: var(--secondary-fonts);
	font-weight: 300;
	color: #FFF;
	border: none;
}

.Contact_Details {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 20px 0 20px;
}

.Contact_Details span{
	text-align: center;
	color:#FFFFFF;
	font-size: 14px;
	display: block;	
}

.Contact_Details a{
	text-align: center;
	color:var(--white-color);
	font-weight: 600;
	font-size: 30px;
	text-decoration: none;
}


.Contact_Details a:hover{
	color:var(--yellow-color)
}

.bottom_text{
	text-align: center;
    color: var(--white-color);
    padding: 0;
    font-weight: 300;
    margin: 0;
	padding: 0;
    font-size: 12px !important;
}

/* Copy Right */

.CopyRight{
	background-color: var(--black-color);
	padding: 20px 10px;
}

.CopyRight p{
	color:var(--white-color);
	margin:0;
	font-size: 14px;
}


ul.List {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	margin:0;
	padding:0;
}

.List li{
	list-style: none;
}

.List li a{
	color:var(--white-color);
	text-decoration: none;
		font-size: 14px;
}

.List li a:hover{
	color:var(--yellow-color)
}

/* Bubbles Animation Css St */


    .droplet {
      width: 50px;
      height: 50px;
      background: url('../images/Icons/droplet-01.png') no-repeat center/contain;
      animation: fall 4s infinite ease-in;
      position: absolute;
      top: 0px;
	  left: 5%;
    }

	 .droplet_two {
      width: 40px;
      height: 40px;
      background: url('../images/Icons/droplet-02.png') no-repeat center/contain;
      animation: fall 4s infinite ease-in;
      position: absolute;
      top: 0;
	  left: 30%;
    }

	 .droplet_three {
      width: 30px;
      height: 30px;
      background: url('../images/Icons/droplet-03.png') no-repeat center/contain;
      animation: fall 8s infinite ease-in;
      position: absolute;
      top: 0;
	  right:30%;
    }

	 .droplet_four {
      width: 50px;
      height: 40px;
      background: url('../images/Icons/droplet-01.png') no-repeat center/contain;
      animation: fall 9s infinite ease-in;
      position: absolute;
      top: 0px;
	  right: 5%;
    }

	/* Testimonial_Sec Css end  */



    @keyframes fall {
      0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
      }
      70% {
        transform: translateY(80vh) scaleY(1.2);
        opacity: 1;
      }
     
      100% {
        transform: translateY(100vh) scaleY(0.8);
        opacity: 0;
      }
    }
/* Bubbles aNIMATION */

/* Animation */
@keyframes floatBear {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Phone icon animation css start */
@keyframes slow-ring {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(15deg);
	}

	50% {
		transform: rotate(-15deg);
	}

	75% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.phone-ring {
	display: inline-block;
	animation: slow-ring 2s ease-in-out infinite;
	transform-origin: center;
}

/* Phone icon animation css end */
/* Footer Css St */

.footer-section {
    padding: 2rem 0;
}

.f-menus h3 {
    padding-bottom: 15px;
}

.footer-section a, .footer-section p {
    color: #7b7b7b;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
}

.f-menus a {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
	text-decoration: none;
}

.address-email-phone a{
	text-decoration: none;
}

.imgspace-text img {
    margin-right: 10px;
    filter: brightness(0);
}

.bottom-line {
    background-color: #27295c;
    padding: 10px 0;
}

.copy_right_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom-line p {
    color: #FFFFFF;
    text-align: center;
    font-size: 13px;
    margin: 0;
    padding: 0;
}
.bottom_menu {
    display: flex;
    margin: 0;
    gap: 20px;
    padding-right: 70px;
}
.bottom_menu li {
    list-style: none;
}
.bottom_menu li a {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
}

.posiion_relative{
	position: relative;
	z-index: 99;
}

/* Footer Css End */
/* === Media Query === */

@media only screen and (max-width: 1366px) {
	.title, .Testimonial_Sec h3, .LeftContent_Banner h1{font-size: 40px;}
	.AboutSec h3, .Form_Sec h3{  font-size: 20px; line-height: 27px; padding-top: 20px;}
	.small_para, p {font-size: 15px;}
	.Form_Sec p, .label{font-size: 14px;}
	.Form_Sec{margin:0}
	.LeftContent_Banner{padding-top: 120px;}
    .BearKidOne img, .BearKidTwo img { width: 120px;}
	.BearKidTwo{bottom:0}
	.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd; min-height: auto;}
	.Testimonial_Box{padding: 3rem 2rem 0; min-height: 420px;}
	.bio_data{gap: 10px; bottom: 65px;}
	.bio_data h5{font-size: 14px;}
	.User { width: 30px;}
	.Banner_Sec { padding: 9rem 0 47px 0;}
	.Contact_Sec:before{width: 300px; height: 300px; background-size: 100%;}
	.Contact_Sec:after{width: 300px; height: 300px; background-size: 100%;}

	
}

@media only screen and (max-width: 1024px) {
	.title, .Testimonial_Sec h3{font-size: 40px;}
	.small_para, p {font-size: 17px;}
	.Form_Sec{margin:0}
	.LeftContent_Banner{padding-top: 120px; padding-right: 0;}
	.BearKidTwo{bottom:0}
	.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd; min-height: auto;}
	.Testimonial_Box{padding: 3rem 2rem 0; min-height: 420px;}
	.LeftContent_Banner {  padding-top: 20px; }
	.sprinkle_img {position: relative; right:0; top:0;}
	.Content_Sec{padding: 1rem;}
	.Contact_Details a{font-size: 15px;}
	.live_text {max-width: 100%;  padding-left: 0;}
	.Banner_Sec .Form_Sec{padding: 20px;}
	}


@media only screen and (max-width: 767px) {

.title{font-size: 30px;}
.Testimonial_Sec h3{font-size: 16px;}
.Testimonial_Sec h4, .Portfolio_Sec h3{font-size: 20px; line-height: normal;}
.Banner_Sec { padding: 0 0 47px 0; }
.OrderList { padding: 10px 0;}
.AboutSec{margin-top: 0;}
.Form_Sec{background-size: cover;}

.AboutContent p, p, .small_para{font-size: 12px;}
.live_text{font-size: 9px !important;}
.Portfolio_Content .small_para {
    width: 100%;
}

.Get_Quote {
    padding: 11px 14px;
    font-size: 12px;
}

header { position: relative;  padding: 20px 0 1px 0; background-color: #0f0a0c;}
.logo {  width: 150px; margin: 8px auto; float: none; display: table;}
.Landing_Top_Area .col.d-grid.justify-content-end {  justify-content: center !important;}
.LeftContent_Banner h1 {font-size: 19px;margin-top: 0px;line-height: 29px;}
.LeftContent_Banner h2{font-size: 12px;line-height: 22px;}
.OrderList li{font-size: 12px;}
.Form_Sec{margin-top: 0;}
.BearKidOne img, .BearKidTwo img { width: 88px;}
.BearKidOne{right: 35px; z-index: 99; top:80px}
.BearKidTwo{display: none;}
.AboutSec h3{font-size: 21px; line-height: 31px;}
.small_para{max-width: 100%;}	
.Testimonial_Sec .slick-slide{height: auto;}


.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd;}
.section{padding: 20px 10px;}
.Testimonial_Box { padding: 3rem 2rem 0;}
.Portfolio_Content{padding: 2rem 0}
.MainContent{background-size: cover; padding: 2rem 1rem;}
.MainContent .title{font-size: 14px; line-height: 24px;}
.Testimonial_Sec:before{display: none;}
.Contact_Sec h2{font-size: 22px;}
.flex_btn{display: block;}

    .title, .Testimonial_Sec h3 {
        font-size: 18px;
    }
	.slick-prev {
    left: 0 !important;
}

.slick-next{
	right: 0 !important;
}

.sprinkle_img{position: relative; top: -94px; left: 0;}
.Content_Sec{background-size: cover;}
.Content_Sec p{padding: 10px 0;}
.Content_Sec p{font-size: 12px;}
.Content_Sec{padding: 49px 16px}
.Content_Sec .title{font-size: 20px;}
.Book_Form{width: 100%;}
.Contact_Details a{font-size: 16px;}
.CopyRight p{text-align: center; font-size: 14px;}
ul.List{ justify-content: center ; font-size: 14px; margin: 20px 0}
.Testimonial_Box{background-size: cover;}
.Testimonial_Sec .slick-dots { bottom: -61px;}
.Form_Sec p{width: 100%; font-size: 12px; max-width: 100%;}
.AboutContent{padding-top: 0;}
.Banner_Sec .Form_Sec { padding: 13px; margin-top: 30px;}
.Contact_Sec:before, .Contact_Sec:after{display: none;}
.submit_btn{font-size: 11px; letter-spacing: 0;}
.bottom_menu, .copy_right_bottom{display: block;}
.bottom_menu{padding:0}
.bottom_menu li a{font-size: 14px;}
.submit_btn{height: 44px;}
.Form_Sec p{width: 100%;}
.bottom-line p {
    padding-right: 81px;
    padding-bottom: 20px;
    padding-top: 20px;
	text-align: left;
}
.Get_Touch{width: 100%;}
.flex_btn p.live_text {
    padding-bottom: 12px;
    margin-bottom: 0;
}

.Book_Publish_Sec .flex_btn .Get_Touch{margin-bottom: 20px;}
}