@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');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,400;0,600;0,700;1,400;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.5%;
    --theme-color1: #272b67;
    --theme-color2: #065BA7;
    --theme-color3: #a7aeaf;
    --theme-color4: #fff;
    --heading-font: 'Roboto', sans-serif;
    --text-font: 'Nunito', sans-serif;
    --content-height: 10rem;
    --full-width: 100%;
    --content-width: 95%;
    --box-radius-content: 2.5rem;
    --box-radius-button: 1.5rem;
    --font-size-m-heading: 3.6rem;
    --font-size-s-heading: 2.4rem;
    --font-size-sm-heading: 2rem;
    --font-size-p-: 1.8rem;
    --border-1-col1: 1px solid var(--theme-color1);
    --box-shadow-ld: 0.2rem 0.2rem var(--theme-color2);
    --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color2);
    --content-padding-lg: 2rem;
    --content-padding-sm: 1rem;
}


/*main body style*/
body {
    margin: 0;
    padding: 0;
    background-color: var(--theme-color3);
    width: var(--full-width);
    overflow-x: hidden;
    font-family: var(--text-font);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

#spacer {
    height: 1rem;
}

/* Template stylings */

/*Header Section & Nav bar*/

/* common properties for navbar */
header {
    margin-bottom: 7rem;
}

.navigation {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
    background-color: var(--theme-color3);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0rem;
    z-index: 999;
}

.navigation #brandimg {
    justify-self: flex-start;
    flex: 0.3;
    padding: 0.3rem 2rem;
}

.navigation #brandimg a img {
    max-width: 20rem;
    max-height: 7rem;
}

/* styles for page navigation in normal screen */
.navigation #pgnavigate {
    flex: 0.7;
    justify-self: flex-end;
}

.navigation #pgnavigate {
    display: flex;
    justify-content: flex-end;
    margin-right: 2rem;
}

.navigation #pgnavigate .navitem {
    min-width: calc(100%/7);
    margin-right: 1rem;
    text-align: center;
    height: calc(var(--content-height)/3);
    background-color: var(--theme-color3);
}

.navigation #pgnavigate .navitem a {
    font-size: var(--font-size-s-heading);
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--theme-color1);
    overflow: hidden;
    padding: 0 0.5rem;

}

.navigation #pgnavigate .navitem.active {
    background-color: var(--theme-color1);
}

.navigation #pgnavigate .navitem.active a {
    color: var(--theme-color4);
}

/* .navigation #pgnavigate a.nactive{
    background-color: var(--theme-color4);
} */

#pgnavigate .navitem.active:hover {
    background-color: var(--theme-color1);
}

#pgnavigate .navitem.active:hover a {
    color: var(--theme-color4);
    transform: scale(.95);
}

#pgnavigate .navitem:hover {
    background-color: var(--theme-color1);
}

#pgnavigate .navitem:hover a {
    color: var(--theme-color4);
    transform: scale(.95);
}

nav #smnav {
    display: none;
    width: 100%;
    justify-self: flex-end;
    z-index: 3;
}

.icon {
    position: fixed;
    top: 2rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-image: radial-gradient(var(--theme-color2), var(--theme-color1));
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow-ld);
}

.line {
    width: 3.5rem;
    height: 0.2rem;
    background-color: var(--theme-color4);
    /* margin:.3rem; */
}

.overlay-content a:hover {
    background-color: var(--theme-color2);
    color: var(--theme-color4);
}

.overlay-content a,
.overlay-content a:visited {
    color: var(--theme-color3);
    text-decoration: none;
    text-align: center;
    font-size: var(--font-size-m-heading);
    width: 100%;
    text-transform: uppercase;
}

.overlay {
    height: 0%;
    width: var(--full-width);
    position: fixed;
    z-index: 1;
    top: 0rem;
    right: 0rem;
    background-color: rgba(39, 43, 103, 0.9);
    overflow-y: hidden;
    transition: 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.overlay-content {
    position: relative;
    top: 10rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
    color: var(--theme-color3);
    display: block;
    transition: 0.3s;
    letter-spacing: .5rem;
}

.overlay a:hover,
.overlay a:focus {
    color: var(--theme-color4);
}

.overlay .closebtn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 60px;
}

.overlay {
    overflow-y: auto;
}

.overlay .closebtn {
    font-size: 8rem;
}

/*footer-section starts here*/

