@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold-TR.woff2') format('woff2'),
        url('../fonts/Gotham-Bold-TR.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black-TR.woff2') format('woff2'),
        url('../fonts/Gotham-Black-TR.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light-TR.woff2') format('woff2'),
        url('../fonts/Gotham-Light-TR.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book-TR.woff2') format('woff2'),
        url('../fonts/Gotham-Book-TR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium-TR.woff2') format('woff2'),
        url('../fonts/Gotham-Medium-TR.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html,body {
  font-family: 'Gotham';
  font-weight: normal;
  font-size: 62.5%;
  line-height: 1.2;
}
a , ul , button , h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
  text-decoration: none;
}
p {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.spec-container {
  padding: 0 6vw;
}
hr {
    margin: 0;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
}
section {
  padding: 70px 0;
}
section#slider {
    padding: 0;
}
section#slider .swiper-slide {
    height: calc(100vh - 220px);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
}
section#slider .swiper-slide img.slide {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}
section#slider .swipe-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 0 40px;
}
section#slider .swipe-left-part {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    flex-direction: column;
    height: 100%;
    position: relative;
    margin-right: auto;
    background-color: #fff;
}
.swipe-left-part .bg-trk {
    width: 100%;
    padding: 15px 10px;
}
.swipe-text h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.swipe-text p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
}
.swipe-text .half-line {
    display: block;
    width: 200px;
    background-color: #46C0E3;
    height: 1px;
    margin: 40px 0;
}
.swipe-text .slider-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 110px;
    border-radius: 4px;
    width: 100%;
    backdrop-filter: blur(40px);
    filter: brightness(2);
}
.swipe-text .slider-form input {
    height: 100px;
    background: transparent;
    border: none;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}
.swipe-text .slider-form input::placeholder {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}
.swipe-text .slider-form button {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    border:none;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    position: absolute;
    left: 40px;
    bottom: 140px;
    display: flex;
}
.swiper-pagination-bullet {
    background-color: #D9D9D9;
    opacity: 1;
    width: 12px;
    border-radius: 20px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 75px;
    background-color: #46C0E3;
    border-radius: 20px;
}
.swiper-btns {
    position: absolute;
    right: 100px;
    bottom: 140px;
    display: flex;
    z-index: 10;
    width: 55%;
}
.swiper-btns a {
    color: #000;
    font-size: 2rem;
    transition: .3s;
}
.swiper-btns a:hover {
    color: #46C0E3;
}
.swiper-btns a:first-child {
    margin-right: 30px;
}
.navbar-brand {
    margin-left: 35px;
}
.navbar {
    padding: 0;
    background-color: #FCFCFC !important;
    border-bottom: 1px solid #E2E2E2;
}
.nav-menu {
    justify-content: flex-end;
    display: flex;
    width: 100%;
}
.nav-menu li {
    margin-right: 30px;
}
.nav-menu li a.nav-link {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    transition: all .5s;
    position: relative;
}
.nav-menu li a.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #46C0E3;
    bottom: -3px;
    left: 0;
    transition: width .4s;
}
.nav-menu li a.nav-link:hover , .nav-menu li a.nav-link.active {
    color: #46C0E3;
}
.nav-menu li a.nav-link:hover:after , .nav-menu li a.nav-link.active:hover:after {
    width: 100%;
}
.top-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-menu-btn .item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #E2E2E2;
    height: 100px;
    padding: 20px;
    width: 140px;
    transition: .4s;
}
.top-menu-btn .item:hover {
    background-color: #F0F0F0;
}
.top-menu-btn .item img {
    height: 24px;
}
.top-menu-btn .item span {
    margin-left: 5px;
    font-weight: 500;
    font-size: 1.8rem;
    color: #000;
}
.bg-trk {
    background-color: #6abedf;
}
.trk-title {
    font-size: 1.3rem;
    width: 100%;
    font-weight: 500;
    color: #fff;
    padding-left: 22.5px;
}
.slider-bottom-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
}
.slider-bottom-item .item {
    display: flex;
    align-items: flex-start;
   /* flex-direction: column;*/
    text-align: left;
    color: #fff;
    align-items: center;
}
.slider-bottom-item .item img{
    margin-right: 10px;
}
.slider-bottom-item .item .count {
    font-weight: 300;
    font-size: 1.8rem;
    margin-top: 5px;
    margin-bottom: 2px;
}
.slider-bottom-item .item .desc {
    font-size: 1.5rem;
    font-weight: 300;
}
.sct-top {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sct-top p {
    font-size: 1.8rem;
    font-weight: 300;
    color: #000;
    margin: 0;
}
.sct-top p span {
    color: #46C0E3;
    font-weight: bold;
}
.section-title {
    font-size: 4rem;
    font-weight: 500;
    color: #000;
}
.section-sm-title {
    font-size: 4rem;
    font-weight: 600;
    color: #000;
}
.section-xs-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
}
.sector-card {
    /*display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align:left;
    margin-bottom: 50px;*/
    position: relative;
    float: left;
    width: 100%;
    min-height: 360px;
    background: #fff;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 0 6px 0 rgba(70, 192, 227, 0.53);
}
.sector-card:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 100%;
    display: block;
    width: 100%;
    height: 280px;
}
.sektorhover-animation, .sector-card, .sector-card:after, .sector-card .over, .sector-card:hover, .sector-card:hover:after, .sector-card:hover .info .discover, .sector-card:hover .over {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.sector-card:hover:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0%;
    display: block;
    width: 100%;
    height: 360px;
    opacity: 1;
    background: rgba(70, 192, 227, 0.8);
    opacity: 1;
}
.sector-card .bg {
    min-height: 440px;
}
.sector-card .over {
    position: absolute;
    display: block;
    top: 100%;
    width: 100%;
    z-index: 9;
}
.sector-card:hover .over {
    position: absolute;
    display: block;
    top: 0px;
    width: 100%;
    z-index: 9;
}
.sector-card .info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    min-height: 80px;
    padding-top: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
}
.sector-card .over .info:before {
    content: none !important;
}
.sector-card:hover .info {
    z-index: 10;
}
.sector-card:hover .over .info {
    bottom: auto;
    top: 0px;
}
.sector-card .info:before {
    display: block;
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(107deg, rgba(70, 192, 227, 1), rgba(34, 177, 218, 0.8)100%);
    opacity: 0.90;
}
.sector-card .info .left {
    padding: 0 10px 0px 15px;
    padding-right: 0px;
    position: relative;
    float: left;
}
.sector-card .info .left img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.sector-card .info .center {
    padding: 8px 10px;
    position: relative;
    float: left;
    width: 56%;
}
.sector-card .info .center .title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.2;
    float: left;
    vertical-align: middle;
}
.sector-card .info .center .title span {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: normal;
    color: #ffffff;
}
.sector-card .info .right {
    padding: 20px 15px;
    position: relative;
    float: right;
}
.sector-card .info .discover {
    opacity: 0;
    position: absolute;
}
.sector-card:hover .left , .sector-card:hover .center , .sector-card:hover .right {
    opacity: 0;
}
.sector-card:hover .over .left , .sector-card:hover .over .center , .sector-card:hover .over .right {
    opacity: 1;
}
.sector-card:hover .over .center {
    width: 70%;
}
.sector-card:hover .over .text {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 85px;
    padding: 0px 15px;
}
.sector-card .over .text p {
    margin: 0 0 10px;
}
.sector-card .over .text p span {
    display: block;
    font-weight: 300;
    margin-top: 4px;
}
.sector-card:hover .info:before {
    opacity: 1;
}
.sector-card:hover .info .discover {
    display: block;
    opacity: 1;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.sector-card .info .discover span {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-top: 16px;
    padding-left: 25px;
    float: left;
}
.sector-card:hover .info .discover img {
    float: right;
    margin-right: 25px;
    margin-top: 15px;
}






/*.sector-card .sector-img {
    width: 100%;
    border-radius: 12px;
    height: 350px;
    object-fit: contain;
}
.sector-card .sector-body {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
}
.sector-card .city {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 5px;
}
.sector-card .head {
    font-size: 1.6rem;
    font-weight: bold;
    color: #000;
    transition: .4s;
}
.sector-card-img {
    position: relative;
}
.sector-card-img .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: rgb(70,192,227);
    background: linear-gradient(90deg, rgba(70,192,227,1) 0%, rgba(27,211,173,1) 100%);
    transition: transform .5s;
    transform-origin: left top;
    transform: scale(0, 1);
    z-index: 12;
    border-radius: 12px;
}
.sector-card-img .overlay a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding-left: 20px;
}
.sector-card-img .overlay a i {
    margin-left: 15px;
}
.sector-card:hover .sector-card-img .overlay {
  transform-origin: left top;
  transform: scale(1, 1);
  border-radius: 12px;
}
.sector-card:hover .sector-body .head {
    color: #46C0E3;
}
.sector-card .overlay .text p {
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    line-height: 1.4;
}
.sector-card .overlay .text p span {
    font-weight: 400;
}
.sector-card .discover {
    margin-left: auto;
    margin-right: 40px;
}
*/
section.bg-gray {
    background-color: #F9F9F9;
}
.theme-btn {
    display: inline-block;
    color: #000;
    background-color: #D9D9D9;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    z-index: 10;
    text-align: center;
    transition: .5s;
    border: 1px solid #D9D9D9;
    margin: 5px 0;
}
.theme-btn:hover {
    color: #000;
    border-color: #000;
    background: transparent;
}
section.fixed-section {
    padding: 0;
}
.fixed-div {
    display: flex;
}
.fixed-div .left-fixed {
    position: sticky;
    will-change: transform, position;
    top: 0;
    align-self: flex-start;
    width: 50%;
    flex: 1 0 auto;
}
.fixed-div .left-fixed img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.fixed-div .right-scroll {
    display: flex;
    width: 100%;
    padding: 0 15px;
    flex-direction: column;
}
.scroll-item {
    display: flex;
    flex-direction: column;
    min-height: 700px;
    justify-content: center;
    padding: 0 4vw;
}
.scroll-item h4 {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 90px;
}
.scroll-item .number {
    font-size: 18rem;
    font-weight: bold;
    background: -webkit-linear-gradient(#46C0E3, #1BD3AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scroll-item .head {
    color: #000;
    font-size: 3rem;
    width: 50%;
    margin-bottom: 20px;
}
.scroll-item p {
    color: #000;
    font-size: 1.5rem;
    width: 80%;
    line-height: 1.5;
}
.news-card {
    background-color: #F4F4F4;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-bottom: 40px;
    height: calc(100% - 30px);
}
.news-card .card-img-top {
    border-top-right-radius: 50px;
    height: 210px;
    object-fit: cover;
}
.news-card .card-body {
    border: 1px solid #E2E2E2;
    border-bottom-left-radius: 50px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #f4f4f4;
}
.news-card .date {
    font-size: .9rem;
    color: #000;
    margin-bottom: 20px;
}
.news-card .card-title {
    font-size: 1.7rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}
.news-card .card-title a {
    font-size: 1.7rem;
    color: #000;
    font-weight: 500;
}
.news-card .card-text {
    font-size: 1.5rem;
    color: #000;
}
.select2-results__options {
    border-bottom: 14px solid #fff;
    padding-top: 5px;
}
.tag {
    background-color: #D9D9D9;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 1.2rem;
    color: #585969;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 5px;
}
.read-more {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: auto;
    height: 40px;
}
.read-more .hidden {
    font-size: 1.6rem;
    color: #000;
    margin-right:10px;
    display: none;
    transition: .5s;
    transform-origin: left top;
}
.news-more {
    background: rgb(70,192,227);
   /* background: linear-gradient(90deg, rgba(70,192,227,1) 0%, rgba(27,211,173,1) 100%);*/
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: .5s;
}

.read-more:hover .hidden {
    display: inline-block;
}
.read-more:hover .news-more {
    left: 90px;
}

footer {
    background-color: #303A3D;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 60;
}
.footer-top-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}
.footer-top-list li {
    list-style: none;
}
.footer-top-list li a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all .5s;
    position: relative;
}
.footer-top-list li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #46C0E3;
    bottom: -3px;
    left: 0;
    transition: width .3s;
}
.footer-top-list li a:hover:after {
    width: 100%;
}
.footer-top-list li a:hover {
    color: #46C0E3;
}
.add-company {
    border: 1px solid #fff;
    border-radius: 10px;
    width: 100%;
    padding: 15px 10px;
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    transition: .4s;
}
.add-company:hover {
    background-color: #fff;
    color: #303A3D;
}
.footer-right-content {
    background-color: #20292C;
    padding: 35px 60px;
    width: 100%;
    float: left;
}

