html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.stopScroll {
    max-height: 100vh;
    overflow: hidden;
}

body {
    margin: 0;
    font-family: Avenir, sans-serif;
    font-weight: 300;
    color: #4f4e4e;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

img {
    display: block;
}

body {
    position: relative;
}

.text *,
p,
p font,
a.button,
body,
h5 {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    font-family: Avenir, sans-serif;
    margin-block-start: 0;
    margin-block-end: 0;
}

h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    font-family: Avenir, sans-serif;
    margin-block-start: 0;
    margin-block-end: 0;
}

h4 {
    font-size: 24px;
    line-height: 28px;
    font-family: Avenir, sans-serif;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
}

.products-template-default .text *,
.products-template-default p,
.products-template-default a.button {
    font-size: 16px;
    line-height: 25px;
}

.products-template-default h3,
.products-template-default h4,
.products-template-default h5 {
    margin-top: 20px;
}

h3,
.text h3,
.title h3,
h3 font {
    font-size: 28px;
    line-height: 32px;
    font-family: Avenir, sans-serif;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
    color: #004679;
}

font {
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}

h2,
.text h2,
.title h2,
h2 span {
    font-size: 32px;
    line-height: 35px;
    font-family: Avenir, sans-serif;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
    color: #004679;

}

.title *,
.text h1,
h1 {
    font-size: 40px;
    line-height: 40px;
    font-family: Avenir, sans-serif;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
    color: #004679;

}

strong *,
b *,
strong,
b {
    font-weight: bold !important;
}


/* snap scrolling feature 

body {
    scroll-snap-align: start;
    scroll-snap-type: y mandatory;
    scroll-padding: 95px;
    max-height: 100vh;
    overflow: scroll;
}

body>* {
    scroll-snap-align: start;
}


/* ------- */

.topHeader {
    width: calc(90% - 200px);
    padding: 10px 200px 10px 10%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.topHeader>a.logo img {
    width: 130px;
    transition: all 0.5s ease-in-out;
}

.topHeader.top>a.logo img {
    width: 150px;
}

.topHeader .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(100% - 150px);
}

.topHeader .links a {
    color: #0F273B;
    text-decoration: none;
    margin: 0 15px;
}

.topHeader .links .productsDropdown .dropdownHeader {
    width: calc(100% - 80px);
    padding: 40px;
    background: #102e4d;
    color: white;
}

.topHeader .links .productsDropdown .dropdownHeader>div {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.topHeader .links .productsDropdown .dropdownHeader.four .single:nth-child(2) {
    padding-right: 300px;
}

.topHeader .links .productsDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    width: 100%;
}

.topHeader .links .productsDropdown .dropdownHeader .single {
    width: 32%;
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.topHeader .links .productsDropdown .dropdownHeader.four .single {
    width: 31%;
    margin-left: 2%;
    max-width: fit-content;
}

.topHeader .links .productsDropdown .dropdownHeader.four .single#innerHeaderDrop {
    position: relative;
    left: -140px;
}

.topHeader .links .productsDropdown .dropdownHeader .single>p {
    color: #f0f5fa;
    margin-bottom: 10px;
}

.topHeader .links .productsDropdown .dropdownHeader .single a,
.topHeader .links .productsDropdown .dropdownHeader .single .lower p {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    display: block;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
}