/* links section */
#shortcuts {
    width: 100%;
    position: relative;
    /* display: grid;
    grid-template-columns: 0.1fr 1fr 1fr 4fr;
    column-gap: 1rem; */
    display: flex;
    justify-content: space-around;
    margin: auto;
    overflow: hidden;
    background: linear-gradient(var(--theme-color3), var(--theme-color1));
}

#shortcuts .sect,
#shortcuts .sect2 {
    flex: 0.2;
    display: flex;
    justify-content: center;
    margin: 2rem auto;
    flex-direction: column;

}

#shortcuts .sect2 {
    flex: 0.6;
}

#shortcuts .sect a,
#shortcuts .sect2 a {
    width: 100%;
    text-decoration: none;
    font-size: var(--font-size-p-);
    color: var(--theme-color4);
    text-align: center;
}

#shortcuts .sect a:hover,
#shortcuts .sect2 a:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
}


/* privacy statement */

#text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.1rem;
    color: var(--theme-color4);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#overlay {
    position: fixed;
    display: none;
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    cursor: pointer;
}

#overlay h2 {
    font-size: 4rem;
}

#overlay #text {
    width: 95%;
}

/* footer section here */
footer {
    display: flex;
    flex-wrap: nowrap;
    background-color: var(--theme-color1);
    width: var(--full-width);
    height: var(--content-height);
    font-size: var(--font-size-p-);
    color: var(--theme-color4);
    justify-content: space-between;
    align-items: center;
}

footer .footsec {
    margin: 2rem;
}

footer img {
    width: 10rem;
    height: 9rem;
}

footer p {
    font-size: var(--font-size-p-);
}

footer p:hover {
    cursor: pointer;
}

/* carousel stylings */
/*Carousel*/

/* #carousel{
    /* height:var(--content-height); */
/* position: relative;
    margin:auto;
    overflow: hidden;
   
  } */

/* #carousel .image-container{ 
    display: flex;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
    width:100%; */
/* overflow: hidden; */
/* }
  #carousel .image-container .slider img{
      max-width:100vw;
      height:calc(3*var(--content-height));
      object-fit: cover;
      overflow: scroll;
  } 
  #carousel .image-container .slider p{
    display: block;
    width:100%;
    object-fit: contain;
    position: absolute;
    top:50%;
    color: #f2f2f2;
    font-size: 2rem;
    line-height: 6rem;
    width: 100% ;
    text-align: center;
    background-color:rgba(0,0,0,0.5);
    transform:translateY(-50%);
  }

  .buttons-container {
    display: flex;
    width: 100%;
    justify-content: space-between; */
/* align-items: center; */
/* }
  .btn {
    background-color: rgba(0,0,0,0.9);
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    line-height: 100%;
    padding:10rem 5rem;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    transition: 0.6s ease;
    border-radius: 0 2.5rem 2.5rem 0;
    user-select: none;
    transform: translatey(-50%);
  }
  .btn:hover {
    opacity: 0.9;
  }
  .btn:focus {
    outline: none;
  } */

/* Position the "next button" to the right */
/* #right {
    right: 0;
    padding-left: 2rem;
    border-radius: .3rem 0 0 .3rem;
}
#left{
    padding-right: 2rem;
} */

/* clients section styling */

#clientlist {
    max-width: var(--content-width);
    margin: auto;
    height: calc(1.8*var(--content-height));
    background-color: var(--theme-color4);
    align-content: center;
    text-align: center;
    border-radius: 2.5rem;
    position: relative;
}

#clientlist h3 {
    font-size: var(--font-size-sm-heading);
    background-color: var(--theme-color1);
    padding: 0.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
    color: var(--theme-color4);
}

#clientlist img {
    margin: 0em 3rem 0 3rem;
    width: 10rem;
    height: 10rem;
    position: relative;
}

#clientlist .simimg {
    width: 18rem;
    height: 10rem;
}

#clientlist .surimg {
    width: 11.5rem;
    height: 10rem;
}

#clientlist .iocimg {
    width: 13.5rem;
    height: 10rem;
}

#clientlist .sidemotion {
    position: absolute !important;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
}

/* cta section */
#cta {
    width: var(--content-width);
    height: fit-content;
    position: relative;
    background-color: var(--theme-color4);
    text-align: center;
    border-radius: 2.5rem;
    margin: auto;
    overflow: hidden;
}

#cta h3 {
    font-size: var(--font-size-sm-heading);
    background-color: var(--theme-color1);
    padding: 0.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
    color: white;
}