.footer-right-content .item-head {
    color: #46C0E3;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.footer-right-content .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 30px;
}
.footer-list li {
    list-style: none;
    margin-bottom: 25px;
}
.footer-list li a {
    font-size: 1.3rem;
    color: #fff;
    transition: .2s;
    transition: font-weight .1s ease;
}
.footer-list li a:hover {
    color: #46C0E3;
}
.slide-arrows {
    width: 120px;
    float: right;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: rgba(32,41,44,.6);
    justify-content: center;
}
.slide-arrow {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin: 30px 0;
    transition: .3s;
}
.slide-arrow:hover {
    color: #46C0E3;
}
.arrow-border {
    width: 50%;
    height: 1px;
    background-color: rgba(255,255,255,.6);
    margin: 40px 0;
}
.footer-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer-left .footer-list {
    margin-top: auto;
}
.footer-marg {
    margin-bottom: 60px;
}
.footer-bottom-left {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-bottom-right {
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 2.2%;
}
.footer-bottom-right .tim-div {
    display: flex;
    align-items: center;
    justify-content: center;    
    height: 100%;
}
.footer-bottom-right .tim-div a {
    text-align: center;
}
.footer-bottom-right .tim-div img {
    max-width: 70%;
}
.footer-social  {
    margin-left: 30px;
    width: 100%;
}
.social-head {
    font-size: 2rem;
    font-weight: 500;
    color: #46C0E3;
    margin-right: 40px;
}
.footer-social {
    display: flex;
    align-items: center;
}
.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer-social ul li {
    list-style: none;
    position: relative;
}
.footer-social ul li:before {
    content: '';
    position: absolute;
    left: 0;
    height: 70px;
    background-color: rgba(255,255,255,.13);
    top: -30px;
    bottom: 0;
    width: 1px;
}
.footer-social ul li a {
    color: rgba(255,255,255,.3);
    font-size: 1.5rem;
    padding: 0 35px;
    transition: .4s;
}
.footer-social ul li a:hover {
    color: #46C0E3;
}
.footer-brand {
    font-size: 2rem;
    color: #fff;
    margin-left: auto;
}

.spec-select {
    background-color: #E2E2E2;
    font-weight: 500;
    font-size: 1.5rem;
    color: #000;
    border-radius: 4px;
    width: auto;
    display: inline-flex;
    padding: 8px 15px;
}
.breadcrumb-section {
    background-color: #FCFCFC;
    padding: 0;
    border-bottom: 1px solid #E2E2E2;
}
.breadcrumb {
    padding: 20px 0 20px 35px;
    margin: 0;
}
.breadcrumb-item:not(:first-child) {
    padding: 0 20px;
}
.breadcrumb-item:first-child {
    padding-right: 20px;
}
.breadcrumb-item , .breadcrumb-item a{
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    color: #AAB8C5;
}
.breadcrumb-item:before {
    content: '' !important;
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background-color: #AAB8C5;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.breadcrumb-item:first-child::before {
    content: none !important;
}
.sector-detail {
    padding: 40px 0;
}
.section-detail-img {
    border-radius: 14px;
    width: 100%;
    margin-bottom: 20px;
}
.sector-right-logo {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-left: auto;
}
.sector-right-logo .gray-box {
    background-color: #F4F4F4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #E2E2E2;
}
.sector-right-logo .blue-box {
    background-color: #46C0E3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: #fff;
    border-radius: 12px;
    padding: 25px;
}
.sector-right-logo .blue-box .center {
    margin-right: auto;
    margin-left: 30px;
}
.sector-right-logo .blue-box .company {
    font-size: 1.6rem;
    font-weight: 500;
}
.sector-right-logo .blue-box .company-count {
    font-size: 1.6rem;
    font-weight: 500;
}
.sector-right-logo .blue-box .cmp-right-item {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    align-items: center;
}
.sector-right-logo .blue-box .cmp-right-item:last-child {
    margin: 0;
}
.sector-right-logo .blue-box .cmp-right-item img {
    height: 28px;
    width: 30px;
    object-fit: contain;
}
.sector-right-logo .blue-box .cmp-right-item i {
    margin: auto;
}
.sector-blue-big {
    background-color: #46C0E3;
    border-radius: 14px;
    padding: 40px 30px;
    margin-top: 20px;
}
.sector-blue-big h4 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}
.sector-blue-big ul {
    display: table;
    padding-left: 15px;
    width: 100%;
}
.sector-blue-big ul li {
    color: #fff;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 15px;
    float: left;
    width: 32%;
}
.sector-content {
    margin-top: 30px;
}
.sector-content p {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}
.sector-content-head {
    font-size: 4.5rem;
    color: #000;
    font-weight: 500;
    padding-bottom: 15px;
    padding-top: 30px;
}
.sector-content-head.blue {
    color: #46C0E3;
    margin-bottom: 15px;
}
.section-title.blue {
    color: #46C0E3;
}
.sector-content-blue {
    font-size: 2.8rem;
    color: #46C0E3;
    font-weight: 500;
    margin-bottom: 25px;
}
.prod-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    padding: 20px;
    transition: .5s all;
    cursor: pointer;
    height: calc(100% - 30px);
}
.prod-box .prod-head {
    color: #000;
    font-weight: 500;
    margin: 20px 0;
    font-size: 1.8rem;
}
.prod-box .prod-img {
    height: 140px;
    object-fit: cover;
}
.prod-box:hover {
    border-color: #46C0E3;
}
.accordion.faq {
    margin-top: 30px;
}
.accordion.faq .accordion-item {
    border-radius: 10px !important;
    border: 1px solid #D9D9D9;
    margin-bottom: 20px;
}
.accordion.faq .accordion-item.active {
    border-color: #46C0E3;
}
.accordion.faq .accordion-button {
    color: #46C0E3;
    font-size: 2rem;
    font-weight: 500;
    background: transparent;
    background: #F9F9F9;
    box-shadow: none;
    border-radius: 10px !important;
    padding: 25px 30px;
}
.accordion.faq .accordion-button.collapsed {
    color: #000;
    background: #fff;
}
.accordion.faq.facts .accordion-button.collapsed , .accordion.faq.facts .accordion-collapse{
    background-color: #F4F4F4;
}
.accordion.faq .accordion-collapse {
    background-color: #f9f9f9;
    border-radius: 10px;
}
.accordion.faq .accordion-body {
    padding: 5px 30px 25px 30px;
    font-size: 1.8rem;
    color: #000;
    line-height: 1.2;
}
.faq .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #B3B3B3;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    color: #B3B3B3;
    transition: .3s all;
}
.faq .accordion-button:not(.collapsed)::after {
    content: "\2b";
    transform: rotate(-45deg);
    background-image: none;
    color: #46C0E3;
    border-color: #46C0E3;
}
.sidebar-top-text {
    font-size: 1.6rem;
    color: #000;
    font-weight: 300;
    margin-bottom: 8px;
}
.sidebar-top-text .blue {
    color: #46C0E3;
}
.filter-input {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 12px 15px 12px 20px;
}
.sidebar-search .filter-input.opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.sidebar-search .search-result-overlay {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 20px;
}
.filter-input::placeholder {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
}
.sidebar-search .filter-input::placeholder {
    color: rgba(109, 110, 113, 0.50);
}
.sidebar-search {
    width: 100%;
}
.filter-input:focus {
    box-shadow: none;
    border-color: #46C0E3;
}
.filter-acc {
    margin: 20px 0;
}
.filter-acc .accordion-item {
    border: 1px solid #E2E2E2;
    border-radius: 6px !important;
    position: relative;
}
.filter-acc .accordion-button {
    background-color: #fff;
    border-radius: 6px !important;
    font-size: 1.4rem;
    color: #000;
    font-weight: normal;
    padding: 15px;
    gap: 12px;
}
.filter-acc .accordion-button:focus {
    border-color: #e2e2e2;
    box-shadow: none;
}
.filter-acc .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.filter-label {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    margin-top: 12px;
}
.form-select.filter-input {
    font-weight: 400;
}
.select2 {
    font-size: 1.5rem;
}
.select2-results {
    font-size: 1.4rem;
}
.select2.filter-input {
    margin-top: 5px;
    height: 50px;
    width: 100%;
}
.select2-container .select2-selection--single {
    height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 15px;
}
.select2-dropdown {
    top: -10px;
    border-color: #e2e2e2;
}
.select2-results__option {
    margin-bottom: 7px;
    color: #000;
    font-weight: 300;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #E2E2E2;
    color: #000;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    border: none;
    margin-top: -5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 48px;
    padding: 0 15px;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #E2E2E2;
}
.select2-container--default {
    margin-top: 10px;
    font-size: 1.6rem;   
}
.sorting-select .select2-container--default {
    width: 150px !important;
}
.sidebar .select2-container--default {
    width: 100% !important;
}
.sorting-select.company-sort .select2-container--default {
    margin-top: 0 !important;
}
.small-alert .red {
    color: red;
}
.small-alert {
    font-size: 1.3rem;
    color: #000;
    font-weight: normal;
}

