/* CSS file for styling the landing page */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;700;800&display=swap');
html {
	scroll-behavior: smooth;
  }
/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}
div#loom-companion-mv3 {
    display: none;
}
.slider-item img {
    width: 100%;
}

.logo img{
    max-width:120px!important;
}

/* Add your custom styles below */
body {
    font-family: 'Nunito';
    background-color: #fff; /* Set your preferred background color */
    box-sizing: border-box;
}

.container{
	width: 1360px;
	margin:0 auto;
	padding: 0 15px;
}

.row{
	display: flex;
	flex-wrap: wrap;
	margin:0 -15px;
	align-items: center;
	justify-content: space-between;
}
section#about_sec {
    margin-top: 50px;
}
.col-12 {
  width: 100%;
  padding: 0 15px; 
  box-sizing: border-box;
}

.col-11 {
  width: 91.6667%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-10 {
  width: 83.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-9 {
  width: 75%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-8 {
  width: 66.6667%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-7 {
  width: 58.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-6 {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-5 {
  width: 41.6667%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-4 {
  width: 33.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}


.col-3 {
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-2 {
  width: 16.6667%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-1 {
  width: 8.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}



/* Header styles */
header {
    color: #000; /* Set header text color */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-to-top-btn {
	width: 50px;
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50; /* Green color */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    padding: 10px 15px;
    cursor: pointer;
}

.scroll-to-top-btn:hover {
    background-color: #45a049; /* Darker green color on hover */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
     padding: 10px 20px;
}

nav ul li:first-child{
	padding-left: 0;
}

nav ul li:last-child{
	padding-right: 0;
}


nav ul li a {
    text-decoration: none;

}

nav ul li a svg{
	vertical-align: middle;
    margin-left: 5px;
}


nav a {
  text-decoration: none;
  padding: 0px;
  margin: 0 0px;
  border-radius: 0px;
  transition: background-color 0.3s ease;
	font-family: Nunito;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0em;
	color: #838383;
	transition: all 0.3s;
}

nav ul li a.active, nav ul li a:hover{
	color: #29166F;
	border-bottom: 2px solid #00923F;
	font-weight: 500;
}

#pp_filter_cord ul li.simple_dot {
    margin-left: 20px;
}

nav ul li a:hover svg path{
	stroke:#29166F;
}





.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}


.dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      z-index: 1;
      /*width: 91px;*/
	height: 60px;
	border-radius: 5px;
	padding:12px 24px 12px 16px;
	background-color: #fff;
	box-shadow: 0px 10px 50px 0px #00000033;
	top: 43px;
    }

    .dropdown-content a{
    	font-size: 14px;
    	padding-bottom: 12px;
    	padding-top: 12px;
    	border-bottom: 1px solid #00000033;
    	line-height: 19.1px;
    	white-space: nowrap;
    }

    .dropdown-content a:last-child{
    	border-bottom: 0;
    	padding-bottom: 0;
    }
    .dropdown-content a:first-child{
    	padding-top: 0;
    }

    /*.dropdown:hover .dropdown-content {*/
    /*  display: block;*/
    /*}*/

    .dropdown-content a {
      display: block;
      text-align: left;
      text-decoration: none;
    }

/* Hero Slider styles */
  #hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
}


.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFFFFF1A;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

section{
	padding: 50px 15px;
}

h2{
	font-family: Nunito;
font-size: 36px;
font-weight: 600;
line-height: 49px;
letter-spacing: 0em;
text-align: left;
color: #29166F;
margin-bottom: 30px;
}

section ul{
	list-style: none;
}

section ul li{
font-family: Nunito;
font-size: 16px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0em;
text-align: left;
color: #535353;
margin:20px 0;
padding-left: 17px;
position: relative;
}

section ul li:first-child{
	margin-top: 0;
}

section ul li:last-child{
	margin-bottom: 0;
}


section ul li:before{
	content: '';
	width: 12px;
height: 12px;
background: #00923F;
display: inline-block;
border-radius: 50%;
position: absolute;
top: 4px;
left:0;
}

li.simple_dot:before{
	width: 8px;
	height: 8px;
	background: #000;
}

.about_right_content{
	padding-left: 100px;
	padding-right: 100px;
}

.pp_left_content {
    padding-left: 64px;
}

#pp_filter_cord .row{
	align-items: flex-start;
}

#hero-slider{
	padding-top: 0;
	padding: 0;
}

.bottom_img{
	margin-top: 9px;
	margin-left: -12px;
}
.top_img{
	margin-bottom: 9px;
	margin-left: -12px;
}

hr{
	margin:20px 0;
	background-color: #00000080;
}

#pp_filter_cord ul li{
	margin: 16px 0;
}

#pp_filter_cord ul li:first-child{
	margin-top: 0;
}

#pp_filter_cord ul li:last-child{
	margin-bottom: 0;
}

.brand_inner {
    text-align: center;
    background-color: #fff;
    padding: 50px 52px 40px;
    border-radius: 10px;
    max-width: 487px;
    margin: 0 auto;
    box-shadow: 0px 0px 5.5px 0px rgb(0 0 0 / 7%);
}