#cta p {
    font-size: var(--font-size-p-);
    Padding: 0.5rem;
    margin: 0.2rem 0.2rem 3rem .2rem;
    text-align: center;
}

#ctabutton {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0.5rem;
    color: var(--theme-color4);
    font-size: 0.8rem;
    background-color: var(--theme-color1);
    font-size: var(--font-size-p-);
    text-decoration: none;
    border-radius: 0 0 2.5rem 2.5rem;
}

#ctabutton:hover {
    background: linear-gradient(to top, var(--theme-color1), var(--theme-color3));
}

#ctabutton:visited {
    color: var(--theme-color4)
}


/* hero image */
#aboutusimage {
    /* height: clac(2*var(--content-height)); */
    height: auto;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Home/index page starts here */


/*Intro 2 section*/

.aboutinovace {
    width: var(--content-width);
    min-height: calc(6*var(--content-height));
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    position: relative;
    overflow: hidden;

}

.aboutinovace #Products h2,
.aboutinovace #Services h2 {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    border-radius: 2.5rem 2.5rem 0 0;
    padding: .5rem;
}

.aboutinovace #Products,
#Services {
    height: calc(6*var(--content-height));
    border-radius: 2.5rem;

    align-items: center;
    margin-top: 0rem;
    overflow: hidden;
}

.upmotion {
    padding: .5rem;
}


.aboutinovace #Products {

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: slide 60s infinite;
}

@keyframes slide {
    0% {
        background: url('../images/Products/electrical-wires-500x500.jpg');
    }

    15% {
        background: url('../images/Products/electrical-wires-500x500.jpg');

    }

    30% {
        background: url('../images/Products/Screen5.png');
    }

    45% {
        background: url('../images/Products/field-instrumentation-produ-500x500.jpg');
    }

    60% {
        background: url('../images/Products/plc-software-500x500.png');
    }

    75% {
        background: url('../images/Products//PLC.jpg');
    }

    90% {
        background: url('../images/Products/download.jpg');
    }

    100% {
        background: url('../images/Products/networking-accessories-500x500.jpg');
    }
}

.aboutinovace #Services {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    animation: slide 60s infinite;
}

@keyframes slide {
    0% {
        background: url('../images/Products/electrical-wires-500x500.jpg');
    }

    15% {
        background: url('../images/Products/electrical-wires-500x500.jpg');

    }

    30% {
        background: url('../images/Products/Screen5.png');
    }

    45% {
        background: url('../images/Products/field-instrumentation-produ-500x500.jpg');
    }

    60% {
        background: url('../images/Products/plc-software-500x500.png');
    }

    75% {
        background: url('../images/Products//PLC.jpg');
    }

    90% {
        background: url('../images/Products/download.jpg');
    }

    100% {
        background: url('../images/Products/networking-accessories-500x500.jpg');
    }
}

/* ServiceDisplay Section strts here */

#ServiceDisplay {
    width: var(--content-width);
    min-height: calc(4*var(--content-height));
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2rem;
    position: relative;
    overflow: hidden;
}

#ServiceDisplay h2 {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    border-radius: 2.5rem 2.5rem 0 0;
    padding: .5rem;
}

#ServiceDisplay .serviceSection1 {
    justify-self: end;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 2rem;
}


#ServiceDisplay .serviceSection2 {
    justify-self: start;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 2rem;
}

#ServiceDisplay .logoSection {
    border-right: 2px solid var(--theme-color1);
    border-left: 2px solid var(--theme-color1);
}

#ServiceDisplay .logoSection img {
    height: 35rem;
    width: 100%;
}

.serviceitem {
    display: flex;
    width: 100%;

}

#ServiceDisplay .serviceitemContainer {
    background-color: transparent;
    transition: background-color 10s ease-in-out;
}

#ServiceDisplay .serviceitemContainer :hover {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
}

.serviceitem img {
    padding: 1rem;
}

.serviceitem .serv_desc {
    display: flex;
    flex-direction: column;
}

.serviceitem .serv_icon p {
    font-size: var(--font-size-p-);

}

.serviceitem .serv_desc p {
    font-size: var(--font-size-p-);

}

.serviceitem .serv_icon h4 {
    font-size: 3rem;
}

.serviceitem .serv_desc h4 {
    font-size: 3rem;
}


/* SolutionDemo Section strts here */
#solutionSection {
    width: var(--content-width);
    min-height: calc(3*var(--content-height));
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