/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1.4rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #6D6E71;
    height: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
.customcheck a {
    color: #000;
    text-decoration: underline;
}
/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #C1C5C5;
    border-radius: 4px;
    background: #F4F4F4;
    transition: .5s;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    border-color: #46C0E3;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    border-radius: 4px;
    background: none;
    background-color: #46C0E3;
    border-color: #46C0E3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.filter-acc .cust-check {
    padding: 11.5px 15px;
    width: 220px;
    font-size: 1.6rem;
    color: #000;
    font-weight: 500;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    height: 48px;
}
.filter-acc .customcheck {
    padding-right: 35px;
    padding-left: 0;
    margin-bottom: 13px;
    color: #000;
    font-weight: 300;
}
.filter-acc .form-group:last-child .customcheck {
    margin-bottom: 0;
}
.filter-acc .checkmark {
    left: unset;
    right: 0;
}
.filter-acc .cust-check .customcheck {
    font-weight: normal;
    font-size: 1.4rem;
}
.company-card {
    background-color: #F4F4F4;
    border-radius: 10px;
    padding-top: 20px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}
.company-card .top {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 25px;
}
.company-card h5 {
    margin-bottom: 4px;
    height: 35px;
}
.company-card h5 a {
    font-size: 1.5rem;
    color: #000;
    font-weight: 500;
    line-height: 1.2;
}
.company-card .top img {
    border-radius: 10px;
    height: 115px;
    object-fit: contain;
}
.company-card .center-top p {
    font-weight: 300;
    font-size: 1.6rem;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2;
    -webkit-box-orient: vertical;
}
.company-card .center-top h5, .company-card .center-top p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.company-card .center-top {
    height: 125px;
}
.for-product-search.company-card .center-top {
    height: auto;
}
.sector-names {
    align-items: center;
    background-color: #DBDBDB;
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 5px;
}
.sector-names .item {
    font-size: 1.2rem;
    color: #6D6E71;
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: normal;
    position: relative;
    height: 50px;
    align-items: center;
    display: none;
}
.list-full .sector-names .item {
    height: auto;
}
.sector-names .item:nth-child(1), .sector-names .item:nth-child(2),.sector-names .item:nth-child(3) {
    display: flex;
}
.sector-names .item a {
    font-size: 1.2rem;
    color: #6D6E71;
    text-align: center;
}
.sector-names .item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(109, 110, 113, 1);
    height: 50%;
    width: 1px;
    margin: auto;
}
.sector-names .item:first-child::before {
    content: none;
}
.company-card .center {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px 25px;
    gap: 10px;
    width: 100%;
}
.company-card .bottom {
    border-top: 1px solid #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    gap: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgba(70, 192, 227, 1);
    margin-top: auto;
}
.company-card .bottom .company-prod {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #E2E2E2;
    width: 20%;
    cursor: pointer;
    transition: .3s all;
}
.company-card .bottom .company-prod:hover {
    border-color: #46C0E3;
}
.company-card .bottom .company-prod img {
    border-radius: 6px;
    height: 50px;
    object-fit: cover;
}
.company-card .share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}
.company-card .share .item {
    min-width: 48%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-basis: fit-content;
    font-weight: 500;
}
.company-card .share .item img {
    margin-right: 5px;
}

