/* Section I */

/* title-1 & para-1 */
.se-i .title-1 {
  font-family: var(--secondary-font);
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.light-theme .se-i .title-1 {
  color: var(--dark);
}
.se-i .para-1 {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 45px;
}
@media only screen and (max-width: 767.98px) {
  .se-i .title-1 {
    font-size: 26px;
  }
}

/* item */
.se-i .accordion .item {
  position: relative;
}
.se-i .accordion .item:not(:first-of-type) {
  top: -1px;
}

/* item-head */
.se-i .accordion .item-head {
  position: relative;
  padding: 14px 15px 14px 60px;
  background-color: var(--semi-dark);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .15s ease;
}
.light-theme .se-i .accordion .item-head {
  background-color: #fff;
  border-color: var(--border);
}
.se-i .accordion .item-head:hover {
  background-color: var(--semi-dark-2);
}
.light-theme .se-i .accordion .item-head:hover {
  background-color: var(--light);
}
.se-i .accordion .item-head::before,
.se-i .accordion .item-head::after {
  position: absolute;
  content: '';
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 2px;
  background-color: #ffffff;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .item-head::before,
.light-theme .se-i .accordion .item-head::after {
  background-color: var(--dark);
}
.se-i .accordion .item-head::after {
  transform: translateY(-50%) rotate(90deg);
}
.se-i .accordion .item.open .item-head::before {
  transform: translateY(-50%) rotate(90deg) !important;
}

/* accordion-title & accordion-para */
.se-i .accordion .accordion-title {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}
.light-theme .se-i .accordion .accordion-title {
  color: var(--dark);
}
.se-i .accordion .accordion-para {
  font-size: 14px;
  font-family: var(--secondary-font);
  color: var(--text-gray);
}

/* item-body */
.se-i .accordion .item-body {
  display: none;
  padding: 40px 60px;
  background-color: var(--semi-dark);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .2);
}
.light-theme .se-i .accordion .item-body {
  background-color: var(--light);
  border-color: var(--border);
}
@media only screen and (max-width: 767.98px) {
  .se-i .accordion .item-body {
    padding: 40px 20px;
  }
}

/* form-label */
.se-i .accordion .abuse-form .form-label {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.se-i .accordion .abuse-form .input-title {
  display: block;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 10px;
}

/* notify */
.se-i .accordion .abuse-form .form-label .notify {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 40px;
  right: 10px;
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  z-index: 2;
  font-size: 10px;
}
.se-i .accordion .abuse-form .form-label .notify.notify-valid {
  background-color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .notify.notify-error {
  background-color: #F4C983;
}
.se-i .accordion .abuse-form .form-label .notify img {
  width: 12px;
  filter: invert(1);
}

/* form-input */
.se-i .accordion .abuse-form .form-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 45px 0 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #ffffff;
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .abuse-form .form-input {
  background-color: #fff;
  border-color: var(--border);
  color: var(--dark);
}
.se-i .accordion .abuse-form .form-input:hover {
  border-color: rgba(255, 255, 255, .4);
}
.light-theme .se-i .accordion .abuse-form .form-input:hover {
  border-color: var(--border);
}
.se-i .accordion .abuse-form .form-input:focus {
  background-color: var(--semi-dark-2);
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-input:focus {
  background-color: #fff;
  border-color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-input[type="date"],
.se-i .accordion .abuse-form .form-label .form-input[type="time"]{
  padding: 0 10px;
}
/* ...> valid */
.se-i .accordion .abuse-form .form-label .form-input.valid {
  background-color: #1f273e;
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-label .form-input.valid {
  background-color: rgb(0, 96, 254, .1);
  color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-input.valid ~ .notify-valid {
  display: inline-flex;
}
/* ...> error */
.se-i .accordion .abuse-form .form-label .form-input.error {
  background-color: rgba(244, 201, 131, 0.07);
  border-color: #F4C983;
  color: #F4C983;
  margin-bottom: 12px;
}
.se-i .accordion .abuse-form .form-label .form-input.error ~ .notify-error {
  display: inline-flex;
}

/* form-textarea */
.se-i .accordion .abuse-form .form-label .form-textarea {
  display: block;
  width: 100%;
  padding: 15px 45px 15px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #ffffff;
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  min-height: 150px;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .abuse-form .form-label .form-textarea {
  background-color: #fff;
  border-color: var(--border);
  color: var(--dark);
}
.se-i .accordion .abuse-form .form-label .form-textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .2);
}
/* ...> valid */
.se-i .accordion .abuse-form .form-label .form-textarea.valid {
  background-color: #1f273e;
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-label .form-textarea.valid {
  background-color: rgb(0, 96, 254, .1);
  color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-textarea.valid ~ .notify-valid {
  display: inline-flex;
}
/* ...> error */
.se-i .accordion .abuse-form .form-label .form-textarea.error {
  background-color: rgba(244, 201, 131, 0.07);
  border-color: #F4C983;
  color: #F4C983;
  margin-bottom: 12px;
}
.se-i .accordion .abuse-form .form-label .form-textarea.error ~ .notify-error {
  display: inline-flex;
}

/* notify */
.se-i .accordion .abuse-form .form-label span:not(.notify, .input-title) {
  position: absolute;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  /* display: none; */
}
.se-i .accordion .abuse-form .form-label span.error {
  position: relative;
  display: flex;
  color: #F4C983;
}

/* form-para */
.se-i .accordion .abuse-form .form-para {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  animation-name: unset;
}
/*-------------------------------------*/

/* Notifications */
.notifications {
  display: none;
  position: fixed;
  z-index: 99;
  top: 140px;
  left: 15px;
}
.notifications .notify {
  position: relative;
  padding: 12px 70px 12px 20px;
  background: #1B1B2F;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 550px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.3);
  left: -400px;
  opacity: 0;
  visibility: hidden;
  transition: all .6s cubic-bezier(.77,0,.175,1);
}
.notifications .notify.show {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.notifications .notify-1::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 6px;
}
.notifications .notify-1.success::before {
  background: #4ad395;
}
.notifications .notify-1.fail::before {
  background: #ef3737;
}
.notifications .notify-1 .para-1 {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: #ffffff;
  max-width: 370px;
  line-height: 1.4;
}
.notifications .notify-1 .para-1 span {
  font-weight: 500;
}
.notifications .notify-1.success .para-1 span {
  color: #4ad395;
}
.notifications .notify-1.fail .para-1 span {
  color: #ef3737;
}
.notifications .notify-1 .close-notify-btn {
  position: absolute;
  right: 12px;
  top: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.notifications .notify-1 .close-notify-btn svg {
  fill: #6d7c90;
  width: 12px;
  transition: all .2s ease;
}
.notifications .notify-1 .close-notify-btn:hover svg {
  fill: #b81525;
}
@media only screen and (max-width: 767.98px) {
  .notifications .notify {
    min-width: 300px;
    width: 360px;
  }
}

.header {
  padding: 30px 0 50px;
  background: rgb(152,221,202);
  background: linear-gradient(0deg, rgba(152,221,202,1) -20%, rgba(173,232,216,1) 15%, rgba(173,232,216,1) 54%, rgba(152,221,202,1) 100%);
  background: #FFD369;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .header {
    padding: 70px 0;
  }
}

/* navigator */
.header .navigator {
  margin-bottom: 100px;
  font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--dark);
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 500;
  border-bottom-color: var(--dark);
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: var(--dark);
}

/* title-5 */
.header .title-5 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
  font-family: var(--third-font);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

/* hero */
.header .hero {
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 800px;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    left: 60%;
    width: 700px;
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none
  }
}
/*------------------------------------------------------*/

/* plan */
.se-i .plans .plan {
  position: relative;
  padding: 40px;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 12px;
  height: 100%;
  z-index: 2
}
.light-theme .se-i .plans .plan {
  background-color: var(--light);
  border-color: var(--border);
}

/* popular-box */
.se-i .plans .plan .popular-box {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan .popular-box {
  background-color: #fff;
}
.se-i .plans .plan .popular-box::before {
  position: absolute;
  content: '';
  left: -4px;
  top: -4px;
  width: 48px;
  height: 48px;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  z-index: -1;
}
.se-i .plans .plan .popular-box img {
  width: 17px;
  filter: invert(1);
}
.light-theme .se-i .plans .plan .popular-box img {
  filter: invert(0);
}

/* plan-icon */
.se-i .plans .plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left: -4px
}

/* plan-head */
.se-i .plans .plan-head {
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-i .plans .plan-head {
  border-color: var(--border);
}
.se-i .plans .plan-name {
  font-size: 20px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-name {
  color: var(--dark);
}
.se-i .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px
}

/* plan-price */
.se-i .plans .plan-price {
  margin-bottom: 20px
}
.se-i .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-price .price {  
  color: var(--dark);
}
.se-i .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-i .plans .actions {
  padding-bottom: 10px
}

/* group */
.se-i .plans .group {
  margin-top: 45px;
}
.se-i .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px
}
.light-theme .se-i .plans .group .title-4 {
  color: var(--dark);
}
.se-i .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-i .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px
}
.se-i .plans .group .list li img {
  margin-right: 10px;
  width: 16px
}

/* float-box */
.se-i .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-i .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, .1);  
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, .1);
}
.se-i .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, .2);
}
.se-i .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-i .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-i .se-footer .line {
  margin: 6px 12px;
}
.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-i .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}