#solutionSection .solutionSection_intro h2 {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    border-radius: 2.5rem 2.5rem 0 0;
    padding: .5rem;
}

#solutionSection .solutionSection_intro p {
    font-size: var(--font-size-p-);
}

#solutionSection .solutionSection_intro p .bold {
    font-size: var(--font-size-p-);
    font-weight: bold;
}

#solutionSection .solutionSection_solutions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5rem;

}

.solutionItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutionItem .sol_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solutionItem .sol_desc h2 {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    border-radius: 2.5rem 2.5rem 0 0;
    padding: .5rem;
}

.solutionItem .sol_desc p {
    font-size: var(--font-size-p-);

}

.solutionSection_solutions img {
    height: 10rem;
    width: 100%;
}

/* About US starts here */
/* hero Image */
#heroimage {
    height: calc(1.5*var(--content-height));
}

#heroimage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.productpage #heroimage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0rem -30rem;
}

/* equal section 2 base class */
.eqsec2 {
    width: var(--content-width);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    column-gap: 1rem;
    margin: auto;
    margin-top: 2rem;
}

.eqsec2 ul {
    width: 100%;
    padding: 0 4rem;
    text-align: left;
}

.eqsec2 li {
    font-size: 2rem;

}

.eqsec2 li .boldtext {
    font-size: 2rem;
    font-weight: bold;
}

/* .eqsec2 #sec1 , #sec2 p{
} */
.eqsec2 img {
    border-radius: 2.5rem;
    max-width: 100%;
    object-fit: cover;
}

.eqsec2 h2 {
    /* border:1px solid; */
    background-color: var(--theme-color1);
    border-radius: 2.5rem 2.5rem 0 0;
    padding: 0.5rem;
    color: white;
    text-align: center;
    margin: 0rem;
    font-size: var(--font-size-sm-heading);

}

/* about us eq sec */
#aboutus .eqsec2 {
    width: var(--content-width);
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 1rem;
    margin: auto;
    margin-top: 2rem;
}

#aboutus .eqsec2 p {
    font-size: var(--font-size-p-);
}

#aboutus .eqsec2 p .boldtext {
    font-size: var(--font-size-p-);
    font-weight: bold;
}

#aboutinovace .eqsec2 {
    width: var(--content-width);
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 1rem;
    margin: auto;
    margin-top: 2rem;
}


#aboutinovace .eqsec2 .sec2 {
    align-self: center;
    justify-self: center;
}

#aboutinovace .eqsec2 .sec2 img {
    width: 100%;
    height: 100%;
    object-fit: fill
}

#aboutinovace .eqsec2 p {
    font-size: var(--font-size-p-);
}

#aboutinovace .eqsec2 p .boldtext {
    font-size: var(--font-size-p-);
    font-weight: bold;
}

/* director desk eq sec */
#directordesk {
    margin-bottom: 2rem;
}

#directordesk .eqsec2 {
    width: var(--content-width);
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    column-gap: 1rem;
    margin: auto;
    margin-top: 2rem;
}

#directordesk .eqsec2 img {
    border-radius: 2.5rem;
    max-width: 100%;
    object-fit: cover;
}

#directordesk ul li {
    font-size: var(--font-size-p-);
}


/* services page starts here */
.serv h2 {
    margin: 2rem;
    color: var(--theme-color1);
    font-size: var(--font-size-s-heading);
}

#servicebox {
    display: grid;
    width: var(--content-width);
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
    margin: auto;
}

.services {
    height: 29rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

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

.flipboxfront h2 {
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    line-height: 3rem;
    width: 100%;
    font-size: var(--font-size-sm-heading);
    background-color: rgba(39, 43, 103, 0.8);
    color: var(--theme-color4);
    text-align: center;
}

#flipbox {
    background-color: transparent;
    border: .2rem solid var(--theme-color1);
    perspective: 100rem;
}

.flipboxinner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

#flipbox:hover .flipboxinner {
    transform: rotateY(180deg);
    /* -webkit-transform: rotateY(180deg); */
}


.flipboxfront,
.flipboxback {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flipboxback {
    background-color: var(--theme-color2);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    transform: rotateY(180deg);
}

.flipboxback h3 {
    font-size: var(--font-size-sm-heading);
}

.flipboxback p {
    width: 95%;
    margin: auto;
    margin-top: 1rem;
    text-align: left;
    font-size: var(--font-size-p-);
}

.flipboxback ul {
    padding-left: 2rem;
}

.flipboxback li {
    text-align: left;
    font-size: 1.6rem;

}

/* products page starts here */
.productpage h2 {
    margin: 2rem;
    font-size: var(--font-size-sm-heading);
    color: var(--theme-color1);
}

#productbox {
    display: grid;
    width: var(--content-width);
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
    margin: auto;
}