.company-card .count {
    font-size: 1.2rem;
    color: #6D6E71;
}
.company-card .share .company-prod {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 20%;
    cursor: pointer;
    transition: .3s all;
}
.company-card .share .company-prod:hover {
    border-color: #46C0E3;
}
.company-card .share .company-prod img {
    border-radius: 6px;
    height: 50px;
    width: 30pxs;
    object-fit: cover;
}
.company-card .left {
    max-width: 40%;
}
.company-card .right {
    margin-left: 10px;
}
.company-card .right h5 {
    margin-left: 0;
}
.company-card .right h5 a {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
}
.company-card .right p {
    font-size: 1.6rem;
    color: #000;
    margin-top: 12px;
    font-weight: 300;
}
.company-card .share .item .share-company {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
}
.company-card .share .item .share-company img {
    margin-right: 4px;
    width: 20px;
}
.company-card .list-see-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    font-size: 1.6rem;
    padding: 5px;
    width: 100%;
    gap: 10px;
}
.company-content {
    font-size: 1.6rem;
    color: #000;
    font-weight: normal;
    line-height: 1.5;
    margin-top: 15px;
    padding-bottom: 25px;
}
.company-content p {
    font-size: 1.6rem;
}
.list-full .company-card .top {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 20px;
}
.list-full .company-card {
    flex-direction: row;
    padding-top: 0;
}
.list-full .company-card .bottom {
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: 10px;
    flex: none;
}
.list-full .brands-bottom {
    display: flex;
    margin-left: auto;
}
.list-full .thumb-slide {
    margin: 0;
    height: 200px;
    margin-left: 5px;
}
.list-full .company-card .big-slide .slide-item {
    width: 250px;
}
.list-full .owl-carousel.big-slide {
    width: 250px;
}
.list-full .thumb-slide .slide-item img, .list-full .thumb-slide .slide-item {
    height: 30px;
    width: 45px;
}
.list-full .thumb-slide .owl-stage {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    width: 80px !important;
}
.list-full .owl-carousel.thumb-slide .owl-stage:after {
    content: none;
}
.list-full .thumb-slide .owl-stage-outer {
    height: 100%;
}
.list-full .company-card .center {
    padding: 20px;
    padding-left: 0;
}
.list-full .company-card .share {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.list-full .company-card .share .item {
    margin-right: 20px;
    margin-bottom: 10px;
    width: auto;
}
.list-full .sector-names {
    width: auto;
}
.read-more-content {
    display: none;
}
.read-more-btn {
    font-size: 1.3rem;
    font-weight: normal;
    color: #000;
}
.read-more-btn i {
    transition: .5s all;
}
.read-more-btn.opened i {
    transform: rotate(-180deg);
}

.side-box {
    padding: 20px;
    background-color: #F4F4F4;
    border: 1px solid #E2E2E2;
    border-radius: 14px;
    position: sticky;
    top: 120px;
    width: 80%;
}
.side-box .comp-logo {
    border-radius: 12px;
    object-fit: contain;
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
}
.side-box .side-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
}
.side-box .side-item:last-child {
    margin-bottom: 0;
}
.side-box .side-item .item-top {
    margin-bottom: 4px;
    color: #B3B3B3;
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 500;
}
.side-box .side-item .item-top img {
    margin-right: 4px;
}
.side-box .side-item a {
    font-size: 1.4rem;
    color: #000;
    margin-top: 3px;
}
.side-box .side-item ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}
.side-box .side-item ul li {
    list-style: none;
}
.cmp-title {
    font-weight: normal;
    margin-top: 15px;
}
.side-box .side-item ul li a {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
}
.company-cnt {
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
}
.company-cnt .sector-names {
    display: inline-flex;
    width: auto;
}
.company-sectors {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.company-sectors .sector-item {
    background-color: #DBDBDB;
    padding: 12px 20px;
    border-radius: 10px;
    color: #6D6E71;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #dbdbdb;
    transition: .4s all;
}
.company-sectors .sector-item:hover {
    background-color: #fff;
}
.company-cnt-head {
    font-size: 2rem;
    font-weight: normal;
    color: #000;
    margin: 15px 0 10px 0;
}
.cmp-box {
    background-color: #F4F4F4;
    border: 1px solid #E2E2E2;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
}
.cmp-box .right {
    margin-left: 10px;
}
.cmp-box .right .cmp-head {
    font-size: 1.6rem;
    font-weight: 500;
    color: #B3B3B3;
    position: relative;
    top:5px;
}
.cmp-box .right .cmp-box-cnt {
    font-size: 2.8rem;
    color: #000;
    font-weight: normal;
    margin-top: 15px;
}
.cmp-box .right .cmp-box-cnt ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.cmp-box .right .cmp-box-cnt ul li {
    list-style: none;
}
.cmp-box .right .cmp-box-cnt ul li img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.cmp-box .cmp-box-icon {
    width: 30px;
    height: 30px;
}
.cmp-office {
    padding-top: 25px;
    padding-bottom: 25px;
}
.office-box {
    background-color: #F4F4F4;
    border: 1px solid #E2E2E2;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    margin: 0 0 25px 0;
}
.office-box p {
    color: #000;
    font-size: 1.6rem;
    font-weight: 300;
    margin-left: 15px;
    margin-bottom: 0;
}
.office-box .map-link {
    background-color: #46C0E3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    gap: 15px;
}
.comp-tabs {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}
.comp-tabs button {
    width: 100%;
    flex: 1 1 0px;
    height: 70px;
    border: none !important;
    border-right: 1px solid rgba(179,179,179,.5) !important;
    color: #000;
    font-weight: 500;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    transition: .4s all;
}
.comp-tabs.nav-tabs .nav-link:hover {
    color: #fff;
    background-color: #46C0E3;
}
.comp-tabs.nav-tabs .nav-link.active {
    background-color: #46C0E3;
    color: #fff;
}
.bg-dark-gray {
    background-color: #D7DEE0;
}
.bg-dark-gray.p-0 {
    position: sticky;
    top: 100px;
    z-index: 60;
    border-bottom: 1px solid rgba(179,179,179,.5) !important;
}
.cat-item {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    transition: .4s;
    margin-bottom: 20px;
    border: 1px solid #D9D9D9;
    padding: 0 15px;
}
.cat-item img {
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
    height: 105px;
    transition: .4s;
    margin-top: 20px;
}
.cat-item .item-title {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: #000;
    transition: .4s;
    font-weight: 500;
}
.cat-item:hover {
    border-color: #46C0E3;
}
.cat-item:hover img {
    outline-color: #46C0E3;
}
.delivery-list {
    display: table;
    width: 100%;
    margin-top: 15px;
}
.delivery-list li {
    width: 50%;
    float: left;
    list-style: none;
}
.delivery-list li .checkmark {
    background-color: #e8e8e8;
}
.delivery-list li .customcheck:hover input ~ .checkmark {
    border-color: #C1C5C5;
}
.back {
    font-size: 1.6rem;
    color: #000;
    position: absolute;
    top: 0;
    left: -35%;
    text-decoration: none !important;
}
.back i {
    font-size: 1rem;
    margin-right: 8px;
}
.news-content {
    width: 90%;
    margin: auto;
    position: relative;
}
.news-content p {
    margin: 20px 0;
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
    font-weight: 300;
}
.news-content strong {
    font-weight: 500;
}
.news-content a {
    text-decoration: underline;
    color: #000;
}
.news-title {
    color: #000;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 25px;
}
.news-date {
    font-size: 1.6rem;
    color: #000;
}
.news-detail-img {
    width: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    object-fit: cover;
    margin: 20px 0;
}
.share-line {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}
.share-title {
    font-size: 1.9rem;
    color: #000;
    font-weight: 500;
}
.news-content .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F7F7;
    font-weight: 300;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 1.4rem;
}
.news-content .share-btn i {
    margin-right: 8px;
}
.news-carousel .owl-nav button, .sectors-carousel .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 1.6rem !important;
    transition: .4s all;
}
.news-carousel.owl-theme .owl-nav [class*='owl-']:hover , .sectors-carousel.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #46C0E3;
}
.news-carousel .owl-nav .owl-prev , .sectors-carousel .owl-nav .owl-prev {
    left: -50px;
}
.news-carousel .owl-nav .owl-next , .sectors-carousel .owl-nav .owl-next {
    right: -50px;
}
.contact-img {
    width: 100%;
    border-bottom-left-radius: 50px;
    margin: 20px 0;
}
.form-control.theme-input {
    background-color: #F4F4F4;
    border-color: #F4F4F4;
    border-bottom-left-radius: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 30px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #7E8A95;
    margin: 15px 0;
    transition: .2s;
}
textarea.form-control.theme-input {
    padding-top: 20px;
    height: auto;
}
.form-control.theme-input:focus {
    box-shadow: none;
    border-color: #46C0E3;
}
.form-control.theme-input::placeholder {
    font-size: 1.6rem;
    font-weight: 500;
    color: #7E8A95;
}
.list-full .company-card .share .item {
    min-width: auto;
}
.list-full .company-card .bottom {
    margin-top: 0;
}
.form-bottom {
    margin-bottom: 20px;
}
.bold {
    color: #000;
    font-weight: 500;
}
.captcha {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.form-submit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.submit-btn {
    background-color: #46C0E3;
    padding: 20px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 1.8rem;
    width: 200px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    border: 2px solid #46C0E3;
    transition: .4s all;
}
.submit-btn:hover {
    background-color: transparent;
    color: #46C0E3;
}
.signup-content p {
    margin: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 5px;
}
.signup-content p span {
    text-decoration: underline;
    font-weight: 500;
}
.form-logo {
    margin-bottom: 15px;
}
.not-found-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
    justify-content: center;
    height: 100%;
}
.not-found-content h1 {
    color: #0069AA;
    font-size: 15rem;
    font-weight: 500;
}
.not-found-content h3 {
    font-size: 5rem;
    color: #000;
}
.not-found-content a {
    background-color: #0069AA;
    border-radius: 4px;
    border-bottom-left-radius: 30px;
    font-size: 1.6rem;
    width: 160px;
    padding: 15px;
    color: #fff;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #0069aa;
    transition: .4s;
}
.not-found-content a i {
    margin-left: 15px;
    font-size: 1rem;
}
.not-found-content a:hover {
    color: #0069aa;
    background-color: #fff;
}
.top-search {
    background-color: #46C0E3;
    padding: 10px 40px;
}
.slider-top {
    display: flex;
    align-items: center;
    position: relative;
}
.slider-top .left {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    width: 200px;
    padding-left: 20px;
}
.slider-top .right {
    width: 100%;
}
.slider-top .right .top-form {
    position: relative;
}
.slider-top .right .top-form input {
    height: 100px;
    border-radius: 50px;
    width: 100%;
    font-size: 1.6rem;
    color: #000;
    padding-left: 40px;
    letter-spacing: 1px;
    font-weight: 300;
}
.slider-top .right .top-form input:focus {
    border-color: #ced4da;
}
.slider-top .right .top-form input.opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.slider-top .right .top-form input::placeholder {
    font-size: 1.6rem;
    font-weight: 300;
    color: #46C0E3;
}
.slider-top .right .top-form input:focus {
    box-shadow:none;
}
.slider-top .right .top-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 90px;
    background-color: #91E5FD;
    font-size: 1.7rem;
    color: #333;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border-top-left-radius: 50px;
    width: 150px;
    margin-right: 5px;
    margin-top: 5px;
    font-weight: 500;
    border: none;
    transition: .4s;
    border: 1px solid #91E5Fd;
}
.slider-top .right .top-form button:hover {
    background-color: #46C0E3;
    color: #fff;
    border-color: #91E5Fd;
}
.news-card.events .card-img-top {
    height: 300px;
}
.news-card.events .date {
    background: rgb(70,192,227);
    background: linear-gradient(90deg, rgba(70,192,227,1) 0%, rgba(27,211,173,1) 100%);
    padding: 5px 12px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border-radius: 4px;
}
.news-card.events .card-body {
    padding-bottom: 30px;
}
.policy-list {
    padding: 0;
    width: 80%;
    position: sticky;
    top: 130px;
    margin-bottom: 30px;
}
.policy-list li {
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}
.policy-list li a {
    font-size: 1.4rem;
    color: #6D6E71;
    font-weight: 500;
    transition: .4s;
}
.policy-list li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: rgba(0,0,0,.3);
    transition: .4s;
}
.policy-list li:hover a {
    color: #46C0E3;
}
.policy-list li:hover::after {
    background-color: #46C0E3;
}