.brand_inner > img{
	margin-bottom: 63px;
}

.brand_inner .mail, .brand_inner .location a{
	
	display: flex;
    align-items: center;
    justify-content: center;
}

.brand_inner .location{
	margin-top: 26px;
}


.brand_inner .mail a, .brand_inner .location a, .brand_inner .mail p, .brand_inner .location p{
	font-family: Nunito;
font-size: 20px;
font-weight: 400;
line-height: 27px;
letter-spacing: 0em;
text-align: left;
color: #000;
	margin-left: 8px;
	text-decoration: none;
}
#brands_partner h2{
	text-align: center;
	margin-bottom: 50px;

}

#contact_form{
	background-image: url(images/bg-logo.png);
    background-repeat: no-repeat;
    background-position: center;
        margin-bottom: 50px;
    background-size: contain;
}

#contact_form h2{
	text-align: center;
}


#contact_form label{
	font-family: Nunito;
font-size: 16px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0em;
text-align: left;
display: block;
margin-bottom: 25px;
}


#contact_form input::placeholder, #contact_form textarea::placeholder{
font-family: Nunito;
font-size: 14px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0em;
text-align: left;
color: #00000080;
}

#contact_form input, #contact_form textarea{
	border: 0;
border-bottom: 1px solid #00000080;
padding-bottom: 10px;
width: 100%;
margin-bottom: 20px;
background-color: transparent;
}

#contact_form input:focus-visible, #contact_form textarea:focus-visible{
	outline: none;
	box-shadow: none;
}


button{
	width: 150px;
    height: 50px;
    border-radius: 50px;
    font-family: Nunito;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    color: #fff;
    background: #00923F;
    border: 0;
    margin:0 auto;
    display: inherit;
    pointer-events:none;
}


#pp_cream_yarn{
	background: #29166F0D;padding: 80px 15px;margin:50px 0px;
}

#brands_partner{
	background: #29166F0D;padding: 100px 15px;margin:50px 0px;
}


/* Footer styles */
footer {
    background-color: #000; 
    color: #fff;
    
    
}

.footer_top{
	padding: 100px 0px;
}

.footer_top .row{
	align-items: flex-start;
}

.footer-bottom .copyright{
padding: 20px;
text-align: center;
border-top: 1px solid #FFFFFF33;
}

.footer-logo{
	margin-bottom: 25px;
}

footer p.about_desc{
	margin-bottom: 25px;
	font-family: Nunito;
font-size: 16px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0em;
text-align: left;
color: #FFFFFFBF;
max-width: 43%;


}

.social-icons {
	display: flex;
    align-items: center;
}

.social-icons a{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #00923F;
	display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover{
	background-color: #fff;
}


.social-icons a:hover svg path{
	stroke: #00923F;
}

footer h3{
	font-family: Nunito;
font-size: 18px;
font-weight: 500;
line-height: 25px;
letter-spacing: 0em;
text-align: left;
color: #fff;
margin-bottom: 30px;
}

footer ul {
	list-style: none;
}

footer ul li a, footer a, footer .contact-info span{
	font-family: Nunito;
font-size: 16px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0em;
text-align: left;
color: #FFFFFFBF;
text-decoration: none;
margin-bottom: 16px;
display: block;
}

footer .contact-info span{
	display: inline;
}

.f_phone{
	margin-top: 16px;
}

footer ul li:last-child a{
	margin-bottom: 0;
}

footer .contact-info p img{
	margin-right: 12px;
	vertical-align: middle;
}



footer .footer-inner {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    /* Add styles for footer columns */
    width: 30%;
}

.footer-col h3 {
    /* Add styles for heading in footer columns */
    margin-bottom: 10px;
}

.footer-col ul {
    /* Add styles for unordered list in footer columns */
    list-style: none;
}

.footer-col ul li {
    /* Add styles for list items in footer columns */
    margin-bottom: 5px;
}

/* Add styles for images and other elements as needed */
img {
    max-width: 100%;
    height: auto;
}
.container.dis-none2 {
    display: none;
}

@media(max-width: 1440px) {
	#pp_cream_yarn {
		padding: 0 15px;
	}
	#brands_partner {
		padding: 40px 15px;
	}
}

@media screen and (max-width: 1366px) {
	.top_img {
		height: auto;
		margin-bottom: 9px;
		margin-left: -12px;
	}
  .container {
    width: 1170px;
    padding: 0;
  }

  .row{
  	margin:0;
  }

  .about_right_content {
	    padding-left: 30px;
	    padding-right: 30px;
	}

	.pp_left_content{
		padding-left: 30px;
	}

	h2{
		font-size: 26px;
		margin-bottom: 20px;
	}

	#pp_cream_yarn {
	    padding: 60px 15px;
	    margin: 30px 0px;
	}

	section {
	    padding: 30px 15px;
	}

	#brands_partner {
	    padding: 60px 15px;
	    margin: 30px 0px;
	}

	#brands_partner h2 {
	    margin-bottom: 30px;
	}

	.brand_inner{
		margin:0 30px;
	}

	.brand_inner > img {
	    margin-bottom: 45px;
	}

	.footer_top {
	    padding: 60px 15px;
	}

	.bottom_img, .top_img{
		margin-left: 0;
	}
	/*img.right_images {*/
	/*	height: 664px;*/
	/*}*/

	.brand_inner .location {
	    margin-top: 15px;
	}

	footer p.about_desc{
		max-width: 80%;
	}
}

