/*
Theme Name: Express Card
*/

body {
    background-color: #fafafc;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #2f3e4b;
}
body li,
body p {
    font-size: 16px;
}
body a {
    color: #2f3e4b;
    text-decoration: underline;
}
body a:hover {
    text-decoration: none;
}
.logo img {
    width: 124px;
    height: 66px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.site-header {
    box-shadow: 1px 3px 11px 0px rgba(0, 0, 0, 0.11);
    -webkit-box-shadow: 1px 3px 11px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 1px 3px 11px 0px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 11;
}
.site-header .first-row {
    background-color: #495966;
    padding: 15px 0;
}
.main-menu-container .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* elementele principale în rând */
    justify-content: space-between;
}

.main-menu-container {
    width: 50%;
}

.main-menu-container .menu > li {
    position: relative; /* pentru poziționarea submeniului absolut */
}

.main-menu-container .menu > li > a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

/* ::after - săgeata / indicatorul */
.main-menu-container .menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 3px;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    background-image: url(img/maft.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Rotație la hover pe elementul părinte */
.main-menu-container .menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submeniul - ascuns implicit */
.main-menu-container .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    min-width: 180px; /* poți ajusta */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 2;
    border-radius: 8px;
}

/* Afișare submeniu la hover pe li */
.main-menu-container .menu > li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Stil elemente submeniu */
.main-menu-container .sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.main-menu-container .sub-menu li a:hover {
    background: #eee;
}
.social-top a {
    display: block;
}
.social-top a img {
    width: 37px;
    height: 37px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.ec-btn-sq {
    display: inline-block;
    min-width: 163px;
    padding: 11px 15px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}
.ec-btn-rnd {
    display: inline-block;
    min-width: 163px;
    padding: 11px 28px;
    font-size: 16px;
    color: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}
.ec-btn-form {
    display: inline-block;
    width: 100%;
    padding: 11px 15px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}
.ec-btn-formex {
	font-size: 20px;
}
.ec-btn-full {
    background-color: #ff7c0f;
}
.ec-btn-full:hover {
    background-color: #e56800;
}
.ec-btn-empty {
    border: 2px #fff solid;
}
.ec-btn-empty:hover {
    background-color: #fff;
    color: #ff7c0f;
}
.ec-btn-accent {
    border: 2px #ff7c0f solid;
    color: #ff7c0f;
}
.ec-btn-accent:hover {
    color: #fff;
    background-color: #ff7c0f;
}
.ec-btn-17 {
    font-size: 17px;
}
.ec-btn-xpadd {
    padding-left: 40px;
    padding-right: 40px;
}
.ec-btn-20 {
    font-size: 20px;
}
.ec-btn-bl {
  background-color: white;
  box-shadow: 0px 12px 30px 1px rgba(0, 124, 202, 0.08);
  color: #007CCA;
}
.second-row {
    background-color: #ffffff;
}
.catalog-button-icon {
    font-size: 0;
    width: 38px;
    height: 38px;
    background-image: url(img/k.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.catalog-button-text {
    display: none;
}
.menu-button-active .catalog-button-text {
    display: initial;
    margin-left: 9px;
}
.menu-button-active {
    background-color: #007cca;
    display: flex;
    padding: 7px;
    border-radius: 6px;
}
.menu-button-active .catalog-button-icon {
    width: 26px;
    height: 26px;
    background-image: url(img/k2.png);
}
.menu-catalog {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 3;
}
.menu-catalog.open {
    display: flex;
}
.catalog-button {
    cursor: pointer;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
}
.menu-catalog > .menu-item {
    width: calc(50% - 3px);
    background-color: #f6f6f6;
    padding: 50px;
    min-height: 296px;
    font-size: 29px;
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: right bottom;
    filter: grayscale(1);
}
.menu-catalog a {
	text-decoration: none;
}
.menu-catalog a:hover {
	text-decoration: underline;
}
.menu-catalog > .menu-item:hover {
    background-color: #e2efff;
    filter: grayscale(0);
}

.menu-catalog .sub-menu {
    display: block;
    position: initial;
    background-color: transparent;
    min-width: initial;
    box-shadow: none;
    font-size: 17px;
    font-weight: 300;
}
.menu-catalog .sub-menu li {
    display: block;
}
.menu-catalog .sub-menu a {
    display: inline-block;
    padding-left: 0;
}
.menu-catalog .sub-menu a:hover {
    background-color: transparent;
    text-decoration: underline;
}
.sr-flex {
    position: relative;
}
.p-btn-accent {
    background-color: #007cca;
}
.p-btn-accent,
.b-btn-dark {
    color: #fff;
    min-width: 163px;
    padding: 0 7px;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
}
.b-btn-dark {
    background-color: #495966;
}
.secondary-menu {
    width: 50%;
}
.secondary-menu a {
    text-decoration: none;
}
.hero-main {
	background: linear-gradient(to right, #ffffff 50%, #d8f0ff 50%);
    margin-bottom: 80px;
    overflow: hidden;
}
.hero-main h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    margin-bottom: 23px;
}
.hero-main p {
    font-size: 27px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-bottom: 60px;
}
.hero-main-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 498px;
    height: 612px;
    margin-bottom: -87px;
    margin-left: 51px;
}
body h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    margin-bottom: 23px;
    color: #2f3e4b;
    line-height: 1;
}
body h3 {
    font-family: "Roboto", sans-serif;
    color: #2f3e4b;
    line-height: 1;
}
.sqwesh {
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.custom-form input {
    display: block;
    font-family: "Open Sans", sans-serif;
    width: 100%;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px 0;
    color: #000;
    font-size: 16px;
    text-indent: 10px;
    background: transparent;
}

.custom-form input::placeholder {
    color: #cdcdcd;
    font-weight: 600;
}

.custom-form button {
    margin-top: 10px;
    margin-bottom: 20px;
}

.custom-form .consent-text {
    font-size: 12px;
    color: #cdcdcd;
    line-height: 1.4;
}

.custom-form .consent-text a {
    color: #3ba1e0;
    text-decoration: underline;
}
.qf::before {
    content: "";
    width: 87px;
    height: 57px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(img/qf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.qf::after {
    content: "";
    width: 87px;
    height: 57px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(img/qf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}
.breadcrumbs {
	padding: 0;
	maring: 0;
	list-style: none;
}
.breadcrumbs li {
	display: inline-block;
}
.breadcrumbs a {
	font-size: 14px;
	color: #adb3b9;
	font-family: "Roboto", sans-serif;
	text-decoration: none;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs li::before {
	content: "·";
	font-size: 14px;
	color: #adb3b9;
	font-family: "Roboto", sans-serif;
	text-decoration: none;
	margin-right: 5px;
}
.breadcrumbs li:nth-child(1)::before {
	content: "";
	margin-right: 0;
}
.ohero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 129%;
    aspect-ratio: 833 / 461;
    max-width: initial;
    left: -233px;
    top: -60px;
}
.prov-carousel img,
.prov-carousel-no-text img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.prov-carousel {
	position: relative;
}
.prov-carousel .owl-nav {
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	right: 0;
}
.prov-carousel .owl-prev span,
.prov-carousel .owl-next span {
	display: block;
	font-size: 0;
	width: 8px;
	height: 31px;
	background-image: url(img/11.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}
.prov-carousel .owl-next span {
	transform: rotate(180deg);
}
.prov-carousel .owl-prev,
.prov-carousel .owl-next {
	position: absolute;
}
.prov-carousel .owl-prev {
	left: -13px;
}
.prov-carousel .owl-next {
	right: -13px;
}
.prov-carousel .item,
.prov-carousel-no-text .item {
	padding: 20px;
}
.pnp {
	background-image: url(img/1006.png);
}
.bgnorm {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.form-input {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    height: 50px;
    padding: 0 15px;
}

.select2-container .select2-selection--single {
    background-color: #3ba1e0;
    border-radius: 5px;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 18px;
}

.select2-container .select2-dropdown {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.select2-container .select2-results__option--highlighted {
    background-color: #fff;
    color: #000;
}

/* Ascunde cerculețul default */
.radio-option input[type="radio"] {
  display: none;
}

/* Container pentru opțiuni */
.radio-option {
  display: inline-flex;
  align-items: center;
  background-color: #F0F0F0;
  border-radius: 5px;
  height: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Stil pentru textul din interior */
.radio-option span {
  line-height: 50px;
  padding: 0 20px;
}

/* Opțiune selectată */
.radio-option input[type="radio"]:checked + span {
  background-color: #3BA1E0;
  color: #fff;
  border-radius: 5px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  height: 50px;
}
.select2-container--default .select2-selection--single {
	background-color: #3BA1E0;
	height: 50px;
	border: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #fff;
	line-height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 19px;
	height: 7px;
	background-image: url(img/s2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 43%;
	right: 20px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: rotate(180deg);
}
.s2-input {
	max-width: 300px;
}
#oilbase-list {
    transform: translateX(-100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#oilbase-list.show {
    transform: translateX(0%);
}
#hide-list {
	position: absolute;
	right: 25px;
	bottom: 25px;
	z-index: 3;
}
.prov-carousel-no-text img {
	height: 194px;
}
.owl-carousel .owl-dot span {
	display: block;
	width: 8px;
	height: 8px;
	background-color: #C8C4C4;
	border-radius: 100%;
	cursor: pointer;
	margin: 0 5px;
}
.owl-carousel .owl-dots {
	text-align: center;
}
.owl-carousel .owl-dot.active span {
	background-color: #333333;
}
.mhero {
	background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    aspect-ratio: 811 / 419;
}
.sqbgn img {
	background-position: center;
	background-repeat: no-repeat;
}
.bgiconorm {
    background-size: 62%;
    background-repeat: no-repeat;
    background-position: center;
}
.bgnormcov {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.phero {
	position: relative;
	right: 0;
	top: -55px;
	width: 100%;
	height: 455px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
}
.bgnorminit {
	background-position: center;
	background-repeat: no-repeat;
}
#toggleMore {
	transform: rotate(0deg);
	transition: all .3s ease;
}
.contentOpened span img {
	transform: rotate(180deg);
	transition: all .3s ease;
}
.thero-wrap {
	background: linear-gradient(to right, #ffffff 50%, #d8f0ff 50%);
	box-shadow: 0px 3px 9.1px 0px rgba(0, 0, 0, 0.19);
}	
.thero-img {
	background-image: url(img/101.png);
    left: -120px;
    bottom: 0;
    background-position: left bottom;
    width: 500%;
    max-width: initial;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: initial;
    position: relative;
    height: 600px;
    margin-top: 20px;
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background-color: #ced0d1;
    border: none;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}
.custom-checkbox:checked {
    background-color: #3ba1e0;
    background-image: url("img/check.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px 9px;
}
.blog-category {
    background-color: #a3a3a3;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 45px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.blog-category:hover {
    background-color: #7b7b7b;
    text-decoration: underline;
}
.khero-img {
	background-image: url(img/201.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 95%;
}
.tab-button img {
    width: 100%;
    height: 100%;
    background-position: 43% 50%;
}
.tab-button.tab1 img {
    background-image: url("img/231.png");
    background-size: 37px;
}
.tab-button.tab2 img {
    background-image: url("img/232.png");
    background-size: 24px;
}
.tab-button.tab3 img {
    background-image: url("img/233.png");
    background-size: 29px;
}
.tab-button.tab4 img {
    background-image: url("img/234.png");
    background-size: 42px;
}
.tab-button.tab5 img {
    background-image: url("img/235.png");
    background-size: 31px;
}
.tab-pane {
    display: none!important;
}
.tab-pane.active {
    display: flex!important;
}
#tab-buttons button {
	width: 115px;
	height: 43px;
	background-size: cover;
	background-position: center;
	box-shadow: 1px -2px 6.5px 0 rgba(0, 0, 0, 0.07);
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	z-index: 1;
	background-color: white;
	border: none;
}
#tab-buttons {
    position: relative;
    display: inline-flex;
    box-shadow: 1px -2px 6.5px 0 rgba(0, 0, 0, 0.07);
    z-index: 1;
    bottom: -7px;
}
#tab-buttons button {
    width: 115px;
    height: 43px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 2;
}
#tab-buttons button:not(:first-child) {
    margin-left: -13px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}
#tab-buttons button:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
#tab-buttons button:nth-child(5) {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
#tab-buttons button::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transform: rotate(15deg);
    right: 3px;
    filter: blur(1px);
}
#tab-buttons button:nth-child(5)::after {
    display: none;
}
.tab-button.tab1:hover img,
.tab-button.tab1.active img {
    background-image: url("img/231h.png");
    background-color: #ff9034;
}
.tab-button.tab2:hover img,
.tab-button.tab2.active img {
    background-image: url("img/232h.png");
    background-color: #007cca;
}
.tab-button.tab3:hover img,
.tab-button.tab3.active img {
    background-image: url("img/233h.png");
    background-color: #fd2015;
}
.tab-button.tab4:hover img,
.tab-button.tab4.active img {
    background-image: url("img/234h.png");
    background-color: #002189;
}
.tab-button.tab5:hover img,
.tab-button.tab5.active img {
    background-image: url("img/235h.png");
    background-color: #aa83ff;
}
.pr-bgimg {
	background-position: center;
	background-size: initial;
}
.parimg {
	width: 100%;
	aspect-ratio: 1156 / 116;
}
.feedbacks-carousel p {
	z-index: 2;
}
.conimg {
	background-position: bottom right;
	background-size: 113%;
}
.ftimg {
	background-image: url(img/ft.png);
}
.ec-btn-dark {
	background-color: #495966;
}
.dlbg {
    background-image: url(img/402.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: 50%;
}