.overlay-search {
    width: 100%;
    background-color: rgba(0,0,0,.6);
    height: 100vh;
    z-index: 102;
    position: fixed;
    top: 0;
    right: -100%;
    transition: right 0.5s;
}
.overlay-search.show {
    right: 0;
}
.search-part {
    width: 50%;
    margin-left: auto;
    z-index: 103;
    position: relative;
    background-color: #46C0E3;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 60px;
}
.search-part .close {
    width: 100px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #E1E2E2;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
}
.search-part .search-head {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 300;
    width: 60%;
    margin-bottom: 20px;
}
.search-part .search-head span {
    font-weight: 500;
}
.search-part input {
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    border: none;
    height: 110px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    width: 100%;
    padding-left: 30px;
    border: none;
}
.search-part input:focus {
    box-shadow: none;
}
.search-part input.opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.search-part input::placeholder {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
}
.search-part .submit-form {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
    border: none;
}
.sidebar-search .submit-form {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
    border: none;
}
.sidebar-search {
    position: relative;
}
.search-part input:focus {
    background-color: rgba(255, 255, 255, 0.28);
    box-shdaow: none;
    outline: none;
    border: none;
    color: #fff;
}
.search-result-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(150 151 154 / 30%);
}
.search-result-item p {
    margin: 0;
    font-size: 1.6rem;
    max-width: 95%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.search-result-item a {
    color: #46C0E3;
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 8px;
    display:block;
}
/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

.quick-search {
    display: flex;
    flex-wrap:wrap;
    gap: 10px;
}
.quick-search-head {
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    margin-top: 20px;
    margin-bottom: 12px;
}
.quick-search li {
    list-style: none;
}
.quick-search li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background-color: #46C0E3;
    color: #fff;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 500;
    border: 1px solid #46C0E3;
    transition: .4s;
}
.quick-search li a:hover {
    background: #fff;
    color: #46C0E3;
}
.ask-modal {
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 30px;
}
.ask-modal .modal-header {
    position: relative;
    border: none;
}
.ask-modal .btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.6rem;
    opacity: 1;
    font-weight: 500;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    z-index: 150;
}
.ask-modal .modal-body {
    padding-top: 0px;
}
.ask-modal .head {
    color: #46C0E3;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    width: 50%;
}
.ask-modal .head strong {
    font-weight: 500;
}
.ask-modal .subhead {
    color: #1BD3AD;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    width: 90%;
    line-height: 1.4;
}
.ask-modal .description {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
    width: 90%;
}
.product-top .img-list {
    display: flex;
    flex-wrap: wrap;
}
.product-top .img-list img {
    height: 100px;
    width: 50%;
    padding: 15px;
    object-fit: cover;
    margin-bottom: 12px;
}
.product-top .right {
    padding-top: 10px;
}
.product-top .right ul li {
    margin-bottom: 8px;
    font-size: 1.4rem;
    list-style: none;
    font-weight: 500;
}
.product-top .right ul li strong {
    color: #46C0E3;
}
.product-top h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #46C0E3;
    margin-top: 20px;
}
.product-top .description {
    font-size: 1.4rem;
    width: 100%;
}
.top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.top-flex h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}
.more-search {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    padding: 15px 20px;
    border-radius: 5px;
    width: 240px;
    margin: auto;
    transition: .4s;
    border: 2px solid #D9D9D9;
}
.more-search:hover {
    background-color: #fff;
    color: #46C0E3;
}
.more-search i {
    color: #46C0E3;
    margin-left: 10px;
}
.top-flex-mt {
    margin-top: 25px;
}
.sidebar {
    position: sticky;
    top: 120px;
    max-width: 90%;
}
.search-result-more {
    display: none;
}
.search-result-more.show {
    display: block;
}
.product-modal-link {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    cursor: pointer;
}
.product-modal-link img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
    height: 200px;
}
.product-modal-link h6 {
    font-size: 1.6rem;
    color: #000;
    background-color: #fff;
    font-weight: 500;
    padding: 15px 12px;
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
}
.product-carousel .owl-item img {
    height: 250px;
    object-fit: contain;
    width: 50%;
    margin: auto;
}
.product-carousel .owl-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50%;
}
.product-carousel.owl-carousel .owl-nav button.owl-prev , .product-carousel.owl-carousel .owl-nav button.owl-next{
    font-size: 1rem !important;
    height: 60px !important;
    background-color: #cccbcb !important;
    padding: 5px 12px !important;
}
.product-carousel .owl-dots {
    margin-top: 20px;
}
.product-carousel .owl-dots .owl-dot {
    background-color: #D9D9D9;
    opacity: 1;
    width: 12px;
    border-radius: 20px;
    margin-right: 10px;
    height: 8px;
}
.product-carousel .owl-dots .owl-dot span {
    background: none;
}
.product-carousel .owl-dots .owl-dot.active {
    width: 30px;
    background-color: #46C0E3;
}
.product-carousel .owl-dots .owl-dot.active span {
    background: none;
}
.flex-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .order-btns a {
    color: #000;
    font-size: 2rem;
    margin-right: 10px;
    transition: .4s color;
}
.order-btns {
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
    height: 100%;
}
 .order-btns a:first-child {
    margin-right: 12px;
}
 .order-btns a:hover ,  .order-btns a.active {
    color: #46C0E3;
}
.already-sign {
    color: #46C0E3;
    font-weight: normal;
    font-size: 1.6rem;
    margin: 30px 0;
    display: block;
    text-align: center;
}
.already-sign:hover {
    color: #46C0E3;
    text-decoration: underline;
}
.search-result-item .left a {
    color: #000;
    font-size: 1.7rem;
    font-weight: 500;
}
.product-search {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.product-search .item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(150 151 154 / 30%);
}
.product-search .item .left-img {
    width: 180px;
}
.product-search .item .right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.product-search .item .right img {
    width:150px;
    object-fit: cover;
}
.product-search h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.product-search .item p {
    font-size: 1.4rem;
}