.products {
    height: 20rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.products .flipboxfront img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0rem;
}

.products .flipboxfront h3 {
    position: absolute;
    left: 0rem;
    bottom: 0rem;
    line-height: 3rem;
    width: 100%;
    font-size: var(--font-size-sm-heading);
    background-color: rgba(39, 43, 103, 0.8);
    color: var(--theme-color4);
    text-align: center;
}




/* clientele page starts here */
#clientele {
    width: var(--content-width);
    margin: auto;

}

#clientele h2 {
    text-align: center;
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    font-size: var(--font-size-sm-heading);
    border-radius: 2.5rem 2.5rem 0 0;
}

#clientele p {
    font-size: var(--font-size-p-);
}

#pointing {
    font-size: 2rem;
}

#clientsl {
    max-width: var(--content-width);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2rem;
}

.clients {
    margin-top: 2rem;
    height: 25rem;
    background-color: var(--theme-color4);
    border: 1px solid var(--theme-color1);
    box-shadow: .3rem .5rem var(--theme-color1);
    position: relative;
}

.clients:hover {
    box-shadow: .5rem .7rem .2rem #272b67;
}

.clients img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.clients h3 {
    background-color: rgba(39, 43, 103, 0.5);
    color: var(--theme-color4);
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: var(--font-size-sm-heading);
}

/* projects page starts here */

.projectsection h2 {
    font-size: var(--font-size-sm-heading);
    color: var(--theme-color1);
    margin: 2rem;
}

#projectlist {
    max-width: var(--content-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.projects {
    height: var(--content-height);
    margin-bottom: 2rem;
}

#pflipbox {
    border: .2rem solid #272b67;
    perspective: 100rem;
}

.pflipboxinner {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    font-size: 1rem;
    position: relative;
}

#pflipbox:hover .pflipboxinner {
    transform: rotateX(180deg);
    /* -webkit-transform: rotateY(180deg); */
}

.pflipboxfront,
.pflipboxback {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pflipboxfront {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
}

.pflipboxfront h3 {
    font-size: var(--font-size-sm-heading);
    color: var(--theme-color4);
    font-weight: bold;
    margin-top: 3rem;
}

.pflipboxback {
    display: flex;
    justify-content: space-between;
    background-color: var(--theme-color2);
    color: var(--theme-color4);
    transform: rotateX(180deg);
}

.pflipboxback div h3 {
    font-size: var(--font-size-p-);

}

.pflipboxback .details {
    width: 100%;
    margin: 1rem auto;
    font-size: var(--font-size-p-);
}

.logoleft {
    position: fixed;
    left: 0;
    top: 0;
    width: 10rem;
    height: 9.5rem;
}

.logoright {
    position: fixed;
    right: 0.5rem;
    top: 0rem;
    width: 10rem;
    height: 9.5rem;

}

/* career Page Starts Here */
.career h2 {
    font-size: var(--font-size-m-heading);
    color: var(--theme-color3);
    text-align: center;
    width: var(--content-width);
    min-height: 70rem;
    margin: auto;
    margin-top: 2rem;
    background-color: var(--theme-color4);
    box-shadow: var(--box-shadow-ld);
    border-radius: 2.5rem;

}

#vaccancies {
    width: var(--content-width);
    height: auto;
    margin: auto;
    margin-top: 2rem;
    font-size: 3rem;
    box-shadow: var(--box-shadow-ld);
    border-radius: 2.5rem;
    padding: 2rem;
    background-color: var(--theme-color4);

}

#vaccancies .jobs h1 {
    font-weight: bold;
    font-size: var(--font-size-sm-heading);
}

#vaccancies .jobs ul li {
    font-size: var(--font-size-p-);
    list-style: none;
    padding-left: 2rem;
}



/* contact form tart here*/

#contactus {
    width: var(--content-width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    height: fit-content;
    background-color: azure;
    margin: auto;
    margin-top: 2rem;
    border-radius: 2.5rem 2.5rem;
}

#addsec {
    margin: 5rem;

}

#addsec li h3 {
    font-size: var(--font-size-s-heading);
    color: var(--theme-color1);
    margin-bottom: 2rem;
    letter-spacing: .3rem;
}