@media screen and (max-width: 1199px) {
  .container {
    width: 100%;
  }
/*  img.right_images {*/
/*    height: 650px;*/
/*}*/

  footer ul li a, footer a, footer .contact-info span{
		font-size: 14px;
		margin-bottom: 10px;
	}

}
@media(max-width: 1024px) {
	.about_right_content {
		padding-left: 0;
		padding-right: 0;
	}.pp_left_content {
		padding-left: 0;
	}
	.pp_left_content li {
		font-size: 14px;
		margin: 10px 0 !important;
	}
	hr {
		margin: 8px 0;
	}
	h2 {
		line-height: 30px;
	}
	/*.top_img {*/
	/*	height: 246px;*/
	/*}*/
}

@media screen and (max-width: 992px) {
	.container {
		width: 100%;
	}

	.dot {
		width: 10px;
		height: 10px;
		margin: 0 3px;
	}
}


@media screen and (max-width: 768px) {
    section ul li:before{
        top:6px;
    }
	.dis-none2 {
		display: block !important;
	}
	.dis-none2 .row {
		flex-flow: column-reverse;
	}
	.dis-none{
		display: none;
	}
	section#about_sec {
		margin-top: 25px;
	}
	#about_sec .row {
		flex-flow: column-reverse;
	}
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
       top:92px;
    left: 0px;
    background-color: #FFF;
    width: 100%;
    Z-INDEX: 999;
    }

     .about_right_content {
	    padding-left: 0px;
	    padding-right: 0px;
		margin-bottom: 25px;
	}
	img {
		width: 100%;
	}
	.pp_left_content{
		padding-left: 0px;
		margin-bottom: 25px;
	}

    .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
	  width: 100%;
	  padding: 0 15px;
	  
	}

	footer p.about_desc{
		max-width: 100%;
	}
	.brand_inner {
		margin: 0 30px;
		max-width: 100%;
	}
	#brands_partner img, .logo img, img.footer-logo, .contact-info img {
		width: auto;
	}
	footer h3 {
		margin-bottom: 15px;
	}
	.margin-768 {
		margin-bottom: 20px;
	}

			header .col-4{
		width: 58.3333%;
		padding: 0;
			}

			header .col-8{
		width: 41.6667%;
		padding: 0;
			}

			section {
			padding: 15px 0;
		}

		#brands_partner, #pp_cream_yarn{
				padding: 30px 0;
			margin: 0px 0;
		}

		#brands_partner h2 {
			margin-bottom: 15px;
		}

		h2{
			font-size: 26px;
			margin-bottom: 15px;
			line-height: 36px;
		}

		.top_img{
			margin-top: 15px;
		}


		.top_img, .bottom_img{
			margin-left: 0;
		}
	 .col-6{
		text-align: center;
	}

	.left-content{
		padding-left: 0px;
		margin-bottom: 30px;
	}
    .menu li {
        margin: 0;
        text-align: left;
    }

    nav ul li:first-child {
	    padding-left: 20px;
	}

	.dropdown-content {
	    position: relative;
	    background-color: #fff;
	    box-shadow: none;
	    top: 10px;
	}

    .menu-toggle {
        display: block;
        font-size: 26px;
    }


    #pp_filter_cord .col-3{
    	width: 50%;
    	padding: 0;
    	text-align: center;
    }

    section ul li{
    	font-size: 14px;
    	margin:10px 0;
    }

    section ul li:before {
	    content: '';
	    width: 8px;
	    height: 8px;
	}

	#brands_partner .col-6{
		padding: 15px 15px;
	}

	.brand_inner > img {
	    margin-bottom: 35px;
	}

	.brand_inner .mail a, .brand_inner .location a, .brand_inner .mail p, .brand_inner .location p{
		font-size: 18px;
	}

	.brand_inner .location {
	    margin-top: 15px;
	}


	#brands_partner .col-6:first-child{
		padding-top: 0;
	}

	#brands_partner .col-6:last-child{
		padding-bottom: 0;
	}

	.footer_top {
	    padding: 50px 0px;
	}


	#contact_form .col-6, #contact_form .col-12{
		padding: 0px;
	}

	.contact-form{
		padding: 0 15px;
	}

	#contact_form{
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 600px){
	#pp_filter_cord .col-3 {
	    width: 100%;
	    padding: 0 15px;
	}
	.margin-768 {
		margin-bottom: 20px;
	}
	.brand_inner {
		margin: 0 0px;
		padding: 20px;
	}
	.brand_inner > img {
		margin-bottom: 10px;
	}
	.dots-container {
		bottom: 10%;
	}
}