.topHeader .links .productsDropdown .dropdownHeader .single a:hover,
.topHeader .links .productsDropdown .dropdownHeader .single .lower p:hover {
    text-decoration: underline;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown {
    position: relative;
    width: 100%;
    max-width: 200px;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown:hover {
    text-decoration: none;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown>p {
    width: fit-content;
    position: relative;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown>p::after {
    content: "";
    background: url(/wp-content/uploads/2024/05/Arroww.png);
    width: 15px;
    height: 15px;
    position: absolute;
    top: 2px;
    right: -20px;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: all 0.2s linear;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown:hover>p::after {
    transform: rotate(90deg);
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown p {
    font-size: inherit;
    line-height: inherit;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown p:hover {
    text-decoration: underline;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown .lower {
    position: absolute;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    width: 300px;
    left: calc(100% + 0px);
    top: 0;
}

.topHeader .links .productsDropdown .dropdownHeader .single a.dropdown:hover .lower {
    max-height: 250px;
    overflow-y: scroll;
}

.topHeader .links .productsDropdown .single:nth-child(6) .inner,
.topHeader .links .productsDropdown .single:nth-child(3) .inner {
    bottom: 0;
}

.topHeader .links .productsDropdown.open {
    max-height: 750px;
}

.topHeader .links .productsDropdown>.doubleoverflow {
    background: #0475ac;
    padding: 0 15px;
    transition: all 0.8s ease-in-out;
    width: fit-content;
}

.topHeader .links .productsDropdown.open>.doubleoverflow {
    max-height: 750px;
    padding: 15px 15px;
    border: 1px solid white;
}

.topHeader .links .productsDropdown .single {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.topHeader .links .productsDropdown .single:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.topHeader .links .productsDropdown .single:last-child .inner {
    bottom: 0;
}

.topHeader .links .productsDropdown .single .outer {
    color: white;
    cursor: pointer;
}

.topHeader .links .productsDropdown .single .inner {
    position: absolute;
    left: 264px;
    margin-top: -35px;
    width: 300px;
    background: #0274ac;
    padding: 20px 0;
    z-index: 10;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    max-width: 0px;
}

.topHeader .links .productsDropdown .single .inner .sub {
    width: 300px;
}

.topHeader .links .productsDropdown .single:hover .inner {
    max-width: 300px;
    padding: 20px;
    border: 1px solid white;
}

.topHeader .links .productsDropdown .single .outer:hover,
.topHeader .links .productsDropdown .single .sub:hover {
    text-decoration: underline;
}

.topHeader .links .productsDropdown .single .sub {
    position: relative;
    margin: 0 0 5px 10px;
    cursor: pointer;
    color: white;
}

.topHeader .links .productsDropdown .single .sub:nth-child(2) {
    margin-top: 5px;
}

.topHeader .links .productsDropdown .single .sub:last-child {
    margin-bottom: 0px;
}

.topHeader .links .productsDropdown .single .sub::before {
    content: "";
    width: 7px;
    height: 2px;
    background: white;
    display: block;
    position: absolute;
    left: -10px;
    top: calc(50% - 3px);
}

.header {
    width: 80%;
    padding: 10vh 10%;
    min-height: 400px;
    max-height: 2000px;
    height: calc(80vh - 180px);
    display: flex;
    align-items: flex-end;
    position: relative;
}

.header .rotatingBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(transparent, #0f273b63, #0f273b9c);
}

.header .rotatingBg .info {
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
    position: absolute;
    z-index: 2;
}

.header .rotatingBg .info .inner {
    width: 80vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    bottom: 100px;
    left: 10%;
}

.header .rotatingBg .info.selected {
    z-index: 1;
    opacity: 1;
}

.header .info .text {
    width: 55%;
    color: white;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 48px;
    font-size: 40px;
}

.header .info .text font {
    line-height: 48px;
    font-size: 40px;
}

.header .info .text a {
    color: #0C59A0;
    padding: 8px 30px 4px 30px;
    background: white;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.1s linear;
}

.header .info .text a:hover {
    color: white;
    background: #0C59A0;
}

.header .info .diagram {
    width: 650px;
    max-width: 40%;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header .info .diagram video {
    width: 100%;
    background: #ffffffad;
    border-radius: 5px;
}

.header .info .diagram img {
    width: 100%;
    background: #ffffffad;
    object-fit: contain;
    border-radius: 5px;
    margin: 10px 0;
}

.follower {
    width: 80%;
    padding: 20px 10%;
    background: #F0F5FA;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.follower>div {
    max-width: 1380px;
    margin: 0 auto;
}

.follower>div>p {
    max-width: 25%;
    font-size: 17px;
    letter-spacing: 2px;
}

.follower .links {
    width: 70%;
    display: flex;
    justify-content: space-between;
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 15px 0px 10px 0px;
}

.follower .links a {
    color: #0C59A0;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    width: 25%;
    text-align: center;
    transition: color 0.2s linear 0.5s;
}

.follower .links a.selected {
    color: white;
}

.follower .links .background {
    position: absolute;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #42B9BF, #0C59A0);
    left: 0%;
    border-radius: 25px;
    top: 0;
    transition: all 0.8s ease-in-out;
}

.follower .links .background.series {
    left: 0%;
}

.follower .links .background.function {
    left: 25%;
}

.follower .links .background.industry {
    left: 50%;
}

.follower .links .background.search {
    left: 75%;
}

.aboutExplore {
    width: 100%;
    padding: 100px 0;
}

.aboutExplore>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    width: 80%;
    max-width: 1380px;
    margin: 0 auto;
}

.aboutExplore img {
    width: 40%;
    object-fit: cover;
    border-radius: 25px;
}

.aboutExplore .text {
    width: 55%;
}

.text p {
    margin: 10px 0;
}

.text h3 {
    margin-bottom: 20px;
}

.text a:not(.standard),
.button {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 20px 1px 20px;
    background: linear-gradient(to right, #42B9BF, #0C59A0);
    border-radius: 25px;
    font-size: 16px;
    display: block;
    width: fit-content;
    margin-top: 20px;
    cursor: pointer;
}

a.standard {
    color: #0C59A0;
}

.searchExplore {
    background: #F0F5FA;
    width: 75%;
    max-width: 850px;
    margin: 0px auto 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 2.5%;
    color: #004679;
    border-radius: 10px;
}

.searchExplore .left {
    width: 50%;
}

.searchExplore .right {
    width: 300px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 45%;
}

.searchExplore .right a {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    color: #004679;
    text-decoration: none;
}

.searchExplore .right a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.searchExplore .searchProductsArea {
    width: 100%;
    margin-top: 0px;
    transition: all 0.8s ease-in-out;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.searchExplore .searchProductsArea a {
    width: 23%;
    max-width: 0px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: flex-start;
    color: #004679;
    text-decoration: none;
    justify-content: space-between;
}

.searchExplore .searchProductsArea a.selected {
    max-width: 23%;
    margin: 10px 1%;
    max-height: 60px;
}

.searchExplore .searchProductsArea a img {
    width: 75px;
    height: 50px;
    object-fit: contain;
}

.searchExplore .searchProductsArea a p {
    font-size: 15px;
    line-height: 15px;
    width: calc(100% - 85px);
}

.searchExplore .searchProductsArea a:hover {
    text-decoration: underline;
}

.searchExplore.searching .searchProductsArea {
    margin-top: 20px;
}

.seriesExplore {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(#e7edf5, white, #e7edf5);
}

.seriesExplore>div {
    width: 80%;
    max-width: 1380px;
    margin: 0px auto;
}

.seriesExplore h2 {
    color: #004679;
}

.seriesExplore>p {
    color: #4f4e4e;
}

.seriesExplore .inner {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.seriesExplore .inner .single {
    width: 14%;
    padding: 0 1%;
    border-left: 1px solid #8080803b;
    margin-bottom: 50px;
    color: #0F273B;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.seriesExplore .inner .single:first-child {
    border-left: 0px;
}

.seriesExplore .inner .single .button {
    margin: 20px auto;
    font-size: 13px;
    padding: 3px 20px 0px 20px;
    letter-spacing: 2px;
}

.seriesExplore .inner .single .button font {
    font-size: 13px;
}

.seriesExplore .inner .single img {
    width: 70px;
    object-fit: contain;
    margin: 0 auto 15px auto;
    object-position: 50% 50%;
}

.seriesExplore .inner .single h3,
.seriesExplore .inner .single h3 font {
    font-size: 22px;
    line-height: 25px;
    font-weight: 200;
}

.seriesExplore .inner .single:nth-child(1) h3 {
    color: #bfd23e;
}

.seriesExplore .inner .single:nth-child(2) h3 {
    color: #53a134;
}

.seriesExplore .inner .single:nth-child(3) h3 {
    color: #017f8a;
}

.seriesExplore .inner .single:nth-child(4) h3 {
    color: #0d59a0;
}

.seriesExplore .inner .single:nth-child(5) h3 {
    color: #004779;
}

.seriesExplore .inner .single:nth-child(6) h3 {
    color: #0f273c;
}

.seriesExplore .inner .single p,
.seriesExplore .inner .single p font {
    font-size: 14px;
    line-height: 18px;
}

.seriesExplore .inner .single p:last-child {
    min-height: 80px;
}

.functionalityExplore {
    width: 80%;
    padding: 100px 10%;
    background: #102E4D;
    color: white;
}

.functionalityExplore .mWidth>a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
}

.functionalityExplore .mWidth>a::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: -27px;
    top: calc(50% - 10px);
    display: block;
    background: url(/wp-content/uploads/2024/05/Arroww.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: all 0.2s ease-in-out;
}

.functionalityExplore>.mWidth {
    max-width: 1380px;
    margin: 0 auto;
}

.functionalityExplore .inner {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.functionalityExplore .inner .single {
    width: 21%;
    margin: 0 1%;
    padding: 10px;
    border-radius: 25px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.functionalityExplore .inner .single img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin: 10px auto;
}

.functionalityExplore .inner .single>p {
    font-size: 15px;
    font-weight: 700;
}

.functionalityExplore .inner .single .dropdown {
    width: 100%;
    margin-top: 20px;
    border-radius: 25px;
    background: white;
}

.functionalityExplore .inner .single.selected .dropdown {
    border-radius: 15px;
}

.functionalityExplore .inner .single .dropdown .click {
    width: calc(100% - 20px);
    text-align: left;
    background: linear-gradient(to right, #42B9BF, #0C59A0);
    border-radius: 25px;
    padding: 8px 10px 3px 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.1s linear;
    color: white;
}

.functionalityExplore .inner .single .dropdown .click::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    background: url(/wp-content/uploads/2024/05/Arroww.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: all 0.2s ease-in-out;
}

.functionalityExplore .inner .single .dropdown:hover .click::after,
.functionalityExplore .inner .single.selected .dropdown .click::after {
    transform: rotate(90deg);
}

.functionalityExplore .inner .single .dropdown .dropped {
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 0 0 10px 10px;
}

.functionalityExplore .inner .single .dropdown .dropped a {
    display: block;
    width: calc(100% - 30px);
    text-align: left;
    text-decoration: none;
    color: #0F273B;
    padding: 6px 15px 6px 15px;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid #80808036;
}

.functionalityExplore .inner .single .dropdown .dropped a:hover {
    font-weight: 600;
}

.functionalityExplore .inner .single .dropdown .dropped a::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 0px;
    background: url(/wp-content/uploads/2024/04/Group-476@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: none;
}

.functionalityExplore .inner .single.selected .dropdown .dropped {
    max-height: 100px;
    overflow-y: scroll;
}

.industriesExplore {
    width: 80%;
    max-width: 1380px;
    margin: 0px auto;
    padding: 100px 0;
}

.industriesExplore .inner {
    width: 100%;
    margin: 40px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.industriesExplore .inner>.single {
    cursor: pointer;
    width: 19%;
    margin: 0 1.5% 30px 1.5%;
    border-radius: 25px;
    background: #F0F5FA;
    color: #0F273B;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

.industriesExplore .inner>.single:first-child {
    margin-left: 0px;
}

.industriesExplore .inner>.single:last-child {
    margin-right: 0px;
}

.industriesExplore .inner>.single:hover {
    background: #0F273B;
    color: #F0F5FA;
}

.industriesExplore .inner>.single>img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    margin-bottom: 10px;
    height: 150px;
    margin-bottom: 0px;
}

.industriesExplore .inner>.single .text {
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 20px 20px;
    display: none;
}

.industriesExplore .inner>.single .text img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.industriesExplore .inner>.single .text p {
    font-size: 14px;
    line-height: 18px;
    display: none;
}

.industriesExplore .inner>.single .text h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 0px;
    font-weight: 700;
}

.industriesExplore .inner>.single .text div {
    width: calc(100% - 65px);
}

.searchExplore .left .searchArea {
    margin-top: 20px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    max-width: 380px;
}

.searchExplore .left .searchArea ::placeholder {
    font-size: 17px;
    color: #0C59A0;
}

.searchExplore .left .searchArea input {
    border: 0px;
    width: 100%;
    font-size: 17px;
    padding: 5px 15px;
    border-radius: 25px;
    color: #0C59A0;
}

.searchExplore .left .searchArea input:focus {
    border: 0px;
    outline: 0px;
}

.searchExplore .left .searchArea .button {
    margin-top: 0px;
    padding: 9px 30px 4px 30px;
    letter-spacing: 2px;
    font-size: 14px;
}

.exploreProducts {
    width: 80%;
    padding: 50px 10%;
    background: #f3f7f9;
    color: #004679;
    display: none;
}

.exploreProducts>h3 {
    margin-bottom: 20px;
}

.exploreProducts .filter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.exploreProducts .filter>div,
.exploreProducts .filter>a {
    width: 22%;
    margin-top: 0px;
    text-align: center;
}

.exploreProducts .filter>.button {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 100;
    padding: 10px 0px 5px 0px;
}

.exploreProducts .filter .option {
    background: white;
    border-radius: 15px;
    padding: 10px 1% 7px 1%;
}

.exploreProducts .filter .option .clickable {
    cursor: pointer;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    padding-right: 25px;
}

.exploreProducts .filter .option .clickable::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: -3px;
    background: url(/wp-content/uploads/2024/04/Group-476@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: all 0.2s ease-in-out;
}

.exploreProducts .filter .option:hover .clickable::after,
.exploreProducts .filter .option.selected .clickable::after {
    transform: rotate(90deg);
}

.exploreProducts .filter .option .dropdown {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}

.exploreProducts .filter .option .dropdown .select {
    width: 100%;
    position: relative;
    margin: 5px 0%;
    text-align: left;
    margin-bottom: 5px;
    border-bottom: 1px solid #8080801f;
    padding: 5px 0;
    cursor: pointer;
}

.exploreProducts .filter .option .dropdown .select::after {
    content: "";
    width: 20px;
    height: 20px;
    background: #8080801c;
    position: absolute;
    border-radius: 3px;
    top: 3px;
    right: 5px;
    transition: all 0.2s linear;
}

.exploreProducts .filter .option .dropdown .select.selected::after {
    background: #0b5ea1;
}

.exploreProducts .filter .option .dropdown .select:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
}

.exploreProducts .filter .option.selected .dropdown {
    max-height: 140px;
    margin-top: 10px;
    overflow-y: scroll;
}

.seriesDisplay {
    width: 80%;
    padding: 50px 10%;
    background: #f0f0f0;
    /*transition: all 1s ease-in-out;*/
    display: grid;
    grid-template-rows: 1fr;
}

.seriesDisplay>div {
    overflow: hidden;
}

.seriesDisplay:not(.filterDisplay) {
    padding: 0px 10%;
    grid-template-rows: 0fr;
}

.seriesDisplay .intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.seriesDisplay .intro img {
    width: 100%;
    max-height: 40vh;
    max-width: 800px;
    margin: 0 auto;
    object-fit: contain;
}

.seriesDisplay .intro .text {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.seriesDisplay.expand .intro .text {
    transition: all 0.8s ease-in-out;
    max-height: 110px;
    overflow: hidden;
}

.seriesDisplay.expand .intro.open .text {
    max-height: 1000px !important;
    overflow-y: scroll;
}

.seriesDisplay .intro .text a {
    padding: 0px;
    background: none;
    border-radius: 0px;
    color: #551a8b;
    font-size: inherit;
    text-decoration: underline;
    font-weight: bold;
    display: inline;
}

.seriesDisplay .intro .text a:hover {
    text-decoration: underline;
}

.seriesDisplay .intro .expand {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 20px;
    background: linear-gradient(to right, #42B9BF, #0C59A0);
    border-radius: 25px;
    font-size: 16px;
    width: fit-content;
    margin: 15px auto;
    max-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: none;
}

.seriesDisplay.expand .intro .expand {
    display: block;
}

.seriesDisplay .productsDisplay {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.seriesDisplay#functionFilterArea .single>.name {
    color: #4f4e4e;
}

.seriesDisplay#functionFilterArea .single:hover {
    outline: 1px solid black;
}

.seriesDisplay#functionFilterArea .intro h3 {
    margin: 0 auto;
}

.productsDisplay .single.hoverable {
    position: relative;
    overflow: visible;
    /*outline: 1px solid #c0d33c;*/
}

.productsDisplay .single.hoverable .diagram .typical {
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid #c0d33c;
    font-size: 16px;
    line-height: 18px;
}

.productsDisplay .single.hoverable .diagram {
    position: absolute;
    bottom: calc(100% + 20px);
    width: 350px;
    padding: 0 20px;
    left: 0;
    background: #ffffff;
    text-align: center;
    color: #4f4e4e;
    border-radius: 25px;
    transition: all 0.4s ease-in-out;
    max-height: 0px;
    overflow: hidden;
    outline: 1px solid transparent;
}

.productsDisplay .single.hoverable:hover .diagram {
    padding: 20px;
    max-height: 500px;
    outline: 2px solid #c0d33c;
}

.productsDisplay .single.hoverable:nth-child(4n) .diagram {
    left: unset;
    right: 0;
}

.productsDisplay .single.hoverable .diagram .selections {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productsDisplay .single.hoverable .diagram .selections a {
    color: #4f4e4e;
    margin: 15px auto 0 auto;
    width: 48%;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.twoSeries .productsDisplay .single.hoverable:hover .diagram {
    outline: 2px solid #53a134;
}

.twoSeries .productsDisplay .single.hoverable .diagram .typical {
    border-top: 1px solid #53a134;
}

.fourSeries .productsDisplay .single.hoverable:hover .diagram {
    outline: 2px solid #017f8a;
}

.fourSeries .productsDisplay .single.hoverable .diagram .typical {
    border-top: 1px solid #017f8a;
}

.fiveSeries .productsDisplay .single.hoverable:hover .diagram {
    outline: 2px solid #024579;
}

.fiveSeries .productsDisplay .single.hoverable .diagram .typical {
    border-top: 1px solid #024579;
}

.productsDisplay .single.hoverable .diagram .selections a:hover {
    text-decoration: underline;
}

.productsDisplay .single.hoverable .diagram .selections a p {
    font-size: 16px;
    line-height: 18px;
}

.productsDisplay .single.hoverable .diagram .selections a img {
    width: 20px;
    margin: 2px calc(50% - 10px);
    background: none;
}

.productsDisplay .single.hoverable:hover>.single {
    outline: 0px;
}

.productsDisplay .single.hoverable .diagram img {
    width: 100%;
    object-fit: contain;
    margin: 10px auto 0px auto;
    background: white;
}

.productsDisplay .single.hoverable>.single {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    background: transparent;
    padding: 0px;
    margin: 0px;
    transition: none;
}

.productsDisplay .single {
    width: 22%;
    max-width: 22%;
    max-height: 500px;
    overflow: hidden;
    transition: all 0.8s ease-in-out, outline 0.1s linear;
    padding: 15px 1%;
    margin: 0 0.5% 15px 0.5%;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
}

#functionFilterArea .allTypes .single {
    max-width: 0px;
    max-height: 0px;
    margin: 0px;
    padding: 15px 0;
}

#functionFilterArea.petrochem .single:not(.petrochemical-controllers),
#functionFilterArea.processcontroller .single:not(.process-controllers) {
    max-width: 0px;
    max-height: 0px;
    margin: 0px;
    padding: 15px 0;
}

.productsDisplay .single>img {
    width: 80%;
    max-width: 200px;
    height: 85px;
    margin: 10px auto 20px auto;
    object-fit: contain;
}

.productsDisplay .single>.name {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.productsDisplay .single .features {
    width: 90%;
    margin: 10px auto 0 auto;
    padding-top: 10px;
    border-top: 1px solid #80808038;
    color: #0F273B;
    display: none;
}

.productsDisplay .single .features .checked {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    display: none;
}

.productsDisplay .single .features .checked p {
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    width: calc(100% - 50px);
}

.productsDisplay .single .features .checked img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    object-fit: contain;
}

.fiveSeries .intro .text,
.fiveSeries .productsDisplay .single>.name {
    color: #004679;
    color: #4f4e4e;
}

.fiveSeries .intro .text h3 {
    font-size: 36px;
    line-height: 38px;
    color: #004679;
}

.fiveSeries .productsDisplay .single:hover {
    outline: 2px solid #004679;
}

.fourSeries .intro .text,
.fourSeries .productsDisplay .single>.name {
    color: #017f8a;
    color: #4f4e4e;
}

.fourSeries .intro .text h3 {
    font-size: 36px;
    line-height: 38px;
    color: #017f8a;
}

.fourSeries .productsDisplay .single:hover {
    outline: 2px solid #017f8a;
}

.twoSeries .intro .text,
.twoSeries .productsDisplay .single>.name {
    color: #53a134;
    color: #4f4e4e;
}

.twoSeries .intro .text h3 {
    font-size: 36px;
    line-height: 38px;
    color: #53a134;
}

.twoSeries .productsDisplay .single:hover {
    outline: 2px solid #53a134;
}

.oneSeries .intro .text,
.oneSeries .productsDisplay .single>.name {
    color: #bfd23e;
    color: #4f4e4e;
}

.oneSeries .intro .text h3 {
    font-size: 36px;
    line-height: 38px;
    color: #bfd23e;
}

.oneSeries .productsDisplay .single:hover {
    outline: 2px solid #bfd23e;
}

.supportingWorld {
    width: 90%;
    padding: 10px 5%;
    background: #102E4D;
    color: white;
    position: relative;
    overflow: hidden;
}

.supportingWorld>div.mapInfo {
    padding: 0px;
    position: absolute;
    width: 80%;
    top: 0px;
    left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supportingWorld>div.mapInfo .singlechoice img {
    width: 315px;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.supportingWorld>div.mapInfo .map {
    background: url(https://contrecdev.wpengine.com/wp-content/uploads/2024/05/UK-MAP-1.png);
    background-size: 71%;
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-color: #112e4d;
    outline: 1px solid white;
    width: 400px;
    top: 10px;
    height: 400px;
    border: 1px solid #112e4d;
    border-radius: 100%;
    transition: all 0s linear;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    z-index: 3;
}

.supportingWorld>div.mapInfo .map>div,
.supportingWorld>div.mapInfo .mapaus>div {
    width: 8px;
    height: 8px;
    background: #91a901;
    position: absolute;
    border-radius: 100%;
    transition: all 0.1s linear;
    cursor: pointer;
}

.supportingWorld>div.mapInfo .mapaus {
    background: url(/wp-content/uploads/2024/06/aus.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #112e4d;
    outline: 1px solid white;
    width: 400px;
    top: 10px;
    height: 400px;
    border: 1px solid #112e4d;
    border-radius: 100%;
    transition: all 0s linear;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    z-index: 3;
}

.supportingWorld>div.mapInfo .map>div:hover {
    transform: scale(1.1);
}

.supportingWorld>div.mapInfo .map>div:nth-child(1) {
    top: 99px;
    left: 227px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(2) {
    top: 336px;
    left: 203px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(3) {
    top: 317px;
    left: 289px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(4) {
    top: 283px;
    left: 250px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(5) {
    position: absolute;
    top: 17%;
    right: 17%;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    background: none;
}

.supportingWorld>div.mapInfo .map>div:nth-child(6) {
    top: 213px;
    left: 260px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(7) {
    top: 228px;
    left: 242px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(8) {
    top: 306px;
    left: 294px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(9) {
    top: 49px;
    left: 152px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(10) {
    top: 136px;
    left: 200px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(11) {
    top: 123px;
    left: 210px;
}

.supportingWorld>div.mapInfo .map>div:nth-child(12) {
    top: 255px;
    left: 276px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(1) {
    top: 20%;
    right: 15%;
    background: none;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(2) {
    top: 139px;
    right: 300px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(3) {
    top: 296px;
    right: 82px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(4) {
    top: 237px;
    right: 324px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(5) {
    top: 293px;
    right: 100px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(6) {
    top: 282px;
    right: 89px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(7) {
    top: 285px;
    right: 76px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(8) {
    top: 282px;
    right: 101px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(9) {
    top: 273px;
    right: 54px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(10) {
    top: 257px;
    right: 142px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(11) {
    top: 261px;
    right: 48px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(12) {
    top: 303px;
    right: 93px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(13) {
    top: 254px;
    right: 327px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(14) {
    top: 248px;
    right: 312px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(15) {
    top: 148px;
    right: 80px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(16) {
    top: 168px;
    right: 186px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(17) {
    top: 306px;
    right: 105px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(18) {
    top: 307px;
    right: 81px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(19) {
    top: 298px;
    right: 70px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(20) {
    top: 162px;
    right: 51px;
}

.supportingWorld>div.mapInfo .mapaus>div:nth-child(21) {
    top: 186px;
    right: 31px;
}

.supportingWorld>div.mapInfo .singlechoice .inner {
    width: calc(100% - 345px);
}

.supportingWorld>div.mapInfo .singlechoice .inner .intro {
    font-weight: 700;
    margin-bottom: 5px;
}

.supportingWorld>div.mapInfo .map>div:hover,
.supportingWorld>div.mapInfo .mapaus>div:hover,
.supportingWorld>div .world div:hover {
    transform: scale(1.5);
}

.supportingWorld>div.mapInfo .singlechoice {
    width: 650px;
    max-width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f1f5fa;
    z-index: 4;
    border-radius: 15px;
    color: #0F273B;
    align-items: stretch;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.supportingWorld>div.mapInfo .singlechoice .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
}

.supportingWorld>div.mapInfo .singlechoice.selected,
.supportingWorld>div.mapInfo .map.selected,
.supportingWorld>div.mapInfo .mapaus.selected {
    opacity: 1;
    pointer-events: all;
}

.supportingWorld>div {
    width: 100%;
    max-width: 1380px;
    padding: 0;
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.supportingWorld>div .text {
    width: 25%;
    padding: 30px 0 115px 0;
    position: relative;
    z-index: 2;
}

.supportingWorld>div .text h1,
.supportingWorld>div .text h2,
.supportingWorld>div .text h3 {
    color: white;
}

.supportingWorld>div .text p {
    font-size: 16px;
    line-height: 20px;
}

.supportingWorld>div .text .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.supportingWorld>div .text .buttons .single {
    display: flex;
    justify-content: flex-start;
    width: 48%;
    cursor: pointer;
    margin-bottom: 10px;
}

.supportingWorld>div .text .buttons .single p {
    margin: 0px;
}

.supportingWorld>div .text .buttons .single>div {
    width: 15px;
    height: 15px;
    border: 2px solid #91a901;
    margin-right: 5px;
    transition: all 0.2s linear;
}

.supportingWorld>div .text .buttons .single:hover>div,
.supportingWorld>div .text .buttons .single.selected>div {
    background: #91a901;
}

.supportingWorld>div .world {
    position: absolute;
    width: 1070px;
    height: 500px;
    background: url(/wp-content/uploads/2024/04/Group-447@2x.png);
    background-size: contain;
    background-position: 50% 50%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    left: -6%;
}

.supportingWorld>div .world img {
    position: absolute;
    width: 25px;
    height: 25px;
    object-fit: contain;
    top: 19%;
    left: 46%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.supportingWorld>div .world img.aus {
    left: 83%;
    top: 75%;
}

.supportingWorld>div .world div {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #91a901;
    border-radius: 100%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.1s ease-in-out;
}

.supportingWorld>div .world.choosing div:not(.close),
.supportingWorld>div.mapInfo .map.choosing>div:not(.close),
.supportingWorld>div.mapInfo .mapaus.choosing>div:not(.close) {
    background: #48625b;
}

.supportingWorld>div .world.one div.one:not(.close),
.supportingWorld>div.mapInfo .map.one>div.one:not(.close),
.supportingWorld>div.mapInfo .mapaus.one>div.one:not(.close),
.supportingWorld>div .world.two div.two:not(.close),
.supportingWorld>div.mapInfo .map.two>div.two:not(.close),
.supportingWorld>div.mapInfo .mapaus.two>div.two:not(.close),
.supportingWorld>div .world.four div.four:not(.close),
.supportingWorld>div.mapInfo .map.four>div.four:not(.close),
.supportingWorld>div.mapInfo .mapaus.four>div.four:not(.close),
.supportingWorld>div .world.five div.five:not(.close),
.supportingWorld>div.mapInfo .map.five>div.five:not(.close),
.supportingWorld>div.mapInfo .mapaus.five>div.five:not(.close),
.supportingWorld>div .world.load div.load:not(.close),
.supportingWorld>div.mapInfo .map.load>div.load:not(.close),
.supportingWorld>div.mapInfo .mapaus.load>div.load:not(.close),
.supportingWorld>div .world.trac div.trac:not(.close),
.supportingWorld>div.mapInfo .map.trac>div.trac:not(.close),
.supportingWorld>div.mapInfo .mapaus.trac>div.trac:not(.close) {
    background: #91a901;
}

.supportingWorld>div .world div:nth-child(2) {
    left: 55%;
    top: 29%;
}

.supportingWorld>div .world div:nth-child(3) {
    left: 52%;
    top: 15%;
}

.supportingWorld>div .world div:nth-child(4) {
    left: 49%;
    top: 24%;
}

.supportingWorld>div .world div:nth-child(5) {
    left: 50%;
    top: 54%;
}

.supportingWorld>div .world div:nth-child(6) {
    left: 45%;
    top: 51%;
}

.supportingWorld>div .world div:nth-child(7) {
    left: 63%;
    top: 43%;
}

.supportingWorld>div .world div:nth-child(8) {
    left: 76%;
    top: 57%;
}

.supportingWorld>div .world div:nth-child(9) {
    left: 95%;
    top: 89%;
}

.supportingWorld>div .world div:nth-child(10) {
    left: 75%;
    top: 55%;
}

.supportingWorld>div .world div:nth-child(11) {
    left: 95%;
    top: 86%;
}

.supportingWorld>div .world div:nth-child(12) {
    left: 94%;
    top: 91%;
}

.supportingWorld>div .world div:nth-child(13) {
    left: 76%;
    top: 49%;
}

.supportingWorld>div .world img:hover {
    transform: scale(1.1);
}

.latestNews {
    width: 80%;
    max-width: 1380px;
    padding: 100px 0;
    color: #0F273B;
    margin: 0 auto;
}

.latestNews .buttonArea {
    width: 80%;
    margin: 30px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.latestNews .buttonArea div {
    display: none;
}

.latestNews .buttonArea div.selectable {
    padding: 0 30px;
    position: relative;
    cursor: pointer;
    display: block;
}

.latestNews .buttonArea div.selectable::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #102e4d;
    position: absolute;
    top: calc(50% - 13px);
    left: -5px;
    transition: all 0.1s linear;
}

.latestNews .buttonArea div.selectable:hover::before,
.latestNews .buttonArea div.selectable.selected::before {
    background: #102e4d;
}

.latestNews .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 0px;
    overflow: hidden;
}

.latestNews .inner.selected {
    max-height: 100%;
    margin-top: 50px;
}

.latestNews .inner .controls {
    width: 40px;
    height: 40px;
    background: url(/wp-content/uploads/2024/04/Group-476@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    color: #43BABF;
}

.latestNews .inner .controls:first-child {
    transform: rotate(180deg);
}

.latestNews .inner .news {
    width: calc(100% - 100px);
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
}

.latestNews .inner.casestudies .news .single {
    max-width: 100%;
    width: 32%;
    margin: 10px 1% 10px 0;
}

.latestNews .inner.casestudies .news {
    flex-wrap: wrap;
    width: 100%;
}

.latestNews .inner .news .single {
    text-decoration: none;
    width: 30%;
    max-width: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out, background 0.2s linear, color 0.2s linear;
    background: #F0F5FA;
    border-radius: 15px;
    overflow: hidden;
    color: #0F273B;
}

.latestNews .inner .news .single:hover {
    background: #0F273B;
    color: white;
}

.latestNews .inner .news .single.selected,
.latestNews .inner .news .single.selectedtwo,
.latestNews .inner .news .single.selectedthree {
    max-width: 29%;
    margin: 0 2%;
}

.latestNews .inner .news .single img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 50%;
}

.latestNews .inner .news .single>div {
    width: 19vw;
    max-width: 345px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    min-height: 115px;
    padding: 15px;
}

.latestNews .inner .news .single>div .name {
    width: 19vw;
    max-width: 340px;
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 5px;
    min-height: 60px;
}

.latestNews .inner .news .single>div .date {
    width: 19vw;
    max-width: 340px;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 17px;
    text-transform: uppercase;
    margin-top: 8px;
}

.latestNews .inner .news .single>div .date font {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 17px;
}

sup font {
    display: none;
}

.latestNews .inner .news .single>div .button {
    margin-top: 6px;
    text-align: center;
    font-size: 14px;
}

.productPage {
    width: 80%;
    padding: 50px 10%;
    background: #f3f7f9;
    color: #0F273B;
}

.productPage .intro {
    margin-bottom: 30px;
    color: #004679;
}

.productPage .intro h1 {
    margin-bottom: 10px;
}

.supportingWorld>div.mapInfo .singlechoice .inner p:not(.intro) {
    font-size: 14px;
    margin: 7px 0;
    line-height: 16px;
}

.supportingWorld>div.mapInfo .singlechoice .inner p:last-child {
    font-weight: 700;
    margin-top: 10px;
}

.productPage .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.productPage .inner .content .productCode {
    margin-top: 50px;
    border: 1px solid black;
}

.productPage .inner .content .productCode .productIntro {
    padding: 5px 20px;
    background: #53a134;
    color: white;
    height: fit-content;
    line-height: 5px;
}

.productPage .inner .content .productCode .productKey {
    display: flex;
    justify-content: space-between;
    background: #f8faef;
    padding: 5px 20px;
    border-bottom: 1px solid black;
}

.productPage .inner .content .productCode .outercode {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
}

.productPage .inner .content .productCode .outercode:last-child {
    border-bottom: 0px;
}

.productPage .inner .content .productCode .outercode .name {
    width: 200px;
    padding: 0 30px;
    border-right: 1px solid black;
}

.productPage .inner .content .productCode .outercode .single .code {
    width: 50px;
    text-align: center;
    border-right: 1px solid black;
    padding: 0 30px;
    border-bottom: 1px solid #00000042;
}

.productPage .inner .content .productCode .outercode .single:last-child .code {
    border-bottom: 0px;
}

.productPage .inner .content .productCode .outercode .codeinner {
    width: calc(100% - 260px);
}

.productPage .inner .content .productCode .outercode .single {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.productPage .inner .content .productCode .outercode .single .choice {
    width: calc(100% - 190px);
    padding: 0 50px 0 30px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #00000042;
}

.productPage .inner .content .productCode .outercode .single:last-child .choice {
    border-bottom: 0px;
}

.productPage .inner .content .productCode .outercode .single .choice::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    outline: 2px solid #53a134;
    top: calc(50% - 10px);
    transition: all 0.2s linear;
}

.productPage .inner .content .productcodeoutput {
    padding: 10px 30px;
}

.productPage .inner .content .productcodeoutput>div {
    display: flex;
}

.productPage .inner .content .productcodeoutput>div p#productCodeOutput {
    margin-left: 10px;
}

.productPage .inner .content .productcodeoutput .button {
    margin-top: 0px;
}

.productPage .inner .content .productCode .outercode .single .choice:hover::after,
.productPage .inner .content .productCode .outercode .single.selected .choice::after {
    background: #53a134;
}

.productPage .inner .content {
    width: 60%;
}

.productPage .inner .content>img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 30px;
}

.productPage .inner .content p {
    margin: 10px 0;
}

.productPage .inner .content h3 {
    margin-bottom: 25px;
}

.productPage .inner .features {
    width: 30%;
    padding: 20px 2%;
    background: white;
}

.productPage .inner .features .featuresList,
.productPage .inner .features .downloadList {
    width: 100%;
    margin: 20px 0;
}

.productPage .inner .features p,
.productPage .inner .features a {
    font-size: 16px;
    font-weight: 100;
}

.productPage .inner .features .downloads {
    margin-top: 50px;
}

.productPage .inner .features .diagram {
    width: 100%;
    margin-top: 10px;
}

.productPage .inner .features .downloadList>a:hover {
    text-decoration: underline;
}

.productPage .inner .features .featuresList>div,
.productPage .inner .features .downloadList>a {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
}

.productPage .inner .features .downloadList>a {
    margin: 15px 0;
    text-decoration: none;
    color: #0F273B;
}

.productPage .inner .features .featuresList>div img,
.productPage .inner .features .downloadList>a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: block;
    margin-right: 15px;
}

.productPage .inner .features .featuresList>div p,
.productPage .inner .features .downloadList>a p {
    width: calc(100% - 50px);
}

.seeMore {
    width: 90%;
    max-width: 545px;
    padding: 5px 5% 15px 5%;
    margin-top: 50px;
    background: #0F273B;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.seeMore .process,
.seeMore .petrochemical,
.seeMore.process a,
.seeMore.petrochemical a {
    display: none !important;
}

.seeMore.process .process,
.seeMore.petrochemical .petrochemical {
    display: block !important;
}

.productPage .inner .content .seeMore img {
    width: 100px;
    max-width: 30%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0px;
}

.productPage .inner .content .seeMore .text {
    width: calc(100% - 150px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.productCompare {
    width: 80%;
    padding: 50px 10%;
    background: #F0F5FA;
}

.productCompare .inner {
    width: 100%;
    margin-top: 30px;
}

.productCompare .inner .productsDisplay {
    display: flex;
    justify-content: flex-start;
}

.productCompare .inner .productsDisplay .single>.name {
    color: #0F273B;
}

.productCompare .productsDisplay .single:hover {
    outline: 2px solid #7e7979;
}

.newsContent {
    width: 60%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newsContent>h1 {
    margin-bottom: 10px;
    font-size: 30px;
    width: 100%;
    max-width: 1200px;
}

.newsContent>p {
    width: 100%;
    margin-bottom: 30px;
}

.newsContent>.images {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsContent>.images>img {
    width: 48%;
    object-fit: contain;
}

.newsContent>h3 {
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.newsContent .text {
    margin-top: 50px;
    width: 48%;
}

.newsContent .text a,
.newsContent .text .button {
    margin: 15px 0;
}

.seriesDisplay.batch-controllers .productsDisplay .single.batch-controllers,
.seriesDisplay.batch-ratio-controllers .productsDisplay .single.batch-ratio-controllers,
.seriesDisplay.flow-computers .productsDisplay .single.flow-computers,
.seriesDisplay.flow-rate-totalisers .productsDisplay .single.flow-rate-totalisers,
.seriesDisplay.level-indicators .productsDisplay .single.level-indicators,
.seriesDisplay.load-controllers .productsDisplay .single.load-controllers,
.seriesDisplay.process-density-computers .productsDisplay .single.process-density-computers,
.seriesDisplay.truck-registers .productsDisplay .single.truck-registers,
.seriesDisplay.chemical .productsDisplay .single.chemical,
.seriesDisplay.food-and-beverage .productsDisplay .single.food-and-beverage,
.seriesDisplay.oil-and-gas .productsDisplay .single.oil-and-gas,
.seriesDisplay.water-and-wastewater .productsDisplay .single.water-and-wastewater,
.seriesDisplay.accessories .productsDisplay .single.accessories,
.seriesDisplay.petrochem .productsDisplay .single.process-controllers:not(.petrochemical-controllers),
.seriesDisplay.process .productsDisplay .single.petrochemical-controllers:not(.process-controllers) {
    max-width: 0px;
    max-height: 0px;
    margin: 0px;
    padding: 15px 0;
    outline: 0px;
}

.footer {
    background: #102E4D;
    width: 80%;
    padding: 35px 10% 10px 10%;
    color: white;
    display: flex;
    justify-content: space-between;
}

.footer .single {
    width: 19%;
}

.footer .single img:first-child {
    max-width: 150px;
}

.footer .single img {
    width: 100%;
    max-width: 120px;
}

.footer .single:nth-child(4) img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 30px;
}

.footer .single h3,
.footer .single h3 font {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    color: white;
}

.footer .single p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 16px;
}

.footer .single p.selectable {
    cursor: pointer;
}

.footer .single p.selectable:hover {
    text-decoration: underline;
}

.footer .single .buttons {
    margin-top: 20px;
}

.footer .single a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 15px;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .single a img {
    width: 25px;
}

.footer .single a p {
    width: calc(100% - 35px);
    font-size: 15px;
    margin: 5px 0;
}

.formArea {
    width: calc(80% - 100px);
    max-width: 500px;
    padding: 0px 50px 0px 50px;
    color: #112e4d;
    background: white;
    transition: all 1s ease-in-out;
    max-height: 0px;
    overflow: hidden;
    position: fixed;
    top: 10%;
    left: 10%;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    outline: 2px solid #112e4d;
}

.formArea .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
}

.formArea.selected {
    max-height: calc(80vh - 100px);
    opacity: 1;
    pointer-events: all;
    padding: 50px;
    overflow-y: scroll;
}

.formArea .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 15px;
}

.formArea .dropdown {
    width: calc(100% - 2px);
    position: relative;
    background: white;
    color: #4f4e4e;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #112e4d;
    font-size: 15px;
    line-height: 18px;
}

.formArea .dropdown .clickable {
    cursor: pointer;
    padding: 10px 10px;
    color: #757575;
    width: calc(100% - 20px);
}

.formArea .dropdown.colour .clickable {
    color: black !important;
}

.formArea .dropdown .dropdowner {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    padding: 0px 10px;
    background: #efeff3;
}

.formArea .dropdown .dropdowner.selected {
    max-height: 100px;
}

.formArea .dropdown .dropdowner>div {
    width: 100%;
    margin: 5px 0;
    cursor: pointer;
}

.formArea .contactForm>div form>p>br {
    display: none;
}

.formArea .dropdown .dropdowner>div:hover {
    font-weight: 600;
}

.formArea .contactForm>div {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    width: 100%;
    max-width: 500px;
}

.formArea .contactForm>div.selected {
    max-height: 500px;
    overflow-y: scroll;
}

.formArea input,
.formArea textarea {
    color: #4f4e4e;
    border: 1px solid #112e4d;
    font-size: 15px;
    padding: 10px 15px 6px 15px;
    margin-bottom: 10px;
    font-family: Avenir, sans-serif;
    width: calc(100% - 32px);
    resize: none;
    border-radius: 5px;
}

.formArea input.wpcf7-file {
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    color: #827c7c;
}

.formArea input:focus,
.formArea textarea:focus {
    outline: 0px;
}

.formArea input.wpcf7-submit {
    max-width: 130px;
    cursor: pointer;
    background: linear-gradient(to right, #42B9BF, #0C59A0);
    color: white;
    border-radius: 15px;
    text-transform: uppercase;
    border: 0px;
}

.formArea>p,
.formArea>.buttons>p {
    font-size: 15px;
    line-height: 16px;
    margin: 7px 0;
}

.formArea>.buttons a {
    display: block;
    color: #112e4d;
    font-size: 15px;
    line-height: 16px;
    text-decoration: none;
    margin: 5px 0;
}

.formArea>.buttons a:hover,
.footer .single a:hover {
    text-decoration: underline;
}

.formArea>.buttons {
    margin-top: 20px;
}

.formArea .contactForm>div form>p {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.formArea .contactForm>div form>p span:nth-child(1),
.formArea .contactForm>div form>p span:nth-child(3),
.formArea .contactForm>div form>p span:nth-child(5),
.formArea .contactForm>div form>p span:nth-child(7),
.formArea .contactForm>div form>p span:nth-child(9),
.formArea .contactForm>div form>p span:nth-child(11) {
    width: 49.4%;
}

.formArea .contactForm>div form>p span:nth-child(13),
.formArea .contactForm>div form>p label:nth-child(15),
.formArea.products form p:nth-child(2)>label:nth-child(15) {
    width: 100%;
}

.formArea .contactForm>div form>p label:nth-child(15),
.formArea.products form p:nth-child(2)>label:nth-child(15) {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 15px;
    color: #4f4e4e;
}

.formArea .contactForm>div form>p label:nth-child(15)>span,
.formArea.products form p:nth-child(2)>label:nth-child(15)>span {
    margin-left: 10px;
}

.textArea {
    width: 80%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.textArea img {
    width: 35%;
}

.textArea .text {
    width: 60%;
}

.textArea.noImg img {
    display: none;
}

.textArea.noImg .text {
    width: 100%;
}

.footer .single:nth-child(5) img {
    margin: 0 auto 20px auto;
}

.footer .single:nth-child(5) img:last-child {
    max-width: 100px;
}

.awardsArea .single p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.awardsArea .single p font {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.awardsArea {
    padding: 0 0 50px 0;
}

.awardsArea>div {
    width: 80%;
    margin: 0 auto;
    max-width: 1380px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.awardsArea .single {
    width: 12%;
    margin: 0 1%;
    text-align: center;
}

.awardsArea .single img {
    width: 90%;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    max-width: 135px;
}

.fiveSeries .productDisplay {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fiveSeries .productDisplay .catChoices {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 287px;
}

.fiveSeries .productDisplay .catChoices>.text {
    color: #004679;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #004679;
}

.fiveSeries .productDisplay .catChoices .choices {
    width: 100%;
}

.fiveSeries .productDisplay .catChoices .choices div {
    width: 100%;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.1s linear;
    position: relative;
    display: flex;
    align-items: center;
}

.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(1),
.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(5),
.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(6),
.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(7),
.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(8),
.seriesDisplay.petrochem .productDisplay .catChoices .choices div:nth-child(9) {
    display: none
}

.fiveSeries .productDisplay .catChoices .choices div::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #004779;
    margin-bottom: 4px;
    margin-right: 10px;
    transition: all 0.1s linear;
}

.fiveSeries .productDisplay .catChoices .choices div:hover::before,
.fiveSeries .productDisplay .catChoices .choices div.selected::before {
    background: #004779;
}

.fiveSeries .productDisplay .catChoices .choices div:hover,
.fiveSeries .productDisplay .catChoices .choices div.selected {
    color: #004779;
}

.fiveSeries .productDisplay .machinery {
    width: calc(100% - 365px);
}

.fiveSeries .productDisplay .machinery .single {
    max-width: 0px;
    max-height: 0px;
    margin: 0px;
    padding: 15px 0;
    overflow: hidden;
}

.seriesDisplay.petrochem .productsDisplay .single.process-controllers:not(.petrochemical-controllers),
.seriesDisplay.process .productsDisplay .single.petrochemical-controllers:not(.process-controllers) {
    /* to enforce on the 515 sorting system this is moved down */
    max-width: 0px;
    max-height: 0px;
    margin: 0px;
    padding: 15px 0;
    outline: 0px;
}

.fiveSeries .productsDisplay .single.hoverable .diagram {
    width: calc(100% - 40px);
}

.textArea.triple {
    align-items: flex-start;
}

.textArea.triple img {
    display: none;
}

.textArea.triple .text {
    width: 30%;
}

.literatureDisplay {
    max-width: 1500px;
    min-height: calc(100vh - 300px);
    width: 90%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.literatureDisplay .outerSelect {
    width: 180px;
}

.literatureDisplay .select {
    padding: 20px;
    margin-bottom: 30px;
    background: #f3f7f9;
}

.literatureDisplay .select h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 25px;
}

.literatureDisplay .select .selectables {
    width: 100%;
}

.literatureDisplay .select.links .selectables a {
    color: #4f4e4e;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.literatureDisplay .select.links .selectables a:hover {
    text-decoration: underline;
}

.literatureDisplay .select .selectables>div {
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    padding-left: 20px;
}

.literatureDisplay .select .selectables>div::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #8080801c;
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
}

.literatureDisplay .select .selectables>div:hover,
.literatureDisplay .select .selectables>div.selected {
    color: #0b5ea1;
}

.literatureDisplay .select .selectables>div:hover::after,
.literatureDisplay .select .selectables>div.selected::after {
    background: #0b5ea1;
}

.literatureDisplay .display {
    width: calc(100% - 250px);
}

.literatureDisplay .display .single {
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.literatureDisplay .display .single.selected {
    max-height: 5000px;
    overflow-y: scroll;
}

.literatureDisplay .display .single>img {
    width: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.literatureDisplay .display .single .list {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid black;
}

.literatureDisplay .display .single .list:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.literatureDisplay .display .single .list .product {
    width: calc(100% - 40px);
    padding: 10px 20px;
    margin-bottom: 8px;
    background: #f3f7f9;
    position: relative;
}

.literatureDisplay .display .single .list .product p {
    font-size: 15px;
    line-height: 15px;
}

.literatureDisplay .display .single .list .product .hover {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #b7cf5b;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.literatureDisplay .display .single .list .product:hover .hover {
    opacity: 1;
    pointer-events: all;
}

.literatureDisplay .display .single .list .product .hover a {
    color: white;
    text-decoration: none;
    width: 33.33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.literatureDisplay .display .single .list .product .hover a:hover {
    background: #80808029;
}

.page-id-3404 .acredits,
.page-id-3405 .textArea,
.page-id-3406 .textArea {
    min-height: calc(100vh - 500px);
}

.acredits {
    width: 80%;
    margin: 50px auto;
}

.acredits .single {
    width: 100%;
    margin-bottom: 50px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acredits .single:last-child {
    margin-bottom: 0px;
}

.acredits .single .text {
    width: 48%;
}

.acredits .single img {
    width: 48%;
    max-width: 200px;
    object-fit: contain;
}

.industriesExplore .clickImg {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.industriesExplore .clickImg .images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.industriesExplore .clickImg .images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.industriesExplore .clickImg .images img.selected {
    opacity: 1;
}

.industriesExplore .clickImg img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.industriesExplore .clickImg .hoverables {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.industriesExplore .clickImg .hoverables>div {
    position: absolute;
    z-index: 3;
    border-radius: 100%;
    cursor: pointer;
}

.industriesExplore .clickImg .hoverables>div:nth-child(1) {
    top: 65%;
    left: 5%;
    width: 28%;
    height: 25%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(2) {
    top: 56%;
    left: 30%;
    width: 16%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(3) {
    top: 38%;
    left: 9%;
    width: 18%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(4) {
    top: 13%;
    left: 5%;
    width: 18%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(5) {
    top: 77%;
    left: 73%;
    width: 18%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(6) {
    top: 28%;
    left: 25%;
    width: 14%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(7) {
    top: 3%;
    left: 29%;
    width: 14%;
    height: 18%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(8) {
    top: 43%;
    left: 41%;
    width: 13%;
    height: 16%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(9) {
    top: 79%;
    left: 38%;
    width: 16%;
    height: 16%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(10) {
    top: 81%;
    left: 59%;
    width: 10%;
    height: 9%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(11) {
    top: 45%;
    left: 71%;
    width: 18%;
    height: 17%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(12) {
    top: 29%;
    left: 56%;
    width: 16%;
    height: 15%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(13) {
    top: 8%;
    left: 44%;
    width: 20%;
    height: 17%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(14) {
    top: 33%;
    left: 78%;
    width: 13%;
    height: 11%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(15) {
    top: 17%;
    left: 84%;
    width: 13%;
    height: 13%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(16) {
    top: 44%;
    left: 55%;
    width: 8%;
    height: 6%;
}

.industriesExplore .clickImg .hoverables>div:nth-child(17) {
    top: 56%;
    left: 54%;
    width: 18%;
    height: 18%;
}

.industriesExplore .clickImg .content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.industriesExplore .clickImg .content .single {
    position: absolute;
    width: fit-content;
    max-width: 700px;
    padding: 20px;
    background: #f1f5fa;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.industriesExplore .clickImg .content .single a {
    display: block;
    color: #4f4e4e;
    text-decoration: none;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.industriesExplore .clickImg .content .single.selected a {
    pointer-events: all;
}

.industriesExplore .clickImg .content .single a:hover {
    text-decoration: underline;
}

.industriesExplore .clickImg .content .single.selected {
    opacity: 1;
    pointer-events: all;
}

.industriesExplore .clickImg .content .single h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 19px;
}

.industriesExplore .clickImg .content .single p {
    font-size: 14px;
    margin: 10px 0 5px 0;
    line-height: 16px;
    font-weight: 800;
}

.industriesExplore .clickImg .content .single .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    pointer-events: all;
}

.casestudyContent {
    width: 60%;
    margin: 50px auto;
}

.casestudyContent>h1 {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10px;
}

.casestudyContent>p {
    width: 100%;
    margin-bottom: 30px;
}

.casestudyContent>.text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.casestudyContent>.text .inner {
    width: 48%;
}

.casestudyContent>.text .inner img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
}

.casestudyContent>.text .inner a {
    display: inline;
    padding: 0px;
    margin: 0px;
    text-decoration: underline;
    color: #4f4e4e;
    font-size: inherit;
    background: none;
}

.casestudyContent>.text .right {
    width: 48%;
}

.casestudyContent>.text .grey {
    padding: 20px;
    background: #F0F5FA;
    width: calc(100% - 40px);
}

.casestudyContent>.text .grey ul {
    padding-inline-start: 15px;
}

.casestudyContent>.text .grey li {
    padding-bottom: 10px;
}

.headertwo {
    width: 100%;
    display: flex;
    min-height: calc(100vh - 150px);
    justify-content: space-between;
    align-items: stretch;
}

.headertwo .left,
.headertwo .right {
    width: calc(50% - 40px);
    padding: 22vh 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
}

.headertwo>div>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    object-position: 50% 50%;
}

.headertwo>div:after {
    content: "";
    background: #125fa275;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.headertwo .inner {
    width: 80%;
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.headertwo h1 {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 55px;
    line-height: 60px;
}

.headertwo .inner>* {
    margin: 15px 0;
}

.headertwo .inner a {
    margin: 15px auto;
    min-width: 120px;
}

.aboutExplore.noimg {
    padding: 0px;
    margin: 100px auto 50px auto;
}

.aboutExplore.noimg>div {
    justify-content: center;
}

.aboutExplore.noimg .text {
    width: 100%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.controlSelection {
    width: 80%;
    padding: 100px 10%;
    text-align: center;
    background: #f0f5fa;
}

.controlSelection>h3 {
    color: #102e4d;
}

.textArea .text h1,
.textArea .text h2,
.textArea .text h3,
.textArea .text h4,
.textArea .text h5,
.textArea .text h6 {
    color: #004679;
}

.controlSelection .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 30px auto 0 auto;
}

.controlSelection .inner a {
    width: calc(48% - 40px);
    text-decoration: none;
    max-width: 500px;
    padding: 30px 20px;
    background: #102e4d;
    color: white;
    border-radius: 10px;
}

.controlSelection .inner a h3 {
    color: white;
}

.controlSelection .inner a img {
    width: 80%;
    max-width: 400px;
    margin: 20px auto 0 auto;
}

.testimonials {
    width: 80%;
    padding: 100px 10%;
    text-align: left;
    background: #f0f5fa;
}

.testimonials>div {
    /*
    padding: 20px;
    width: calc(100% - 40px);
    background: white;
    border-radius: 15px;
    */
}

.testimonials .inner {
    position: relative;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    max-width: 1360px;
    margin: 30px auto 0 auto;
    padding: 20px;
    background: white;
    border-radius: 20px;
}

.testimonials .upper {
    width: 100%;
    margin: 0 auto;
    max-width: 1380px;
}

.testimonials .upper>* {
    margin: 5px 0;
}

.testimonials .inner .carousel {
    width: calc(100% - 200px);
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    min-height: 350px;
}

.testimonials .inner .carousel .single {
    width: 100%;
    max-width: 0px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}

.testimonials .inner .carousel .single img {
    width: 80%;
    max-width: 200px;
    margin: 0px auto 0 auto;
    object-fit: contain;
}

.testimonials .inner .carousel .single.selected {
    max-width: 100%;
    max-height: 100%;
}

.testimonials .inner .carousel .single>p:first-child {
    font-style: italic;
}

.testimonials .inner .carousel .single>* {
    width: 70vw;
    max-width: 1140px;
    margin: 15px auto;
}

.testimonials .inner .controls:first-child {
    transform: rotate(180deg);
}

.testimonials .inner .controls {
    width: 40px;
    height: 40px;
    background: url(/wp-content/uploads/2024/04/Group-476@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    color: #43BABF;
}

.miniHeader {
    text-align: center;
    padding: 75px 10%;
    width: 80%;
    background: #102e4d;
    color: white;
}

.miniHeader * {
    color: white;
}

.gt_float_switcher {
    font-size: 12px !important;
}

.gt_float_switcher img {
    width: 28px !important;
}

.searchExploreBg {
    width: 100%;
    padding: 0 0 100px 0;
    background: #f0f5fa;
}

.searchExploreBg>.searchExplore {
    border: 2px solid #102e4d;
    margin-bottom: 0px;
    max-width: calc(1200px - 5%);
}

.seriesDisplay.functionfilter {
    width: 100%;
    padding: 0px;
}

.seriesDisplay.functionfilter .intro {
    background: #325c87;
    color: white;
    padding: 40px;
    width: calc(100% - 80px);
    max-width: 100%;
    justify-content: center;
}

.seriesDisplay.functionfilter .intro h2 {
    color: white;
}

.seriesDisplay.functionfilter .extra {
    width: 80%;
    text-align: center;
    max-width: 900px;
    margin: 0px auto 50px auto;
}

.seriesDisplay.functionfilter .extra div {
    width: 100%;
    display: none;
    font-size: 19px;
    line-height: 25px;
    font-weight: 500;
    font-family: Avenir, sans-serif;
    margin-block-start: 0;
    margin-block-end: 0;
}

.seriesDisplay.functionfilter .extra div>* {
    margin-bottom: 15px;
}

.seriesDisplay.functionfilter .extra div>*:last-child {
    margin-bottom: 0px;
}

.seriesDisplay.functionfilter .extra div.selected {
    display: block;
}

.seriesDisplay.functionfilter .extra>* {
    margin-bottom: 15px;
}

.seriesDisplay.functionfilter .productsDisplay {
    width: 80%;
    margin: 20px auto 50px auto;
}

.seriesDisplay.functionfilter .productIntro {
    width: 80%;
    margin: 0 auto;
    font-size: 23px;
}

.seriesDisplay.functionfilter .description {
    width: 80%;
    margin: 10px auto 20px auto;
}

.functionsPetro {
    width: 80%;
    padding: 100px 10%;
    background: #102E4D;
    color: white;
    display: none;
}

.functionsPetro>div {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.functionsPetro>div .inner {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

.functionsPetro>div .inner .single.nodrop>p {
    cursor: pointer;
}

.functionsPetro>div .inner .single.nodrop>p:hover {
    text-decoration: underline;
}

.functionsPetro>div .inner .single {
    width: calc(24% - 40px);
    padding: 20px;
    background: #284460;
    border-radius: 15px;
    text-align: center;
    margin: 0 1% 30px 0;
}

.functionsPetro>div .inner .single img {
    width: 100%;
    max-width: 60px;
    margin: 0 auto 20px auto;
}

.functionsPetro>div .inner .single a {
    width: 100%;
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.functionsPetro>div .inner .single a:hover {
    text-decoration: underline;
}

.functionsPetro>div .inner .single .dropdown {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid white;
}

.formArea.products {
    position: relative;
    opacity: 1;
    max-height: 100%;
    padding: 0px;
    background: none;
    border: 0px;
    margin: 50px 0 0 0;
    top: 0;
    left: 0;
    outline: 0px;
    pointer-events: all;
    width: 100%;
    max-width: 700px;
    transition: all 0.8s ease-in-out;
    overflow: hidden;
}

.formArea.products.open {
    max-height: 600px;
}

.formArea.products form p:nth-child(2) br {
    display: none;
}

.formArea.products form p:nth-child(2) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.formArea.products form p:nth-child(2)>span {
    width: 49%;
}

.formArea.products form p:nth-child(2)>span:nth-child(13) {
    width: 100%;
}

.seriesDisplay.functionfilter .industriesSort>div {
    overflow: hidden;
    max-height: 0px;
}

.seriesDisplay.functionfilter.industryCat .allTypes>h3,
.seriesDisplay.functionfilter.industryCat .allTypes .productsDisplay {
    display: none;
}

.footer .single.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer .single.logos a {
    width: 45%;
}

.footer .single.logos img {
    width: 45% !important;
    margin: 0px;
    max-width: 48% !important;
    height: 50px;
    object-fit: contain;
}

.footer .single.logos a img {
    width: 100% !important;
    max-width: 100% !important;
}

.seriesExplore.petrochemical .inner .single:nth-child(3) {
    display: none;
}

.topHeader .links .productsDropdown .dropdownHeader .single>.lower {
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: absolute;
}

.topHeader .links .productsDropdown .dropdownHeader .single>.lower.selected {
    max-height: 250px;
    overflow-y: scroll;
}

.topHeader .links .productsDropdown .dropdownHeader .single>.lower:nth-child(1) {
    top: 30px;
}

.topHeader .links .productsDropdown .dropdownHeader .single>.lower:nth-child(2) {
    top: 55px;
}

.topHeader .links .productsDropdown .dropdownHeader .single>.lower:nth-child(3) {
    top: 80px;
}

.productPage .inner .content .productsDisplay {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 15px;
}

.productPage .inner .content .productsDisplay a {
    color: #4f4e4e;
}

.productPage .inner .content .productsDisplay a:hover {
    outline: 2px solid #7e7979;
}

.seriesDisplay.functionfilter div#industriesSort .intro {
    display: none;
}

sup {
    font-size: 15px !important;
}

.outerForm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formArea.contact {
    max-width: 1100px;
    left: unset;
}

.formArea.contact.selected {
    padding: 50px 30px;
    width: calc(80% - 60px);
}

.formArea.contact .upper .content>*:first-child {
    margin-top: 0px;
}

.formArea.contact .contactForm>div {
    max-width: 100%;
    overflow-y: hidden;
}

.formArea .upper {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.formArea .upper .content {
    width: 40%;
}

.formArea .upper>img {
    width: 58%;
    border-radius: 20px;
    object-fit: contain;
    object-position: 50% 0;
}

.formArea .upper .content>* {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.formArea .upper h4 {
    margin-top: 20px;
}

.formArea .upper a,
.formArea .upper p {
    font-size: 16px;
    line-height: 19px;
}

.formArea .upper a {
    text-decoration: none
}

.formArea .upper a:hover {
    text-decoration: underline;
}

.formArea .upper h5 {
    margin-top: 20px;
}

.page-id-3969 .translateNote {
    background: #f0f0f0;
}

.translateNote {
    text-align: center;
    width: 80%;
    padding: 15px 10%;
}

.gt_float_switcher .gt_options:before {
    content: "IMPORTANT: Google Translate is a helpful tool for understanding the general meaning of text in another language, but please note, it is not always accurate and should not be relied upon for critical or precise translations.";
    display: block;
    width: 150px;
    font-size: 11.5px;
    line-height: 14px;
    padding: 5px 15px;
}

.gt_float_switcher .gt_options a {
    padding: 5px 15px !important;
}

.textArea.imgCarousel .imageArea {
    width: 35%;
}

.textArea.imgCarousel .imageArea .upper {
    position: relative;
    margin-bottom: 20px;
}

.textArea.imgCarousel .imageArea .upper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    object-fit: cover;
    opacity: 0;
}

.textArea.imgCarousel .imageArea .upper img.selected {
    opacity: 1;
    position: relative;
}

.textArea.imgCarousel .imageArea .all {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 20px;
}

.textArea.imgCarousel .imageArea .all img {
    width: 23%;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s linear;
    object-fit: cover;
}

.textArea.imgCarousel .imageArea .all img:hover {
    transform: scale(1.05);
}

#productsContainer.one-series>div:nth-child(1),
#productsContainer.two-series>div:nth-child(2),
#productsContainer.four-series>div:nth-child(3),
#productsContainer.five-series>div:nth-child(4),
#productsContainer.Trac-series>div:nth-child(5),
#productsContainer.LoadPro>div:nth-child(6),
#productsContainer.Accessories>div:nth-child(7) {
    width: 80%;
    padding: 50px 10%;
    grid-template-rows: 1fr;
}

#productsContainer.one-series .seriesDisplay.functionfilter,
#productsContainer.two-series .seriesDisplay.functionfilter,
#productsContainer.four-series .seriesDisplay.functionfilter,
#productsContainer.five-series .seriesDisplay.functionfilter,
#productsContainer.Trac-series .seriesDisplay.functionfilter,
#productsContainer.LoadPro .seriesDisplay.functionfilter,
#productsContainer.Accessories .seriesDisplay.functionfilter {
    display: none;
}

.meetourteam {
    width: 80%;
    margin: 50px auto;
}

.meetourteam .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

.meetourteam .staff {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.meetourteam .staff .single {
    border-radius: 10px;
    margin: 0 5% 30px 0;
    width: 20%;
    box-shadow: 1px 1px 7px #0000002e;
    overflow: hidden;
}

.meetourteam .staff .single img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 0;
    border-bottom: 10px solid #44af52;
}

.meetourteam .staff .single .text {
    width: calc(100% - 40px);
    padding: 20px;
}

.meetourteam .staff .single .text p:last-child {
    font-size: 18px;
}

.topHeader .burger {
    width: 60px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.topHeader .burger>div {
    width: 100%;
    height: 2px;
    background: black;
}

.mobileDrop {
    position: absolute;
    top: 104px;
    z-index: 10;
    width: calc(100% - 40px);
    background: #102e4d;
    right: 0;
    color: white;
    max-width: 300px;
    overflow-y: scroll;
    max-height: 0px;
    padding: 0px 20px;
    transition: all 0.4s ease-in-out;
}

.mobileDrop.selected {
    max-height: calc(100vh - 210px);
    padding: 20px;
}

.mobileDrop a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    display: block;
}

.mobileDrop .single {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid white;
}

.mobileDrop .single p.intro {
    margin-bottom: 15px;
}

.mobileDrop .single .dropdown {
    margin: 10px 0;
}

.mobileDrop .single .dropdown .lower p {
    padding-left: 10px;
}

.topHeader .links .productsDropdown .dropdownHeader .single:not(:hover) a.dropdown:nth-child(3) .lower {
    max-height: 200px;
}

.topHeader .links .productsDropdown .dropdownHeader .single:not(:hover) a.dropdown:nth-child(3)>p::after {
    transform: rotate(90deg);
}

@media(max-width: 1700px) {
    .testimonials .inner .carousel .single>* {
        width: calc(70vw - 200px);
    }

    .productsDisplay .single {
        width: 30%;
    }

    .casestudyContent {
        width: 80%;
    }
}

@media(max-width: 1250px) {

    .topHeader .links .productsDropdown .dropdownHeader.four .single {
        margin: 0px;
        width: 32%;
    }

    .meetourteam .staff .single {
        width: 32%;
        margin: 0 1% 10px 0;
    }

    .casestudyContent>.text {
        flex-wrap: wrap;
    }

    .casestudyContent>.text .inner,
    .casestudyContent>.text .right {
        width: 100%;
    }

    .productsDisplay .single {
        width: 47%;
    }

    .functionalityExplore .inner .single {
        width: 20%;
    }

    .awardsArea .single {
        width: 22%;
        margin: 15px 1%;
    }

    .footer {
        flex-wrap: wrap;
    }

    .footer .single {
        width: 48%;
        margin-bottom: 30px;
    }

    .footer .single:nth-child(5) img {
        margin: 15px 0;
    }

    .industriesExplore .inner {
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0;
    }

    .industriesExplore .inner>.single {
        width: 30%;
        margin: 30px 1%;
    }

    .industriesExplore .inner>.single>img {
        height: 150px;
    }

    .topHeader .links .productsDropdown .dropdownHeader .single a.dropdown .lower {
        background: #102e4d;
        padding: 0 20px;
        border: 0px solid #8ebd4c;
    }

}

@media (max-width: 1161px) {
    .topHeader .links>a {
        max-width: 90px;
    }
}

@media(max-width: 1000px) {
    .formArea .upper>img {
        display: none;
    }

    .formArea .upper .content {
        width: 100%;
    }

    .textArea.imgCarousel .imageArea {
        width: 100%;
        margin-bottom: 30px;
    }

    .topHeader {
        width: 80%;
        padding: 10px 10%;
    }

    div#gt_float_wrapper {
        position: absolute !important;
        top: 23px !important;
        right: calc(10% + 75px) !important;
    }

    .latestNews .inner.casestudies .news {
        width: 100%;
    }

    .latestNews .inner.casestudies .news .single {
        width: 48%;
    }

    .latestNews .inner.casestudies .news .single>div .name,
    .latestNews .inner.casestudies .news .single>div .date {
        width: 100%;
    }

    .newsContent>.images {
        flex-wrap: wrap;
    }

    .newsContent .text {
        width: 100%;
    }

    .newsContent>.images>img {
        width: 100%;
        margin-bottom: 30px;
    }

    .textArea.triple {
        flex-wrap: wrap;
    }

    .textArea.triple .text {
        width: 100%;
        margin-bottom: 50px;
    }

    .textArea.triple .text:last-child {
        margin-bottom: 0px;
    }

    .productsDisplay .single.hoverable .diagram {
        display: none;
    }

    .productsDisplay .single.hoverable {
        outline: 0px;
    }

    .newsContent {
        width: 80%;
    }

    .fiveSeries .productDisplay {
        flex-wrap: wrap;
    }

    .fiveSeries .productDisplay .catChoices {
        width: fit-content;
        margin: 0 auto;
    }

    .fiveSeries .productDisplay .machinery {
        width: 100%;
        margin-top: 50px;
    }

    .searchExplore .right {
        width: 100%;
        margin-bottom: 30px;
    }

    .searchExplore .left {
        width: 100%;
    }

    .awardsArea .single {
        width: 31%;
        margin: 15px 1%;
    }

    .searchExplore .searchProductsArea a {
        width: 48%;
    }

    .searchExplore .searchProductsArea a.selected {
        max-width: 48%;
    }

    .textArea {
        flex-wrap: wrap;
    }

    .textArea img {
        width: 100%;
        margin-bottom: 30px;
    }

    .textArea .text {
        width: 100%;
    }

    .functionalityExplore .inner .single {
        width: 43%;
    }

    .productCompare .inner .productsDisplay {
        flex-wrap: wrap;
    }

    .productCompare .productsDisplay a {
        width: 45%;
        max-width: 45%;
    }

    .productPage .inner {
        flex-wrap: wrap;
    }

    .productPage .inner .content {
        width: 100%;
    }

    .productPage .inner .features {
        width: 100%;
        margin-top: 30px;
    }



    .supportingWorld>div {
        flex-wrap: wrap;
    }

    .supportingWorld>div .text {
        width: 100%;
        padding: 30px 0;
    }

    .supportingWorld>div .world {
        position: relative;
        width: 100%;
        height: 42vw;
        margin-bottom: 50px;
        left: 0%;
    }

    .header .rotatingBg .info .inner {
        flex-wrap: wrap;
    }

    .exploreProducts .filter>div,
    .exploreProducts .filter>a {
        width: 100%;
        margin: 20px 0;
        max-width: 500px;
    }

    .productsDisplay .single {
        width: 30%;
        max-width: 30%;
    }

    .exploreProducts .filter {
        flex-wrap: wrap;
    }

    .latestNews .inner .controls {
        width: 5%;
    }

    .latestNews .inner .news {
        width: 85%;
    }

    .latestNews .inner .news .single>div {
        padding: 2vw;
        width: calc(100% - 4vw);
        display: block;
        min-height: unset;
    }

    .latestNews .inner .news .single>div .name,
    .latestNews .inner .news .single>div .date {
        width: 60vw;
    }

    .topHeader .links a {
        margin: 0 5px;
    }

    .latestNews .inner .news .single.selectedtwo,
    .latestNews .inner .news .single.selectedthree {
        max-width: 0px;
        margin: 0px;
    }

    .latestNews .inner .news .single.selected {
        max-width: 100%;
        width: 100%;
    }

    .header .info,
    .follower,
    .aboutExplore>div {
        flex-wrap: wrap;
    }

    .header .info .text {
        width: 100%;
        margin-bottom: 30px;
    }

    .header .info .diagram img {
        width: 60%;
    }

    .header {
        min-height: calc(100vh - 200px);
        max-height: unset;
        padding: 50px 10%;
    }

    .header .info .diagram {
        max-width: 100%;
        width: fit-content;
        height: auto;
        justify-content: flex-start;
    }

    .follower .links,
    .aboutExplore .text {
        width: 100%;
        margin-top: 30px;
    }

    .aboutExplore img {
        width: 100%;
    }

    .seriesExplore .inner .single {
        width: 31%;
    }

    .seriesExplore .inner .single:nth-child(4) {
        border-left: 0px;
    }

    .topHeader .burger {
        display: flex;
    }

    .topHeader .links {
        display: none;
    }
}


@media(max-width: 700px) {


    .meetourteam .staff .single {
        width: 48%;
        margin: 10px 1%;
    }

    .supportingWorld>div.mapInfo .singlechoice {
        flex-wrap: wrap;
        top: 20px;
    }

    .supportingWorld>div.mapInfo .singlechoice img {
        width: 100%;
        max-height: 40vh;
        object-fit: contain;
    }

    .supportingWorld>div.mapInfo .singlechoice .inner {
        width: 100%;
        margin-top: 20px;
    }


    .testimonials .inner {
        flex-wrap: wrap;
    }

    .testimonials .inner .carousel .single>* {
        width: 70vw;
    }

    .testimonials .inner .controls {
        position: absolute;
        bottom: 20px;
        left: calc(50% - 20px);
    }

    .testimonials .inner .controls:first-child {
        left: calc(50% - 60px);
    }

    .testimonials .inner .controls:nth-child(3) {
        left: calc(50% + 20px);
    }

    .testimonials .inner .carousel {
        width: 100%;
        padding-bottom: 50px;
    }

    .controlSelection .inner {
        flex-wrap: wrap;
    }

    .controlSelection .inner a {
        width: calc(100% - 40px);
        margin: 20px 0;
    }

    .literatureDisplay {
        flex-wrap: wrap;
    }

    .literatureDisplay .display {
        width: 100%;
        margin-top: 50px;
    }

    .industriesExplore .inner>.single {
        width: 48%;
        margin: 5px 1%;
    }

    .industriesExplore .inner>.single>img {
        height: 150px;
    }

    .searchExplore .searchProductsArea a.selected {
        max-width: 100%;
        width: 100%;
    }

    .seriesDisplay .intro {
        flex-wrap: wrap;
        justify-content: center;
    }

    .seriesDisplay .intro img {
        width: 100%;
        max-width: 250px;
    }

    .seriesDisplay .intro .text {
        width: 100%;
        margin-top: 15px;
    }

    .productsDisplay .single {
        width: 47%;
        max-width: 47%;
    }

    .fiveSeries .productDisplay .machinery.addsubtract .single.addsubtract,
    .fiveSeries .productDisplay .machinery.netoil .single.netoil,
    .fiveSeries .productDisplay .machinery.consumption .single.consumption,
    .fiveSeries .productDisplay .machinery.pressurised .single.pressurised,
    .fiveSeries .productDisplay .machinery.meterproving .single.meterproving,
    .fiveSeries .productDisplay .machinery.condensate-steam .single.condensate-steam,
    .fiveSeries .productDisplay .machinery.ideal-gas .single.ideal-gas,
    .fiveSeries .productDisplay .machinery.natural-gas .single.natural-gas,
    .fiveSeries .productDisplay .machinery.gas-density-controller .single.gas-density-controller,
    .fiveSeries .productDisplay .machinery.oil-petroleum .single.oil-petroleum,
    .fiveSeries .productDisplay .machinery.frequency-mass-flow .single.frequency-mass-flow,
    .fiveSeries .productDisplay .machinery.single-channel .single.single-channel,
    .fiveSeries .productDisplay .machinery.energy-calculators .single.energy-calculators,
    .fiveSeries .productDisplay .machinery.open-channel-flow-computers .single.open-channel-flow-computers {
        max-width: 47%;
    }

    .follower {
        display: none;
    }

    .topHeader .links a {
        margin: 0 8px;
        font-size: 12px;
    }

    .searchExplore {
        flex-wrap: wrap;
        text-align: center;
    }

    .searchExplore .left {
        width: 100%;
        margin-bottom: 0px;
    }

    .searchExplore .right {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .searchExplore .left .searchArea {
        margin: 20px auto;
    }

    .searchExplore .right a {
        justify-content: center;
    }

    .seriesExplore .inner .single {
        width: 47%;
        border-left: 0px;
    }

}

@media(max-width: 500px) {
    .footer .single {
        width: 100%;
        margin: 30px 0;
    }

    .latestNews .inner.casestudies .news .single {
        width: 97%;
    }

    .awardsArea .single {
        width: 48%;
    }

    .functionalityExplore .inner .single {
        width: 100%;
        margin: 10px 0;
    }
}