#addsec li {
    list-style: none;
    font-size: var(--font-size-p-);
    margin-bottom: 2rem;
    letter-spacing: .1rem;
    color: var(--theme-color1);
    font-weight: 400;
}

#addsec li a {
    font-size: var(--font-size-p-);
    color: var(--theme-color1);
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
}

#addsec li a:visited {
    text-decoration: none;
    color: var(--theme-color1);
}


#formsec {
    background: linear-gradient(to right, #272B67, azure);
    border-radius: 2.5rem 0 0 2.5rem;
}

#contactform input,
select,
option,
textarea {
    width: 100%;
    font-size: var(--font-size-p-);
    font-weight: bold;
    outline: none;
    padding: .3rem 2rem;
}

#contactform input[type=submit] {
    background-color: var(--theme-color1);
    color: var(--theme-color4);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: .4rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

#contactform input[type=submit]:hover,
#contactform input[type=submit]:active {
    background: linear-gradient(to left, #272B67, azure);
    box-shadow: .2rem .2rem var(--theme-color1);
}

#contactform div {
    padding: 0.8rem;
}

#contactform .btn-area p {
    width: 100%;
    text-align: center;
    display: none;
    font-size: var(--font-size-sm-heading);
    color: var(--theme-color4);
}

/* Carousel base class */
.carousel {
    margin-bottom: 0rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5rem;
    padding: 2rem
}

.carousel-caption h1 {
    font-size: 4rem;
}

.carousel-caption p {
    font-size: 2rem !important;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: calc(5*var(--content-height))
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* rtl:begin:ignore */
.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}

/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 5rem 0;
    /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
    letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */




/* styling for mobile */
@media screen and (max-width: 480.5px) and (min-width: 0px) {
    * {
        font-size: 50%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;

    }

    /* nav bar */
    .navigation {
        background-color: var(--theme-color4);
        min-height: 10rem;
    }

    .navigation #brandimg a img {
        max-width: 28rem;
        max-height: 10rem;
    }

    .navigation #pgnavigate {
        display: none;
    }

    .navigation #smnav {
        display: flex;
    }


    /* footer */
    #shortcuts {
        display: none;
    }


    .btn {
        padding: 2rem 2rem;
        font-size: 1.4rem;
    }

    /*Intro 3 section*/

    #aboutinovace .eqsec2 {
        display: block;
    }

    #aboutinovace .eqsec2 .sec1 {
        width: 100%;
    }

    #aboutinovace .eqsec2 .sec2 {
        display: none;

    }

    #ServiceDisplay {
        display: flex;
        flex-direction: column;
    }

    #ServiceDisplay .logoSection {
        display: none;
    }

    .serviceitem img {
        padding: 1rem;
        height: 8rem;
    }

    #solutionSection .solutionSection_solutions {
        display: flex;
        flex-direction: column;
    }

    #whyus .eqsec2 {
        display: block;

    }

    #whyus .eqsec2 .sec1 {
        display: none;
    }

    #whyus .eqsec2 .sec2 {
        width: 100%;
    }




    #clientlist img {
        position: relative;
        top: 2rem;
    }

    footer {
        margin-top: 2rem;
    }


    #servicebox {
        grid-template-columns: 1fr;
    }

    .services {
        height: 22rem;
    }


    #clientsl {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 2rem;
    }

    #contactus {
        grid-template-columns: 1fr;
        column-gap: 2rem;
    }

    #addsec li h3 {
        margin-bottom: 1rem;
    }

    #addsec {
        margin: 1rem auto;

    }

    #formsec {
        background: linear-gradient(to bottom, #272B67, azure);
        border-radius: 2.5rem 0 0 2.5rem;
    }

    #contactform input[type=submit]:hover,
    #contactform input[type=submit]:active {
        background: linear-gradient(to top, #272B67, azure);
    }

    .career h2 {
        font-size: 3rem;
        min-height: 70rem;
    }










}