/*-------------------------------------*/
.no-right-click {
    pointer-events: none; /* Dezactivează evenimentele de cursor */
}

.no-drag {
    user-select: none; /* Dezactivează selectarea */
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none; /* Dezactivează meniul de context de pe dispozitivele mobile */
    touch-action: none; /* Dezactivează gesturile de tragere */
}
    /*------------------------------------------------------------------
Project: Antler - Hosting Provider & WHMCS Template
Description: Antler Responsive Premium Template Designed for all web hosting providers
Author: inebur (Rúben Rodrigues)
Author URI: http://inebur.com/
Author Envato: https://themeforest.net/user/inebur
Copyright: 2022 inebur
Version: 3.0
 -------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of styles content]

1 - General
2 - Sections
3 - Header
4 - Buttons
5 - Flickity
6 - Pricing Tables
7 - Tabs
8 - Services
9 - Team
10 - Forms
11 - Countdown
12 - Case Study
13 - FAQ
14 - Blog
15 - Footer
16 - Range
17 - Switch
18 - Statistics 
19 - Menus
20 - Others
21 - Settings
22 - Responsive
--------------------------------------------------------------------*/


/*-----------------------------------
    2 - Sections
------------------------------------*/
.sec-main {
	box-shadow: 0 5px 15px 0 rgba(110, 110, 110, .1);
	border-radius: 12px !important;
	position: relative !important;
	padding: 80px 80px;
}