.company-currency {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.company-currency ul {
    margin-bottom: 15px;
}
.company-currency ul li {
    margin-bottom: 5px;
    list-style: none;
    color: #6D6E71;
    font-size: 1.6rem;
}
.company-currency ul.company-payment li::before {
  content: '✓';
  margin-right: 4px;
  color: #46C0E3;
}
.company-currency ul.currency-list {
    display: flex;
    align-items: center;
    gap: 10px;
}
.company-currency ul.currency-list li {
    width: 50px;
    height: 50px;
    background-color: #46C0E3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
    margin-right: 10px;
}
.comp-left-img {
    height: 100px;
    display: flex;
    flex: none;
    max-width: 200px;
    margin-right: 20px;
}
.comp-left-img img {
    border-radius: 5px;
    margin-right: 20px;
    height: 100%;
    object-fit: contain;
    width: 200px;
}
.product-search .item .search-bottom-div {
    display: flex;
    gap: 20px;
}
.product-search .item .search-bottom-info {
    font-weight: 500;
    font-size: 1.4rem;
    display: flex;
}
.product-search .item .search-bottom-info a {
    display: inline-block;
    margin-left: 15px;
    font-weight: 500;
    color: #000;
    font-weight: 500;
    font-size: 1.5rem !important;
}
.product-search a.black {
    color: #000;
    font-weight: 500;
    margin-top: 0;
    font-size: 1.5rem;
}
.product-search .right a {
    color: #46C0E3;
    font-weight: 500;
    font-size: 1.7rem;
}
.owl-stage {
    display: flex;
}

.owl-stage .item {
    height: calc(100% - 30px);
}
.dropdown-item {
    font-size: 1.6rem;
    padding: 1.25rem 1rem;
}
.dropdown-menu {
    margin: 0;
    background-color: #fcfcfc;
    border-color: #e2e2e2;
}
.newslet-section {
    background-color: #EFF1F1;
    padding: 50px 0;
}
.newsletter {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.newsletter p {
    margin: 0;
    margin-right: 12px;
    font-weight: 500;
    color: #46C0E3;
    text-align: center;
}
.newsletter input {
    border-radius: 50px;
    height: 70px;
    font-size: 1.6rem;
    color: #333;
    font-weight: 400;
    box-shadow: none;
    padding: 10px 20px;
    border: none;
    letter-spacing: 1px;
}
.newsletter input::placeholder {
    font-size: 1.4rem;
    color: #46C0E3;
    font-weight: 300;
    
}
.newsletter input:focus {
    box-shadow: none;
    outline: none;
}
.newsletter button {
    width: 95px;
    height: 64px;
    margin-right: 5px;
    background-color: #46C0E3;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    border: 1px solid #46C0E3;
    transition: .4s;
    position: absolute;
    right: 0;
}
.newsletter button:hover {
    background-color: #fff;
    color: #46C0E3;
}
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.sidebar.top-one {
    display: flex;
    max-width: 100%;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 20px;
    margin-top: 5px;
}
.sidebar.top-one .filter-acc {
    margin: 0;
    width: 23%;
    margin-right: 2%;
    flex: 1 0 auto;
    margin-top: 10px;
}
.sidebar.top-one .filter-acc .cust-check {
    width: 100%;
}
.sidebar.top-one .filter-acc:last-child {
    margin-right: 0;
}
.sidebar.top-one .select2-selection__rendered {
    font-weight: normal;
}
.sidebar.top-one .company-sort .select2-selection__rendered {
    width: 120px;
}
.sidebar.top-one .accordion-collapse {
    position: absolute;
    background-color: #fff;
    overflow-y:auto;
    max-height: 300px;
    min-width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 5px 0;
    border-radius: 8px;
    margin-top: 2px;
    border: 1px solid #e2e2e2;
    border-bottom: 15px solid #fff;
    width: max-content;
}
.sidebar.top-one .accordion-body {
    padding-bottom: 0;
}

.sidebar.top-one .accordion-collapse::-webkit-scrollbar {
    -webkit-appearance: none;

}
.sidebar.top-one .accordion-collapse::-webkit-scrollbar:vertical {
    width: 8px;
}
.sidebar.top-one .accordion-collapse::-webkit-scrollbar:horizontal {
    height: 8px;
}
.sidebar.top-one .accordion-collapse::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}
.sidebar.top-one .filter-acc .accordion-button {
    padding: 13.5px 15px;
}
.sidebar.top-one .filter-acc .accordion-button , .sidebar.top-one .filter-acc .accordion-item {
    border-radius: 10px !important;
}
.ch-grid:not(.list-full) .thumb-slide {
    margin-top: 15px;
    height: 60px;
}
.ch-grid:not(.list-full) .thumb-slide .owl-item {
    width: 20% !important;
}
.ch-grid:not(.list-full) .thumb-slide .owl-stage {
    width: 100% !important;
}
.big-slide .slide-item img {
    border-radius: 10px;
    height: 200px;
    width: auto;
    margin: auto;
    padding: 20px;
}
.list-full .big-slide .slide-item img {
    padding: 0;
}
.select2-container--default .select2-selection--single {
    border-radius: 10px;
}
.thumb-slide .slide-item img {
    border: 1px solid rgba(226, 226, 226, 1);
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    cursor:pointer;
}
.video-btn {
    border: 1px solid #46C0E3;
    background-color: #46C0E3;
    border-radius: 10px;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 70%;
    padding: 15px 10px;
    transition: .4s;
}
.video-btn:hover {
    background-color: #fff;
    color: #46C0E3;
}
.for-product-search.company-card .center-top p {
    margin-bottom: 0;
}
.for-product-search.company-card .center-top p.prd-info {
    margin-bottom: 15px;
}
.company-card .center-top .prd-info {
    font-size: 1.3rem;
    margin: 15px 0;
}
.company-card .center-top .prd-info a {
    font-weight: 300;
    font-size: 1.3rem;
    color: #000;
}
.company-card .center-top .prd-info strong {
    font-weight: 500;
}
.sidebar.top-one {
    z-index: 20;
}
.sidebar.top-one .accordion-collapse {
    z-index: 5;
}
.footer-social ul li a {
    color: rgba(255,255,255,.3);
    font-size: 1.5rem;
    padding: 0 35px;
    transition: .4s;
}
.footer-bottom-next-right{
    display: flex;
    align-items: center;
    height: 100%;
}
.footer-bottom-next-right p{
    color: #fff;
    justify-content: center;
    text-align: start;
    align-items: center;
    display: flex;
    margin: auto;
}
.footer-social ul li a:hover svg path{
    fill: #46c0d8;
}
.search-result-overlay {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 70;
    background-color: #fff;
    padding: 20px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    padding-left: 40px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #ced4da;
    border-top: none;
}
.search-result-overlay ul li {
    list-style: none;
}
.search-result-overlay ul li:first-child {
    margin-bottom: 5px;
}
.search-result-overlay ul li a {
    color: #000;
    font-size: 1.5rem;
    font-weight: normal;
    padding-bottom: 20px;
    display: block;
    transition: .4s;
}
.search-result-overlay ul li a span {
    display: inline-block;
    margin-right: 10px;
}
.search-result-overlay ul li a i {
    color: #46C0E3;
}
.search-result-overlay ul li a:hover {
    color: #46C0E3;
}
.search-result-overlay ul li:last-child a {
    padding: 0;
}
.search-part .search-result-overlay {
    background: rgba(255, 255, 255, 0.28);
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
    border: none;
    padding-left: 30px;
}
.search-part .search-result-overlay ul li a {
    color: #fff;
}
.search-part .search-result-overlay ul li a i {
    color: #fff;
}
.numberhomeblock {
    width: 100%;
}
.sub-sectors {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(244, 244, 244, 1);
    border: 1px solid rgba(226, 226, 226, 1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 30px;
}
.sub-sectors .top {
    display: flex;
    padding-left: 15px;
    align-items: flex-end;
    color: rgba(70, 192, 227, 1);
    font-size: 2.4rem;
    font-weight: 600;
    gap: 15px;
}
.sub-sectors .list {
    margin-top: 25px;
    padding-left: 20px;
}
.sub-sectors .list li {
    list-style: none;
    padding-left: 15px;
    position: relative;
    margin-bottom: 15px;
}
.sub-sectors .list li a {
    color: #000;
    font-size: 1.6rem;
}
.sub-sectors .list li a:hover {
    transition: .3s;
    color: rgba(70, 192, 227, 1);
}
.sub-sectors .list li.active a {
    color: rgba(70, 192, 227, 1);
    text-decoration: underline;
}
.sub-sectors .list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(70, 192, 227, 1);
    border-radius: 50px;
    width: 8px;
    height: 8px;
}
.owl-carousel .owl-item .sector-card .discover img {
    width: auto;
}
.sectors-carousel .owl-stage-outer {
    padding: 5px;
}
.sectors-carousel .owl-item {
    padding: 10px;
}
.sub-head {
    color: rgba(70, 192, 227, 1);
    font-size: 4rem;
    font-weight: 600;
}
.sector-back {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.sector-back:hover {
    color: #46C0E3;
    transition: .3s;
}
.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
    border: 1px solid #46C0E3;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 30px;
}
.brand-box img {
    height: 70px;
    object-fit: contain;
}
.brand-box .brand-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
}
.prod-title {
    color: #46C0E3;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
#brandTabs.nav-tabs {
    border-bottom: none;
}
#brandTabs .nav-link{
    margin-bottom: 0;
}
#brandTabs .nav-link:hover , #brandTabs .nav-link:focus , #brandTabs .nav-link{
    border: none !important;
    outline: none !important;
}
#brandTabs .cat-item:hover img {
    outline: none;
}
.brands {
    background-color: #D9D9D9;
    padding: 8px 30px;
    margin-bottom: 8px;
}
.brands-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.brands-list li {
    list-style: none;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brands-list li img {
    height: 50px;
    object-fit: contain;
}
.list-full .brands-list {
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}
.list-full .brands-list li {
    width: 40px;
    flex: 1;
}
.list-full .brands {
    padding: 12px 8px;
    margin-bottom: 0;
    margin-left: auto;
}

.page-loader {
    opacity: 0 !important;
}
.company-card .center-top .small-cmp-title {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.star {
    font-size: 17px;
}
.no-image-logo {
    padding: 40px;
}
.continue-newsletter {
    display: none;
    text-align: left;
    margin-top: 30px;
}
.continue-newsletter p {
    font-size: 1.6rem;
    color: #46C0E3;
    text-align: left;
    margin-bottom: 12px;
    font-weight: 400;
}
.continue-newsletter input {
    font-size: 1.4rem;
    padding: 0 15px;
    color: #000;
    border-radius: 10px;
    height: 48px;
    border: 1px solid #E2E2E2;
    font-weight: normal;
}
.continue-newsletter input::placeholder {
    color: #000;
    font-weight: normal;
}
.continue-newsletter .detail-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.continue-newsletter .detail-info .newslet-input {
    width: 100%;
}
.newslet-input .accordion-item {
    border-radius: 10px;
    position: relative;
}
.newslet-input #emailSectorcollapseOne {
    width: 100%;
}
.continue-newsletter .select2-container--default {
    margin: 0;
    width: 100% !important;
}
.continue-newsletter .send-form {
    position: static;
    margin-top: 20px;
    float: right;
}
.newsletter button.passive {
    background-color: #E2E2E2;
    pointer-events: none;
    box-shadow: none;
    border-color: transparent;
}
.newsletter input.passive {
    pointer-events: none;
}
.newsletter-result {
    display: none;
    color: #46C0E3;
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}
.newsletter-result p {
    margin-bottom: 15px;
}
.newsletter-result .black {
    color: #303A3D;
    font-weight: normal;
    margin: 25px 0;
}
.newsletter-result .light {
    font-weight: normal;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 650px;
    }
}