/* styling for ipad */
@media screen and (max-width: 734px) and (min-width: 480.5px) {
    * {
        font-size: 55%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

    header {
        margin-bottom: 10rem;
    }

    .navigation {
        background-color: var(--theme-color4);
        max-height: 9rem;
    }

    .navigation #brandimg a img {
        max-width: 25rem;
        max-height: 8rem;
    }

    .navigation #pgnavigate {
        display: none;
    }

    .navigation #smnav {
        display: flex;
    }


    #clientlist img {
        margin: 0em 3rem 0 3rem;
        width: 10rem;
        height: 10rem;
        position: relative;
        top: 0rem;
    }

    /*Intro section*/


    /*Intro 3 section*/

    #aboutinovace .eqsec2 {
        display: block;
    }

    #aboutinovace .eqsec2 .sec1 {
        width: 100%;
    }

    #aboutinovace .eqsec2 .sec2 {
        display: none;

    }

    #ServiceDisplay {
        display: flex;
        flex-direction: column;
    }

    #ServiceDisplay .logoSection {
        display: none;
    }

    .serviceitem img {
        padding: 1rem;
        height: 8rem;
    }

    #solutionSection .solutionSection_solutions {
        display: flex;
        flex-direction: column;
    }

    #whyus .eqsec2 {
        display: block;

    }

    #whyus .eqsec2 .sec1 {
        display: none;
    }

    #whyus .eqsec2 .sec2 {
        width: 100%;
    }



    /* footer */
    #shortcuts .sect a,
    #shortcuts .sect2 a {
        font-size: 1.2rem;
        color: var(--theme-color4);
        text-align: left;
        padding-left: 1rem;
    }

    #servicebox {
        grid-template-columns: 1fr;
    }

    .services {
        height: 22rem;
    }


    #clientsl {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #contactus {
        grid-template-columns: 1fr;
        column-gap: 2rem;
    }

    #addsec li h3 {
        margin-bottom: 1rem;
    }

    #addsec {
        margin: 1rem auto;

    }

    #formsec {
        background: linear-gradient(to bottom, #272B67, azure);
        border-radius: 2.5rem 0 0 2.5rem;
    }

    #contactform input[type=submit]:hover,
    #contactform input[type=submit]:active {
        background: linear-gradient(to top, #272B67, azure);
    }

    .career h2 {
        font-size: 3rem;
        min-height: 20rem;
    }

}

/* styling for other tablets */

@media screen and (max-width: 767px) and (min-width: 735px) {
    * {
        font-size: 55%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

    header {
        margin-bottom: 10rem;
    }

    .navigation {
        background-color: var(--theme-color4);
        max-height: 9rem;
    }

    .navigation #brandimg a img {
        max-width: 25rem;
        max-height: 8rem;
    }

    .navigation #pgnavigate {
        display: none;
    }

    .navigation #smnav {
        display: flex;
    }


    #clientlist img {
        margin: 0em 3rem 0 3rem;
        width: 10rem;
        height: 10rem;
        position: relative;
        top: 0rem;
    }

    /*Intro 3 section*/

    #aboutinovace .eqsec2 {
        display: block;
    }

    #aboutinovace .eqsec2 .sec1 {
        width: 100%;
    }

    #aboutinovace .eqsec2 .sec2 {
        display: none;

    }

    #ServiceDisplay {
        display: flex;
        flex-direction: column;
    }

    #ServiceDisplay .logoSection {
        display: none;
    }

    .serviceitem img {
        padding: 1rem;
        height: 8rem;
    }

    #solutionSection .solutionSection_solutions {
        display: flex;
        flex-direction: column;
    }

    #whyus .eqsec2 {
        display: block;

    }

    #whyus .eqsec2 .sec1 {
        display: none;
    }

    #whyus .eqsec2 .sec2 {
        width: 100%;
    }


    /* footer */
    #shortcuts .sect a,
    #shortcuts .sect2 a {
        font-size: 1.5rem;
        color: var(--theme-color4);
        text-align: left;
        padding-left: 1rem;
    }

    #servicebox {
        grid-template-columns: 1fr;
    }

    .services {
        height: 22rem;
    }

    .flipboxback ul {
        padding-left: 4rem;
    }

    .pflipboxback .details {
        font-size: 1.2rem;
    }

    #productbox {
        grid-template-columns: 1fr 1fr;
    }

    #clientsl {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #contactus {
        grid-template-columns: 1fr;
        column-gap: 2rem;
    }

    #addsec li h3 {
        margin-bottom: 1rem;
    }

    #addsec {
        margin: 1rem auto;

    }

    #formsec {
        background: linear-gradient(to bottom, #272B67, azure);
        border-radius: 2.5rem 0 0 2.5rem;
    }

    #contactform input[type=submit]:hover,
    #contactform input[type=submit]:active {
        background: linear-gradient(to top, #272B67, azure);
    }

    .career h2 {
        font-size: 3rem;
        min-height: 20rem;
    }


}


