@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
	--menu: 10rem;
    --slide: 40rem;
    --bread: 5rem;
    --background: #EEF5F5;
    --clr1: #12a19a;
    --clr1Hover: #236E6A;
}
@media (min-width: 576px){
    :root{
        --slide: 50rem;
    }
}
@media (min-width: 768px){
    :root{
        --slide: 60rem;
    }
}
@media (min-width: 1200px){
    :root{
        --menu: 10rem;
        --slide: 55rem;
    }
}
html {
	box-sizing: border-box;
	font-size: 62.5%;
	font-size-adjust: 100%;
	margin-right: 0 !important;
	-ms-overflow-style: scrollbar;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
html,
body {
	height: 100%;
}
body {
	color: #333;
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	line-height: 1.5;
}
::-moz-selection {
	background-color: var(--clr1);
	color: #fff;
}
::selection {
	background-color: var(--clr1);
	color: #fff;
}
a{
    transition: all .3s;
    z-index: 0;
}
a,
a:hover,
a:focus{
	text-decoration: none;
}
.transition{
	transition: all .3s ease;
}
ul{
	margin: 0;
	list-style-type: none;
	padding: 0;
}
figure,
address{
	margin: 0;
}
.equal [class^="col"] {
    display: flex;
}
#header{
    position: relative;
    z-index: 300;
}
.heads{
    margin-bottom: 3rem;
    text-align: center;
}
.heads h2{
    font-weight: 700;
    font-size: clamp(3rem, 2.5556rem + 2.2222vw, 4.5rem);
    margin-bottom: 1rem;
}
.heads p{
    margin: 0;
    font-size: 1.6rem;
    font-style: italic;
    color: #818181;
}
@media (min-width: 992px){
    .heads p{
        font-size: 1.8rem;
    }
}

