/* GOOGLE FONTS - ROBOTO */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* GOOGLE FONTS - ABEEZEE */
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');

:root{
    --font1: "Roboto", sans-serif;
    --font2: "ABeeZee", sans-serif;
    --color1: #FF0000;
    --color2: #FFFF00;
    --color3: #00B0F0;
    --color4: #003041;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

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

img{
    width: 100%;
}

.blueBG{
	background-color: #2f4052;
}

body{
    font-family: var(--font1);
    font-size: 15px;
    color: #000;
}



/* NAVIGATION BAR */
nav.navbar{
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: auto;
    padding: 10px 40px;
    padding-bottom: 15px;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, .1) 0px 1px 1px 0px, rgba(60, 64, 67, 0.1) 0px 1px 1px 1px;
    transition: 0.3s;
}

nav.navbar .inside{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

nav.navbar .left{
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
}

nav.navbar .left .top{
    width: 100%;
    padding: 0;
    padding-bottom: 3px;
    border-radius: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

nav.navbar .left .top .cname{
    padding-left: 10px;
    font-size: 1em;
    font-weight: 500;
    color: #000;
}

nav.navbar .left .top .caption{
    font-size: .8em;
    color: var(--color1);
}

nav.navbar .right{
    position: relative;
    z-index: 99;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

nav.navbar a.logo{
    display: inline-flex;
    width: 70px;
    min-width: 70px;
}

nav.navbar .dropdown{
    position: relative;
    width: max-content;
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: .8em;
    background-color: #fff;
    cursor: pointer;
}

nav.navbar .dropdown .dropped{
    position: absolute;
    z-index: 2;
    top: 99%;
    left: -1px;
    right: -1px;
    max-height: 0;
    overflow: hidden;
    padding: 0px;
    border-radius: 0 0 5px 5px;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom: none;
    background-color: #fff;
    transition: max-height 0.3s ease;
}

nav.navbar .dropdown .dropped .lang{
    padding: 5px 10px;
    cursor: pointer;
}

nav.navbar .dropdown .dropped .lang:hover{
    background-color: #ddd;
}

nav.navbar .dropdown:hover{
    border-radius: 5px 5px  0 0;
}

nav.navbar .dropdown:hover .dropped{
    max-height: 100px;
    border-bottom: 1px solid #eee;
}

nav.navbar .baserow{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    font-weight: 500;
}

nav.navbar .baserow a.link:hover{
    text-decoration: underline;
}

nav.navbar .baserow a.link.active{
    color: var(--color1);
    text-decoration: none;
}

nav.navbar .baserow .nav-cta{
    position: relative;
    display: inline-block;
    width: fit-content;
    overflow: hidden;
    padding: 5px 15px;
    border: 2px solid var(--color1);
    border-radius: 5px;
    color: var(--color1);
}

nav.navbar .baserow  .nav-cta .icon{
    margin-right: 5px;
}

nav.navbar .baserow .nav-cta::before{
    z-index: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0%;
    content: "";
    background-color: var(--color1);
    transition: .3s ease;
}

nav.navbar .baserow .nav-cta .inner{
    position: relative;
    z-index: 1;
}

nav.navbar .baserow .nav-cta:hover{
    color: #fff;
}

nav.navbar .baserow .nav-cta:hover::before{
    height: 100%;
}

nav.navbar .baserow .nav-cta.active{
    background-color: rgba(255, 0, 0, .85);
    color: #fff;
}

nav.navbar .menuBtn{
    width: 20px;
    margin-left: 20px;
    font-size: 1.5em;
    display: none;
}

nav.navbar .end .menubtn #open{
    display: block;
}

nav.navbar .end .menubtn #close{
    display: none;
}

nav.navbar .menu{
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding: 0px 30px;
    background-color: #fff;
    transition: all .5s;
}

nav.navbar .menu .navlinks{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

nav.navbar .menu .navlinks a.link{
    display: inline-block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #bbb;
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.slider {
    width: 100%;
    height: 100%;
}

.slider .slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: 0% center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider .slide::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(45deg, rgba(0, 0, 0, .95) 1%, rgba(0, 0, 0, 0) 50%);
}

.slider .slide.one {
    background-image: url(assets/img/slide1.jpg);
}

.slider .slide.two {
    background-image: url(assets/img/global.png);
}

.slider .slide.three {
    background-image: url(assets/img/slide3.jpg);
}

.slider .slide.four {
    background-image: url(assets/img/slide4.jpg);
}

.slider .slide .content {
    z-index: 1;
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 30%;
}

.slider .slide .content .caption{
    position: relative;
    width: fit-content;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color2);
}

.slider .slide .content .caption .count{
    position: absolute;
    bottom: 30%;
    left: -40px;
    font-size: 2em;
    font-weight: 200;
    color: #fff;
    opacity: .35;
}

.slider .slide .content .header {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 120%;
    text-shadow: 0px 0px 10px #000;
    color: #fff;
}

.slider .slide .content .emphasis {
    width: 100%;
    margin-top: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0px 0px 2px #000;
}

.slider .slide.fadeOut {
    animation: fadeOut 0.6s forwards;
}

.slider .slide.fadeInUp {
    animation: fadeInUp 1s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-nav {
    z-index: 2;
    position: absolute;
    bottom: 40px;
    left: 50px;
}

.custom-nav button {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 2px solid var(--color2);
    border-radius: 5px;
    background-color: transparent;
    color: var(--color2);
    transition: background-color 0.3s ease-in-out;
}

.custom-nav button:hover {
    cursor: pointer;
    border-color: #fff;
    background-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.custom-dots {
    z-index: 2;
    position: absolute;
    bottom: 20px;
    left: 75px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.custom-dots button {
    width: 20px;
    height: 5px;
    border-radius: 2px;
    background-color: #bbb;
    border: none;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.custom-dots button.active {
    background-color: #333;
}



/* INTRO */
section{
    width: 100%;
    height: auto;
    padding: 60px 40px;
}

section.padx{
    padding: 0;
}

section.pady{
    padding-top: 30px;
}

.intro{
    padding: 30px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.intro .main-intro{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.intro .sub-heading{
    font-size: 1.1em;
    font-weight: 600;
}

.intro .main-intro .heading{
    font-size: 2.3em;
    font-weight: 300;
}

.intro .button-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.intro .button-group a.link-btn{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 30px;
    overflow: hidden;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.intro .button-group a.link-btn span, .intro .button-group a.link-btn .icon{
    position: relative;
    z-index: 1;
}

.intro .button-group a.link-btn .icon{
    margin-left: 5px;
    font-size: 1.2em;
}

.intro .button-group a.link-btn::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: rgba(00, 00, 00, .15);
    transition: .3s;
}

.intro .button-group a.link-btn:hover::before{
    width: 100%;
}

.bg1{
    background-color: var(--color1);
    color: #fff;
}

.bg2{
    background-color: var(--color3);
    color: #fff;
}

.bg3{
    background-color: var(--color2);
    color: #000;
}



/* CERTIFICATIONS */
section.cert{
    width: 100%;
    padding: 0px 20px;
    padding-left: 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    background-color: #f0f0f0;
}

section.cert .start{
    width: 20%;
    padding: 20px 0;
    border-right: 1px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

section.cert .start .heading{
    font-size: 1.75em;
    font-weight: 600;
}

section.cert .list{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

section.cert .list .cert{
    width: 25%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.cert .list .cert img{
    width: 85%;
}



/* FOOTER */
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #3e4753;
}

footer .start{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

footer .start .left{
    width: 35%;
    padding-top: 15px;
    border-right: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .start .left .top{
    width: 100%;
    padding: 20px 40px;
    padding-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

footer .start .left .top .logo{
    width: 150px;
    min-width: 150px;
}

footer .start .left .top .comp-desc{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

footer .start .left .top .comp-desc .aoc{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    font-size: 1.25em;
    font-weight: 600;
    color: #fff;
}

footer .start .left .top .comp-desc .serve-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 1em;
    color: #ddd;
}

footer .start .right{
    width: 65%;
    padding: 10px 20px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

footer .start .right .contact{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
}

footer .start .right .contact .cont-line{
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

footer .start .right .contact .cont-line .const{
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--color2);
    font-size: 1.2em;
    font-weight: 400;
    color: #fff;
}

footer .start .right .contact .cont-line .var{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 500;
    color: #ddd;
}

footer .start .right .contact .cont-line .var a:hover{
    color: var(--color2);
}

footer .end{
    width: 100%;
    padding: 10px 40px;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #ddd;
}

footer .end .copyright{
    font-size: .8em;
    font-weight: 600;
}

footer .end .essentials{
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: .8em;
    text-decoration: underline;
}

footer .end .socials{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

footer .end .socials a{
    font-size: 1.5em;
}

footer .end .socials a:hover{
    color: var(--color2);
}



/* ABOUT PAGE */

/* PAGETOP */
.pagetop{
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 50px;
    padding-top: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-image: url(assets/img/pattern.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
}

.pagetop::before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: rgba(255, 255, 255, .35);
}

.pagetop .left{
    z-index: 1;
    position: relative;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.pagetop .sub-heading{
    width: fit-content;
    padding: 5px 15px;
    border: 2px solid var(--color3);
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    background-color: rgba(0, 176, 240, .15);
}

.pagetop .preface{
    width: 100%;
    font-size: 2em;
}

.pagetop .preface.spec{
    font-size: 1.8em;
}

.pagetop .preface .text-red{
    font-weight: 600;
    color: var(--color1);
}

.pagetop .right{
    z-index: 1;
    position: relative;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.pagetop .button-group{
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 500;
}

.pagetop .button-group .button{
    width: fit-content;
    padding: 10px 20px;
    border-radius: 5px;
}

.pagetop .button-group .icon{
    margin-right: 5px;
}

.pagetop .button-group .type1{
    background-color: #e0e0e0;
}

.pagetop .button-group .type2{
    background-color: #003041;
    color: #fff;
}

.pagetop .button-group .type1:hover{
    background-color: #f0f0f0;
}

.pagetop .button-group .type2:hover{
    background-color: #01445c;
}



/* ABOUT */
.about{
    width: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.story{
    width: 55%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    font-size: 1.35em;
    background-color: #fafafa;
    color: #222;
}

.blocks{
    width: 45%;
    height: auto;
    padding: 10px 0;
    padding-left: 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
}

.blocks .block{
    position: relative;
    width: 46%;
    height: auto;
    padding: 20px 20px;
    padding-bottom: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.blocks .block.three{
    width: 100%;
}

.blocks .block .iconic{
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
}

.blocks .block .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.blocks .block .text .head{
    font-size: 1.15em;
    font-weight: 600;
}

.blocks .block .text p{
    font-size: 1.1em;
}

.blocks .block .text p.diff{
    font-size: .95em;
}

.blocks .block.one{
    background-color: rgba(255, 0, 0, .2);
}

.blocks .block.two{
    background-color: rgba(0, 176, 240, .2);
}

.blocks .block.three{
    background-color: rgba(255, 255, 0, .2);
}

.linker{
    width: fit-content;
    font-size: 1em;
}

.linker:hover{
    text-decoration: underline;
    font-weight: 500;
}

.blocks .block .linker{
    width: fit-content;
    font-size: .8em;
}



/* CORE */
.core{
    padding: 20px 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fafafa;
}

.core .right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.core .right .heading{
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
}

.gridlist{
    width: 100%;
    border-collapse: collapse;
}

.grid{
    width: 33.33%;
    padding: 10px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gridlist tr:first-child td {
  border-top: none;
}

.gridlist tr:last-child td {
  border-bottom: none;
}

.gridlist td:first-child {
  border-left: none;
}

.gridlist td:last-child {
  border-right: none;
}

.grid .image{
    width: 100%;
}

.grid .image img{
    width: 50px;
    height: 50px;
}

.grid .text{
    font-size: .9em;
    font-weight: 500;
    text-transform: capitalize;
    color: #222;
}



/* PICTEXT */
.picText{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.picText.alt{
    flex-direction: row-reverse;
}

.picText .image{
    width: 49%;
    height: 100%;
}

.picText .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picText .writeup{
    width: 50%;
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}

.picText .writeup .top{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.picText .writeup .top .sub-heading{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1.1em;
}

.picText .writeup .top .line{
    width: 50px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--color1);
}

.picText .writeup .top .heading{
    font-size: 1.5em;
    font-weight: 500;
}

.picText .writeup p{
    font-size: 1.25em;
}

.marb{
    margin-bottom: 50px;
}



/* SERVICE */

/* PAGETOP */
.pagetop .main{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.pagetop .main .text{
    font-size: 1.4em;
    font-weight: 500;
    color: var(--color1);
}

.pagetop .main .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}



/* TABS */
.tabs{
    width: 100%;
    padding: 50px 50px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.tabs .tab{
    width: 47%;
    height: auto;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;*/
}

.tabs .tab .heading{
    font-size: 1.25em;
    font-weight: 600;
  	color: #cceffc;
}

.tabs .tab .list{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  	color: #fff;
}



/* OEM */
.oem{
    width: 100%;
    padding: 50px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
}

.oem .logo-group{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}

.oem .logo-group .image{
    width: 100%;
    height: auto;
    padding: 20px 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

.oem .writeup{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.oem .writeup .heading{
    font-size: 1.75em;
    font-weight: 500;
    color: #fff;
}

.oem .writeup p{
    font-size: 1.1em;
    color: #ddd;
}

.oem .writeup p .spec{
    font-weight: bold;
    color: #cceffc;
}

.oem .writeup .link-btn{
    padding: 10px 30px;
    overflow: hidden;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    background-color: #fff;
    transition: .3s;
    display: none;
}

.oem .writeup .link-btn:hover{
    background-color: #ddd;
}



/* PARTS */
.parts{
    width: 100%;
    padding: 80px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 70px;
}

.parts .part{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.parts .part .image{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parts .part .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.parts .part .image img.spec{
    height: auto;
    width: 100%;
    object-fit: cover;
}

.parts .part .writeup{
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.parts .part .writeup .head{
    font-size: 1.2em;
    font-weight: bold;
}

.parts .part .writeup p{
    color: #222;
}

.parts .part .button{
    width: fit-content;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
}

.parts .part .button.type1{
    background-color: #ccc;
}

.parts .part .button:hover{
    background-color: #aaa;
}



/* PARTNERS */
.partners{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}

.partners .heading{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color1);
    font-size: 1.5em;
    font-weight: 500;
}

.partners .list{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

.partners .list .tech{
    width: max-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners .list .tech .image{
    width: auto;
    height: 100px;
    padding: 20px;
}

.partners .list .tech .image img{
    width: auto;
    height: 100%;
}

.partners .list .tech .writeup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.partners .list .tech .writeup .head{
    font-weight: bold;
    text-transform: uppercase;
}

.partners .list .tech .writeup p{
    font-weight: 500;
    text-decoration: underline;
    color: #444;
}



/* PORTFOLIO PAGE */

/* CLIENTS */
.clients{
    width: 100%;
    padding: 30px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.clients .writeup{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.clients .writeup .heading{
    font-size: 1.75em;
    font-weight: 500;
    color: var(--color1);
}

.clients .writeup p{
    font-size: 1.2em;
}

.clients .clientele{
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 1%;
}

.clients .clientele .tab{
    width: 28%;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    filter: grayscale();
}

.clients .clientele .tab:hover{
    filter: none;
}

.clients .clientele .tab .image{
    width: 100px;
    height: 70px;
    overflow: hidden;
}

.clients .clientele .tab .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clients .clientele .tab .head{
    font-size: .9em;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}



/* PORTFOLIO */
.portfolio{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.portfolio .top{
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid var(--color1);
}

.portfolio .top .heading{
    font-size: 1.5em;
    /* font-weight: 500; */
    color: var(--color1);
}

.portfolio .listing{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.portfolio .listing .port{
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.portfolio .listing .port .start{
    width: 200px;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.portfolio .listing .port .image{
    width: 100px;
    height: 100%;
}

.portfolio .listing .port .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio .listing .port .start .head{
    width: 100%;
    font-size: .8em;
    font-weight: 500;
    text-transform: uppercase;
}

.portfolio .listing .port .items{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.portfolio .listing .port .items .item{
    width: 100%;
    padding-top: 20px;
    border-top: 2px dotted #ccc;
    font-size: 1.15em;
    font-weight: 400;
}

.portfolio .listing .port .items .item:first-child{
    padding-top: 0;
    border: none;
}

.portfolio .listing .port .items .item .spec{
    font-weight: bold;
    color: #008000;
}

.portfolio .listing .port .items .item .spec2{
    font-weight: bold;
    color: #ffa31a;
}



/* CONTACT */

.pagetop.alt .left{
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}

.contacting{
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    background-color: #F0F5F8;
}

.contacting .left{
    width: 45%;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    background-color: var(--color4);
    color: #fff;
}

.contacting .left .top{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contacting .left .top .heading{
    font-size: 1.3em;
    font-weight: bold;
    color: var(--color2);
}

.contacting .left .top .sub-heading{
    font-weight: 500;
}

.contacting .left .lines{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
}

.contacting .left .lines .line{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.contacting .left .lines .line .icon{
    font-size: 1.25em;
    color: var(--color2);
}

.contacting .left .lines .line .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    font-weight: 500;
}

.contacting .left .lines .line .text a:hover{
    text-decoration: underline;
}

.contacting .left .socials{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.contacting .left .socials a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.75em;
    background-color: #fff;
    color: var(--color1);
    transition: .3s;
}

.contacting .left .socials a:hover{
    background-color: var(--color1);
    color: #fff;
}

.contacting .right{
    width: 55%;
    padding: 30px 50px;
}

.contacting .right form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.contacting .right form .header{
    font-size: 1.25em;
    font-weight: bold;
}

.contacting .right form .input-tab{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.contacting .right form .input-tab label{
    font-weight: 600;
}

.contacting .right form .input-tab input{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border: none;
    border-bottom: 2px solid #aaa;
    background-color: rgba(255, 255, 255, .5);
}

.contacting .right form .input-tab textarea{
    width: 100%;
    height: 150px;
    padding: 10px 20px;
    border: none;
    border-bottom: 2px solid #aaa;
    resize: none;
    background-color: rgba(255, 255, 255, .5);
}

.contacting .right form button{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: var(--color1);
    color: #fff;
}

.contacting .right form button .icon{
    margin-left: 5px;
}



/* SUSTAINABILITY */
.beginning{
    position: relative;
    width: 100%;
    height: 85vh;
    padding: 50px;
    padding-top: 150px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    background-image: url(assets/img/sustainable.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.beginning::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, .5);
}

.beginning .start{
    position: relative;
    margin-top: 0px;
}

.beginning .top{
    width: fit-content;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    margin-bottom: 100px;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: lowercase;
    font-variant: small-caps;
    color: #fff;
}

.beginning .main{
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    color: #fff;
}

.beginning .main .big{
    font-family: var(--font1);
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
}

.beginning .main .spec{
    font-size: 1.5em;
}

.tags{
    position: relative;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.tags .tag{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    /* background-color: #fff; */
}

.tags .tag .icon{
    width: 40px;
    height: 40px;
    padding: 5px;
    border: 1px solid #69a041;
    border-radius: 50%;
    background-color: #fff;
}

.tags .tag p{
    font-size: 1em;
    text-transform: lowercase;
    color: #fff;
}

.lead{
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    background-color: #F0F5F8;
}

.lead .inside{
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 200%;
    background-color: #F0F5F8;
}

.lead .section{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    line-height: 200%;
}

.lead .head{
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.lead p{
    font-size: 1.4em;
}

.lead ul{
    list-style-position: inside;
    list-style-type: square;
    font-size: 1.4em;
}

.readBtn{
    width: fit-content;
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: 500;
}

.readBtn:hover{
    text-decoration: underline;
}

/* MOBILE VIEW */
@media screen and (max-width: 1024px){
    /* NAVIGATION BAR */
    nav.navbar{
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: auto;
        padding: 10px 20px;
        background-color: #fff;
        box-shadow: rgba(60, 64, 67, .1) 0px 1px 1px 0px, rgba(60, 64, 67, 0.1) 0px 1px 1px 1px;
        transition: 0.3s;
    }

    nav.navbar .inside{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav.navbar .left{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar a.logo{
        display: inline-flex;
        width: 60px;
        min-width: 60px;
    }

    nav.navbar .left .top{
        width: 100%;
        padding: 0;
        padding-bottom: 3px;
        border-radius: 0 0 10px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    nav.navbar .left .top .cname{
        padding-left: 10px;
        font-size: 1em;
        font-weight: 500;
        color: #000;
    }

    nav.navbar .left .top .caption{
        font-size: .8em;
        color: var(--color1);
    }

    nav.navbar .right{
        position: relative;
        z-index: 99;
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
    }

    nav.navbar .baserow{
        width: max-content;
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        font-weight: 500;
    }

    nav.navbar .baserow a.link:hover{
        text-decoration: underline;
    }

    nav.navbar .baserow a.link.active{
        color: var(--color1);
        text-decoration: none;
    }

    nav.navbar .nav-cta{
        position: relative;
        display: inline-block;
        width: fit-content;
        overflow: hidden;
        padding: 5px 15px;
        margin-top: 10px;
        border: 2px solid var(--color1);
        border-radius: 5px;
        color: var(--color1);
    }

    nav.navbar .nav-cta .icon{
        margin-right: 5px;
    }

    nav.navbar .nav-cta::before{
        z-index: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 0%;
        content: "";
        background-color: var(--color1);
        transition: .3s ease;
    }

    nav.navbar .nav-cta .inner{
        position: relative;
        z-index: 1;
    }

    nav.navbar .nav-cta:hover{
        color: #fff;
    }

    nav.navbar .nav-cta:hover::before{
        height: 100%;
    }

    nav.navbar .nav-cta.active{
        background-color: rgba(255, 0, 0, .85);
        color: #fff;
    }

    nav.navbar .menuBtn{
        width: 20px;
        margin-left: 20px;
        font-size: 1.3em;
        display: block;
    }

    nav.navbar .menubtn #open{
        display: block;
    }

    nav.navbar .menubtn #close{
        display: none;
    }

    nav.navbar .menu{
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        height: 0px;
        overflow: hidden;
        padding: 0px 30px;
        background-color: #fff;
        transition: all .5s;
    }

    nav.navbar .menu .navlinks{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar .menu .navlinks a.link{
        display: inline-block;
        width: 100%;
        padding: 5px;
        padding-bottom: 10px;
        border-bottom: 1px solid #bbb;
    }

    nav.navbar .menu .navlinks a.link.active{
        color: var(--color1);
        border-color: var(--color1);
    }


    /* HERO SECTION */
    .hero{
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: #fff;
    }

    .slider{
        width: 100%;
        height: 100%;
    }

    .slider .slide{
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-position: 70% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .slider .slide::after{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(0deg, rgba(0, 0, 0, .95) 1%, rgba(0, 0, 0, 0) 60%);
    }

    .slider .slide.one{
        background-image: url(assets/img/slide1.jpg);
    }

    .slider .slide.two{
        background-image: url(assets/img/global.png);
    }

    .slider .slide.three {
        background-image: url(assets/img/slide3.jpg);
    }

    .slider .slide.four {
        background-image: url(assets/img/slide4.jpg);
    }

    .slider .slide .content{
        z-index: 1;
        position: absolute;
        bottom: 75px;
        left: 20px;
        right: 20px;
        width: 45%;
    }

    .slider .slide .content .header {
        font-size: 2em;
        font-weight: bold;
        line-height: 120%;
        text-shadow: 0px 0px 10px #000;
        color: #fff;
    }

    .slider .slide .content .emphasis {
        width: 100%;
        margin-top: 10px;
        font-size: 1.1em;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 2px #000;
    }

    .slider .slide.fadeOut {
        animation: fadeOut 0.6s forwards;
    }

    .slider .slide.fadeInUp {
        animation: fadeInUp 1s forwards;
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .custom-nav {
        z-index: 2;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }

    .custom-nav button {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border: 2px solid var(--color2);
        border-radius: 5px;
        background-color: transparent;
        color: var(--color2);
        transition: background-color 0.3s ease-in-out;
    }

    .custom-nav button:hover {
        cursor: pointer;
        border-color: #fff;
        background-color: rgba(255, 255, 255, .3);
        color: #fff;
    }

    .custom-dots {
        z-index: 2;
        position: absolute;
        bottom: 20px;
        left: 75px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .custom-dots button {
        width: 20px;
        height: 5px;
        border-radius: 2px;
        background-color: #bbb;
        border: none;
        margin: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

    .custom-dots button.active {
        background-color: #333;
    }



    /* INTRO */
    section{
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    section.padx{
        padding: 0;
    }

    section.pady{
        padding-top: 30px;
    }

    .intro{
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .intro .button-group{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .intro .button-group a.link-btn{
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 12px 30px;
        overflow: hidden;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
    }

    .intro .button-group a.link-btn span, .intro .button-group a.link-btn .icon{
        position: relative;
        z-index: 1;
    }

    .intro .button-group a.link-btn .icon{
        margin-left: 5px;
        font-size: 1.2em;
    }

    .intro .button-group a.link-btn::before{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 0%;
        height: 100%;
        content: "";
        background-color: rgba(00, 00, 00, .15);
        transition: .3s;
    }

    .intro .button-group a.link-btn:hover::before{
        width: 100%;
    }

    .bg1{
        background-color: var(--color1);
        color: #fff;
    }

    .bg2{
        background-color: var(--color3);
        color: #fff;
    }

    .bg3{
        background-color: var(--color2);
        color: #000;
    }



    /* CERTIFICATIONS */
    section.cert{
        width: 100%;
        padding: 0px 20px;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        background-color: #f0f0f0;
    }

    section.cert .start{
        width: 100%;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #aaa;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    section.cert .start .heading{
        font-size: 1.3em;
        font-weight: 600;
    }

    section.cert .list{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    section.cert .list .cert{
        width: 25%;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.cert .list .cert img{
        width: 85%;
    }



    /* FOOTER */
    footer{
        width: 100%;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #3e4753;
    }

    footer .start{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    footer .start .left{
        width: max-content;
        padding-top: 15px;
        border-right: 1px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    footer .start .left .top{
        width: 100%;
        padding: 20px;
        padding-right: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 30px;
    }

    footer .start .left .top .logo{
        width: 140px;
        min-width: 140px;
    }

    footer .start .left .top .comp-desc{
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .left .top .comp-desc .aoc{
        width: 100%;
        padding-bottom: 10px;
        padding-right: 20px;
        border-bottom: 1px solid #fff;
        font-size: 1.25em;
        font-weight: 600;
        color: #fff;
    }

    footer .start .left .top .comp-desc .serve-list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: 1em;
        color: #ddd;
    }

    footer .start .right{
        width: 100%;
        padding: 10px 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    footer .start .right .contact{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 25px;
    }

    footer .start .right .contact .cont-line{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .right .contact .cont-line .const{
        width: 100%;
        padding-bottom: 2px;
        border-bottom: 2px solid var(--color2);
        font-size: 1.2em;
        font-weight: 400;
        color: #fff;
    }

    footer .start .right .contact .cont-line .var{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 1em;
        font-weight: 500;
        color: #ddd;
    }

    footer .start .right .contact .cont-line .var a:hover{
        color: var(--color2);
    }

    footer .end{
        width: 100%;
        padding: 10px 20px;
        border-top: 1px solid #fff;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        color: #ddd;
    }
    
    footer .end .copyright{
        font-size: .8em;
        font-weight: 600;
    }
    
    footer .end .essentials{
        width: max-content;
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-size: .8em;
        text-decoration: underline;
    }
    
    footer .end .socials{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }
    
    footer .end .socials a{
        font-size: 1.5em;
    }
    
    footer .end .socials a:hover{
        color: var(--color2);
    }



    /* ABOUT PAGE */

    /* PAGETOP */
    .pagetop{
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        padding-top: 115px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        background-image: url(assets/img/pattern.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: contain;
    }

    .pagetop::before{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        background-color: rgba(255, 255, 255, .25);
    }

    .pagetop .left{
        position: relative;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .pagetop .sub-heading{
        width: fit-content;
        padding: 5px 15px;
        border: 2px solid var(--color3);
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        background-color: rgba(0, 176, 240, .15);
    }
    
    .pagetop .preface{
        width: 100%;
        font-size: 2em;
    }
    
    .pagetop .preface.spec{
        font-size: 1.8em;
    }
    
    .pagetop .preface .text-red{
        font-weight: 600;
        color: var(--color1);
    }

    .pagetop .right{
        position: relative;
        width: max-content;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .pagetop .button-group{
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
        font-weight: 500;
    }

    .pagetop .button-group .button{
        width: fit-content;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .pagetop .button-group .icon{
        margin-right: 5px;
    }

    .pagetop .button-group .type1{
        background-color: #e0e0e0;
    }

    .pagetop .button-group .type2{
        background-color: #003041;
        color: #fff;
    }

    .pagetop .button-group .type1:hover{
        background-color: #f0f0f0;
    }

    .pagetop .button-group .type2:hover{
        background-color: #01445c;
    }



    /* ABOUT */
    .about{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 50px;
    }

    .story{
        width: 100%;
        height: auto;
        padding: 0px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        font-size: 1.35em;
        background-color: #fafafa;
        color: #222;
    }

    .blocks{
        width: 100%;
        height: auto;
        padding: 0px 0;
        padding-left: 10px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px 10px;
    }

    .blocks .block{
        position: relative;
        width: 48%;
        height: auto;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blocks .block.three{
        width: 100%;
    }

    .blocks .block .iconic{
        position: absolute;
        top: -15px;
        left: -10px;
        width: 40px;
    }

    .blocks .block .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .blocks .block .text .head{
        font-size: 1.15em;
        font-weight: 600;
    }

    .blocks .block .text p{
        font-size: 1.1em;
    }

    .blocks .block .text p.diff{
        font-size: 1.1em;
    }

    .blocks .block.one{
        background-color: rgba(255, 0, 0, .2);
    }

    .blocks .block.two{
        background-color: rgba(0, 176, 240, .2);
    }

    .blocks .block.three{
        background-color: rgba(255, 255, 0, .2);
    }

    .linker{
        width: fit-content;
        font-size: 1em;
    }

    .linker:hover{
        text-decoration: underline;
        font-weight: 500;
    }

    .blocks .block .linker{
        width: fit-content;
        font-size: 1em;
    }



    /* CORE */
    .core{
        padding: 20px;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fafafa;
    }

    .core .right{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .core .right .heading{
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
    }

    .gridlist{
        width: 100%;
        border-collapse: collapse;
    }

    .grid{
        width: 33.33%;
        height: 120px;
        padding: 10px;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .gridlist tr:first-child td {
    border-top: none;
    }

    .gridlist tr:last-child td {
    border-bottom: none;
    }

    .gridlist td:first-child {
    border-left: none;
    }

    .gridlist td:last-child {
    border-right: none;
    }

    .grid .image{
        width: 100%;
    }

    .grid .image img{
        width: 50px;
        height: 50px;
    }

    .grid .text{
        font-size: .9em;
        font-weight: 500;
        text-transform: capitalize;
        color: #222;
    }



    /* SERVICE */

    /* PAGETOP */
    .pagetop .main{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .pagetop .main .text{
        font-size: 1.2em;
        font-weight: 500;
        color: var(--color1);
    }

    .pagetop .main .dot{
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
    }



    /* TABS */
    .tabs{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .tabs .tab{
        width: 47%;
        height: auto;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
  	}

    .tabs .tab .heading{
        font-size: 1.25em;
        font-weight: 600;
    }

    .tabs .tab .list{
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }



    /* OEM */
    .oem{
      width: 100%;
      padding: 50px 30px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 35px;
    }

    .oem .logo-group{
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        background-color: #fff;
    }

    .oem .logo-group .image{
        width: 100%;
        height: auto;
        padding: 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        overflow: hidden;
    }

    .oem .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .oem .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
        /* color: #fff; */
    }
    
    .oem .writeup p{
        font-size: 1.15em;
        /* color: #ddd; */
    }
    
    .oem .writeup p .spec{
        font-weight: bold;
    }



    /* PARTS */
    .parts{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 20px;
    }

    .parts .part{
        width: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .parts .part .image{
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .parts .part .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .parts .part .writeup{
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .parts .part .writeup .head{
        font-size: 1.2em;
        font-weight: bold;
    }

    .parts .part .writeup p{
        color: #222;
    }

    .parts .part .button{
        width: fit-content;
        padding: 5px 15px;
        border-radius: 5px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .parts .part .button.type1{
        background-color: #ccc;
    }

    .parts .part .button:hover{
        background-color: #aaa;
    }



    /* PARTNERS */
    .partners{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .partners .heading{
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color1);
        font-size: 1.35em;
        font-weight: 500;
    }

    .partners .list{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .partners .list .tech{
        width: 31%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .partners .list .tech .image{
        width: auto;
        max-width: 200px;
        height: 100px;
        padding: 10px;
    }

    .partners .list .tech .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .partners .list .tech .writeup{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .partners .list .tech .writeup .head{
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

    .partners .list .tech .writeup p{
        font-weight: 500;
        text-decoration: underline;
        color: #444;
    }



    /* PORTFOLIO PAGE */

    /* CLIENTS */
    .clients{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .clients .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .clients .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
        color: var(--color1);
    }

    .clients .writeup p{
        font-size: 1.1em;
    }

    .clients .clientele{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 1%;
    }

    .clients .clientele .tab{
        width: 32%;
        min-width: auto;
        height: auto;
        padding: 5px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        filter: grayscale();
    }

    .clients .clientele .tab:hover{
        filter: none;
    }

    .clients .clientele .tab .image{
        width: 100px;
        height: 80px;
        overflow: hidden;
    }

    .clients .clientele .tab .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .clients .clientele .tab .head{
        font-size: .8em;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
    }



    /* PORTFOLIO */
    .portfolio{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .portfolio .top{
        width: 100%;
        padding: 10px;
        border-bottom: 2px solid var(--color1);
    }

    .portfolio .top .heading{
        font-size: 1.35em;
        /* font-weight: 500; */
        color: var(--color1);
    }

    .portfolio .listing{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .portfolio .listing .port{
        width: 100%;
        padding: 15px 10px;
        border: 1px solid #ccc;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
    }

    .portfolio .listing .port .items{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .portfolio .listing .port .items .item{
        width: 100%;
        padding-top: 20px;
        border-top: 2px dotted #ccc;
        font-size: 1.2em;
        font-weight: 400;
    }

    .portfolio .listing .port .items .item:first-child{
        padding-top: 0;
        border: none;
    }

    .portfolio .listing .port .items .item .spec{
        font-weight: bold;
        color: #008000;
    }
  
  	.portfolio .listing .port .items .item .spec2{
      font-weight: bold;
      color: #ffa31a;
	}


    /* CONTACT */

    .pagetop.alt .left{
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting{
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #F0F5F8;
        gap: 40px;
    }

    .contacting .left{
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
        background-color: var(--color4);
        color: #fff;
    }

    .contacting .left .top{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contacting .left .top .heading{
        font-size: 1.5em;
        font-weight: bold;
        color: var(--color2);
    }

    .contacting .left .top .sub-heading{
        font-weight: 500;
    }

    .contacting .left .lines{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 25px;
    }

    .contacting .left .lines .line{
        width: 48%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .contacting .left .lines .line .icon{
        font-size: 1.25em;
        color: var(--color2);
    }

    .contacting .left .lines .line .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        font-weight: 500;
    }

    .contacting .left .lines .line .text a:hover{
        text-decoration: underline;
    }

    .contacting .left .socials{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .contacting .left .socials a{
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.35em;
        background-color: #fff;
        color: var(--color1);
        transition: .3s;
    }

    .contacting .left .socials a:hover{
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right{
        width: 100%;
        padding: 10px;
    }

    .contacting .right form{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 25px;
    }

    .contacting .right form .header{
        font-size: 1.25em;
        font-weight: bold;
    }

    .contacting .right form .input-tab{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting .right form .input-tab label{
        font-weight: 600;
    }

    .contacting .right form .input-tab input{
        width: 100%;
        height: auto;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form .input-tab textarea{
        width: 100%;
        height: 150px;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        resize: none;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form button{
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right form button .icon{
        margin-left: 5px;
    }
}

@media screen and (max-width: 768px){
    /* NAVIGATION BAR */
    nav.navbar{
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: auto;
        padding: 10px 20px;
        background-color: #fff;
        box-shadow: rgba(60, 64, 67, .1) 0px 1px 1px 0px, rgba(60, 64, 67, 0.1) 0px 1px 1px 1px;
        transition: 0.3s;
    }

    nav.navbar .inside{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav.navbar .left{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar a.logo{
        display: inline-flex;
        width: 60px;
        min-width: 60px;
    }

    nav.navbar .left .top{
        width: 100%;
        padding: 0;
        padding-bottom: 3px;
        border-radius: 0 0 10px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    nav.navbar .left .top .cname{
        padding-left: 10px;
        font-size: 1em;
        font-weight: 500;
        color: #000;
    }

    nav.navbar .left .top .caption{
        font-size: .8em;
        color: var(--color1);
    }

    nav.navbar .right{
        position: relative;
        z-index: 99;
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
    }

    nav.navbar .baserow{
        width: max-content;
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        font-weight: 500;
    }

    nav.navbar .baserow a.link:hover{
        text-decoration: underline;
    }

    nav.navbar .baserow a.link.active{
        color: var(--color1);
        text-decoration: none;
    }

    nav.navbar .nav-cta{
        position: relative;
        display: inline-block;
        width: fit-content;
        overflow: hidden;
        padding: 5px 15px;
        margin-top: 10px;
        border: 2px solid var(--color1);
        border-radius: 5px;
        color: var(--color1);
    }

    nav.navbar .nav-cta .icon{
        margin-right: 5px;
    }

    nav.navbar .nav-cta::before{
        z-index: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 0%;
        content: "";
        background-color: var(--color1);
        transition: .3s ease;
    }

    nav.navbar .nav-cta .inner{
        position: relative;
        z-index: 1;
    }

    nav.navbar .nav-cta:hover{
        color: #fff;
    }

    nav.navbar .nav-cta:hover::before{
        height: 100%;
    }

    nav.navbar .nav-cta.active{
        background-color: rgba(255, 0, 0, .85);
        color: #fff;
    }

    nav.navbar .menuBtn{
        width: 20px;
        margin-left: 20px;
        font-size: 1.3em;
        display: block;
    }

    nav.navbar .menubtn #open{
        display: block;
    }

    nav.navbar .menubtn #close{
        display: none;
    }

    nav.navbar .menu{
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        height: 0px;
        overflow: hidden;
        padding: 0px 30px;
        background-color: #fff;
        transition: all .5s;
    }

    nav.navbar .menu .navlinks{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar .menu .navlinks a.link{
        display: inline-block;
        width: 100%;
        padding: 5px;
        padding-bottom: 10px;
        border-bottom: 1px solid #bbb;
    }

    nav.navbar .menu .navlinks a.link.active{
        color: var(--color1);
        border-color: var(--color1);
    }


    /* HERO SECTION */
    .hero{
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: #fff;
    }

    .slider{
        width: 100%;
        height: 100%;
    }

    .slider .slide{
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-position: 70% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .slider .slide::after{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(0deg, rgba(0, 0, 0, .95) 1%, rgba(0, 0, 0, 0) 60%);
    }

    .slider .slide.one{
        background-image: url(assets/img/slide1.jpg);
    }

    .slider .slide.two{
        background-image: url(assets/img/global.png);
    }

    .slider .slide.three {
        background-image: url(assets/img/slide3.jpg);
    }

    .slider .slide.four {
        background-image: url(assets/img/slide4.jpg);
    }

    .slider .slide .content {
        z-index: 1;
        position: absolute;
        bottom: 70px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .slider .slide .content .header {
        font-size: 2em;
        font-weight: bold;
        line-height: 120%;
        text-shadow: 0px 0px 10px #000;
        color: #fff;
    }

    .slider .slide .content .emphasis {
        width: 100%;
        margin-top: 10px;
        font-size: 1.1em;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 2px #000;
    }

    .slider .slide.fadeOut {
        animation: fadeOut 0.6s forwards;
    }

    .slider .slide.fadeInUp {
        animation: fadeInUp 1s forwards;
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .custom-nav {
        z-index: 2;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }

    .custom-nav button {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border: 2px solid var(--color2);
        border-radius: 5px;
        background-color: transparent;
        color: var(--color2);
        transition: background-color 0.3s ease-in-out;
    }

    .custom-nav button:hover {
        cursor: pointer;
        border-color: #fff;
        background-color: rgba(255, 255, 255, .3);
        color: #fff;
    }

    .custom-dots {
        z-index: 2;
        position: absolute;
        bottom: 20px;
        left: 75px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .custom-dots button {
        width: 20px;
        height: 5px;
        border-radius: 2px;
        background-color: #bbb;
        border: none;
        margin: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

    .custom-dots button.active {
        background-color: #333;
    }



    /* INTRO */
    section{
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    section.padx{
        padding: 0;
    }

    section.pady{
        padding-top: 30px;
    }

    .intro{
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .intro .button-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .intro .button-group a.link-btn{
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 12px 30px;
        overflow: hidden;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
    }

    .intro .button-group a.link-btn span, .intro .button-group a.link-btn .icon{
        position: relative;
        z-index: 1;
    }

    .intro .button-group a.link-btn .icon{
        margin-left: 5px;
        font-size: 1.2em;
    }

    .intro .button-group a.link-btn::before{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 0%;
        height: 100%;
        content: "";
        background-color: rgba(00, 00, 00, .15);
        transition: .3s;
    }

    .intro .button-group a.link-btn:hover::before{
        width: 100%;
    }

    .bg1{
        background-color: var(--color1);
        color: #fff;
    }

    .bg2{
        background-color: var(--color3);
        color: #fff;
    }

    .bg3{
        background-color: var(--color2);
        color: #000;
    }



    /* CERTIFICATIONS */
    section.cert{
        width: 100%;
        padding: 0px 20px;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        background-color: #f0f0f0;
    }

    section.cert .start{
        width: 100%;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #aaa;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    section.cert .start .heading{
        font-size: 1.3em;
        font-weight: 600;
    }

    section.cert .list{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    section.cert .list .cert{
        width: 25%;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.cert .list .cert img{
        width: 85%;
    }



    /* FOOTER */
    footer{
        width: 100%;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #3e4753;
    }

    footer .start{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        justify-content: space-between;
    }

    footer .start .left{
        width: 100%;
        padding-top: 15px;
        border-right: none;
        border-bottom: 1px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    footer .start .left .top{
        width: 100%;
        padding: 20px;
        padding-right: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 50px;
    }

    footer .start .left .top .logo{
        width: 140px;
        min-width: 140px;
    }

    footer .start .left .top .comp-desc{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .left .top .comp-desc .aoc{
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        font-size: 1.25em;
        font-weight: 600;
        color: #fff;
    }

    footer .start .left .top .comp-desc .serve-list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: 1em;
        color: #ddd;
    }

    footer .start .right{
        width: 100%;
        padding: 10px 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    footer .start .right .contact{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 25px;
    }

    footer .start .right .contact .cont-line{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .right .contact .cont-line .const{
        width: 100%;
        padding-bottom: 2px;
        border-bottom: 2px solid var(--color2);
        font-size: 1.2em;
        font-weight: 400;
        color: #fff;
    }

    footer .start .right .contact .cont-line .var{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 1em;
        font-weight: 500;
        color: #ddd;
    }

    footer .start .right .contact .cont-line .var a:hover{
        color: var(--color2);
    }

    footer .end{
        width: 100%;
        padding: 20px;
        padding-top: 40px;
        border-top: 1px solid #fff;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: #ddd;
    }

    footer .end .copyright{
        font-size: .9em;
        font-weight: 600;
    }

    footer .end .essentials{
        width: max-content;
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-size: 1em;
        text-decoration: underline;
    }

    footer .end .socials{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    footer .end .socials a{
        font-size: 2em;
    }

    footer .end .socials a:hover{
        color: var(--color2);
    }



    /* ABOUT PAGE */

    /* PAGETOP */
    .pagetop{
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        padding-top: 115px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        background-image: url(assets/img/pattern.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: contain;
    }

    .pagetop::before{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        background-color: rgba(255, 255, 255, .25);
    }

    .pagetop .left{
        position: relative;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .pagetop .sub-heading{
        width: fit-content;
        padding: 5px 15px;
        border: 2px solid var(--color3);
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        background-color: rgba(0, 176, 240, .15);
    }
    
    .pagetop .preface{
        width: 100%;
        font-size: 2em;
    }
    
    .pagetop .preface.spec{
        font-size: 1.8em;
    }
    
    .pagetop .preface .text-red{
        font-weight: 600;
        color: var(--color1);
    }

    .pagetop .right{
        position: relative;
        width: max-content;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .pagetop .button-group{
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
        font-weight: 500;
    }

    .pagetop .button-group .button{
        width: fit-content;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .pagetop .button-group .icon{
        margin-right: 5px;
    }

    .pagetop .button-group .type1{
        background-color: #e0e0e0;
    }

    .pagetop .button-group .type2{
        background-color: #003041;
        color: #fff;
    }

    .pagetop .button-group .type1:hover{
        background-color: #f0f0f0;
    }

    .pagetop .button-group .type2:hover{
        background-color: #01445c;
    }



    /* ABOUT */
    .about{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 50px;
    }

    .story{
        width: 100%;
        height: auto;
        padding: 0px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        font-size: 1.35em;
        background-color: #fafafa;
        color: #222;
    }

    .blocks{
        width: 100%;
        height: auto;
        padding: 0px 0;
        padding-left: 10px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px 10px;
    }

    .blocks .block{
        position: relative;
        width: 48%;
        height: auto;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blocks .block.three{
        width: 100%;
    }

    .blocks .block .iconic{
        position: absolute;
        top: -15px;
        left: -10px;
        width: 40px;
    }

    .blocks .block .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .blocks .block .text .head{
        font-size: 1.15em;
        font-weight: 600;
    }

    .blocks .block .text p{
        font-size: 1.1em;
    }

    .blocks .block .text p.diff{
        font-size: 1.1em;
    }

    .blocks .block.one{
        background-color: rgba(255, 0, 0, .2);
    }

    .blocks .block.two{
        background-color: rgba(0, 176, 240, .2);
    }

    .blocks .block.three{
        background-color: rgba(255, 255, 0, .2);
    }

    .linker{
        width: fit-content;
        font-size: 1em;
    }

    .linker:hover{
        text-decoration: underline;
        font-weight: 500;
    }

    .blocks .block .linker{
        width: fit-content;
        font-size: 1em;
    }



    /* CORE */
    .core{
        padding: 20px;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fafafa;
    }

    .core .right{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .core .right .heading{
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
    }

    .gridlist{
        width: 100%;
        border-collapse: collapse;
    }

    .grid{
        width: 33.33%;
        height: 120px;
        padding: 10px;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .gridlist tr:first-child td {
    border-top: none;
    }

    .gridlist tr:last-child td {
    border-bottom: none;
    }

    .gridlist td:first-child {
    border-left: none;
    }

    .gridlist td:last-child {
    border-right: none;
    }

    .grid .image{
        width: 100%;
    }

    .grid .image img{
        width: 50px;
        height: 50px;
    }

    .grid .text{
        font-size: .9em;
        font-weight: 500;
        text-transform: capitalize;
        color: #222;
    }



    /* SERVICE */

    /* PAGETOP */
    .pagetop .main{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .pagetop .main .text{
        font-size: 1.2em;
        font-weight: 500;
        color: var(--color1);
    }

    .pagetop .main .dot{
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
    }



    /* TABS */
    .tabs{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .tabs .tab{
        width: 47%;
        height: auto;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .tabs .tab .heading{
        font-size: 1.25em;
        font-weight: 600;
    }

    .tabs .tab .list{
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }



    /* OEM */
    .oem{
        width: 100%;
        margin: auto;
        padding: 40px 20px;
        margin-top: 0px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }
    
    .oem .logo-group{
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
    }
    
    .oem .logo-group .image{
        width: 25%;
        min-width: 25%;
        height: auto;
        padding: 15px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        overflow: hidden;
    }
    
    .oem .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .oem .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
    }
    
    .oem .writeup p{
        font-size: 1.15em;
    }
    
    .oem .writeup p .spec{
        font-weight: bold;
    }



    /* PARTS */
    .parts{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 20px;
    }

    .parts .part{
        width: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .parts .part .image{
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .parts .part .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .parts .part .writeup{
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .parts .part .writeup .head{
        font-size: 1.2em;
        font-weight: bold;
    }

    .parts .part .writeup p{
        color: #222;
    }

    .parts .part .button{
        width: fit-content;
        padding: 5px 15px;
        border-radius: 5px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .parts .part .button.type1{
        background-color: #ccc;
    }

    .parts .part .button:hover{
        background-color: #aaa;
    }



    /* PARTNERS */
    .partners{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .partners .heading{
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color1);
        font-size: 1.35em;
        font-weight: 500;
    }

    .partners .list{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .partners .list .tech{
        width: 31%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .partners .list .tech .image{
        width: auto;
        max-width: 200px;
        height: 100px;
        padding: 10px;
    }

    .partners .list .tech .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .partners .list .tech .writeup{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .partners .list .tech .writeup .head{
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

    .partners .list .tech .writeup p{
        font-weight: 500;
        text-decoration: underline;
        color: #444;
    }



    /* PORTFOLIO PAGE */

    /* CLIENTS */
    .clients{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .clients .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .clients .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
        color: var(--color1);
    }

    .clients .writeup p{
        font-size: 1.1em;
    }

    .clients .clientele{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 1%;
    }

    .clients .clientele .tab{
        width: 32%;
        min-width: auto;
        height: auto;
        padding: 5px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        filter: grayscale();
    }

    .clients .clientele .tab:hover{
        filter: none;
    }

    .clients .clientele .tab .image{
        width: 100px;
        height: 70px;
        overflow: hidden;
    }

    .clients .clientele .tab .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .clients .clientele .tab .head{
        font-size: .8em;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
    }



    /* PORTFOLIO */
    .portfolio{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .portfolio .top{
        width: 100%;
        padding: 10px;
        border-bottom: 2px solid var(--color1);
    }

    .portfolio .top .heading{
        font-size: 1.35em;
        /* font-weight: 500; */
        color: var(--color1);
    }

    .portfolio .listing{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .portfolio .listing .port{
        width: 100%;
        padding: 15px 10px;
        border: 1px solid #ccc;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
    }

    .portfolio .listing .port .items{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .portfolio .listing .port .items .item{
        width: 100%;
        padding-top: 20px;
        border-top: 2px dotted #ccc;
        font-size: 1.2em;
        font-weight: 400;
    }

    .portfolio .listing .port .items .item:first-child{
        padding-top: 0;
        border: none;
    }

    .portfolio .listing .port .items .item .spec{
        font-weight: bold;
        color: #008000;
    }
  
    .portfolio .listing .port .items .item .spec2{
      font-weight: bold;
      color: #ffa31a;
  	}



    /* CONTACT */

    .pagetop.alt .left{
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting{
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #F0F5F8;
        gap: 40px;
    }

    .contacting .left{
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
        background-color: var(--color4);
        color: #fff;
    }

    .contacting .left .top{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contacting .left .top .heading{
        font-size: 1.5em;
        font-weight: bold;
        color: var(--color2);
    }

    .contacting .left .top .sub-heading{
        font-weight: 500;
    }

    .contacting .left .lines{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
    }

    .contacting .left .lines .line{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .contacting .left .lines .line .icon{
        font-size: 1.25em;
        color: var(--color2);
    }

    .contacting .left .lines .line .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        font-weight: 500;
    }

    .contacting .left .lines .line .text a:hover{
        text-decoration: underline;
    }

    .contacting .left .socials{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .contacting .left .socials a{
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.35em;
        background-color: #fff;
        color: var(--color1);
        transition: .3s;
    }

    .contacting .left .socials a:hover{
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right{
        width: 100%;
        padding: 10px;
    }

    .contacting .right form{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 25px;
    }

    .contacting .right form .header{
        font-size: 1.25em;
        font-weight: bold;
    }

    .contacting .right form .input-tab{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting .right form .input-tab label{
        font-weight: 600;
    }

    .contacting .right form .input-tab input{
        width: 100%;
        height: auto;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form .input-tab textarea{
        width: 100%;
        height: 150px;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        resize: none;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form button{
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right form button .icon{
        margin-left: 5px;
    }

    /* SUSTAINABILITY */
    .beginning{
        position: relative;
        width: 100%;
        height: 100vh;
        padding: 20px;
        padding-top: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30%;
        background-image: url(assets/img/sustainable.jpg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .beginning::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(0, 0, 0, .5);
    }

    .beginning .start{
        position: relative;
        margin-top: 0px;
    }

    .beginning .top{
        width: fit-content;
        border-bottom: 2px solid #fff;
        padding-bottom: 2px;
        margin: auto;
        margin-bottom: 50px;
        font-size: 1.5em;
        font-weight: bold;
        text-transform: lowercase;
        font-variant: small-caps;
        color: #fff;
    }

    .beginning .main{
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-align: center;
        color: #fff;
    }

    .beginning .main .big{
        font-family: var(--font1);
        font-size: 2.5em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .beginning .main .spec{
        font-size: 1.25em;
    }

    .tags{
        position: relative;
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .tags .tag{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
        /* background-color: #fff; */
    }

    .tags .tag .icon{
        width: 40px;
        height: 40px;
        padding: 5px;
        border: 1px solid #69a041;
        border-radius: 50%;
        background-color: #fff;
    }

    .tags .tag p{
        font-size: 1em;
        text-transform: lowercase;
        color: #fff;
    }

    .lead{
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        background-color: #F0F5F8;
    }

    .lead .inside{
        width: 100%;
        padding: 0px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        line-height: 150%;
        background-color: #F0F5F8;
    }

    .lead .section{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        line-height: 150%;
    }

    .lead .head{
        font-size: 1.35em;
        font-weight: bold;
        color: #333;
    }

    .lead p{
        font-size: 1.1em;
    }

    .lead ul{
        list-style-position: outside;
        list-style-type: square;
        font-size: 1em;
    }
}

@media screen and (max-width: 600px){
    /* NAVIGATION BAR */
    nav.navbar{
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: auto;
        padding: 10px 20px;
        background-color: #fff;
        box-shadow: rgba(60, 64, 67, .1) 0px 1px 1px 0px, rgba(60, 64, 67, 0.1) 0px 1px 1px 1px;
        transition: 0.3s;
    }

    nav.navbar .inside{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav.navbar .left{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar a.logo{
        display: inline-flex;
        width: 60px;
        min-width: 60px;
    }

    nav.navbar .left .top{
        width: 100%;
        padding: 0;
        padding-bottom: 3px;
        border-radius: 0 0 10px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    nav.navbar .left .top .cname{
        padding-left: 10px;
        font-size: 1em;
        font-weight: 500;
        color: #000;
        display: none;
    }

    nav.navbar .left .top .caption{
        font-size: .8em;
        color: var(--color1);
    }

    nav.navbar .right{
        position: relative;
        z-index: 99;
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
    }

    nav.navbar .baserow{
        width: max-content;
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        font-weight: 500;
    }

    nav.navbar .baserow a.link:hover{
        text-decoration: underline;
    }

    nav.navbar .baserow a.link.active{
        color: var(--color1);
        text-decoration: none;
    }

    nav.navbar .nav-cta{
        position: relative;
        display: inline-block;
        width: fit-content;
        overflow: hidden;
        padding: 5px 15px;
        margin-top: 10px;
        border: 2px solid var(--color1);
        border-radius: 5px;
        color: var(--color1);
    }

    nav.navbar .nav-cta .icon{
        margin-right: 5px;
    }

    nav.navbar .nav-cta::before{
        z-index: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 0%;
        content: "";
        background-color: var(--color1);
        transition: .3s ease;
    }

    nav.navbar .nav-cta .inner{
        position: relative;
        z-index: 1;
    }

    nav.navbar .nav-cta:hover{
        color: #fff;
    }

    nav.navbar .nav-cta:hover::before{
        height: 100%;
    }

    nav.navbar .nav-cta.active{
        background-color: rgba(255, 0, 0, .85);
        color: #fff;
    }

    nav.navbar .menuBtn{
        width: 20px;
        margin-left: 20px;
        font-size: 1.3em;
        display: block;
    }

    nav.navbar .menubtn #open{
        display: block;
    }

    nav.navbar .menubtn #close{
        display: none;
    }

    nav.navbar .menu{
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        height: 0px;
        overflow: hidden;
        padding: 0px 30px;
        background-color: #fff;
        transition: all .5s;
    }

    nav.navbar .menu .navlinks{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    nav.navbar .menu .navlinks a.link{
        display: inline-block;
        width: 100%;
        padding: 5px;
        padding-bottom: 10px;
        border-bottom: 1px solid #bbb;
    }

    nav.navbar .menu .navlinks a.link.active{
        color: var(--color1);
        border-color: var(--color1);
    }


    /* HERO SECTION */
    .hero{
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: #fff;
    }

    .slider{
        width: 100%;
        height: 100%;
    }

    .slider .slide{
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-position: 70% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .slider .slide::after{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(0deg, rgba(0, 0, 0, .95) 1%, rgba(0, 0, 0, 0) 60%);
    }

    .slider .slide.one{
        background-image: url(assets/img/slide1.jpg);
    }

    .slider .slide.two{
        background-image: url(assets/img/global.png);
        background-size: 250%;
        background-position: 40% 10%;
    }

    .slider .slide.three {
        background-image: url(assets/img/slide3.jpg);
        background-size: cover;
        background-position: 42%;
    }

    .slider .slide.four {
        background-image: url(assets/img/slide4.jpg);
    }

    .slider .slide .content {
        z-index: 1;
        position: absolute;
        bottom: 100px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .slider .slide .content .header {
        font-size: 2em;
        font-weight: bold;
        line-height: 120%;
        text-shadow: 0px 0px 10px #000;
        color: #fff;
    }

    .slider .slide .content .emphasis {
        width: 100%;
        margin-top: 10px;
        font-size: 1.1em;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 2px #000;
    }

    .slider .slide.fadeOut {
        animation: fadeOut 0.6s forwards;
    }

    .slider .slide.fadeInUp {
        animation: fadeInUp 1s forwards;
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .custom-nav {
        z-index: 2;
        position: absolute;
        bottom: 40px;
        left: 20px;
    }

    .custom-nav button {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border: 2px solid var(--color2);
        border-radius: 5px;
        background-color: transparent;
        color: var(--color2);
        transition: background-color 0.3s ease-in-out;
    }

    .custom-nav button:hover {
        cursor: pointer;
        border-color: #fff;
        background-color: rgba(255, 255, 255, .3);
        color: #fff;
    }

    .custom-dots {
        z-index: 2;
        position: absolute;
        bottom: 20px;
        left: 75px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .custom-dots button {
        width: 20px;
        height: 5px;
        border-radius: 2px;
        background-color: #bbb;
        border: none;
        margin: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

    .custom-dots button.active {
        background-color: #333;
    }



    /* INTRO */
    section{
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }

    section.padx{
        padding: 0;
    }

    section.pady{
        padding-top: 30px;
    }

    .intro{
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .intro .button-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .intro .button-group a.link-btn{
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 12px 30px;
        overflow: hidden;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
    }

    .intro .button-group a.link-btn span, .intro .button-group a.link-btn .icon{
        position: relative;
        z-index: 1;
    }

    .intro .button-group a.link-btn .icon{
        margin-left: 5px;
        font-size: 1.2em;
    }

    .intro .button-group a.link-btn::before{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 0%;
        height: 100%;
        content: "";
        background-color: rgba(00, 00, 00, .15);
        transition: .3s;
    }

    .intro .button-group a.link-btn:hover::before{
        width: 100%;
    }

    .bg1{
        background-color: var(--color1);
        color: #fff;
    }

    .bg2{
        background-color: var(--color3);
        color: #fff;
    }

    .bg3{
        background-color: var(--color2);
        color: #000;
    }



    /* CERTIFICATIONS */
    section.cert{
        width: 100%;
        padding: 0px 20px;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        background-color: #f0f0f0;
    }

    section.cert .start{
        width: 100%;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #aaa;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    section.cert .start .heading{
        font-size: 1.3em;
        font-weight: 600;
    }

    section.cert .list{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    section.cert .list .cert{
        width: 50%;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.cert .list .cert img{
        width: 85%;
    }



    /* FOOTER */
    footer{
        width: 100%;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #3e4753;
    }

    footer .start{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        justify-content: space-between;
    }

    footer .start .left{
        width: 100%;
        padding-top: 15px;
        border-right: none;
        border-bottom: 1px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    footer .start .left .top{
        width: 100%;
        padding: 20px;
        padding-right: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
    }

    footer .start .left .top .logo{
        width: 140px;
        min-width: 140px;
    }

    footer .start .left .top .comp-desc{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .left .top .comp-desc .aoc{
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        font-size: 1.25em;
        font-weight: 600;
        color: #fff;
    }

    footer .start .left .top .comp-desc .serve-list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: 1em;
        color: #ddd;
    }

    footer .start .right{
        width: 100%;
        padding: 10px 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    footer .start .right .contact{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 25px;
    }

    footer .start .right .contact .cont-line{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    footer .start .right .contact .cont-line .const{
        width: 100%;
        padding-bottom: 2px;
        border-bottom: 2px solid var(--color2);
        font-size: 1.2em;
        font-weight: 400;
        color: #fff;
    }

    footer .start .right .contact .cont-line .var{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 1.1em;
        font-weight: 500;
        color: #ddd;
    }

    footer .start .right .contact .cont-line .var a:hover{
        color: var(--color2);
    }

    footer .end{
        width: 100%;
        padding: 20px;
        padding-top: 40px;
        border-top: 1px solid #fff;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: #ddd;
    }

    footer .end .copyright{
        font-size: .9em;
        font-weight: 600;
    }

    footer .end .essentials{
        width: max-content;
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-size: 1em;
        text-decoration: underline;
    }

    footer .end .socials{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    footer .end .socials a{
        font-size: 2em;
    }

    footer .end .socials a:hover{
        color: var(--color2);
    }



    /* ABOUT PAGE */

    /* PAGETOP */
    .pagetop{
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        padding-top: 115px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        background-image: url(assets/img/pattern.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: contain;
    }

    .pagetop::before{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        background-color: rgba(255, 255, 255, .25);
    }

    .pagetop .left{
        position: relative;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .pagetop .sub-heading{
        width: fit-content;
        padding: 5px 15px;
        border: 2px solid var(--color3);
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        background-color: rgba(0, 176, 240, .15);
    }
    
    .pagetop .preface{
        width: 100%;
        font-size: 1.5em;
    }
    
    .pagetop .preface.spec{
        font-size: 1.3em;
    }
    
    .pagetop .preface .text-red{
        font-weight: 600;
        color: var(--color1);
    }

    .pagetop .right{
        position: relative;
        width: max-content;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .pagetop .button-group{
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
        font-weight: 500;
    }

    .pagetop .button-group .button{
        width: fit-content;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .pagetop .button-group .icon{
        margin-right: 5px;
    }

    .pagetop .button-group .type1{
        background-color: #e0e0e0;
    }

    .pagetop .button-group .type2{
        background-color: #003041;
        color: #fff;
    }

    .pagetop .button-group .type1:hover{
        background-color: #f0f0f0;
    }

    .pagetop .button-group .type2:hover{
        background-color: #01445c;
    }



    /* ABOUT */
    .about{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 50px;
    }

    .story{
        width: 100%;
        height: auto;
        padding: 0px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        font-size: 1.35em;
        background-color: #fafafa;
        color: #222;
    }

    .blocks{
        width: 100%;
        height: auto;
        padding: 0px 0;
        padding-left: 10px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px 10px;
    }

    .blocks .block{
        position: relative;
        width: 100%;
        height: auto;
        padding: 10px 10px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blocks .block.three{
        width: 100%;
    }

    .blocks .block .iconic{
        position: absolute;
        top: -15px;
        left: -10px;
        width: 40px;
    }

    .blocks .block .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .blocks .block .text .head{
        font-size: 1.15em;
        font-weight: 600;
    }

    .blocks .block .text p{
        font-size: 1.1em;
    }

    .blocks .block .text p.diff{
        font-size: 1.1em;
    }

    .blocks .block.one{
        background-color: rgba(255, 0, 0, .2);
    }

    .blocks .block.two{
        background-color: rgba(0, 176, 240, .2);
    }

    .blocks .block.three{
        background-color: rgba(255, 255, 0, .2);
    }

    .linker{
        width: fit-content;
        font-size: 1em;
    }

    .linker:hover{
        text-decoration: underline;
        font-weight: 500;
    }

    .blocks .block .linker{
        width: fit-content;
        font-size: 1em;
    }



    /* CORE */
    .core{
        padding: 20px;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fafafa;
    }

    .core .right{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .core .right .heading{
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
    }

    .gridlist{
        width: 100%;
        border-collapse: collapse;
    }

    .grid{
        width: 33.33%;
        height: 120px;
        padding: 10px;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .gridlist tr:first-child td {
    border-top: none;
    }

    .gridlist tr:last-child td {
    border-bottom: none;
    }

    .gridlist td:first-child {
    border-left: none;
    }

    .gridlist td:last-child {
    border-right: none;
    }

    .grid .image{
        width: 100%;
    }

    .grid .image img{
        width: 50px;
        height: 50px;
    }

    .grid .text{
        font-size: .9em;
        font-weight: 500;
        text-transform: capitalize;
        color: #222;
    }



    /* SERVICE */

    /* PAGETOP */
    .pagetop .main{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .pagetop .main .text{
        font-size: 1em;
        font-weight: 500;
        color: var(--color1);
    }

    .pagetop .main .dot{
        width: 2px;
        height: 15px;
        border-radius: 2px;
        background-color: #ccc;
    }



    /* TABS */
    .tabs{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .tabs .tab{
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .tabs .tab .heading{
        font-size: 1.25em;
        font-weight: 600;
    }

    .tabs .tab .list{
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }



    /* OEM */
    .oem{
        width: 100%;
        margin: auto;
        padding: 40px 20px;
        margin-top: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }
    
    .oem .logo-group{
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
    }
    
    .oem .logo-group .image{
        width: 50%;
        min-width: 50%;
        height: auto;
        padding: 15px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        overflow: hidden;
    }
    
    .oem .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .oem .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
    }
    
    .oem .writeup p{
        font-size: 1.15em;
    }
    
    .oem .writeup p .spec{
        font-weight: bold;
    }



    /* PARTS */
    .parts{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 20px;
    }

    .parts .part{
        width: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .parts .part .image{
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .parts .part .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .parts .part .writeup{
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .parts .part .writeup .head{
        font-size: 1.2em;
        font-weight: bold;
    }

    .parts .part .writeup p{
        color: #222;
    }

    .parts .part .button{
        width: fit-content;
        padding: 5px 15px;
        border-radius: 5px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .parts .part .button.type1{
        background-color: #ccc;
    }

    .parts .part .button:hover{
        background-color: #aaa;
    }



    /* PARTNERS */
    .partners{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .partners .heading{
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color1);
        font-size: 1.35em;
        font-weight: 500;
    }

    .partners .list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .partners .list .tech{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .partners .list .tech .image{
        width: auto;
        max-width: 200px;
        height: 100px;
        padding: 10px;
    }

    .partners .list .tech .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .partners .list .tech .writeup{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .partners .list .tech .writeup .head{
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

    .partners .list .tech .writeup p{
        font-weight: 500;
        text-decoration: underline;
        color: #444;
    }



    /* PORTFOLIO PAGE */

    /* CLIENTS */
    .clients{
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .clients .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .clients .writeup .heading{
        font-size: 1.5em;
        font-weight: 500;
        color: var(--color1);
    }

    .clients .writeup p{
        font-size: 1.1em;
    }

    .clients .clientele{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 1%;
    }

    .clients .clientele .tab{
        width: 32%;
        min-width: auto;
        height: auto;
        padding: 5px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        filter: grayscale();
    }

    .clients .clientele .tab:hover{
        filter: none;
    }

    .clients .clientele .tab .image{
        width: 100px;
        height: 70px;
        overflow: hidden;
    }

    .clients .clientele .tab .image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .clients .clientele .tab .head{
        font-size: .8em;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
    }



    /* PORTFOLIO */
    .portfolio{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .portfolio .top{
        width: 100%;
        padding: 10px;
        border-bottom: 2px solid var(--color1);
    }

    .portfolio .top .heading{
        font-size: 1.35em;
        /* font-weight: 500; */
        color: var(--color1);
    }

    .portfolio .listing{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .portfolio .listing .port{
        width: 100%;
        padding: 15px 10px;
        border: 1px solid #ccc;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
    }

    .portfolio .listing .port .items{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .portfolio .listing .port .items .item{
        width: 100%;
        padding-top: 20px;
        border-top: 2px dotted #ccc;
        font-size: 1.2em;
        font-weight: 400;
    }

    .portfolio .listing .port .items .item:first-child{
        padding-top: 0;
        border: none;
    }

    .portfolio .listing .port .items .item .spec{
        font-weight: bold;
        color: #008000;
    }

  	.portfolio .listing .port .items .item .spec2{
        font-weight: bold;
        color: #ffa31a;
  	}


    /* CONTACT */

    .pagetop.alt .left{
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting{
        width: 100%;
        padding: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #F0F5F8;
        gap: 40px;
    }

    .contacting .left{
        width: 100%;
        padding: 40px 20px;
        border-radius: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
        background-color: var(--color4);
        color: #fff;
    }

    .contacting .left .top{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .contacting .left .top .heading{
        font-size: 1.5em;
        font-weight: bold;
        color: var(--color2);
    }

    .contacting .left .top .sub-heading{
        font-size: .9em;
        font-weight: 500;
    }

    .contacting .left .lines{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 35px;
    }

    .contacting .left .lines .line{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .contacting .left .lines .line .icon{
        font-size: 1.25em;
        color: var(--color2);
    }

    .contacting .left .lines .line .text{
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        font-weight: 500;
    }

    .contacting .left .lines .line .text a:hover{
        text-decoration: underline;
    }

    .contacting .left .socials{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .contacting .left .socials a{
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.35em;
        background-color: #fff;
        color: var(--color1);
        transition: .3s;
    }

    .contacting .left .socials a:hover{
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right{
        width: 100%;
        padding: 30px 20px;
    }

    .contacting .right form{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 25px;
    }

    .contacting .right form .header{
        font-size: 1.5em;
        font-weight: bold;
    }

    .contacting .right form .input-tab{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contacting .right form .input-tab label{
        font-weight: 600;
    }

    .contacting .right form .input-tab input{
        width: 100%;
        height: auto;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form .input-tab textarea{
        width: 100%;
        height: 150px;
        padding: 10px 20px;
        border: none;
        border-bottom: 2px solid #aaa;
        resize: none;
        background-color: rgba(255, 255, 255, .5);
    }

    .contacting .right form button{
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        background-color: var(--color1);
        color: #fff;
    }

    .contacting .right form button .icon{
        margin-left: 5px;
    }

    /* SUSTAINABILITY */
    .beginning{
        position: relative;
        width: 100%;
        height: 100vh;
        padding: 20px;
        padding-top: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30%;
        background-image: url(assets/img/sustainable.jpg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .beginning::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(0, 0, 0, .5);
    }

    .beginning .start{
        position: relative;
        margin-top: 0px;
    }

    .beginning .top{
        width: fit-content;
        border-bottom: 2px solid #fff;
        padding-bottom: 2px;
        margin: auto;
        margin-bottom: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-transform: lowercase;
        font-variant: small-caps;
        color: #fff;
    }

    .beginning .main{
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-align: center;
        color: #fff;
    }

    .beginning .main .big{
        font-family: var(--font1);
        font-size: 1.75em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .beginning .main .spec{
        font-size: 1em;
    }

    .tags{
        position: relative;
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .tags .tag{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
        /* background-color: #fff; */
    }

    .tags .tag .icon{
        width: 40px;
        height: 40px;
        padding: 5px;
        border: 1px solid #69a041;
        border-radius: 50%;
        background-color: #fff;
    }

    .tags .tag p{
        font-size: 1em;
        text-transform: lowercase;
        color: #fff;
    }

    .lead{
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        background-color: #F0F5F8;
    }

    .lead .inside{
        width: 100%;
        padding: 0px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        line-height: 150%;
        background-color: #F0F5F8;
    }

    .lead .section{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        line-height: 150%;
    }

    .lead .head{
        font-size: 1.25em;
        font-weight: bold;
        color: #333;
    }

    .lead p{
        font-size: 1em;
    }

    .lead ul{
        list-style-position: outside;
        list-style-type: square;
        font-size: 1em;
    }
}