/* styling for Laptops */
@media screen and (max-width: 1068px) and (min-width: 768px) and (max-height: 733px) and (min-height: 0px) {
    * {
        font-size: 55%;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

    .navigation #pgnavigate {
        display: flex;
        margin-right: 4rem;
    }

    .navigation #pgnavigate .navitem {
        min-width: calc(100%/7);
        margin-right: 1.5rem;
    }

    .navigation #pgnavigate .navitem a {
        font-size: var(--font-size-p-);
    }

    .navigation #smnav {
        display: none;
    }

    /* carousel */
    /* #carousel .image-container .slider p{
        font-size: 2rem;
        line-height: 3rem;
        top:50%;
        transform: translatey(-40%);
    } */
    .btn {
        padding: 2rem 1rem;
        font-size: 1.4rem;
    }

    .eqsec2 li {
        font-size: var(--font-size-p-);

    }

    .eqsec2 li .boldtext {
        font-size: var(--font-size-p-);
        font-weight: bold;
    }

    .eqsec2 img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    #servicebox {
        grid-template-columns: 1fr 1fr;
    }

    .services {
        height: 25rem;
        margin-top: 1rem;
    }

    .flipboxfront img {
        object-fit: cover;
        object-position: 0;
    }

    .flipboxback p {
        margin-top: 1rem;
        text-align: left;
        font-size: 1.2rem;
    }

    .flipboxback li {
        font-size: 1.2rem;
    }

    #clientsl {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .clients h3 {
        font-size: var(--font-size-p-);
    }

}

/* styling for Desktop */
@media screen and (max-width: 1440px) and (min-width: 1069px) and (max-height: 775px) and (min-height: 0px) {
    * {
        font-size: 62.5%;
        --content-height: 10rem;
        --full-width: 100%;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

    .navigation #pgnavigate {
        display: flex;
        margin-right: 3rem;
    }

    .navigation #pgnavigate .navitem {
        min-width: calc(100%/7);
        margin-right: 1.2rem;
    }

    .navigation #pgnavigate .navitem a {
        font-size: 1.9rem;
    }

    .navigation #smnav {
        display: none;
    }

    /* carousel */
    /* #carousel .image-container .slider p{
        font-size: 3rem;
        line-height: 5rem;
        top:50%;
        transform: translatey(-50%);
    } */
    .btn {
        padding: 2rem 1rem;
        font-size: 1.4rem;
    }

    .eqsec2 li {
        font-size: var(--font-size-p-);
    }

    .eqsec2 li .boldtext {
        font-size: var(--font-size-p-);
        font-weight: bold;
    }

    .eqsec2 img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    #aboutus .eqsec2 p {
        font-size: 1.3rem;
    }

    #cta p {
        font-size: 1.4rem;
    }

    #servicebox {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .services {
        height: 25rem;
        margin-top: 2rem;
    }

    .flipboxfront img {
        object-fit: cover;
        object-position: 0;
    }

    .flipboxback p {
        margin-top: 1rem;
        text-align: left;
        font-size: 1.3rem;
    }

    .flipboxback li {
        font-size: 1.3rem;
    }

    #clientsl {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .clients h3 {
        font-size: var(--font-size-sm-heading);
    }

    #productbox {

        grid-template-columns: 1fr 1fr 1fr;
    }


}

/* styling for Large Desktop */
@media screen and (max-width: 1900px) and (min-width: 1601px) and (max-height: 775px) and (min-height: 0px) {
    * {
        font-size: 70%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

}

@media screen and (max-width: 2100px) and (min-width: 1900px) {
    * {
        font-size: 77.5%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

}

@media screen and (max-width: 2300px) and (min-width: 2100px) {
    * {
        font-size: 87%;
        --content-height: 10rem;
        --content-width: 95%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

}

@media screen and (max-width: 1441000px) and (min-width: 2300px) {
    * {
        font-size: 100%;
        --content-height: 10rem;
        --content-width: 80%;
        --box-radius-content: 2.5rem;
        --box-radius-button: 1.5rem;
        --font-size-m-heading: 3.6rem;
        --font-size-s-heading: 2.4rem;
        --font-size-sm-heading: 2rem;
        --font-size-p-: 1.6rem;
        --box-shadow-ld: 0.2rem 0.2rem var(--theme-color1);
        --box-shadow-ld-lg: 0.5rem 0.5rem var(--theme-color1);
        --content-padding-lg: 2rem;
        --content-padding-sm: 1rem;
    }

}