/* MENU */
.menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--menu);
}
.logo{
	height: 15rem;
    max-width: 15rem;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    background-color: #FFF;
    margin-top: 5rem;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
}
@media (min-width: 576px){
    .logo{
        height: 18rem;
        max-width: 18rem;
        margin-top: calc(18rem - var(--menu));
    }
}
@media (min-width: 768px){
    .logo{
        height: 20rem;
        max-width: 20rem;
        margin-top: calc(20rem - var(--menu));
        padding: 2rem;
    }
}
@media (min-width: 992px){
    .logo{
        height: 22rem;
        max-width: 22rem;
        margin-top: calc(22rem - var(--menu));
    }
}
@media (min-width: 1200px){
    .logo{
        height: 20rem;
        max-width: 20rem;
        margin-top: calc(20rem - var(--menu));
    }
}
.logo a{
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
.logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mobileIcon{
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	row-gap: .3rem;
    z-index: 200;
}
.mobileIcon span{
	width: 1.62rem;
	height: .2rem;
	background-color: #333;
}
.pn span:first-child {
    transform: rotate(45deg) translateY(-0.1rem);
    transform-origin: 0;
}
.pn span:nth-child(2){
	transform: translateX(-1rem);
	opacity: 0;
}
.pn span:last-child {
    transform: rotate(-45deg) translateY(0.1rem);
    transform-origin: 0;
}
.slideSide{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 5rem 0;
}
@media (min-width: 576px){
    .slideSide{
        padding: 12rem 0 5rem 0;
    }
}
@media (min-width: 768px){
    .slideSide{
        padding: 15rem 0 8rem 0;
    }
}
@media (min-width: 1200px){
    .slideSide{
        padding: 15rem 0 10rem 0;
    }
}
.slideSide:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
    width: 100%;
    height: 100%;
}
.slideText{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    position: relative;
}
@media (min-width: 768px){
    .slideText{
        max-width: 80%;
    }
}
@media (min-width: 992px){
    .slideText{
        max-width: 70%;
    }
}
@media (min-width: 1200px){
    .slideText{
        max-width: 80%;
    }
}
.slideText h1{
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 1.8394rem + 3.3028vw, 7rem);
    font-weight: 800;
    color: #FFF;
}
.slideText p{
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 1.5119rem + 0.4404vw, 2.2rem);
}
.slideLink{
    background-color: var(--clr1);
    border-radius: 0.5rem;
    padding: 1.2rem 2rem;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px){
    .slideLink{
        padding: 1.5rem 3rem;
    }
}
@media (min-width: 992px){
    .slideLink{
        font-size: 1.8rem;
        font-weight: 600;
        padding: 1.5rem 3.5rem;
    }
}
.slideLink:before{
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--clr1Hover);
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    clip-path: polygon(0 0, 100% 0%, 29% 100%, 0% 100%);
    transition: all .3s linear;
}
.slideLink:hover:before,
.slideLink:focus:before{
    width: 10rem;
}
.menuBarRight{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.menuBarRight .social{
    margin-left: 2rem;
    padding-left: 2rem;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2rem;
    height: 100%;
    position: relative;
}
.menuBarRight .social:before{
    content: "";
    position: absolute;
    left: 0;
    top: 3rem;
    bottom: 3rem;
    width: .1rem;
    background-color: #EAEAEA;
}
.menuBarRight .social a{
    font-size: 1.7rem;
    color: #333;
}
.menuBarRight .social a:hover,
.menuBarRight .social a:focus{
    color: var(--clr1);
}
.menuList{
    column-gap: 3rem;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.menuList a{
    color: #333;
    font-size: 1.7rem;
    font-weight: 500;
}
.menuList li{
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 1.7rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all .3s;
}
.menuList li:hover a,
.menuList a:hover,
.menuList li:hover{
    color: var(--clr1);
}
.menuList li:hover .dropLinks{
    top: 100%;
    opacity: 1;
    pointer-events: all;
}
.dropLinks{
    position: absolute;
    top: 110%;
    left: -8rem;
    right: -8rem;
    background-color: #FFF;
    z-index: 10;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}
.dropLinks a{
    padding: 1rem;
    font-size: 1.4rem;
    width: 100%;
    display: block;
}
.boxShadow{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.padding{
    padding: 5rem 0;
}
.padding2{
    padding: 8rem 0;
}
@media (min-width: 1200px){
    .padding{
        padding: 8rem 0;
    }
    .padding2{
        padding: 8rem 0;
    }
}
.iconsGridSide{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
}
@media (min-width: 768px){
    .iconsGridSide{
        grid-template-columns: repeat(6, 1fr);
    }
}
.iconsGrid{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 12rem;
    border-radius: 1rem;
}
.iconsGrid span{
    display: block;
    font-weight: 500;
    color: #333;
    font-size: 1.4rem;
}
.iconsGridItem{
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
@media (min-width: 768px){
    .iconsGridItem{
        width: 4.5rem;
        height: 4.5rem;
    }
    .iconsGrid span{
        font-size: 1.6rem;
    }
}
@media (min-width: 1200px){
    .iconsGridItem{
        width: 6rem;
        height: 6rem;
    }
    .iconsGrid span{
        font-weight: 600;
    }
}
.iconsGridItem img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.homeAbout{
    background-color: var(--background);
    margin-top: 8rem;
    padding-bottom: 5rem;
}
@media (min-width: 1200px){
    .homeAbout{
        margin-top: 12rem;
    }
}
.aboutLogos{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 992px){
    .aboutLogos{
        max-width: 70%;
    }
}
@media (min-width: 1200px){
    .aboutLogos{
        max-width: 60%;
    }
}
.aboutLogosItem{
    max-width: 15rem;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.aboutLogosItem img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.homeAbout .content{
    padding: 2rem 0 0 0;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 992px){
    .homeAbout .content{
        max-width: 70%;
    }
}
@media (min-width: 1200px){
    .homeAbout .content{
        max-width: 60%;
    }
}
.homeAbout .content h2{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
@media (min-width: 992px){
    .homeAbout .content h2{
        font-size: 3rem;
    }
}
.homeAbout .content .subText{
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}
.homeAbout .content p{
    font-size: 1.6rem;
    line-height: 3rem;
    color: #333;
}
.aboutLink{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--clr1);
    display: inline-block;
    margin-top: 1rem;
}
.aboutLink:hover,
.aboutLink:focus{
    color: var(--clr1Hover);
}
.blogBox{
    max-width: 80%;
    width: 100%;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px){
    .blogBox{
        max-width: 100%;
    }
}
.blogImage{
    width: 100%;
    height: 15rem;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 375px){
    .blogImage{
        height: 18rem;
    }
}
@media (min-width: 425px){
    .blogImage{
        height: 20rem;
    }
}
@media (min-width: 1200px){
    .blogImage{
        height: 25rem;
    }
}
.blogImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.blogBox:hover .blogImage img{
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
}
.blogBox .content{
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.blogBox .content h3{
    font-size: clamp(1.6rem, 1.4815rem + 0.5926vw, 2rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}
.blogBox .content h3 a{
    color: initial;
}
.blogBox:hover .content h3 a{
    color: var(--clr1Hover);
}
.blogBox .content p{
    font-size: clamp(1.4rem, 1.3407rem + 0.2963vw, 1.6rem);
    color: #333;
    flex: 1;
}
.blogLink{
    font-size: clamp(1.4rem, 1.3407rem + 0.2963vw, 1.6rem);
    font-weight: 500;
    color: var(--clr1);
}
.blogLink:hover{
    color: var(--clr1Hover);
}
.blogBox:hover  .blogLink{
    color: var(--clr1Hover);
}
#footer{
    padding: 2rem 0 5rem 0;
    background-color: var(--background);
}
@media (min-width: 1200px){
    #footer{
        padding: 5rem 0;
    }
}
.footerLogo{
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media (min-width: 768px){
    .footerLogo{
        margin: 0;
        max-width: 25%;
    }
}
@media (min-width: 992px){
    .footerLogo{
        margin: 0;
        max-width: 18%;
    }
}
@media (min-width: 1200px){
    .footerLogo{
        max-width: 60%;
        margin: 0;
    }
}
.footerLogo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fBox{
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
}
@media (min-width: 768px){
    .fBox{
        padding: 0;
        text-align: left;
    }
}
.fBox h4{
    font-size: clamp(1.5rem, 1.4111rem + 0.4444vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
}
.fBox ul li a{
    font-size: clamp(1.5rem, 1.4704rem + 0.1481vw, 1.6rem);
    color: #333;
}
.fBox ul li{
    padding: .3rem 0;
}
.fBox ul li:hover a{
    color: var(--clr1Hover);
}
.fBox ul li a:hover{
    color: var(--clr1Hover);
}
.pageWrapper{
    background-color: #FBFBFB;
}
.pageWrapperHead{
    margin-bottom: 2rem;
}
.pageWrapperHead h2{
    font-size: clamp(2.5rem, 2.0556rem + 2.2222vw, 4rem);
    font-weight: 800;
    margin: 0;
}
.pageWrapperText p{
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 2.5rem;
}
.pageWrapperText table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 2rem;
}
.pageWrapperText table td,
.pageWrapperText table th{
    font-size: 1.4rem;
    color: #333;
    border: 1px solid #EAEAEA;
    padding: 1rem;
}
.pageWrapperText span{
    font-weight: 600;
}
.pageWrapperText ul{
    padding-left: 2rem;
    list-style-type: circle;
}
.breadCrumb{
    background-color: var(--background);
    height: var(--bread);
}
.breadCrumb ul{
    height: var(--bread);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2rem;
}
.breadCrumb a,
.breadCrumb li{
    font-size: 1.6rem;
    color: #333;
}
.breadCrumb li{
    font-weight: 600;
    color: var(--clr1);
    position: relative;
}
.breadCrumb li:not(:last-child):before{
    content: "\EA6E";
    font-family: "remixicon";
    position: absolute;
    top: 0.2rem;
    right: -1.6rem;
    font-size: 1.4rem;
    font-weight: 300;
    color: #333;
}
@media (min-width: 768px){
    .breadCrumb li:last-child{
        white-space: nowrap; 
        max-width: 25rem; 
        overflow: hidden;
        text-overflow: ellipsis; 
    }
}
@media (min-width: 992px){
    .breadCrumb li:last-child{
        white-space: nowrap; 
        max-width: 100%; 
        overflow: hidden;
        text-overflow: ellipsis; 
    }
}
.breadCrumb a{
    font-weight: 400;
}
.pageWrapperImage{
    max-width: 100%;
    width: 100%;
    border-radius: 1rem;
    height: 20rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
@media (min-width: 576px){
    .pageWrapperImage{
        height: 25rem;
    }
}
@media (min-width: 768px){
    .pageWrapperImage{
        height: 30rem;
    }
}
@media (min-width: 992px){
    .pageWrapperImage{
        height: 35rem;
    }
}
@media (min-width: 1024px){
    .pageWrapperImage{
        height: 40rem;
    }
}
.pageWrapperImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ovrX{
    overflow-x: auto;
}
@media (min-width: 768px){
    .ovrX{
        overflow-x: hidden;
    }
}
.exPho{
    padding: 3rem 0;
}
.exImage{
    max-width: 100%;
    width: 100%;
    height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background-color: #FFF;
    overflow: hidden;
    margin-bottom: 2rem;
}
@media (min-width: 992px){
    .exImage{
        height: 25rem;
    }
}
@media (min-width: 1200px){
    .exImage{
        height: 35rem;
    }
}
.exImage img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.flexSub{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}
@media (min-width: 768px){
    .flexSub{
        flex-direction: initial;
        align-items: center;
        justify-content: flex-start;
    }
}
.flexSubImage{
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
@media (min-width: 768px){
    .flexSubImage{
        max-width: 40%;
        margin-bottom: 0;
    }
}
.flexSubImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flexSub .content{
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2rem;
    width: 100%;
    font-size: 1.6rem;
    color: #333;
}
@media (min-width: 768px){
    .flexSub .content{
        width: calc(100% - 40%);
    }
}
.o-none{
    height: 100%!important;
    overflow-y: hidden!important;
}
.mobileMenu{
    position: fixed;
    top: var(--menu);
    left: -100%;
    right: 0;
    padding: var(--menu) 2rem 0 2rem;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 100;
    transition: all .3s linear;
}
.l0{
    left: 0!important;
}
.mobileMenuList{
    height: 100%;
    overflow-y: auto;
}
.mobileMenuList li,
.mobileMenuList a{
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #333;
}
.mobileMenuList li{
    padding: 1rem 0;
}
.mobileMenu li:not(:last-child){
    border-bottom: 1px solid #EAEAEA;
}
.mobileDrop{
    background-color: #EAEAEA;
    padding: 1rem;
    display: none;
}
.mobileDrop a{
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: .2rem;
}
.contactForm{
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 1rem;
    padding: 1.5rem;
}
@media (min-width: 768px){
    .contactForm{
        max-width: 60%;
        padding: 3rem;
    }
}
@media (min-width: 1200px){
    .contactForm{
        max-width: 50%;
    }
}
@media (min-width: 1400px){
    .contactForm{
        max-width: 45%;
    }
}
.contactForm .form-group{
    margin-bottom: 1rem;
}
.contactForm label{
    font-size: 1.6rem;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem;
}
.contactForm .form-control{
    padding: 1rem;
    border: 1px solid #EAEAEA;
    font-size: 1.6rem;
    outline: none;
    box-shadow: none;
    transition: all .3s;
}
.contactForm .form-control:hover,
.contactForm .form-control:focus{
    border: 1px solid #ddd;
}
.contactFormItem h3{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 992px){
    .contactFormItem h3{
        font-size: 3.5rem;
    }
}
.contactForm button{
    border-radius: .5rem;
    background-color: var(--clr1);
    transition: all .3s;
    padding: 1rem 3rem;
    border: none;
    outline: none;
    font-size: 1.6rem;
    color: #FFF;
    font-weight: 500;
}
.contactForm button:hover{
    background-color: var(--clr1Hover);
    color: #FFF;
}
.formItem2{
    border-radius: 1rem;
    background-color: var(--clr1);
    padding: 1rem;
    margin-top: 0;
    margin-bottom: 3rem;
}
@media (min-width: 1200px){
    .formItem2{
        margin-top: -8rem;
    }
}
.formItem2 li{
    padding: .5rem 0;
}
.formItem2 li a{
    font-size: 1.6rem;
    color: #FFF;
}
.productCategory{
    margin-bottom: 1rem;
    border: 1px solid #EAEAEA;
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.productCategoryHead{
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.productCategoryHead h3{
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}
.productCategory .content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contentLinks{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #EAEAEA;
}
.contentLinksIcon{
    max-width: 3rem;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}
.contentLinksIcon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.proName{
    color: #333;
    font-size: 1.6rem;
    font-weight: 500;
}
.proName:hover{
    color: var(--clr1Hover);
}
@font-face{
    font-family: pill;
    src: url(../font/magnolia_sky.ttf);
}
.pill{
    font-family: pill;
    font-size: 2rem;
    color: #333;
    transition: color 400ms ease;
}
.pill:hover{
    color: var(--clr1);
}
.footerEnd{
    margin-top: 2rem;
    text-align: center;
}