@media only screen and (max-width: 1368px) {
    .sector-names .item {
        flex: auto;
        padding: 8px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 992px) {
    .no-mobile {
        display: none !important;
    }
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        padding-top: 10px;
    }
    .social-head {
        margin: 0;
    }
    .footer-social ul {
        margin-top: 25px;
        height: 60px;
        border-top: 1px solid rgba(255,255,255,.13);
        border-bottom: 1px solid rgba(255,255,255,.13);
    }
    .footer-social ul li:before {
        height: 58px;
        top: -20px;
    }
    .footer-social ul li:last-child::after {
        content: '';
        position: absolute;
        right: 0;
        height: 58px;
        background-color: rgba(255,255,255,.13);
        top: -20px;
        bottom: 0;
        width: 1px;
    }
    .footer-bottom-right {
        padding: 0;
    }
    .footer-bottom-left {
        width: 100%;
        height: 80px;
        gap: 30px;
        margin-top: 20px;
    }
    .footer-bottom-left a {
        width: 49%;
    }
    .slider-top {
        flex-direction: column;
    }
    .footer-bottom-right .tim-div {
        display: none;
    }
    .tim-div-mobile {
        background-color: rgba(32,41,44,.2);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 49%;
    }
    .footer-list {
        margin-top: 16px;
    }
    .footer-top-list {
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .footer-top-list li {
        width: 50%;
        margin-bottom: 20px;
    }
    .spec-container {
        padding: 0 15px;
    }
    footer .container-fluid.spec-container.pe-0 {
        padding-left: 0 !important;
    }
    .footer-right-content .item {
        flex-direction: column;
        padding-top: 10px;
    }
    .footer-right-content .item-head {
        margin-bottom: 0;
    }
    footer {
        padding-top: 40px;
    }
    .footer-marg {
        margin-bottom: 20px;
    }
    .add-company {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .fixed-div .left-fixed {
        width: 100%;
    }
    .fixed-div .left-fixed img {
        height: 400px;
        width: 100%;
    }
    .fixed-div {
        flex-direction: column;
    }
    .scroll-item {
        height: auto;
        padding: 30px 15px;
    }
    .scroll-item .head {
        width: 100%;
    }
    .scroll-item p {
        width: 100%;
        font-size: 1.8rem;
    }
    .scroll-item h4 {
        margin-bottom: 50px;
    }
    section {
        padding: 50px 0;
    }
    .sct-top {
        align-items: flex-start;
        flex-direction: column;
    }
    .sector-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        margin-bottom: 6px;
    }
    .trk-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .slider-bottom-item .item .count {
        font-size: 2.2rem;
        margin-top: 14px;
    }
    section.bg-trk {
        padding: 30px 0;
    }
    section#slider .swipe-text {
        width: 100%;
        height: auto;
        padding: 30px 15px;
    }
    section#slider .swiper-slide {
        height: auto;
        min-height: auto;
        padding-bottom: 50px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 30px;
        left: 15px;
    }
    .swiper-btns {
        right: 20px;
        bottom: 20px;
        justify-content: flex-end;
    }
    .slider-top .right .top-form input {
        height: 50px;
        border-radius: 10px;
        padding-left: 15px;
        font-size: 1.3rem;
        letter-spacing: 1.2px;
    }
    .slider-top .right .top-form input::placeholder {
        font-size: 1rem;
        letter-spacing: 0;
    }
    .search-result-overlay {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding-left: 15px;
    }
    .slider-top .right .top-form button {
        height: 40px;
        width: 60px;
        border-radius: 10px;
        font-size: 1.1rem;
        letter-spacing: inherit;
    }
    .search-result-overlay ul li a {
        font-size: 1.2rem;
        padding-bottom: 7px;
    }
    .top-search {
        padding: 20px 0;
    }
    .slider-top .left {
        width: 100%;
        font-size: 1.8rem;
        margin-bottom: 6px;
        padding-left: 0;
    }
    .swipe-text h2 {
        font-size: 3rem;
        margin: 0;
    }
    .swipe-text .half-line {
        width: 20%;
        margin: 20px 0;
    }
    section#slider .swiper-slide img.slide {
        height: 250px;
        position: static;
        width: 100%;
    }
    .container-fluid.top-container {
        padding: 0 15px;
    }
    .sector-card .sector-body {
        margin-top: 9px;
    }
    .sector-card .city {
        margin: 0;
    }
    .navbar-brand {
        margin-left: 0;
        padding-left: 15px;
    }
    .navbar-toggler {
        position: relative;
    }
    .navbar-toggler-icon {
        height: 1px;
        background-color: #000;
        display: inline-flex;
        width: 25px;
        border-radius: 20px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    .navbar-toggler-icon:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 19px;
        height: 1px;
        background-color: #000;
        border-radius: 20px;
    }
    .navbar-toggler-icon:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 19px;
        height: 1px;
        background-color: #000;
        border-radius: 20px;
    }
    .top-menu-btn .item {
        height: 60px;
        width: 80px;
        border-right: 1px solid #E2E2E2;
    }
    .navbar-toggler {
        width: 60px;
        margin: 0 10px 0 15px;
    }
    .nav-menu {
        height: 100vh;
        justify-content: flex-start;
        margin-top: 0 !important;
    }
    .mobile-search {
        position: relative;
        margin-bottom: 20px;
    }
    .mobile-search input {
        height: 80px;
        border: none;
        background-color: #FCFCFC;
        position: relative;
        border-bottom: 1px solid #e2e2e2;
        border-top: 1px solid #e2e2e2;
        font-size: 1.3rem;
        border-radius: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile-search input:focus {
        box-shadow: none;
        border-color: #e2e2e2;
    }
    .mobile-search input::placeholder {
        font-size: 1rem;
    }
    .nav-menu li a.nav-link {
        font-size: 2.2rem;
        margin-bottom: 30px;
        padding-left: 7.5px;
    }
    .mobile-search .mobile-search-submit {
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0;
        display: flex;
        margin: auto;
        border: none;
        align-items: center;
        background-color:transparent;
    }
    .navbar.bg-light .container-fluid {
        padding: 0;
    }
    .mobile-lang {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: auto;
        padding: 30px 15px;
        border-top: 1px solid #D2D5D6;
    }
    .mobile-lang a {
        color: #6D6E71;
        font-size: 1.8rem;
        font-weight: 500;
        padding: 0 30px;
        height: 100%;
        display: inline-flex;
        align-items: center;
        position: relative;
        line-height: 1;
    }
    .mobile-lang a.active {
        color: #0069AA;
    }
    .mobile-lang a.tr:after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #D2D5D6;
    }
    .prod-box {
        height: auto;
    }
    .sidebar {
        max-width: 100%;
    }
    .big-slide .slide-item img {
        height: 400px;
    }
    .thumb-slide .slide-item img {
        height: 80px;
    }
    .sidebar-search {
        width: 100%;
    }
    .sidebar-search input::placeholder {
        font-size: 1rem;
    }
    .filter-acc .accordion-button {
        font-size: 1.2rem;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 1.2rem;
    }
    .filter-acc .customcheck {
        font-size: 1.2rem;
    }
    .sidebar.top-one {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-top: 10px;
    }
    .sidebar.top-one .filter-acc .accordion-button {
        width: 100%;
    }
    .sidebar.top-one .select2-container--default {
        margin-top: 0;
    }
    .sidebar.top-one .select2-container .select2-selection--single {
        height: 44px;
    }
    .filter-acc .cust-check {
        font-size: 1.2rem;
        height: 44px;
        padding: 8px 12px;
    }
    .sidebar.top-one {
        margin-bottom: 0;
    }
    .filter-acc .customcheck {
        margin-bottom: 5px;
    }
    .sidebar.top-one .filter-acc {
        margin-right: 0;
        flex: 1 0 auto;
        width: auto;
    }
    .sidebar.top-one .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 44px;
    }
    .full-grid , .half-grid {
        display: none;
    }
    .order-btns {
        margin-right: 0;
        justify-content: flex-start;
        margin-top: 8px;
    }
    .filter-input {
        padding-left: 10px;
    }
    .newsletter button {
        width: 80px;
    }
    .side-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-social ul li a {
        padding: 0 29px;
    }
    .footer-bottom-next-right p {
        width: 100%;
    }
    .side-box {
        display: flex;
        flex-wrap: wrap;
    }
    .side-box .side-item {
        margin-right: 24px;
    }
    .side-box .comp-logo {
        margin-bottom: 20px;
    }
    .bg-dark-gray.p-0 {
        top: 60px;
    }
    footer {
        z-index: 61;
    }
    .sidebar.top-one .accordion-collapse {
        left: 0;
        width: 100%;
    }
    section#slider .swipe-left-part {
        width: 100%;
        height: auto;
    }
    .filter-acc .cust-check .customcheck {
        font-size: 1.2rem;
    }
    .sidebar.top-one .accordion-collapse {
        width: max-content;
    }
    .sidebar.top-one .filter-acc .accordion-item {
        position: static;
    }
}
@media only screen and (max-width: 768px) {
    .big-slide .slide-item img {
        height: 250px;
    }
    .thumb-slide .slide-item img {
        height: 50px;
    } 
    .sector-blue-big {
        padding: 20px;
    }
    .sector-blue-big h4 {
        margin-bottom: 15px;
    }
    .sector-blue-big ul li {
        width: 100%;
    }   
    .sector-content-head {
        font-size: 3.3rem;
        padding-top: 20px;
        padding-bottom: 5px;
    }
    .sector-content-head.blue {
        margin-bottom: 8px;
    }
    .accordion.faq .accordion-body p {
        font-size: 1.4rem;
    }
    .accordion.faq .accordion-button {
        padding: 10px 30px;
        font-size: 1.6rem;
    }
    .newslet-section {
        padding: 40px 20px;
        text-align: center;
    }
    .sector-content-blue {
        font-size: 2rem;
    }
    .sector-content p {
        font-size: 1.4rem;
    }
    .prod-box {
        padding: 10px;
    }
    .prod-box .prod-head {
        margin: 10px 0;
        font-size: 1.4rem;
    }
    .prod-box .prod-img {
        object-fit: contain;
    }
    .cmp-box {
        margin-bottom: 10px;
    }
    .office-box {
        margin-top: 5px;
        flex-direction: column;
        align-items: center;
    }
    .office-box p {
        margin-bottom: 10px;
        margin-left: 0;
        font-size: 1.4rem;
    }
    .office-box .map-link {
        padding: 10px 30px;
    }
    .comp-tabs button {
        height: 50px;
        font-size: 1.3rem;
        width: auto;
        flex: 1 0 auto;
        margin-bottom: 3px !important;
    }
    .bg-dark-gray.p-0 .spec-container, .bg-dark-gray.p-0 .spec-container .col-12 {
        padding: 0;
    }
    .bg-dark-gray.p-0 .spec-container .row {
        margin: 0 !important;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .company-content p {
        font-size: 1.4rem;
    }
    .sidebar-search .submit-form img {
        width: 15px;
    }
}


@media only screen and (min-width: 992px) {
    .tim-div-mobile {
        display: none;
    }
    .no-desktop {
        display: none !important;
    }
}






