@font-face {
  font-family: 'MyriadWebPro';
  src: url('../fonts/fontawesome/webfonts/MyriadWebPro.svg#MyriadWebPro') format('svg'),
    url('../fonts/fontawesome/webfonts/MyriadWebPro.ttf') format('truetype'),
    url('../fonts/fontawesome/webfonts/') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'unicons';
  src: url('../fonts/fontawesome/webfonts/unicons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Definition of colors */
:root,
body.light-theme {
  /* text colors */
  --white: #fff;
  --light-white: #fdfdff;
  --sky-blue: #00C0FF;
  --sky-blue2: #2997ff;
  --baby-blue: #338ED1;
  --light-blue: #1DA1F2;
  --Sim-blue: #1b6ce5;
  --blue: #0f63dc;
  --navy-blue: #262f56;
  --navy-dark: #12222E;
  --dark-blue: #212529;
  --dark-blue2: #1d1d1f;
  --blue-gray2: #5A5C72;
  --bluce-gray3: #6e6e73;
  --bright-green: #27ae60;
  --lemon-green: #60D13E;
  --orange-red: #E84343;
  --light-orange: #f77a24;
  --orange: #FB7E5C;
  --white-smoke: #bdbdbd;
  --light-gray: #ADB1BD;
  --gray: #828282;
  --sim-gray: rgba(255, 255, 255, 0.5);
  --mid-gray2: rgba(248, 248, 248, 0.553);
  --light-black: #333;
  --off-gray: #343434;
  --black: #2a2a2a;
  --blue-black: #24252E;
  --dark-black: rgb(33, 37, 41);
  --ex-black: #000;
  /*Shadow Color*/
  --sam-black3: rgba(0, 0, 0, 0.15);
  /* Border Color */
  --bd-off-white2: #f5f5f5;
  --bd-white-silver: #d8d8d8;
  --bd-light-white: #e2e2e2;
  --bd-lemon-green: #60D13E;
  --bd-light-orange: #f77a24;
  --bd-orange: #FB7E5C;
  --bd-gray-smoke: #e0e0e0;
  --bd-gray-smoke2: #e6e6e6;
  --bd-pale-silver: #ccc;
  --bd-sim-gray2: rgba(226, 226, 226, 0.5);
  --bd-sim-gray4: rgba(255, 255, 255, .2);
  --bd-mid-gray: rgba(242, 242, 242, .4);
  --bd-sim-black: rgba(0, 0, 0, 0.1);
  --bd-ex-black: #000;
  /* background colors */
  --bg-white: #fff;
  --bg-light: rgb(255, 255, 255);
  --bg-whiteSmoke: whitesmoke;
  --bg-Off-white: #f2f2f2;
  --bg-bright-blue: rgb(0, 65, 161);
  --bg-cadet-blue: rgba(29, 161, 242, 0.1);
  --bg-blue-gray: #5B637C;
  --bg-lem-green: #84DF68;
  --bg-lemon-green: #60D13E;
  --bg-pink: #E91E63;
  --bg-fire-brick: rgba(255, 75, 85, .1);
  --bg--light-orange: #f77a24;
  --bg-orange: #FB7E5C;
  --bg-gray-smoke: #e0e0e0;
  --bg-light-gray: #ADB1BD;
  --bg-light-gray2: rgb(242, 242, 242);
  --bg-sim-gray3: rgba(189, 189, 189, .5);
  --bg-sim-gray5: rgba(255, 255, 255, .04);
  --bg-mid-gray3: rgba(255, 255, 255, .1);
  --bg-sam-gray: rgba(218, 218, 218, 0.1);
  --bg-dark-gray: rgba(240, 240, 240, .1);
  --bg-light-black: #333;
  --bg-black: #2a2a2a;
  --bg-black2: #2b2b2b;
  --bg-olive-black: #121616;
  --bg-fire-black: #1c1c1c;
  --bg-fire-black2: #0c0c0c;
  --bg-shadow-black: rgb(199, 194, 194);
  --bg-gray-black: rgba(80, 80, 80, 0.32);
  --bg-sim-black2: rgb(42, 42, 42);
  --bg-sim-black3: rgba(49, 49, 49, .3);
  --bg-sim-black4: rgba(0, 0, 0, 0.48);
  --bg-sam-black: rgba(0, 0, 0, 0.3);
  --bg-sam-black2: rgba(0, 0, 0, 0.8);
  --bg-ex-black: #000;
  /*Date picker */
  --bg-gray-date: #444;
  --bg-darkGray-date: #4e4e4e;
  --color-gray-date: #888;
  --none: transparent;
}

/* Dark Theme */
body.dark-theme {
  /*text colors*/
  --dark-blue: #FFFFFF;
  --dark-black: #FFFFFF;
  --ex-black: #fff;
  --off-gray: #d8d8d8;
  --light-black: #d8d8d8;
  --black: #d8d8d8;
  --gray: #d8d8d8;
  --navy-blue: #6882f3;
  /* Border colors*/
  --bd-light-white: #5c5b5b;
  --bd-sim-black: #5c5b5b;
  /* Background colors*/
  --bg-white: #000000;
  --bg-light: #000000;
  --bg-Off-white: #000000;
  --bg-whiteSmoke: #00000000;
  --bg-light-gray2: #000000;
  --bg-shadow-black: #2a2a2a;
  --bg-dark-gray: #5c5b5b;
  --bg-black: #000000;
  --bg-blue-gray: #5B637C;
  --bg-sam-black:#5c5b5b; 
  /*date picker*/
  --color-gray-date: #aaa;
  --bg-darkGray-date: #ddd;
  --bg-gray-date: #fafafa;
  --none: #FFFFFF;
}

html,
body {
  font-size: 16px;
  font-weight: 400;
  font-family: 'MyriadWebPro';
  min-width: 370px;
  margin: 0;
  background-color: var(--bg-white);
  color: var(--dark-blue);
}
body.overlay{
  overflow:hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'MyriadWebPro';
  font-weight: 600;
}

.textLogo {
  font-family: 'MyriadWebPro';
  font-weight: normal;
  text-decoration: none;
  font-size: 1.8em;
}

.textLogo.dark {
  color: var(--ex-black);
}

/**/
h1 {
  font-size: 76px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}


section {
  padding: 100px 0;
}

a {
  color: #338ED1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

hr {
  margin: 0;
  padding: 0;
  background-color: #ADB1BD;
  opacity: .4;
}

.btn {
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  padding: 25px 20px;
  line-height: 10px;
  position: relative;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--blue);
  border: none;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  border: none;
  color: var(--blue);
}

.btn-secondary:hover {
  background-color: #fff;
  border: none;
  color: var(--blue);
}

.btn-info {
  background-color: #f77a24;
  border: none;
  color: #fff;
}

.btn-info:hover {
  background-color: #f98b40;
  color: #fff;
}

.bg-grey {
  background-color: var(--bg-Off-white);
}

.bg-dark {
  background-color: #2a2a2a;
}

/* Header start */
header {
  height: 100vh;
  background: var(--bg-ex-black);
  position: relative;
}

.home-page-header {
  height: 33rem;
}

@media screen and (max-width: 1199.9px) {

  header {
    min-height: 30rem;
    height: auto;
  }

  .home-page-header {
    height: 40rem;
    width: 100%;
  }

  header .head-title {
    font-size: 3em;
  }

  header .head-subtitle {
    font-size: 1.6em;
  }

  header .swiper-container {
    padding: 0 0 1rem;

  }

  header .swiper-scrollbar {
    margin-top: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  header {
    min-height: 24rem;
    height: auto;
  }

  .home-page-header {
    min-height: 20rem;
    height: auto;
  }

  header .col-md-5 {
    display: none;
  }
}

.navbar {
  background: var(--bg-fire-black2);
  border-bottom: 1px solid rgba(173, 177, 189, .2);
  z-index: 3;
  position: fixed;
  width: 100%;
}

.search-container.hide {
  opacity: 0;
  pointer-events: none;
}

#icon-mode {
  width: 30px;
  cursor: pointer;
  margin-left: 1rem;
}

.icon-mode-mobile {
  width: 12%;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 16px;
  color: #ADB1BD;
  line-height: 14px;
  padding: 1.6rem 0;
  margin-left: 24px;
  margin-bottom: -2px;
}
.navbar-dark .navbar-nav .nav-link:hover{
  color: #FB7E5C;
}
.navbar-dark .navbar-nav .nav-link.find-your-store {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  padding: 8px 20px 8px 13px;
}

.navbar-dark .navbar-nav .nav-link.find-your-store img {
  margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link.sign-in {
  padding: 13px 20px 13px 15px;
  color: #fff;
  line-height: 16px;
}

.navbar-dark .navbar-nav .nav-link.sign-in i {
  margin-right: 13px;
}

.navbar-dark .navbar-nav .nav-link.language {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  padding: 8px 10px;
}

.language_dropdown[data-bs-popper] {
  min-width: auto;
  border-radius: 8px;
  margin-top: 10px;
}

.language_dropdown[data-bs-popper]::before {
  content: "";
  background: url(../img/icons/triangle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: -10px;
  right: 12px;
  position: absolute;
}

.language_dropdown .dropdown-item.selected {
  opacity: .3;
}

.language_dropdown .dropdown-item img {
  width: 30px;
}

.language_dropdown .dropdown-item span {
  text-transform: uppercase;
  margin-left: 12px;
  color: var(--dark-blue);
}

.dropdown:hover .services-dropdown {
  display: block;
}

*,
::after,
::before {
  box-sizing: border-box;
  background: none;
}

.dropdown-menu {
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: var(--bg-white);
}

.dropdown-menu.services-dropdown {
  border-radius: 10px;
  margin-top: -10px;
  margin-left: 30px;
  min-width: 445px;
  padding: 37px 10px 22px;
  z-index: 2;
}

.dropdown-menu.services-dropdown::before {
  content: "";
  background: url(../img/icons/triangle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: -10px;
  left: 12px;
  position: absolute;
}

.services-dropdown_wrap {
  justify-content: space-around;
  border: 0;
}

.services-dropdown_item .start-repair_services-img {
  margin-bottom: 10px;
  border: 0;
}

.services-dropdown_item .start-repair_services-text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  bottom: 0;
  color: var(--dark-blue);
  text-align: center;
  text-decoration: none;
  position: relative;
}

.services-dropdown_item {
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  margin: 0;
  opacity: .6;
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
}

.services-dropdown_item:hover {
  opacity: 1;
  transform: scale(1.1);
  background-color: var(--bg-whiteSmoke);
  border-radius: .3rem;
  padding: .5rem;
}

.services-dropdown_item:hover h4 {
  color: var(--Sim-blue);
  font-size: 15px;
}

.services-dropdown_menu {
  background: var(--bg-white);
  position: fixed;
  margin-top: 4.5rem;
  width: 100%;
  z-index: 200;
}

.services-dropdown_menu.hide {
  z-index: 0;
  opacity: 0;
}


.services-swiper .swiper-slide {
  max-width: 125px;
  margin-right: 0px !important;
}

.services-swiper .swiper-slide h5 {
  padding: 1rem 0 1rem 0;
  background-color: whitesmoke;
  font-size: .7em !important;
}

.services-swiper .swiper-slide .services-swiper_item {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin-top: 1.6rem;
  margin-bottom: 0 !important;
  color: #000;
}

.services-swiper .swiper-slide .services-swiper_item img {
  height: 65px;
  margin-bottom: 1rem;
}

.services-swiper .swiper-slide .services-swiper_item h5 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.swiper-button-next.services-swiper-button:after,
.swiper-container-rtl .swiper-button-prev.services-swiper-button:after {
  content: "";
}

.swiper-button-prev.services-swiper-button:after,
.swiper-container-rtl .swiper-button-next.services-swiper-button:after {
  content: "";
}

.services-swiper_wrap {
  overflow: hidden;
}

.swiper-button-next.services-swiper-button,
.swiper-container-rtl .swiper-button-prev.services-swiper-button {
  right: 1rem;
}

.swiper-button-prev.services-swiper-button,
.swiper-container-rtl .swiper-button-next.services-swiper-button {
  left: 1rem;
}

.swiper-button-next.services-swiper-button img,
.swiper-button-prev.services-swiper-button img {
  width: 24px;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
  position: relative;
  color: #FB7E5C;
  /* border-bottom: 4px solid #FB7E5C; */
}

.navbar-dark .navbar-nav .nav-link.active:after,
.navbar-dark .navbar-nav .show>.nav-link:after {
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  content: "";
  background: #FB7E5C;
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

.slicknav_btn {
  border-color: #FB7E5C;
  margin: 17px 0;
}

.slicknav_menu .slicknav_icon-bar {
  background: #FB7E5C;
}

.dropdown-toggle_custom::after {
  background-image: url(../img/icons/chevron-down_white.png);
  background-size: 14px 8px;
  background-position: right;
  width: 14px;
  height: 8px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 10px;
  content: "";
}

/****************************************************************************************************************************/
.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

nav .desktop-nav li a {
  opacity: 0.8;
  transition: opacity 400ms;
}

nav .desktop-nav li a:hover {
  opacity: 1;
  color: var(--Sim-blue);
}

.link-close {
  background: url('../img/close-icon.svg');
  display: block;
  background-position: center;
  background-size: 17px;
  height: 44px;
  width: 20px;
  background-repeat: no-repeat;
}

/* Search Container */


.search-container {
  width: 55%;
  margin: 1.4rem auto;
  padding: 0 2.3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 400ms ease;
}

.search-container .link-search {
  position: absolute;
  left: 12px;
  margin-top: .8rem;
  opacity: .5;
}

.search-container .link-close {
  position: absolute;
  top: 0;
  right: 12px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 400ms;
}

.search-container .link-close:hover {
  opacity: 0.7;
}

.search-container form {
  width: 100%;
  margin: 0 auto;
}

.search-container form input {
  width: 100%;
  height: 3rem;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: "MyriadWebPro";
  font-size: 1.1em;
  transition: all 400ms ease;
}

/* Overlay */

.overlay.show {
  position: fixed;
  background: rgba(0, 0, 0, 0.48);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

/* Quick Links */
/*Css to target the dropdownbox*/
ul.ui-autocomplete {
  position: absolute;
  left: 0;
  right: 0;
  width: 51% !important;
  padding: 1rem;
  padding-top: 1.3rem !important;
  border-radius: 0 0 16px 16px;
}

.ui-menu-item .ui-menu-item-wrapper {
  padding: .4rem .8rem !important;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  background: #f5f5f5;
  color: #2997ff;
  border: none;
}


.search-container .quick-links {
  position: absolute;
  left: 0;
  right: 0;
  padding: .6rem;
  border-radius: 0 0 16px 16px;
  background: #fff;
}

.search-container .quick-links h2 {
  text-transform: uppercase;
  font-size: .8em;
  color: #6e6e73;
  margin: 0 1.6rem;
  margin-top: 1rem;
}

.search-container .quick-links ul {
  list-style: none;
  margin-top: 12px;
}

.search-container .quick-links ul li a {
  display: inline-block;
  width: 100%;
  padding: .4rem .8rem;
  font-size: .9em;
  color: #1d1d1f;
  text-decoration: none;
  font-weight: 400;
}

.search-container .quick-links ul li a:hover {
  background: #f5f5f5;
  color: #2997ff;
}

/* Desktop Nav Animation */

.desktop-nav li {
  transition: all 400ms ease;
}

.desktop-nav.hide li {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Overlay Animation */

.overlay {
  transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
  transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
  transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
  transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
  transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
  transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
  transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
  transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
  transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
  transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
  transition-delay: 270ms;
}

/* Search Container Animation */

.search-container form,
.search-container .link-search {
  opacity: 1;
  transform: translateX(0);
  transition: all 400ms ease;
  transition-delay: 300ms;
}

.search-container.hide form,
.search-container.hide .link-search {
  opacity: 0;
  transform: translateX(50px);
}

.search-container .link-search {
  opacity: 0.6;
}

.search-container.hide .link-close {
  opacity: 0;
}

.search-container .link-close {
  opacity: 0.5;
  transition: all 400ms ease;
  transition-delay: 400ms;
}

.search-container.hide .quick-links h2 {
  opacity: 0;
  transform: translateX(50px);
}

.search-container .quick-links h2 {
  opacity: 1;
  transform: translateX(0);
  transition: all 400ms ease;
  transition-delay: 100ms;
}

.search-container.hide .quick-links ul li {
  transform: translateX(60px);
  opacity: 0;
}

.search-container .quick-links ul li {
  opacity: 1;
  transform: translateX(0);
  transition: all 400ms ease;
}

.search-container .quick-links ul li:nth-of-type(1) {
  transition-delay: 120ms;
}

.search-container .quick-links ul li:nth-of-type(2) {
  transition-delay: 140ms;
}

.search-container .quick-links ul li:nth-of-type(3) {
  transition-delay: 160ms;
}

.search-container .quick-links ul li:nth-of-type(4) {
  transition-delay: 180ms;
}

.search-container .quick-links ul li:nth-of-type(5) {
  transition-delay: 200ms;
}

/***************************************************************************************************************************/
.search-modal .modal-dialog {
  margin: 0;
  max-width: 100%;
}

.search-modal .modal-content {
  background: transparent;
  border: none;
}

.search-modal .modal-seacrh_wrap {
  border-radius: 0;
  background: #1c1c1c;
  height: 82px;
  border: none;
}

.search-modal form {
  display: flex;
  align-items: center;
}

.search-modal form input {
  width: 100%;
  background: transparent;
  border: none;
  margin-left: 20px;
  outline: none;
  color: #fff;
  font-size: 18px;
}

.search-modal form i {
  color: #fff;
}

.search-modal form button {
  background: transparent;
  border: none;
}

.modal-quick_links {
  background: #fff;
  padding: 20px 60px 35px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.modal-quick_links-title {
  font-size: 16px;
  color: #828282;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.modal-quick_links-list {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.modal-quick_links-list li {
  margin-bottom: 10px;
}

.modal-quick_links-list li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
}

/*************************/
.locationbar {
  width: 11rem;
  margin: .2rem 0rem .2rem .6rem;
  position: relative;
  z-index: 200;
}

.locationbar .input {
  width: 35%;
  padding: .5rem 2rem;
  padding-left: 4rem;
  background-color: transparent;
  color: rgba(248, 248, 248, 0.553);
  border: none;
  transition: width 0.5s ease;
  border-radius: .2rem;
}

.locationbar .btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: .8em;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  text-align: left;
  cursor: pointer;
  transition: width 0.5s ease;
}

.locationbar .btnTextLocation {
  padding-left: .2rem;
  text-decoration: none;
  color: rgba(248, 248, 248, 0.553);
}

.locationbar .btnTextLocation.text_active {
  display: none;
}

.locationbar .btn.btn_active {
  width: 30%;
}

.locationbar .input.input_active {
  width: 90%;
  border: 1px solid rgba(255, 255, 255, .2);
}

.input-field {
  text-align: end;
}

/******************/
.navbar-brand {
  margin-top: 1rem;
  font-size: 1.9em;
}

@media screen and (max-width: 1199.9px) {
  .navbar-header {
    width: 100%;
    height: auto;
  }

  .navbar-brand,
  .navbar-brand.scrolled {
    height: 100%;
    position: absolute;
    padding: 0px 0px;
    top: 0;
    width: 60%;
  }

  .slicknav_nav {
    color: #fff;
    font-size: 0.875em;
    list-style: outside none none;
    margin: 0;
    max-height: 100%;
    padding: 0;
    width: 100%;
    z-index: 200;
  }

  .slicknav_menu ul {
    background: transparent;
    padding: 20px 0;
    z-index: 200;
  }

  .slicknav_menu ul li {
    border-radius: 10px;
  }

  .slicknav_menu ul.submenu {
    padding: 0 0 10px;
    margin: 0 20px;
  }

  .submenu .submenu-list {
    max-height: 10rem;
    overflow-y: scroll;
  }

  .slicknav_menu ul.submenu li img {
    margin-right: 15px;
    width: 25px;
    margin-top: -5px;
  }

  .slicknav_menu ul.submenu li .slicknav_item {
    color: #fff;
  }

  .slicknav_menu {
    display: block;
    z-index: 9999;
    position: relative;
  }

  .slicknav_menu .slicknav_open {
    background: #2a2a2a;
  }

  .slicknav_nav .slicknav_row {
    margin: 2px 0;
  }

  .slicknav_nav .active a {
    background: #E91E63;
    color: #fff;
  }

  .slicknav_nav a {
    border-radius: 10px;
    margin: 2px 0;
  }

  .slicknav_nav a:hover,
  .slicknav_nav a:focus,
  .slicknav_nav .active {
    color: #fff;
    outline: none;
    background: #2a2a2a;
  }

  .services-dropdown_menu {
    display: none;
  }
}

header .head-title {
  font-size: 3.7em;
  line-height: 70px;
  margin-top: 2.4rem;
}


header .head-subtitle {
  font-size: 2em;
  line-height: 46px;
  padding-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
}

header .head-content {
  position: relative;
  color: #fff;
  z-index: 1;
}

.home-page-header .head-btn {
  padding-right: 6rem;
  font-size: .8em;
  border-radius: .2rem;
}

.home-page-header .head-btn::after {
  content: "";
  height: 60px;
  color: #fff;
  width: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 64px;
  opacity: 0.5;
}

.home-page-header .head-btn i {
  position: absolute;
  right: 27px;
  margin-top: -1px;
  transition: all .2s ease-in-out;
}

.head-btn i {
  transition: all .2s ease-in-out !important;
}

.head-btn:hover i {
  -webkit-animation: bounceright .3s alternate ease infinite;
  animation: bounceright .3s alternate ease infinite;
}

@media screen and (max-width: 768px) {
  header .head-title {
    font-size: 2.4em;
    line-height: 66px;
  }

  header .head-subtitle {
    font-size: 1.5em;
    line-height: 35px;
    padding: 0;
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(5px);
  }
}

.swiper-wrapper {
  direction: ltr;
}

header .swiper-container.head-swiper {
  padding-top: 8.2rem;
  width: 100%;
}

header .head-swiper .swiper-wrapper {
  position: absolute;
  direction: ltr;
}

header .head-swiper .swiper-slide {
  background: #000;
  color: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

header .head-swiper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

header .swiper-container-horizontal.head-swiper>.swiper-scrollbar {
  background: #5B637C;
  position: relative;
  bottom: auto;
  left: auto;
  height: 4px;
  width: 100%;
  z-index: 1;
}

header .head-swiper .swiper-scrollbar {
  border-radius: 0;
  position: relative;
  background: #5B637C;
  height: 4px;
  width: 100%;
  z-index: 1;
}

header .head-swiper .swiper-scrollbar-drag {
  background: #fff;
  border-radius: 0;
}

header .head-swiper .head-actions {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 24rem;
}
@media screen and (max-width: 920px) {
  header .head-swiper .head-actions {
    margin-top: 1rem;
  }
}
header .head-swiper .swiper-button-wrap {
  position: relative;
  display: flex;
  direction: ltr;
}

header .head-swiper .swiper-button-wrap .swiper-button-prev,
header .head-swiper .swiper-button-wrap .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  margin: 0;
  top: 0;
  width: auto;
  height: auto;
  margin-top: 0;
  height: 60px;
  width: 60px;
  background: #fff;
}

header .head-swiper .swiper-button-wrap .swiper-button-prev i,
header .head-swiper .swiper-button-wrap .swiper-button-next i {
  color: #000;
}

header .head-swiper .swiper-button-wrap .swiper-button-next {
  margin-left: 20px;
}

header .head-swiper .swiper-button-wrap .swiper-button-prev::after,
header .head-swiper .swiper-button-wrap .swiper-button-next::after {
  content: "";
}

header .head-swiper .swiper-button-next.swiper-button-disabled,
header .head-swiper .swiper-button-prev.swiper-button-disabled {
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}

header .head-swiper .swiper-button-next.swiper-button-disabled i,
header .head-swiper .swiper-button-prev.swiper-button-disabled i {
  color: #fff;
}

@media screen and (max-width: 820px) {
  header .head-swiper .head-actions {
    display: none;
  }

}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 500;
  color: #828282;
  margin-bottom: 8px;
  line-height: 12px;
}

.choise span {
  color: var(--ex-black);
}

.form-control {
  background-color: rgba(218, 218, 218, .1);
  border-color: #e2e2e2;
  border-radius: 6px;
  color: var(--ex-black);
}

.custom-label {
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 500;
  color: var(--ex-black);
  margin-bottom: 8px;
  line-height: 12px;
}

.form-group {
  margin-bottom: 25px;
}

/* Header end */
/*  ========================
    HOME PAGE start
    ========================  */
.home-page .title {
  line-height: 66px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.home-page .title img {
  vertical-align: top;
  margin-top: 18px;
  margin-right: 15px;
}

.home-page .title p {
  font-size: .6em;
  display: inline-flex;
  flex-direction: column;
  line-height: 54px;
}

.home-page .title span {
  font-size: 1.3em;
  color: var(--blue);
}

/* Start section start */
.start {
  padding-bottom: 0;
}

.start .card {
  background-color: var(--bg-light-gray2);
  border: none;
  position: relative;
  margin-top: 0;
  margin-bottom: 1rem;
  justify-content: center;
  transition: all 0.2s linear;
  cursor: pointer;
}

.start .card:hover {
  box-shadow: 0 4px 184px var(--bg-shadow-black);
}

.start .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--blue);
  transition: all 0.2s linear;
  opacity: 0;
  transition: all 0.2s linear;
}

.start .card:hover::after {
  opacity: 1;
}

.start .col-md-6:first-child .card {
  margin-top: 3rem;
}

.start .card.left {
  height: 31rem;
}

.start .card.right {
  height: 23rem;
}

.start .card .card-title {
  font-size: 2em;
  font-weight: 500;
  position: absolute;
  bottom: 1.3rem;
  left: 3rem;
}

/* Start section end */
/* About section start */
.about {
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 0;
}

.about.home-page .title {
  margin-bottom: 2rem;
}

.about.home-page .title p {
  display: inline-block;
}

.about .about-row {
  margin-bottom: 2.5rem;
}

.about hr {
  height: 2px;
  background-color: rgba(189, 189, 189, .5);
  position: relative;
  opacity: 1;
  overflow: visible;
  margin-bottom: 1.5rem;
  width: 90%;
}

.about hr:after {
  content: "";
  height: 4px;
  width: 80px;
  background-color: var(--blue);
  top: -1px;
  left: 0;
  position: absolute;
}

.about .description-wrap {
  width: 85%;
}

.about .description-wrap .description-title {
  font-weight: 500;
  font-size: 2em;
  margin-bottom: 20px;
}

.about .description-wrap .description-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.about .description-wrap .description-link {
  color: var(--blue);
  font-size: 1.2em;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
}

.about .description-wrap .description-link span {
  border-bottom: 1px solid var(--blue);
  display: inline-block;
  line-height: 22px;
}

.about .description-wrap .description-link i {
  margin-left: 15px;
  transform: rotate(-45deg);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .about .picture.right {
    padding-left: 50px;
  }

  .about .picture.left {
    padding-right: 50px;
  }

  .about .description.right {
    padding-left: 50px;
  }

  .about .description.left {
    padding-right: 50px;
  }
}

/* About section end */
/* Intouch section start */
.intouch {
  padding: 0;
}

.intouch .intouch-wrap {
  padding: 1rem 5rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  background: rgb(0, 65, 161);
  background: linear-gradient(180deg, rgba(0, 65, 161, 1) 0%, rgba(15, 99, 220, 1) 100%);
}

.intouch img {
  position: absolute;
  right: 0;
}

.intouch h2 {
  font-size: 2.3em;
  font-family: 'MyriadWebPro';
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.3rem;
  margin-top: 0;
}

.intouch p {
  color: #fff;
  font-size: 1em;
  width: 85%;
  margin-bottom: 45px;
}

.intouch .btn {
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  padding-right: 110px;
}

.intouch .btn::after {
  content: "";
  height: 15px;
  color: var(--blue);
  width: 1px;
  background: var(--blue);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 64px;
  opacity: 0.5;
}

.intouch .btn i {
  position: absolute;
  right: 27px;
  margin-top: -5px;
  font-size: 20px;
  transition: all .2s ease-in-out;
}

.intouch .btn:hover i {
  -webkit-animation: bounceright .3s alternate ease infinite;
  animation: bounceright .3s alternate ease infinite;
}

@media screen and (max-width: 1400px) {
  .intouch img {
    width: 400px;
  }
}

@media screen and (max-width: 992px) {
  .intouch img {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .intouch .intouch-wrap {
    padding: 50px 35px;
  }
}

/* Intouch section end */
/* Reviews section start */
.reviews {
  padding: 1.4rem;
}

.reviews .title {
  margin-bottom: 1rem;
}

.reviews .reviews-block {
  padding: 70px 58px 50px;
  cursor: pointer;
}

.reviews .reviews-block .review-text {
  font-size: 1em;
  margin-bottom: 1.6rem;
  line-height: 28px;
}

.reviews .reviews-block .review-name {
  font-size: .8em;
  margin-bottom: .2rem;
}

.reviews .reviews-block .review-position {
  text-transform: uppercase;
  font-size: .4em;
  margin-bottom: 0;
  color: #828282;
}

.reviews .reviews-block:hover {
  background-color: #2b2b2b;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .reviews .title {
    margin-bottom: 0;
  }
}

/* Reviews section end */
/* Partners section start */
.partners {
  background: var(--bg-light-gray2);
  padding-top: 2rem;
  height: 43rem;
}

@media (max-width: 378px) {
  .partners {
    height: 48rem;
  }
}

.partners .title {
  margin-left: 3rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.partners .title p {
  margin: 0;
}

.partners .swiper-container {
  width: 100%;
  height: 100%;
  max-height: 484px;
  overflow: hidden;
  direction: ltr;
}

.partners .swiper-slide .div-img {
  text-align: center;
  font-size: .8em;
  border-bottom: 2px solid var(--bg-Off-white);
  background: #fff;
  height: calc((100% - 6px) / 3);
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.partners .swiper-slide img {
  opacity: .5;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.partners .swiper-slide .div-img:hover img {
  opacity: 1;
}

.partners .partners-actions {
  position: relative;
  margin-top: 3rem;
  display: flex;
  justify-content: flex-end;
}

.partners .partners-actions .swiper-button-prev,
.partners .partners-actions .swiper-button-next {
  margin-top: 0;
  position: relative;
}

.partners .partners-actions .swiper-button-prev::after,
.partners .partners-actions .swiper-button-next::after {
  content: "";
}

.partners .partners-actions .swiper-button-prev {
  right: auto;
  left: auto;
  margin-right: 5rem;
}

.partners .partners-actions .swiper-button-next {
  right: auto;
  margin-right: 1rem;
}

/* Partners section end */
/* Subscribe section start */
.subscribe {
  padding: 4rem 0;
  background: rgb(0, 65, 161);
  background: linear-gradient(180deg, rgba(0, 65, 161, 1) 0%, rgba(15, 99, 220, 1) 100%);
}

.subscribe h2 {
  font-size: 2.3em;
  color: #fff;
  margin-bottom: 1rem;
}

.subscribe h3 {
  font-size: 1.3em;
  color: #fdfdff;
  font-family: 'MyriadWebPro';
  font-weight: bold;
  opacity: .8;
  margin-bottom: 1rem;
}

.subscribe p {
  font-size: .96em;
  font-weight: 500;
  color: #fdfdff;
  opacity: .8;
  margin: 0;
  width: 90%;
}

.subscribe .input-group .form-control {
  border-color: #fff;
  color: var(--ex-black);
  padding-left: 25px;
  background-color: var(--bg-white);
}

.HideVerification {
  border: 0;
}

.subscribe .input-group .form-control::placeholder {
  color: var(--ex-black);
  opacity: .8;
  font-weight: 500;
}

.form-control::placeholder {
  color: var(--ex-black);
}

.subscribe .input-group .btn {
  background-color: #f77a24;
  color: #fff;
  align-items: center;
  display: flex;
  padding: 20px 40px;
  border-radius: 4px;
}

.subscribe .input-group .btn i {
  margin-left: 15px;
  font-size: 20px;
}

/* Subscribe section end */
/* HOME PAGE end ======================== */
/* SIGN IN start */
/* body.sign-in {
  height: 100vh;
  background: url('../img/sign-in.png');
  background-color: #000;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  padding: 3rem 0;
  overflow-x: hidden;
} */

.sign-in-section {
  min-height: 80vh;
  padding: 6rem 0 2rem;
  background: url('../img/sign-in.png');
  background-color: #000;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.sign-in-block {
  background: var(--bg-white);
  padding: 1.8rem 2.8rem 1.8rem;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
}

.sign-in .password .password-title {
  font-size: .1em;
}

.sign-in-block h3 {
  font-family: 'MyriadWebPro';
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}

.sign-in-block h5 {
  font-family: 'MyriadWebPro';
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}

.sign-in-block form {
  margin: 1rem 0 2rem;
}

.sign-in-block form label {
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 500;
  color: var(--off-gray);
  margin-bottom: 8px;
  line-height: 12px;
}

.sign-in-block form .form-control {
  background-color: rgba(218, 218, 218, .1);
  border-color: #e2e2e2;
  color: var(--ex-black);
  border-radius: 6px;
  height: 50px;
}

.sign-in-block form .form-group {
  margin-bottom: 25px;
}

.sign-in-block form .form-group a {
  color: #338ED1;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
}

.sign-in-block form .btn.login {
  border-radius: 6px;
  margin-top: 10px;
  text-align: left;
  font-size: 16px;
  font-family: 'MyriadWebPro';
  text-transform: none;
  padding: 27px 20px;
}

.sign-in-block form .btn.login::after {
  content: "";
  height: 16px;
  color: #fff;
  width: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 66px;
  opacity: 0.5;
}

.sign-in-block form .btn.login i {
  position: absolute;
  right: 27px;
  margin-top: -2px;
  font-size: 15px;
  transition: all .2s ease-in-out;
}

.sign-in-block form .btn.login:hover i {
  -webkit-animation: bounceright .3s alternate ease infinite;
  animation: bounceright .3s alternate ease infinite;
}

.sign-in-block .easy-login-text {
  margin-bottom: 25px;
  font-weight: 600;
}

.sign-in-block .easy-login-wrap {
  display: flex;
  justify-content: space-around;
  margin-bottom: 45px;
}

.sign-in-block .easy-login-wrap .easy-login-btn {
  height: 50px;
  width: 50px;
  background: #FFFFFF;
  border: 1px solid #f5f5f5;
  border-radius: 100%;
}

.sign-in-block .dont-have-account {
  margin-bottom: 0;
  font-weight: 500;
}

.sign-in-block .dont-have-account a {
  white-space: nowrap;
  margin-left: 10px;
}

.back-to-login {
  font-family: 'MyriadWebPro';
  font-weight: 400;
  padding: 100px 0 45px;
  display: block;
  color: var(--light-black);
  text-decoration: none;
}

.back-to-login.small-space {
  padding: 20px 0 45px;
}

.back-to-login i {
  color: var(--navy-blue);
  margin-right: 20px;
}

.sign-in-block .text-muted {
  font-family: 'MyriadWebPro';
  font-weight: 500;
  color: #828282 !important;
  font-size: 10px;
  padding-left: 8px;
  margin-top: 5px;
  margin-bottom: -10px;
}

@media (max-width: 439px) {
  .sign-in-block .easy-login-wrap .easy-login-btn {
    height: 55px;
    width: 55px;
    background: #FFFFFF;
    border: 1px solid #f5f5f5;
    border-radius: 100%;
  }

  .sign-in-block .easy-login-wrap .easy-login-btn img {
    width: 20px;
  }

  .sign-in-block .dont-have-account a {
    margin: 0;
  }
}

.input-group.show-password {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group.show-password:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group.show-password:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.show-password .form-control {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-right: 45px;
}

.input-group.show-password .input-group-append {
  position: absolute;
  right: 15px;
  z-index: 4;
}

.input-group.show-password .input-group-append .btn {
  padding: 0;
}
.far{
  color: var(--gray);
}
.input-group.show-password .input-group-append .btn:focus {
  box-shadow: none;
}

.input-group.show-password .input-group-append .btn i {
  color: #5A5C72;
}

/* SIGN IN end */
/* SIGN UP start */
.sign-up-section {
  min-height: 80vh;
  background: url('../img/line.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-position-y: -80px;
  padding: 5rem 0rem 1rem;
}

.sign-up-section .form-control input,
.sign-up-section .form-control input:focus {
  color: var(--ex-black);
}

.sign-up-section h1 {
  margin-bottom: 1.1rem;
  line-height: 90px;
}

@media screen and (max-width: 576px) {
  .sign-up-section h1 {
    font-size: 2em;
    line-height: 70px;
  }
}

.already-have-account {
  margin-bottom: 0;
  font-weight: 500;
}

.already-have-account a {
  white-space: nowrap;
  margin-left: 10px;
}

@media (max-width: 439px) {
  .already-have-account a {
    margin: 0;
  }
}

.sign-up-section form {
  margin: 2rem 0 1rem;
}

.sign-up-section form .form-group label {
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 12px;
}

.sign-up-section form .form-control {
  background-color: rgba(218, 218, 218, .1);
  border-color: #e2e2e2;
  border-radius: 6px;
  height: 50px;
}

.sign-up-section form .form-group {
  margin-bottom: 25px;
}

.sign-up-section form .btn.login {
  border-radius: 6px;
  margin-top: 35px;
  text-align: left;
  font-size: 16px;
  font-family: 'MyriadWebPro';
  text-transform: none;
  padding: 27px 20px;
  padding-right: 140px;
  margin-bottom: 20px;
}

.sign-up-section form .btn.login::after {
  content: "";
  height: 16px;
  color: #fff;
  width: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 66px;
  opacity: 0.5;
}

.sign-up-section form .btn.login i {
  position: absolute;
  right: 27px;
  margin-top: -2px;
  font-size: 15px;
  transition: all .2s ease-in-out;
}

.sign-up-section form .btn.login:hover i {
  -webkit-animation: bounceright .3s alternate ease infinite;
  animation: bounceright .3s alternate ease infinite;
}

.sign-up-section .easy-login-text {
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 35px;
}

.sign-up-section .easy-login-wrap {
  display: flex;
  justify-content: space-around;
  max-width: 630px;
  margin: auto;
}

.sign-up-section .easy-login-wrap .easy-login-btn {
  height: 76px;
  width: 76px;
  background: #FFFFFF;
  border: 1px solid #f5f5f5;
  border-radius: 100%;
}

.easy-login-wrap .easy-login-btn:hover {
  background: var(--white-smoke);
}

.fa-apple {
  color: var(--ex-black);
}

@media (max-width: 439px) {
  .sign-up-section .easy-login-wrap .easy-login-btn {
    height: 55px;
    width: 55px;
    background: #FFFFFF;
    border: 1px solid #f5f5f5;
    border-radius: 100%;
  }

  .sign-up-section .easy-login-wrap .easy-login-btn img {
    width: 20px;
  }
}

.form-check-input {
  border: 2px solid #5A5C72;
}

.form-check-input:focus {
  border-color: #5A5C72;
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #121616;
  border-color: #121616;
}

.form-check-input[type=checkbox] {
  border-radius: 2px;
  margin-right: 0px;
}

.form-check-label {
  margin-bottom: 0;
  ;
  padding: 0;
  text-transform: none;
}

/* SIGN UP end */
/* CONTACT US start =============================================== */
.contact-us header {
  height: 49rem;
  padding-top: 9rem;
  overflow: hidden;
}

.contact-us header .container {
  height: calc(100% - 60px);
}

.contact-us header img {
  height: 100%;
}

.contact-us header h2 {
  font-size: 2.8em;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-us header h3 {
  font-size: 1.8em;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-us header .sign-in-block {
  padding: 1.4rem 1rem .8rem;
}

.contact-us header .sign-in-block form {
  margin: 0;
}

.contact-us header .sign-in-block form textarea {
  height: auto;
}

.contact-us header .sign-in-block form button {
  height: 60px;
  background-color: #f77a24;
  font-size: 16px;
}

.contact-us header .sign-in-block form button i {
  margin-right: 10px;
}

@media only screen and (max-width: 1199.9px) {
  .contact-us header {
    height: auto;
    padding-top: 2rem;
  }

  .contact-us header img {
    display: none;
  }

  .contact-us header h2 {
    font-size: 2em;
    margin-top: 4.4rem;
  }

  .contact-us header h3 {
    font-size: 1.2em;
  }

  .contact-us header .sign-in-block {
    margin-bottom: 2rem;
  }
}

.contact-us .contact-us_section {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.contact-us .contact-us_section h3 {
  font-size: 2.5em;
}

.contact-us .contact-us_section h4 {
  margin-bottom: 1.8em;
}

.contact-us_block {
  padding: 1rem 2.6rem;
  background: rgba(218, 218, 218, .1);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}

.contact-us_block.map {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mapName{
   margin: .2rem 0px !important;
   text-align: center;
   background-color: var(--light-gray);
}
.contact-us_block hr {
  height: 1px;
  background: #5B637C;
  margin: 1rem 0;
}

.contact-us_block-title {
  font-weight: 700;
  font-size: 1.6em;
  margin-bottom: 0;
}

.contact-us_block-content {
  margin-bottom: 1rem;
}

.contact-us_block-content p {
  font-weight: 300;
  font-size: 1.3em;
  margin-bottom: .4rem;
}

.contact-us_block-content p span {
  font-weight: 700;
  font-size: 1em;
}

.contact-us_block-btn {
  background: #f77a24;
  color: #fff;
  font-size: 1.2em;
  border-radius: 4px;
}

.contact-us_social-wrap {
  display: flex;
  justify-content: space-around;
}

.contact-us_social-btn {
  height: 4rem;
  width: 4rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
}

@media only screen and (max-width: 439px) {
  .contact-us header {
    max-height: 80rem;
    padding-top: 1rem;
    height: auto;
  }

  .contact-us .contact-us_section h3 {
    font-size: 2.2em;
  }

  .contact-us_social-btn {
    height: 55px;
    width: 55px;
  }

  .contact-us_social-btn img {
    width: 20px;
  }
}

.contact-us_block-link {
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 26px;
  font-weight: 500;
}

.contact-us_block-link i {
  margin-right: 15px;
}

/* CONTACT US end =============================================== */
/* ABOUT US start =============================================== */
.about-us_page {
  overflow-x: hidden;
}

.about-us_page-header {
  background-image: url('../img/about_us/about-us_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0px !important;
  max-height: 20;
}

.about-us_page-header .container {
  height: calc(100% - 80px);
}

.about-us_page-header_image {
  position: absolute;
  bottom: -120px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.header-container {
  padding-top: 8.2rem;
}

.about-us_page-header_title {
  color: #fff;
  font-size: 3em;
  margin-bottom: 1.4rem;
}

.about-us_page-header_subtitle {
  color: #fff;
  font-size: 1.7em;
  font-weight: 60;
  letter-spacing: 1px;
  margin: 0 2rem;
}

.about-us_section {
  padding-top: 12rem;
  padding-bottom: 0px;
}

.about-us_section-image {
  width: 100%;
  height: 85%;
}

.about-us_section-description {
  background: var(--bg-Off-white);
  height: 85%;
  width: 94%;
  border-radius: 10px;
  align-items: flex-start;
  display: flex;
  padding: 5rem 5rem 0rem 5rem;
}
.swiper-button-next, .swiper-button-prev{
  background-color: #FFFFFF;
  border-radius: .4rem;
  z-index: 1;
}
@media (max-width: 960px) {
  .about-us_section-description {
    height: 100%;
  }
}

.about-us_section-description h3 {
  font-size: 2em;
  margin-bottom: 1.5rem;
}

.about-us_section-description p {
  font-size: 1.15em;
  font-weight: 500;
  margin: 0;
  color: var(--ex-black);
}

@media (max-width: 2001px) {
  .about-us_page-header {
    height: 36rem !important;
    margin: 0 !important;
  }
}

@media (max-width: 1280px) {
  .about-us_page-header {
    height: 36rem !important;
    margin: 0 !important;
  }
}

@media (max-width: 1199.9px) {

  .about-us_page-header_title {
    margin-top: 3rem;
  }

  .about-us_page-header_image {
    width: 370px;
  }

  .about-us_section-image {
    display: none;
  }

  .about-us_section-description {
    padding: 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .about-us_page-header {
    height: 24rem !important;
  }

  .header-container {
    padding-top: 3rem;
  }

  .about-us_page-header_title {
    font-size: 2.1em;
    margin-top: 4.5rem;
  }

  .about-us_page-header_subtitle {
    font-size: 1.1em;
  }

  .about-us_page-header_image {
    width: 250px;
    bottom: -70px;
  }
}

/******** Provide Section *********/
.provide_section {
  margin-top: 0px;
  background: #000;
  padding: 2rem 2rem;
}

.provide_section-title {
  font-size: 2.6em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.provide_section-wrap {
  margin-bottom: 1rem;
}

.provide_section-block {
  background: rgba(80, 80, 80, .32);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  /*min-height: 520px;*/
  padding: 70px 40px 50px;
  margin-bottom: 1rem;
}

.provide_section-block_title {
  font-size: 1.6em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: left;
}

.provide_section-block_subtitle {
  color: #fff;
  font-size: .98em;
  margin: 0;
  text-align: left;
}

/*********** Team Section ************/
.team_section {
  padding: 2rem 0;
}

.team_section-title {
  font-size: 2.8em;
  margin-bottom: 1rem;
}

.team_section-quote {
  font-size: 1em;
  padding-left: 18rem;
  width: 50%;
  font-weight: 500;
  line-height: 24px;
}

.team_section .swiper-container {
  width: 100%;
  height: 100%;
  max-height: 484px;
  overflow: hidden;
}

.team_section .swiper-slide {
  text-align: center;
  overflow: hidden;
  width: 300px;
  border-radius: 10px;
  height: 379px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.team_section .swiper-slide img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.team_section .team-section_card:hover {
  transform: scale(1.2);
  transition: ease .2s;
}

.team_section .members-actions {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.team_section .members-actions .swiper-button-prev,
.team_section .members-actions .swiper-button-next {
  margin-top: 0;
  position: relative;
}

.team_section .members-actions .swiper-button-prev::after,
.team_section .members-actions .swiper-button-next::after {
  content: "";
}

.team_section .members-actions .swiper-button-prev {
  float: right;
  margin-right: 5rem;
}

.team_section .members-actions .swiper-button-next {
  float: right;
  margin-right: 1rem;
}

.team_section-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  direction: ltr;
}

@media (max-width: 1199.9px) {
  .team_section-quote {
    padding: 0;
    width: 80%;
  }

  .team-section_card {
    flex: 0 0 auto;
    width: 50%;
    text-align: center;
    margin-top: 1rem;
  }

  .team_section-wrap {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .team-section_card {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* ABOUT US end =============================================== */
/* COVID19 start =============================================== */
.covid19-header {
  background: url('../img/covid19-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 33rem;
}

.covid19-header_container {
  height: calc(100% - 4 0px);
  height: 28rem;
}

.covid19-header_content {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.covid19-header_title {
  font-size: 2.7em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.covid19-header_description {
  font-size: 1.4em;
  font-weight: 400;
}

.covid19-section {
  padding-top: 3rem;
  padding-bottom: 3rem;

}

.covid19-section_content {
  background: var(--bg-Off-white);
  padding: 3rem 4rem;
  height: 100%;
}

.covid19-section_content p {
  font-size: 1.3em;
  margin-bottom: 2rem;
}

.covid19-section_content p:last-child {
  margin: 0;
}

@media (max-width: 1199.9px) {
  .covid19-header_container {
    height: 31.8rem;
  }
}

@media (max-width: 768px) {
  .covid19-header_container {
    height: 30rem;
  }

  .covid19-header_title {
    font-size: 1.8em;
  }

  .covid19-header_description {
    font-size: 1.1em;
  }
}

/* COVID19 end =============================================== */
/* REPAIR SERVICE start =============================================== */
.repair-service_section {
  padding-bottom: 2rem;
}

.repair-service_title {
  font-size: 3.6em;
  margin-bottom: 1rem;
}

.repair-service_subtitle {
  font-size: 1.6em;
  line-height: 40px;
  margin-bottom: 2rem;
}

.repair-service_btn-wrap {
  margin-bottom: 3rem;
}

.repair-service_btn {
  width: 320px;
  margin: 0 25px;
  font-size: 16px;
}

.repair-service_btn i {
  margin-right: 15px;
}

@media (max-width: 992px) {
  .repair-service_title {
    font-size: 50px;
  }

  .repair-service_subtitle {
    font-size: 22px;
    line-height: 30px;
  }
}

/* REPAIR SERVICE end =============================================== */
/* PRIVACY POLICY start =============================================== */
.header-privacy-policy {
  padding-top: 6rem !important;
  padding-bottom: 1.4rem;
}

.privacy-policy_section {
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.scroll {
  position: fixed;
  right: 0.75rem;
  bottom: 1.50rem;
  width: 2.625rem;
  height: 2.625rem;
  cursor: pointer;
  border-radius: 1.875rem;
  background: var(--navy-blue) url("../img/icons/up-arrow.png") no-repeat center 47%;
}

.privacy-policy_section-title {
  font-size: 3em;
  margin-bottom: 2rem;
}

.privacy-policy_section-description {
  font-size: 1.2em;
}

.privacy-policy_choose-text {
  font-size: 2.6em;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.privacy-policy_topic-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}


.privacy-policy_topic-item.selected {
  opacity: 1;
}

.terms-of-use {
  display: none;

}

.terms-of-use .container {
  display: none;
}

.terms-of-use.active {
  display: block;
}

.terms-of-use .container.active {
  display: block;
}

.privacy-policy_topic-item {
  background: #fff;
  padding: 85px 40px 20px;
  text-align: center;
  border-radius: 6px;
  max-width: 285px;
  min-width: 280px;
  height: 290px;
  text-decoration: none;
  color: #000;
  opacity: .55;
}

.privacy-policy_topic-item:hover {
  color: #000;
  opacity: 1;
}

.privacy-policy_topic-item.active {
  opacity: 1;
}

.privacy-policy_topic-image {
  margin-bottom: 40px;
  width: 106px;
}

.privacy-policy_topic-title {
  font-size: 20px;
}

.terms-of-use h1 {
  font-size: 2em;
  margin: 0;
}

.terms-of-use hr {
  margin: 20px 0;
  opacity: 1;
}

.terms-of-use h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8em;
}

.terms-of-use p {
  margin-bottom: 1.5rem;
  font-size: 1.3em;
}

@media (max-width: 768px) {
  .privacy-policy_section-title {
    font-size: 2.2em;
  }

  .privacy-policy_section-description {
    font-size: 1.2em;
  }
}

@media (max-width: 1400px) {
  .privacy-policy_topic-item {
    margin-bottom: 40px;
    max-width: 250px;
    min-width: 250px;
  }

  .privacy-policy_topic-title {
    font-size: 16px;
  }

  .terms-of-use h1 {
    font-size: 50px;
  }
}

/* PRIVACY POLICY end =============================================== */
/* PARTNERS start =============================================== */
.partners-header {
  background: url('../img/partners-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
  height: auto;
}

.partners-header_container {
  height: calc(100% - 80px);
}

.partners-header_content {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  padding: 2rem 0 1rem;
  margin-top: 7rem;
  margin-bottom: 2rem;

}

.partners-header_title {
  font-size: 3em;
  margin-bottom: 2.2rem;
}

.partners-header_description {
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 2rem;
}

.partners-header_btn {
  font-size: 16px;
  width: 320px;
  height: 60px;
}

.partners-header_btn i {
  margin-right: 15px;
}

.partners-section_1 {
  background: url('../img/partners/partners-img_1.png');
  margin-top: 0;
  padding-top: 2rem;
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: 100% 92%;
}

.partners-section_2 {
  background: url('../img/partners/partners-img_2.png');
  background-size: 700px;
  padding-top: 2rem;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  padding: 3rem 0;
}

.partners-section_title {
  font-size: 3.6em;
  margin-bottom: 1rem;
}

.partners-section_description {
  font-size: 1.2em;
  margin-bottom: 2rem;
}

.partners-section_block-ibm {
  background: var(--bg-shadow-black);
  padding: 3.4rem 4.4rem;
  padding-bottom: 5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.partners-section_block-ibm .partners-section_block-description {
  margin-bottom: 3rem;
}

.partners-section_block {
  background: var(--bg-shadow-black);
  padding: 3rem 4rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.partners-section_block-image {
  margin-bottom: 3rem;
  height: 70%;
  padding: 1.4rem;
  background-color: var(--none);
}

.partners-section_block-title {
  font-size: 2.1em;
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
}

.partners-section_block-description {
  font-size: 1.19em;
  margin-bottom: 2.5rem;
  min-height: 13rem;
}

.partners-section_block-link {
  font-size: 24px;
  color: #1DA1F2;
}

.partners-section_block-link i {
  margin-left: 15px;
  transform: rotate(-45deg);
  margin-top: 2px;
}

@media (max-width: 768px) {

  .partners-section_1,
  .partners-section_2 {
    background: none;
  }

  .partners-header_title {
    font-size: 46px;
  }

  .partners-header_description {
    font-size: 22px;
  }

  .partners-header_btn {
    width: 250px;
  }
}

@media (max-width: 970px) {

  .partners-section_1,
  .partners-section_2 {
    background: none;
  }
}

@media (max-width: 1024px) {
  .partners-section_1 {
    background-position: 120% 92%;
  }

  .partners-section_2 {
    background-position: 0% 270%;
  }
}

@media (max-width: 1199.9px) {
  .partners-header {
    min-height: 45vh;
    height: auto;
  }

  .partners-header_content {
    padding: 2rem 1rem;
    margin-top: 7rem;
  }

  .partners-header_title {
    font-size: 2.4em;
  }

  .partners-header_description {
    font-size: 1em;
  }
}

/* PARTNERS end =============================================== */
/* BLOG start =============================================== */
.blog-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 100vh;
  height: auto;
  margin: 0;
  overflow-x: hidden;
}

.blog-header.solar-panel {
  background-image: url('../img/blog/solar-panel_bg.png');
  overflow: hidden;
}

.blog-header.smart-home {
  background-image: url('../img/blog/smart-home_bg.png');
  margin: 0;
  overflow-x: hidden;
}

.smart-home-page .blog-section {
  padding-top: 2.4rem;
  margin: 0;
  overflow-x: hidden;
}

.blog-header.tv-sound {
  background-image: url('../img/blog/tv-sound_bg.png');
}

.tv-sound-page .blog-section {
  padding-top: 2.4rem;
}

.home-security-page {
  overflow-x: hidden;
}

.blog-header.home-security {
  background-image: url('../img/blog/home-security_bg.png');
}

.home-security-page .blog-section {
  padding-top: 2.4rem;
  overflow-x: hidden;
}

.blog-header.go-green {
  background-image: url('../img/blog/green_bg.png');
}

.blog-header_container {
  height: calc(100% - 80px);
  padding-top: 1rem;
}

.blog-header_content {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  padding: 2rem 0 3rem;
  margin-top: 7rem;
  margin-bottom: 4rem;
}

.blog-header_title {
  font-size: 2.8em;
  margin-bottom: 2.2rem;
}

.blog-header_title span {
  color: #60D13E;
  font-size: 1.1em;
  margin-left: .6rem;
  font-family: 'MyriadWebPro';
}

.blog-header_description {
  font-size: 1.1em;
  font-weight: 200;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.blog-header_btn {
  font-size: 16px;
  width: 320px;
  height: 60px;
}

.blog-header_btn i {
  margin-right: 15px;
}

.solar-panel-page .blog-section {
  padding-top: 2.4rem;
}

.blog-section_services-title {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.blog-section_services-wrap {
  margin-bottom: 4rem;
}

.blog-section_services-item {
  padding: 65px 90px;
  background: rgba(218, 218, 218, 0.1);
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  text-align: center;
  height: 278px;
  max-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-section_services-img {
  margin-bottom: 33px;
}

.blog-section_services-text {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  position: absolute;
  bottom: 34px;
}

.blog-section_video-wrap {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-section_video-screenshot {
  width: 100%;
}

.blog-section_video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, .3);
}

.blog-section_video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 2px solid #fff;
  padding: 18px 35px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .1);
}

.blog-section_video-subtitle {
  font-size: 18px;
  text-align: center;
}

.blog-section_with-image {
  margin-bottom: 3rem;
}

.blog-section_with-image.full-width img {
  margin-bottom: 40px;
}

.blog-section_with-image.full-width p {
  font-size: 26px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .blog-section_with-image.full-width p {
  margin: .8rem;
  text-indent: 50px;
  text-align: justify;
  }
}
.blog-section_with-image_content {
  background: var(--bg-Off-white);
  padding: 3rem 4rem;
  height: 100%;
}

.blog-section_with-image_content p {
  font-size: 1.4em;
  margin-bottom: 2rem;
}

.blog-section_contact-us {
  padding: 1rem;
}

.blog-section_contact-us img {
  height: 100%;
}

.blog-section_contact-us h2 {
  font-size: 4em;
  margin-bottom: 1rem;
}

.blog-section_contact-us h3 {
  font-size: 2em;
  margin-bottom: 1.7rem;
}

.blog-section_contact-us .sign-in-block {
  padding: 50px 40px 30px;
  border: 1px solid #e2e2e2;
}

.blog-section_contact-us .sign-in-block form {
  margin: 0;
}

.blog-section_contact-us .sign-in-block form textarea {
  height: auto;
}

.blog-section_contact-us .sign-in-block form button {
  height: 60px;
  background-color: #f77a24;
  font-size: 16px;
}

.blog-section_contact-us .sign-in-block form button i {
  margin-right: 10px;
}

@media (max-width: 768px) {

  .blog-header_title {
    font-size: 1.6em;
  }

  .blog-header_description {
    font-size: 1em;
  }

  .blog-section_contact-us h2 {
    font-size: 2.6em;
  }

  .blog-section_contact-us h3 {
    font-size: 1.4em;
  }

  .blog-header_btn {
    width: auto;
  }

  .blog-section_with-image_content {
    padding: 55px 50px;
  }
}

@media (max-width: 992px) {
  .blog-section_services-item {
    margin-bottom: 20px;
  }

  .blog-section_contact-us img {
    display: none;
  }
}

@media (max-width: 1199.9px) {

  .smart-home .blog-header_content,
  .tv-sound .blog-header_content,
  .home-security .blog-header_content,
  .solar-panel .blog-header_content {
    padding: 1rem 0 2rem;
    margin-top: 7rem;
    margin-bottom: 4rem;

  }

  .blog-section_with-image_content p {
    font-size: 1.1em;
  }

  .blog-section_img {
    display: none;
  }

  .blog-header_content {
    padding: 80px 30px;
    margin-top: 70px;
  }

  .blog-section_services-item {
    padding: 0px 80px 0;
  }

}

@media (max-width: 1400px) {
  .blog-section_services-item {
    max-width: 210px;

  }
}

/* BLOG end =============================================== */
/* START REPAIR start =============================================== */
.repair-section {
  padding-top: 8rem;
}

.progress {
  height: 3px;
  background-color: #e0e0e0;
}

.progress .progress-bar {
  background-color: #60D13E;
  width: 5%;
}

.progress-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: -32px;
  margin-bottom: 2rem;
}

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

.progress-item p {
  border: 2px solid #bdbdbd;
  border-radius: 100%;
  background-color: #fff;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 1rem;
}

.progress-item span {
  font-size: .9em;
  font-weight: 500;
  color: #bdbdbd;
  text-align: center;
}

.progress-item.track.done p {
  background-color: #84DF68;
  color: #fff;
  border: 4px solid #60D13E;
  box-shadow: 0px 4px 20px -5px #60d13e;
  cursor: pointer;
}

.progress-item.track.done span {
  color: #60d13e;
  cursor: pointer;
}

.progress-item.done p {
  background-color: #84DF68;
  color: #fff;
  border: 4px solid #60D13E;
  box-shadow: 0px 4px 20px -5px #60d13e;
  cursor: pointer;
}

.progress-item.done span {
  color: #60d13e;
  cursor: pointer;
}

.progress-item.status p {
  border-color: #60D13E;
}

.start-repair-section {
  padding-top: 9rem;
}

.start-repair_main-title {
  font-size: 2em;
  margin-bottom: 1.7rem;
}

.step-title {
  color: #00A1DE;
  display: none;
}

.step-title span {
  color: var(--ex-black);
}

.step-title.active {
  display: inline-block;
}

.start-repair_main-subtitle {
  font-size: 2em;
  line-height: 46px;
  margin-bottom: 2.3rem;
}

.start-repair_services {
  margin-bottom: 3em;
  display: none;
  overflow-x: hidden;
}

.start-repair_services.active {
  display: block;
}

.start-repair_brand-section {
  display: none;
}

.start-repair_device-section {
  display: none;
}

.start-repair_services-item {
  padding: 3rem;
  background: rgba(218, 218, 218, 0.1);
  border: 1px solid var(--bd-light-white);
  border-radius: 6px;
  text-align: center;
  height: 200px;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.start-repair_services-item {
  margin-bottom: 20px;
}

.start-repair_services-item:hover,
.start-repair_services-item.active {
  background-color: var(--black);
}

.start-repair_services-item:hover h4,
.start-repair_services-item.active h4 {
  color: #0f63dc;
}

.start-repair_services-item.start-repair_services-choose {
  height: 172px;
  padding: 65px 86px;
}

.start-repair_services-item.start-repair_services-choose:hover,
.start-repair_services-item.start-repair_services-choose.active {
  background-color: #fff;
}

.start-repair_services-item.start-repair_services-choose.active .start-repair_services-text,
.start-repair_services-item.start-repair_services-choose:hover .start-repair_services-text {
  color: #0f63dc !important;
}

.start-repair_services-img {
  margin-bottom: 33px;
  max-width: 100%;
  min-width: 50px;
}

.start-repair_services-text {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  position: absolute;
  bottom: 28px;
  color: var(--dark-blue);
}

.start-repair_hr {
  background-color: transparent;
  border-bottom: 2px dashed #e0e0e0;
  opacity: 1;
}

.start-repair_choose-title {
  font-size: 46px;
  margin-top: 85px;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

.start-repair_section-title {
  font-size: 56px;
  text-align: center;
  line-height: 90px;
  margin: 0;
}

.start-repair_section-subtitle {
  font-size: 32px;
  text-align: center;
  line-height: 46px;
}

.bg-dark .start-repair_section-title,
.bg-dark .start-repair_section-subtitle {
  color: #fff;
}

.start-repair_brand-wrap {
  width: 100%;
  margin-top: 50px;
}

.start-repair_brand-item {
  background: #fff;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 1px;
  height: 160px;
  cursor: pointer;
}

.start-repair_brand-item img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: .2s ease;
}

.start-repair_brand-item:hover img {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.start-repair_brand-item.clicked img {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.start-repair_brand-checkbox {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border: 1px solid #d8d8d8;
}

.start-repair_brand-checkbox.form-check-input[type=checkbox] {
  margin: 0;
  border-radius: 100%;
  box-shadow: inset 0px 4px 6px 0px rgb(0 0 0 / 5%);
}

.start-repair_brand-checkbox.form-check-input:checked {
  background-color: #60D13E;
  border-color: #60D13E;
  box-shadow: none;
  background-size: 60%;
}

.start-repair_brand-checkbox.form-check-input:checked:focus {
  border-color: #60D13E;
}

.start-repair_brand-checkbox.form-check-input:focus {
  border-color: #d8d8d8;
}

.start-repair_device-wrap {
  background-image: url("../img/start_repair/device_search.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  width: 100%;
  margin: 50px 0 60px;
}

.start-repair_device-select {
  width: 100%;
  border-radius: 4px;
  padding: 16px 33px;
  font-size: 18px;
  background-image: url("../img/icons/chevron-down.png");
  background-repeat: no-repeat;
  background-position: right 25px center;
  height: 59px;
  background-color: #fff;
}

.start-repair_device-submit {
  border-radius: 4px;
  width: 160px;
  font-size: 16px;
}

.start-repair_problem-section {
  display: none;
}

.start-repair_problem-item {
  height: 195px;
  width: 180px;
  background: var(--bg-white);
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  margin: 0 auto 64px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-repair_problem-item.active .start-repair_problem-image,
.start-repair_problem-item.active .start-repair_problem-item-link,
.start-repair_problem-item:hover .start-repair_problem-image,
.start-repair_problem-item:hover .start-repair_problem-item-link {
  opacity: 1;
  color: #0f63dc;
}

.start-repair_problem-item-link {
  text-decoration: none;
  color: var(--ex-black);
}

.start-repair_problem-title {
  font-size: 20px;
  font-weight: 400;
  margin: 35px 0 0;
}

.start-repair_problem-image {
  opacity: .55;
}

.start-repair_info-section {
  display: none;
}

.start-repair_info-block {
  background: var(--bg-white);
  border-radius: 4px;
  padding: 20px 40px;
  overflow: hidden;
  border: 1px solid var(--bd-pale-silver);
  text-align: center;
}

.start-repair_info-block hr {
  opacity: .5;
  background-color: var(--bg-blue-gray);
  margin-bottom: 35px;
}

.start-repair_info-title {
  font-size: 26px;
  margin: 0 0 35px;
  font-weight: 700;
}

.start-repair_info-block .white-section {
  padding: 60px 40px 1rem;
}

.start-repair_info-block .black-section {
  background: #2a2a2a;
  padding: 15px 50px 25px;
}

.start-repair_info-block .black-section p {
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

.start-repair_info-block .black-section .form-switch label {
  color: #fff;
}

.ui-widget.ui-widget-content {
  width: 100%;
}

/*New Device choose repair service*/
.choise {
  text-decoration: none;
  cursor: pointer;
}

/**************** Preloader ******************/
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400);

.loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(#222922, #000500);
  font-family: 'MyriadWebPro', monospace;
  font-weight: 800;
  overflow: hidden;
  padding: 30px 0 0 30px;
  text-align: center;
  z-index: 10;
}

.disppear {
  animation: vanish 2s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

/**/

.word {
  bottom: 0;
  color: #fff;
  font-size: 2.5em;
  height: 2.5em;
  left: 0;
  line-height: 2.5em;
  margin: auto;
  right: 0;
  position: absolute;
  text-shadow: 0 0 10px rgba(50, 255, 50, 0.5), 0 0 5px rgba(100, 255, 100, 0.5);
  top: 0
}

.word span {
  display: inline-block;
  transform: translateX(100%) scale(0.9);
  transition: transform 500ms;
}

.word .done {
  color: var(--navy-blue), var(--navy-dark);
  transform: translateX(0) scale(1);
}

.loadOverlay {
  background-image: linear-gradient(transparent 0%, var(--navy-blue), var(--navy-dark) 50%);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/********************************/

::-webkit-scrollbar {
  width: 8px;
  background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(to bottom, var(--navy-blue), var(--navy-dark));
}

/************** Back to Up *******************/

.BackTop-wrap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 4px var(--gray);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.BackTop-wrap.active-BackTop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.BackTop-wrap::after {
  position: absolute;
  font-family: 'unicons';
  content: '\e84b';
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  color: #6882f3;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.BackTop-wrap:hover::after {
  opacity: 0;
}

.BackTop-wrap::before {
  position: absolute;
  font-family: 'unicons';
  content: '\e84b';
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  opacity: 0;
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.BackTop-wrap:hover::before {
  opacity: 1;
}

.BackTop-wrap svg path {
  fill: none;
}

.BackTop-wrap svg.BackTop-circle path {
  stroke: #6882f3;
  stroke-width: 6;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/******************************/

.form-check.form-switch .form-check-input[type=checkbox] {
  border-radius: 36px;
  border: 1px solid #e2e2e2;
  margin-right: 0;
  margin-top: 5px;
  background-color: rgba(218, 218, 218, 0.1);
}

.form-check.form-switch .form-check-input {
  background-image: url('../img/icons/switch.png')
}

.form-check.form-switch .form-check-input:checked {
  background-color: #60D13E;
}

.form-check.form-switch .form-check-label {
  font-size: 18px;
}

.start-repair_info-repair_summary p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 35px;
}

.start-repair_info-repair_summary span {
  font-size: 22px;
  font-weight: 300;
  display: block;
}

.start-repair_info-appointment_details {
  padding-bottom: 20px;
}

.appointment_details_subtitle {
  width: 80%;
}

.start-repair_info-schedule {
  margin-bottom: 35px;
}

.start-repair_info-schedule p {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 15px;
}

.start-repair_info-schedule span {
  font-size: 22px;
  font-weight: 500;
}

.start-repair_info-phone p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.start-repair_info-phone span {
  font-size: 22px;
  font-weight: 300;
}

.start-repair_info-store_hours {
  padding-bottom: 51px;
  background: rgb(42, 42, 42);
  background: linear-gradient(130deg, rgba(42, 42, 42, 1) 65%, rgba(48, 116, 166, 1) 100%);
  color: #fff;
}

.date-swiper_title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.date-swiper .swiper-button-next,
.date-swiper .swiper-button-prev {
  top: 0;
  margin-top: 0;
  color: #24252E;
  width: 15px;
  height: 35px;
}

.date-swiper .swiper-button-next:after,
.date-swiper .swiper-button-prev:after {
  font-size: inherit;
  font-weight: 700;
}

.date-swiper_day {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.date-swiper_day-number {
  text-align: center;
  font-size: 20px;
  display: block;
}

.date-swiper_day-block.active {
  padding: 10px;
  background-color: rgba(255, 75, 85, .1);
  color: #E84343;
}

.start-repair_info-back_btn {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.start-repair_info-back_btn i {
  margin-right: 20px;
}

.start-repair_info-continue_btn {
  font-size: 16px;
  border-radius: 4px;
  width: 100%;
}

.start-repair_info-continue_btn i {
  margin-left: 25px;
}

.start-repair_choose-service.bg-dark {
  display: none;
}

.start-repair_choose-service.active {
  display: block;
}

.start-repair_choose-service.bg-dark .start-repair_choose-title {
  color: #fff;
}

.start-repair_choose-service.bg-dark .start-repair_services-choose .start-repair_services-text {
  color: rgba(255, 255, 255, 0.5);
}

.start-repair_choose-service.bg-dark .start-repair_services-choose.active {
  background: #fff;
}

.start-repair_choose-service.bg-dark .start-repair_services-choose.active .start-repair_services-text {
  color: #0f63dc;
}

.start-repair_choose-service.bg-dark .start-repair_services-choose {
  border: 1px solid rgba(226, 226, 226, 0.5);
}

.start-repair_choose-service.bg-dark hr {
  background-color: transparent;
  border-bottom: 2px dashed #e0e0e0;
  opacity: .2;
}

.start-repair_subservices-wrap {
  display: none;
}

.start-repair_subservices-title {
  color: #fff;
  font-size: 36px;
  margin-top: 90px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}

.start-repair_subservices-item {
  background: rgba(218, 218, 218, 0.1);
  border: 1px solid rgba(226, 226, 226, 0.5);
  display: block;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  padding: 20px 55px;
  font-weight: 500;
  position: relative;
  margin-bottom: 15px;
}

.start-repair_subservices-item:hover,
.start-repair_subservices-item.active {
  background: #fff;
  color: #0f63dc;
  border-color: #ccc;
  padding-left: 95px;
}

.start-repair_subservices-item i {
  opacity: 0;
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
}

.start-repair_subservices-item:hover i,
.start-repair_subservices-item.active i {
  opacity: 1;
}

.start-repair_model-wrap {
  margin-top: 30px;
}

.start-repair_model-big {
  margin-bottom: 15px;
  position: relative;
  justify-content: center;
  display: flex;
}

.start-repair_model-big p {
  position: absolute;
  top: 55px;
  font-size: 28px;
  color: #fff;
  font-weight: 900;
}

.start-repair_model-big img {
  min-height: 336px;
}

.start-repair_model-item {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  position: relative;
  height: 102px;
  padding: 35px 55px;
  display: block;
  width: 100%;
  color: #333;
  text-decoration: none;
}

.start-repair_model-item.active p {
  color: #0f63dc;
}

.start-repair_model-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.start-repair_model-image {
  position: absolute;
  bottom: 0;
  right: 50px;
}

.start-repair_model-more {
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 26px 60px;
  margin-top: 85px;
}

.team-section_card img {
  transition: ease .2s;
}

.team-section_card img.active {
  transform: scale(1.3);
  transition: ease .2s;
}

.team_section-content {
  margin: 2rem;
}

.team_section-content .tab-pane.active {
  display: flex;
  justify-content: center;
}

.team-section_card-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--ex-black);
  margin-right: 40px;
}

.team-section_card-description {
  max-width: 380px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ex-black);
  line-height: 16px;
  margin: 0;
}

@media (max-width: 1400px) {
  .start-repair_services-item {
    max-width: 180px;
    height: 200px;
  }
}

@media (max-width: 992px) {
  .start-repair_main-title {
    font-size: 2.2em;
  }

  .start-repair_main-subtitle {
    font-size: 22px;
    line-height: 30px;
  }

  .start-repair_device-submit {
    width: 100%;
    margin-top: 10px;
  }

  .start-repair_device-wrap {
    height: 250px;
    padding: 0 15px;
    background: #333;
  }
}


@media (max-width: 600px) {

  .date-swiper_day,
  .date-swiper_day-number {
    font-size: 17px;
  }

  .progress-item span {
    font-size: .55em;
  }

  .start-repair_main-title {
    font-size: 1.4em;
  }

  .progress-item p {
    margin-top: .5rem;
    width: 2.2rem;
    height: 2.3rem;
  }

  .offset-1 {
    margin-left: 4% !important;
  }
}


/* START REPAIR end =============================================== */
/* TRACKING start =============================================== */
.tracking-section {
  padding-top: 6.2rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.tracking-section_image {
  height: 130%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.trackBtn {
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .tracking-section_image {
    display: none;
  }
}

.tracking-section_title {
  font-size: 3.2em;
  margin-bottom: 1.6rem;
}

.tracking-section_description {
  max-width: 40rem;
  font-size: 1.4em;
  margin-bottom: 2rem;
}

.tracking-section_form input {
  height: 60px;
}

.tracking-section_form .btn {
  height: 60px;
  padding: 20px 30px;
}

.tracking-section_form .btn i {
  margin-right: 1rem;
}

.tracking-section_sign {
  font-size: 1.6em;
  margin-top: 1.6rem;
}

.Tracking_signIn {
  text-decoration: none;
}

.tracking-status_section {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.tracking-status_section-title {
  text-align: center;
  font-size: 4em;
  font-weight: 500;
  margin-bottom: 1.3rem;
}

.tracking-status_section-id {
  text-align: center;
  font-size: 1.4em;
  font-weight: 300;
}

.tracking-status_section-id span {
  font-weight: 700;
  margin-left: 10px;
}

.tracking-status_progress {
  margin-top: 3rem;
}

.tracking-status_progress-wrap {
  margin-bottom: 4rem;
}

.tracking-status_content-title {
  text-align: left;
  margin-top: 40px;
  padding: 0px 80px;
  margin-bottom: 60px;
}

.tracking-status_content a {
  text-decoration: none;
}

.tracking-status_content hr {
  margin: 40px 0;
  background-color: var(--bg-blue-gray);
}

.tracking-status_content-status {
  margin-bottom: 35px;
}

.tracking-status_content-description {
  font-size: 22px;
  margin: 0;
  line-height: 38px;
}

.tracking-status_content-description span {
  font-weight: 700;
  margin-right: 10px;
}

.tracking-status_content-update {
  font-size: 22px;
}

.repair-details_section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 8rem;
  direction: ltr;
}

.repair-details_section-image {
  position: absolute;
  right: 0;
  top: 0;
}

.repair-details_section hr {
  margin: 2.2rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.repair-details_title {
  font-size: 3em;
  margin-bottom: 2.8rem;
}

.repair-details_list-icon {
  color: #27ae60;
  border: 2px solid #27ae60;
  padding: 23px;
  background: #fff;
  border-radius: 100%;
  margin-right: 32px;
}

.repair-details_list h3 {
  font-size: 2em;
  margin-bottom: 1.2rem;
}

.repair-details_list p {
  font-size: 1em;
  margin: 0;
}

@media (max-width: 768px) {

  .tracking-section_title {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .repair-details_section-image {
    display: none;
  }
}

@media (max-width: 1024px) {
  .repair-details_section-image {
    width: 80%;
  }
}

@media (max-width: 1400px) {
  .start-repair_services-text {
    font-size: 18px;
  }
}

/* TRACKING end =============================================== */
/* BLOG start =============================================== */
.blog-section {
  background-image: url(../img/line_2.png);
  background-position: top right;
  background-repeat: no-repeat;
  padding: 6rem 0 2rem;
  background-position-y: -80px;
  overflow: hidden;
}

.go-green_page .blog-section {
  background-image: none;
}

.blog-section_title {
  margin-bottom: 2rem;
  font-size: 3.4em;
}

.blog-section_card {
  background: var(--bg-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--bd-white-silver);
}

.blog-section_card.horizontal {
  padding: 2rem 0;
}

.blog-section_card-info {
  padding: 1rem 2rem;
}

.blog-section_card-info.intro {
  padding: 0 3rem;
}

.blog-section_card-date {
  font-size: .8em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-section_card-title {
  font-size: 2em;
  margin-bottom: 1rem;
}

.blog-section_card-content {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 2.8rem;
}

.blog-section_card.bg-dark .blog-section_card-title {
  color: #fff;
}

.blog-section_card.bg-dark .blog-section_card-content {
  color: #fff;
}

.blog-section_card-btn {
  width: 270px;
}

.blog-section_card-btn i {
  margin-left: 24px;
}

.blog-section_card-link {
  color: #00C0FF;
  font-size: 1.5em;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
}

.blog-section_card-link span {
  border-bottom: 1px solid #00C0FF;
  display: inline-block;
  line-height: 22px;
}

.blog-section_card-link i {
  margin-left: 15px;
  transform: rotate(-45deg);
  margin-top: 2px;
}

.news-section {
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
}

.news-section .news-swiper {
  overflow: hidden;
}

@media (max-width: 1199.9px) {
  .blog-section_card-info.intro {
    padding: 70px 40px;
  }
}

@media (max-width: 992px) {
  .blog-section_card.horizontal img {
    display: none;
  }
}

.news-section_title {
  font-size: 46px;
  margin-bottom: 40px;
}

.news-actions {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.news-actions .swiper-button-prev,
.news-actions .swiper-button-next {
  margin-top: 0;
  position: relative;
}

.news-actions .swiper-button-prev::after,
.news-actions .swiper-button-next::after {
  content: "";
}

.news-actions .swiper-button-prev {
  right: auto;
  left: auto;
  margin-right: 70px;
}

.news-actions .swiper-button-next {
  right: auto;
  margin-right: 50px;
}

.news-swiper .swiper-pagination {
  text-align: left;
}

.news-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #f2f2f2;
  border-radius: 0;
}

.news-swiper .swiper-pagination-bullet-active {
  background: #2a2a2a;
}

.news-swiper .swiper-slide {
  width: 50%;
}

.news-card {
  border-radius: 10px;
  background: #2a2a2a;
  overflow: hidden;
}

.news-card_img {
  width: 100%;
}

.news-card_body {
  padding: 32px 34px 60px;
}

.news-card_title {
  font-size: 32px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 400;
}

.news-card_date {
  font-size: 12px;
  text-transform: uppercase;
  color: #828282;
  font-weight: 500;
  margin-bottom: 20px;
}

/************************************/
.select2-container--open .select2-dropdown--below {
  background-color: var(--bg-white) !important;
}

.select2-container--open .select2-dropdown {
  background-color: var(--bg-white) !important;
}

.select2-search--dropdown .select2-search__field {
  color: var(--ex-black) !important;
}

/************************************/
/* Date Picker */
.calender {
  display: inline-block;
  margin-bottom: 1rem;
}

#today {
  background-color: rgb(0, 161, 222);
  text-align: center;
  font-size: 1.4em;
  color: whitesmoke;
  padding: .6rem;
  margin-bottom: .5rem;
}

.ui-datepicker .ui-datepicker-header {
  background-color: white;
  padding-top: 1rem;
  border: 0px;
  border-bottom: 1px solid rgb(171, 169, 169);
  border-radius: 0px;
  height: 3rem;
  font-size: 1.2em;
}

.ui-datepicker th {
  height: 2rem;
  font-size: 1.1em;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-color: gainsboro;
  cursor: pointer;
}


/**/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0px !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 0px !important;
}

/**/

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 3px solid black !important;
  background-color: rgb(0, 161, 222) !important;
  color: white !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: rgb(0, 161, 222) !important;
  color: rgb(255, 255, 255) !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  width: 4rem;
  height: 3rem;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 1em;
}

/**************************/
.time-calender {
  display: inline-block;
}

.available-hours {
  display: none;
}

.available-hours.now.active {
  display: block;
}

.available-hours.soon.active {
  display: block;
}

.available-hours-column {
  margin-right: 1rem !important;
}

.available-hour {
  border: 1px solid #dedede;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 2px;
  padding: .4rem 2rem;
  text-align: center;
  cursor: pointer;
}

.available-hour.now.hide {
  display: none;
}

.available-hour:hover {
  border: 1.5px solid rgb(0, 161, 222);
}

.available-hour.selected {
  background-color: rgb(0, 161, 222);
  color: white;
}

/****/
.next.active {
  display: inline-block;
}

.next {
  padding: .5rem 1.5rem;
  border-radius: 5px;
  background-color: var(--ex-black);
  color: var(--bg-white);
  display: none;
}

.next:hover {
  background-color: rgb(0, 161, 222);
}

/**************************/

.news-card_content {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #fff;
}

.news-card_link {
  color: #00C0FF;
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
}

.news-card_link span {
  border-bottom: 1px solid #00C0FF;
  display: inline-block;
  line-height: 22px;
}

.news-card_link i {
  margin-left: 15px;
  transform: rotate(-45deg);
  margin-top: 2px;
}

/* BLOG end =============================================== */
/* GO GREEN start =============================================== */
.gogreen-content_section {
  background: var(--bg-white);
  padding: 2.8rem;
  border-radius: 10px;
  position: relative;
}

.gogreen-content_section::after {
  content: "";
  width: 30px;
  height: 58px;
  background-image: url("../img/blog/mark.png");
  background-size: 30px 58px;
  position: absolute;
  top: -29px;
  left: 70px;
}

.gogreen-content_section-block {
  padding: 5rem 3rem;
}

.gogreen-content_section-block h2 {
  font-size: 2.6em;
  margin-bottom: 1.4rem;
}

.gogreen-content_section-block p {
  font-size: 1.2em;
  text-align: justify;
  line-height: 1.6rem;
  margin-bottom: 2rem;
}

.gogreen-info_section {
  background-color: #000;
  padding: 4rem 0;
}

.gogreen-info_block {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 3rem 2.3rem;
  position: relative;
  margin-bottom: 2.4rem;
}

.gogreen-info_block.dark {
  background: rgba(80, 80, 80, 0.32);
  color: #fff;
}

.gogreen-info_block h3 {
  margin-bottom: 1.8rem;
}

.gogreen-info_block p {
  font-size: 1.2em;
}

.gogreen-info_block::after {
  content: "";
  width: 30px;
  height: 58px;
  background-image: url("../img/blog/mark.png");
  background-size: 30px 58px;
  position: absolute;
  top: -20px;
  left: 35px;
}

@media (max-width: 768px) {
  .gogreen-content_section-block {
    padding: 1rem 0 1rem;
  }
}

@media (max-width: 990px) {
  .gogreen-info_block {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 2rem;
    position: relative;
    margin-bottom: 1rem;
  }

  .gogreen-info_block.dark {
    padding: 1.6rem;

  }
}

.gogreen-donate_section {
  padding-top: 2rem;
}

.gogreen-donate_section h2 {
  font-size: 42px;
  margin-bottom: 2rem;
}

/* GO GREEN end =============================================== */
/* PRICING start =============================================== */
.pricing-section {
  background-image: url(../img/pricing_bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  padding: 6rem 0 2rem;
}

.pricing-section_title {
  margin-bottom: 2rem;
  font-size: 3.3em;
}

.pricing-wrap {
  background: var(--bg-white);
  margin-bottom: 1rem;
}

.pricing-tabs {
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid var(--bg-sam-black);
}

.pricing-tabs .nav-link {
  padding: 2rem 1rem;
  font-size: 2.2em;
  font-family: 'MyriadWebPro';
  font-weight: 400;
  color: var(--ex-black);
  border: none;
}

.pricing-tabs .nav-item.show .nav-link,
.pricing-tabs .nav-link.active {
  color: #f77a24;
  border-bottom: 4px solid #f77a24;
}

.pricing-tabs_content {
  padding: 3rem 130px;
}

.pricing-row {
  border-bottom: 1px solid var(--bd-sim-black);
}

.pricing-tabs_content .tab-pane .pricing-row:last-child {
  border: none;
}

.pricing-row p {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}

.pricing-row span {
  color: #1DA1F2;
  font-size: 26px;
  font-weight: 500;
  background: rgba(29, 161, 242, 0.1);
  width: 173px;
  height: 79px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199.9px) {
  .pricing-section_title {
    font-size: 50px;
  }

  .pricing-tabs {
    padding: 0 40px;
  }

  .pricing-tabs_content {
    padding: 50px 40px;
  }
}

@media (max-width: 992px) {
  .pricing-tabs .nav-link {
    padding: 40px 0 25px;
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-row p {
    font-size: 18px;
  }

  .pricing-row span {
    width: 100px;
    height: 70px;
    font-size: 18px;
  }
}

/* PRICING end =============================================== */
/* FAQ start =============================================== */
.faq-section {
  background-image: url(../img/line_2.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-position-y: -80px;
  padding: 6rem 0 1rem;
}

.faq-more-section {
  background-image: url(../img/line_2.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-position-y: -80px;
  padding: 6rem 0 3rem;
}

.faq-section_title {
  margin-bottom: 1rem;
  font-size: 4em;
}

.faq-section_form-search {
  margin-bottom: 2rem;
}

.faq-section_form-search input {
  height: 60px;
}

.faq-section_form-search .btn {
  height: 60px;
  padding: 20px;
}

.faq-tabs {
  justify-content: space-between;
  border: none;
}

.faq-tabs .nav-link {
  padding: 10px 20px;
  font-size: 24px;
  font-family: 'MyriadWebPro';
  font-weight: 400;
  color: var(--ex-black);
  border: none;
  background: transparent;
}

.faq-tabs .nav-item.show .nav-link,
.faq-tabs .nav-link.active {
  color: var(--ex-black);
  border-bottom: 4px solid #f77a24;
  background: transparent;
}

.faq-tabs_content {
  padding: 3rem 0;
}

.faq-tabs_content hr {
  margin: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.faq-card h2 {
  font-size: 2em;
  margin-bottom: 1.4rem;
}

.faq-card p {
  font-size: 1.4em;
  margin: 0;
  width: 90%;
  line-height: 32px;
}

.faq-card.big h2 {
  font-size: 46px;
  margin-bottom: 15px;
}

.faq_more-section_title {
  font-size: 3.4em;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-accordion {
  margin-bottom: 3rem;
}

.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px;
  background-color: var(--bg-white);
}

.faq-accordion .accordion-button {
  color: var(--ex-black);
}

.faq-accordion .accordion-item:not(:first-of-type) {
  border-top: inherit;
}

.faq-accordion .accordion-button {
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  padding: 30px;
}

.faq-accordion .accordion-button:focus {
  border-color: inherit;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #0f63dc;
}

.faq-accordion .accordion-body {
  padding: 0 30px 30px;
  font-size: 18px;
}

.faq-accordion .accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 40px;
  background-image: none;
  font-weight: 400;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "-";
  font-size: 40px;
  color: #1b6ce5;
}

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

.faq-question h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.faq-question p {
  font-size: 24px;
  width: 65%;
  margin: 0 auto 50px;
}

@media (max-width: 1199.9px) {
  .faq-section_title {
    font-size: 2.4em;
  }

  .faq_more-section_title {
    font-size: 2.4em;
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .faq-card {
    margin-bottom: 30px;
  }
}

/* FAQ end =============================================== */
/* DISCUSSION start =============================================== */
.discussion-section {
  background-image: url(../img/line_2.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-position-y: -80px;
  padding: 6rem 0 2rem;
  margin: 0;
  overflow-x: hidden;
}

.discussion-section_title {
  margin-bottom: 30px;
  font-size: 66px;
}

.discussion-section_subtitle {
  font-size: 24px;
  width: 70%;
  margin-bottom: 45px;
}

.discussion-section_form-search {
  margin-bottom: 60px;
}

.discussion-section_form-search input {
  height: 60px;
}

.discussion-section hr {
  background: rgba(0, 0, 0, 0.3);
}

.discussion-section_form-search .btn {
  height: 60px;
  padding: 20px;
}

.discussion-service_section-title {
  font-size: 36px;
  margin-bottom: 60px;
}

.discussion-service_section .start-repair_services-item {
  background: var(--bg-white);
  border: 1px solid var(--bd-light-white);
  height: 278px;
  max-width: 278px;
  padding: 0 120px 0;
}

.discussion-service_section .start-repair_services-item:hover {
  background: var(--bg-blue-gray)
}

.discussion-section_ask {
  font-size: 24px;
  margin-bottom: 35px;
}

.discussion-section_ask a {
  text-decoration: none;
  color: #0f63dc;
  margin-left: 10px;
}

.discussion-section_result {
  font-size: 24px;
  color: var(--gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 12px;
  margin-bottom: 50px;
}

.discussion-section_thread {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 25px;
}

.discussion-row {
  align-items: center;
  margin-bottom: 2.2rem;
}

.discussion-row_title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.discussion-row_content {
  font-size: 18px;
}

.discussion-row_actions {
  display: flex;
}

.discussion-row_user {
  margin-right: 50px;
}

.discussion-row_user img,
.discussion-row_user span {
  cursor: pointer;
}

.discussion-row_user span {
  margin-left: 10px;
  font-size: 16px;
  color: var(--gray);
}

.discussion-row_info {
  display: flex;
  width: 200px;
  justify-content: space-between;
}

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

.discussion-row_col img {
  margin-bottom: 20px;
  background-color: #fff;
}

.discussion-row_col:hover img {
  transform: scale(1.4);
  border: rgba(48, 116, 166, 1) solid 1px;
  border-radius: 50%;
  cursor: pointer;
}

.discussion-row_col:hover p {
  color: rgba(48, 116, 166, 1);
  font-weight: bold;
  cursor: pointer;
}

.discussion-row_col p {
  margin: 0;
}

.discussion-section_pagination {
  margin-top: 40px;
  direction: ltr;
}

.discussion-section_pagination .page-link {
  border: none;
  color: #000;
}

.me-4 {
  margin-left: 1.5rem !important;
}

@media (max-width: 992px) {
  .discussion-service_section .start-repair_services-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 1199.9px) {
  .discussion-section_title {
    font-size: 50px;
  }

  .discussion-section_subtitle {
    font-size: 22px;
    width: 100%;
  }

  .discussion-service_section .start-repair_services-item {
    padding: 0px 80px 0;
  }
}

@media (max-width: 1400px) {
  .discussion-service_section .start-repair_services-item {
    max-width: 200px;
  }
}

/* DISCUSSION end =============================================== */
/* Popup start =============================================== */

.popup-modal .modal-dialog {
  max-width: 915px;
}

#popup-privacyServices-modal p {
  font-size: 1em;
  margin: 2rem 2rem .1rem;
  text-indent: 50px;
  text-align: justify;
}

.popup-modal .popup-porblem-style {
  max-width: 500px;
}

.popup-modal .modal-content {
  min-height: 35rem;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.popup-modal .modal-content .btn-close {
  right: 35px;
  top: 35px;
  position: absolute;
}

.popup-modal .modal-content .popup-title {
  z-index: 1;
  font-size: 156px;
  font-weight: 900;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 65px;
  margin-right: 65px;
  margin-bottom: 10px;
}

.popup-modal .modal-content .popup-with {
  text-align: center;
  font-size: 36px;
  font-family: 'MyriadWebPro';
  z-index: 1;
  width: 100%;
  padding-left: 60px;
  margin-bottom: 0;
}

.popup-modal .modal-content .popup-subtitle {
  font-family: 'MyriadWebPro';
  font-size: 30px;
  text-align: center;
  z-index: 1;
  width: 100%;
  padding-left: 60px;
  font-weight: 600;
}

.popup-modal .modal-content .popup-available {
  color: #fff;
  opacity: .5;
  position: absolute;
  right: 50px;
  bottom: 25px;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 7px;
}

.popup-modal .modal-content .popup-title span {
  font-family: 'MyriadWebPro';
  font-size: 56px;
}

.popup-modal .modal-content .popup-title .popup-val {
  margin-right: 10px;
}

.popup-modal .modal-content .popup-title .popup-text {
  margin-left: 10px;
}

.popup-modal .popup-modal_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Style (1) */
.popup-modal.popup-style1 .popup-modal_background {
  background-image: url(../img/popup/bg1.png);
}

.popup-modal.popup-style1 .popup-modal_border {
  background-color: #000;
  border: 20px solid #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
}

.popup-modal.popup-style1 .modal-content .btn-close {
  color: #fff;
  background-image: url('../img/icons/close_wh.png');
  opacity: .9;
}

.popup-modal.popup-style1 .modal-content .popup-title {
  color: #0F63DC;
}

.popup-modal.popup-style1 .modal-content .popup-with {
  color: #fff;
}

.popup-modal.popup-style1 .modal-content .popup-subtitle {
  color: #fff;
}

l.popup-style1 .modal-content .popup-with {
  color: #fff;
}

.popup-modal.popup-style1 .modal-content .popup-subtitle {
  color: #fff;
}


l.popup-style1 .modal-content .popup-with {
  color: #fff;
}

.popup-modal.popup-style1 .modal-content .popup-subtitle {
  color: #fff;
}


/* Style (2) */
.popup-modal.popup-style2 .popup-modal_background {
  background-image: url(../img/popup/bg2.png);
}

.popup-modal.popup-style2 .popup-modal_border {
  background-color: #FFFFFF;
  border: 20px solid #FFFFFF;
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
}

.popup-modal.popup-style2 .modal-content .btn-close {
  color: #2D2D2D;
  background-image: url('../img/icons/close_wh.png');
  opacity: .9;
}

.popup-modal.popup-style2 .modal-content .popup-title {
  color: #0F63DC;
}

.popup-modal.popup-style2 .modal-content .popup-with {
  color: #3C3C3C;
}

.popup-modal.popup-style2 .modal-content .popup-subtitle {
  color: #3C3C3C;
}

l.popup-style2 .modal-content .popup-with {
  color: #3C3C3C;
}

.popup-modal.popup-style2 .modal-content .popup-available {
  color: #2D2D2D;
  opacity: .5;
  position: absolute;
  right: 50px;
  bottom: 25px;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 7px;
}

/* Style (2) */
.popup-modal.popup-style2 .popup-modal_background {
  background-image: url(../img/popup/bg1.png);
}

.popup-modal.popup-style2 .popup-modal_border {
  background-color: #fff;
  border: 20px solid rgb(246, 243, 250);
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
}

.popup-modal.popup-style2 .modal-content .btn-close {
  color: #2D2D2D;
  background-image: url('../img/icons/close_bl.png');
  opacity: .9;
}

.popup-modal.popup-style2 .modal-content .popup-title {
  color: #0F63DC;
}

.popup-modal.popup-style2 .modal-content .popup-with {
  color: #3C3C3C;
}

.popup-modal.popup-style2 .modal-content .popup-subtitle {
  color: #3C3C3C;
}

l.popup-style2 .modal-content .popup-with {
  color: #3C3C3C;
}

.popup-modal.popup-style2 .modal-content .popup-available {
  color: #2D2D2D;
  opacity: .5;
  position: absolute;
  right: 50px;
  bottom: 25px;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 7px;
}

/* Style (3) */
.popup-modal.popup-style3 .popup-modal_background {
  background-image: url(../img/popup/bg3.png);
  width: 913px;
  height: 590px;

}

.popup-modal.popup-style3 .popup-modal_border {
  background-color: #000;
  border: 20px solid rgb(246, 243, 250);
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
}

.popup-modal.popup-style3 .modal-content .btn-close {
  color: #F67A24;
  background-image: url('../img/icons/close_or.png');
  opacity: .9;
}

.popup-modal.popup-style3 .modal-content .popup-title {
  color: #F67A24;
}

.popup-modal.popup-style3 .modal-content .popup-with {
  color: #fff;
}

.popup-modal.popup-style3 .modal-content .popup-subtitle {
  color: #fff;
}

l.popup-style3 .modal-content .popup-with {
  color: #3C3C3C;
}

.popup-modal.popup-style3 .modal-content .popup-available {
  color: #FFFFFF;
  opacity: .5;
  position: absolute;
  right: 50px;
  bottom: 25px;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 7px;
}

@media (max-width: 992px) {
  .popup-modal.popup-style1 .popup-modal_background {
    background-image: url(../img/popup/bg1-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .popup-modal.popup-style2 .popup-modal_background {
    background-image: url(../img/popup/b2-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .popup-modal.popup-style3 .popup-modal_background {
    background-image: url(../img/popup/bg3-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .popup-modal .modal-content .popup-title {
    margin-right: 0;
  }

  .popup-modal .modal-content .popup-subtitle {
    padding-left: 0px;
  }
  .popup-modal .modal-content .popup-available{
    padding-left: 2rem;
  }
  .popup-modal .modal-content .popup-with {
    padding-left: 0px;
  }
}

@media (max-width: 563px) {
  .popup-modal .modal-content .popup-title {
    transform: scale(0.7);
  }

  .popup-modal .modal-content .popup-subtitle {
    font-size: 26px;
  }
  .popup-modal .modal-content .popup-available{
    font-size: 18px;
  }
  .popup-modal .modal-content .popup-with {
    font-size: 20px
  }

  .popup-modal .modal-content .popup-with {
    font-size: 12px;
  }
}

/* Popup end =============================================== */
/* 404 start =============================================== */
.page-404 header {
  max-height: 60rem;
  height: auto;
}

.page-404::after,
.page-404::before {
  box-sizing: content-box;
}

.page404 {
  background-repeat: no-repeat;
  background-color: #000;
  background-image: url(../img/404.png);
  background-size: 100% 100%;
  background-position: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
  margin: 0;
}

.page404 h5 {
  color: #f77a24;
  font-size: 36px;
  font-weight: 700;
  margin: 40px 0 10px;
}

.page404 p {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}

.page404 .btn {
  font-size: 16px;
  margin-top: 40px;
  padding: 25px 55px;
}

.page404 .btn i {
  margin-right: 30px;
}

/* 404 end =============================================== */
/* Footer start */
footer {
  padding: 70px 0 50px;
  background: var(--bg-black);
}

footer .info-col h2 {
  font-size: 32px;
  color: #fff;
  margin: 0 0 25px;
}

footer .info-col hr {
  background-color: #5B637C;
  opacity: .5;
  margin: 20px 0;
}

footer .info-col .btn {
  border-radius: 4px;
  padding: 25px 35px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 12px;
}

footer .info-col form {
  margin-bottom: 20px;
}

footer .info-col .form-control {
  background-color: var(--bg-white);
  color: var(--ex-black);
  padding: 6px 35px;
  border: 2px solid rgba(242, 242, 242, .4) !important;
}

footer .info-col .form-control::placeholder {
  color: var(--ex-black);
  opacity: .8;
}

footer .info-col ul li {
  color: #fff;
  padding-left: 10px;
}

footer .info-col ul li span {
  display: inline-flex;
}

footer .info-col ul li i {
  margin-right: 10px;
}

footer .list-col h3 {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  opacity: .7;
  margin-bottom: 20px;
}

footer .list-col li {
  margin-bottom: 16px;
}

footer .list-col a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

footer .list-col a i {
  opacity: .4;
  margin-right: 10px;
  width: 15px;
}

footer .list-col a:hover {
  color: var(--orange);
}

footer .copyright {
  margin-top: 50px;
}

footer .copyright a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

footer .copyright a:hover {
  color: var(--orange);
}

footer .copyright p {
  color: #fff;
  opacity: .7;
  font-size: 14px;
  margin: 0;
}

/* Footer end */

.popup-porblem-style .modal-content {
  font-family: 'MyriadWebPro';
  background-color: #333333;
}

.popup-porblem-style .container {
  text-align: center;
  padding-top: 2rem;
  color: #FFFFFF;
}

.popup-porblem-style .container h2 {
  padding-top: 3rem;
  font-size: 3em;
  font-weight: 200;
}

.popup-porblem-style .container p {
  font-size: 1.1em;
  font-weight: 100;
}

.popup-porblem-style .container2 {
  max-width: 60%;
}

.popup-porblem-style textarea {
  width: 100%;
  min-height: 12rem;
  resize: none;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: 1px solid #000;
  padding: 0.5rem;
  color: var(--black);
  box-shadow: inset 0 0 0.15rem #0F63DC;

}

.popup-porblem-style .container2 .btn {
  font-size: 1.1em;
  padding: 1rem 2rem;
  color: white;
  margin: 2rem .5rem;
}

.popup-porblem-style .container2 .btn-warning {
  background-color: #F77A24;
}