.sec-sec {
	box-shadow: 0 5px 15px 0 rgba(110, 110, 110, .1);
	border-radius: 12px;
	position: relative;
	padding: 30px 30px;
}

.sec-uping {
	margin-top: -475px;
	z-index: 1;
}

.sec-up {
	margin: -50px 0 100px;
	position: relative;
	z-index: 1;
}

.sec-up-slider {
	margin: -120px 0 0;
	padding-bottom: 135px;
	position: relative;
	z-index: 1;
}

.sec-normal {
	padding: 135px 0px;
	position: relative;
	z-index: 0;
}

.sec-bg1 {
	background-color: #ffffff;
}

.sec-bg2 {
	background-color: #efefef;
}

.sec-bg3 {
	background-color: #15212a;
}

.sec-bg4 {
	background-color: #fdd700;
}

.sec-bg6 {
	background-color: #1d262f;
}

.sec-grad-yellow-to-grey-left {
	background: linear-gradient(90deg, #fdd700 70%, #d9dde4 10%) !important
}

.sec-grad-yellow-to-grey-right {
	background: linear-gradient(90deg, #d9dde4 70%, #fdd700 10%) !important
}

.sec-grad-yellow-to-white-right {
	background: linear-gradient(90deg, #ffffff 70%, #fdd700 10%) !important
}

.sec-grad-yellow-to-black-right {
	background: linear-gradient(90deg, #15212a 70%, #fdd700 10%) !important
}

.sec-grad-black-to-yellow-left {
	background: linear-gradient(90deg, #fdd700 30%, #15212a 0%) !important;
}

.sec-grad-grey-to-grey {
	background: linear-gradient(-60deg, #3a6173 0%, #16222a 100%) !important;
}

.total-grad {
	position: absolute;
	display: block;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.total-grad-inverse {
	position: absolute;
	display: block;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.total-grad-grey {
	background: linear-gradient(-60deg, #3a6173 0%, #16222a 100%) !important;
	position: absolute;
	display: block;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.total-grad-grey-inverse {
	background: linear-gradient(240deg, #16222a 0%, #3a6173 100%);
	position: absolute;
	display: block;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.total-grad-pink-blue-intense {
	position: absolute;
	display: block;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.section-heading {
	font-size: 52px !important;
	margin-top: 0px !important;
	margin-bottom: 20px !important;
	text-transform: capitalize !important;
	position: relative !important;
	display: inline-block !important;
	color: #181b22;
	line-height: 52px !important;
	font-weight: 700 !important;
}

.section-heading.light {
	color: #fff;
}

.section-subheading {
	position: relative !important;
	color: #212122;
	font-size: 20px !important;
	line-height: 34px !important;
}

.path-left {
	position: absolute;
	height: 100%;
	right: 30%;
	top: 0;
}

.path-right {
	position: absolute;
	height: 100%;
	left: 70%;
	top: 0;
}


/*-----------------------------------
    4 - Buttons
------------------------------------*/
.btn {
	text-transform: capitalize;
	cursor: pointer !important;
	border: 1px solid #4c4a4a;
	border-radius: 50px;
	color: #4c4a4a;
	font-size: 16px;
	margin: 0;
	padding: 15px 30px;
	position: relative;
	background-color: transparent;
	letter-spacing: 0.2px;
	font-weight: 700;
	box-shadow: 0 2px 8px 0 rgb(62 62 79 / 23%);
	-webkit-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.btn:hover {
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .30);
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.btn-default-pink:hover {
	color: #ffffff !important;
}

.btn-default-purple:hover {
	color: #ffffff !important;
}

.btn-default-grad-purple-fill {
	color: #ffffff;
	border: none;
	background-size: 300% 100%;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.btn-default-grad-purple-fill:hover {
	color: #ffffff;
	background-position: 100% 0;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.btn-default-pink-fill {
	color: #fff !important;
	border: none;
}

.btn-default-pink-fill:hover {
	background-color: #4c4a4a !important;
	color: #fff !important;
	border: none;
}

.btn-default-yellow-fill {
	background-color: #fdd700 !important;
	color: #000 !important;
	border: none;
}

.btn-default-yellow-fill:hover {
	background-color: #4c4a4a !important;
	color: #fff !important;
	border: none;
}

.btn-default-purple-fill {
	color: #fff !important;
	border: none;
}

.btn-default-purple-fill:hover {
	background-color: #4c4a4a !important;
	color: #fff !important;
	border: none;
}

.btn-default-fill {
	background-color: #4c4a4a !important;
	color: #fff !important;
	border: none;
}

.btn-default-fill:hover {
	background-color: #fdd700 !important;
	color: #000 !important;
	border: none;
}

.btn.question {
	font-weight: 700!important;
	transform: initial!important;
	letter-spacing: 1px!important;
	text-transform: uppercase!important;
	padding: 9px 12px!important;
	font-size: 10px!important;
}

.btn.focus, .btn:focus {
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary:not(:disabled):not(.disabled).active {
	opacity: 1;
	color: #000 !important;
	background-color: #fdd700;
	border: solid 1px #fdd700;
	border-radius: 18px;
	padding: 12px 14px;
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
	border-radius: 18px;
	padding: 12px 14px;
	color: #4c4a4a;
}

.btn-secondary:not(:disabled):not(.disabled) {
	opacity: 0.6;
	background-color: #fff;
	border-color: #efefef;
	border-radius: 12px;
	padding: 13px 12px 12px 12px;
}

.btn-group>.btn:not(:first-child) {
	opacity: 0.6;
	background-color: #efefef;
	border: solid 1px #d6d6d6;
	border-radius: 18px;
	padding: 12px 14px;
	color: #4c4a4a;
	-ms-grid-row: 2;
	-ms-grid-column: 2fr;
}

.btn-group .btn+.btn {
	margin-left: 5px;
}

.btn-group.toplang .btn+.btn {
	margin-left: 0px;
}

.btn-secondary:hover {
	background-color: #4c4a4a;
}

.btn-sm {
  padding: 0.5rem 2rem!important;
  font-size: 1rem!important;
}

.btn-md {
    padding: 1rem 3rem!important;
    font-size: 1.2rem!important;
}



/*-----------------------------------
    8 - Services
------------------------------------*/
.services .heading {
	font-size: 20px;
	color: #464646;
	text-transform: capitalize;
}

.services .info {
	font-size: 16px;
	color: #81868e;
}

.services .service-wrap .line {
	height: 1px;
	width: 100%;
	background-color: #eaeaeb;
	position: relative;
}

.services .service-wrap .line:before {
	content: "";
	height: 2px;
	background-color: #fdd700;
	width: 50%;
	position: absolute;
	top: -1px;
}

.services .service-wrap .info {
	padding-right: 80px;
}

.services .service-wrap .service-section {
	border-radius: 12px;
	background-color: transparent;
	position: relative;
	padding: 50px;
	margin-top: 50px;
	box-shadow: 0 5px 15px 0 rgba(110, 110, 110, .1);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.services .service-wrap .service-section .title {
	font-weight: 700;
	font-size: 22px;
	color: #212122;
	margin-top: 20px;
	margin-bottom: 14px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.services .service-wrap .service-section .subtitle {
	line-height: 34px;
	font-size: 16px;
	color: #4C4A47;
	margin-bottom: 0px;
}

.services .service-wrap .service-section a {
	margin-top: 30px;
}

.services .service-wrap .service-section.service {
	border-right: 0;
}

.services .service-wrap .service-section i {
	font-size: 60px;
}

.services .service-wrap .service-section .svg {
	height: 60px;
	width: 60px;
}

.services.blog .service-wrap .service-section {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
}

.services .service-wrap .service-section .svg.animal {
	width: 100%;
	height: 100%;
}

.services.blog .service-wrap img {
	width: 100%;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	margin-top: 50px;
}

.services .service-wrap {
	border-bottom: 0;
}

.services.padd {
	padding-top: 75px;
}

.services.padd .service-wrap {
	margin-top: 64px;
}

.history-section .history-separate.first {
	margin-bottom: 50px;
}

.history-section .history-separate.last {
	margin-bottom: 0px;
}

.history-section .wrappper.last {
	margin-bottom: 0px;
}

.history-section .wrappper .title {
	font-size: 18px;
	line-height: 30px;
}

.history-section .wrappper .desc {
	font-size: 14px;
	color: #5b6164;
	line-height: 26px;
}

.history-section .wrappper .date {
	font-size: 12px;
	margin-top: 30px;
	color: #4c4a4a;
}

.history-section .wrappper .date .year {
	font-weight: 700;
	font-size: 12px;
}

.history-section .wrappper .read a {
	color: #fff;
	padding: 7px 10px;
	font-size: 13px;
	background-color: #fdd700;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.history-section .wrappper .read a:hover {
	text-decoration: none;
	background-color: #212122;
	color: #fff;
}

.history-section .wrappper.right {
	text-align: left;
	margin-left: -9px;
}

.history-section .link-pages {
	background-color: #fdd700;
	color: #181b22;
	font-size: 24px;
	font-weight: 700;
	display: inline-block;
	text-align: center;
	padding: 51px 41px 43px;
	line-height: 34px;
	margin-top: 24px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.history-section .link-pages:hover {
	text-decoration: none;
	background-color: #181b22;
	color: #fdd700;
}

.history-section .img-wrap {
	position: relative;
}

.history-section .img {
	width: 100%;
	margin: 0px;
}

.history-section .wrappper {
	text-align: left;
	margin-top: 50px;
}

.history-section .row {
	height: auto;
	display: flex;
	padding-bottom: 80px;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.history-section .row:last-child {
	padding-bottom: 0px;
}

.history-section.feat01 .row .info-content {
	padding-bottom: 0px;
}

.history-section .row .info-content h4 {
	margin-bottom: 20px;
	line-height: 34px;
}

.history-section .row .info-content p {
	font-size: 18px;
	line-height: 38px;
	color: #4c4a4a;
}

.history-section hr {
	display: none;
}

.help {
	position: relative;
}

.help .help-container {
	position: relative;
	height: 145px;
	margin-top: 50px;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0 5px 15px 0 rgba(110, 110, 110, .1);
}

.help .help-container:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.help .help-item {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	border: 0;
	font-size: 0;
	padding: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.help .help-item:before {
	content: '';
	position: absolute;
	top: 35px;
	bottom: 0;
	left: 28%;
	width: 1px;
	height: 50%;
	background: #808080;
	transition: all .3s ease;
}

.help .help-item.dark:before {
	background: #414142;
}

.help .help-item:before.right {
	right: 28%;
}

.help .help-item .img {
	position: relative;
	width: 28%;
	height: 100%;
}

.help .help-item .ico {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 55px;
	height: 55px;
	transform: translate(-50%, -50%);
}

.help .help-item .inform {
	width: 70%;
	padding: 0 30px;
}

.help .help-item .inform .title {
	font-size: 19px;
	font-weight: 700;
	color: #212122;
}

.help .help-item .inform .description {
	font-size: 16px;
	line-height: 26px;
	color: #818182;
	margin-top: 5px;
}

.help .help-item .img, .help .help-item .inform {
	display: inline-block;
	vertical-align: middle;
}