text/css style.css ( ASCII C program text)
/**

*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,500i,600,600i,700,700i,800|Open+Sans:400,400i,600,600i,700,700i,800&display=swap);

/* Typography
================================================== */

body {
    background: rgb(255, 253, 253);
    color: rgb(36 35 35);
    font-family: 'Open Sans', arial, sans-serif;
    border: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

body,
p {
    font-family: 'Open Sans', arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased !important;
    line-height: 1.42857143;
    font-size: 17px !important;
    word-spacing: 1px letter-spacing: 0.5px;
}


/*-------*/

@media(max-width:786px) {
    body,
    p {
        font-family: 'Open Sans', arial, sans-serif;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased !important;
        line-height: 1.42857143;
        font-size: 19px !important;
    }
    .popupoff {
        display: none !important
    }
     
}

h2,
h3,
h4,
h5,
h6 {
    color: #3f3a3a;
    font-weight: 500;
    font-family: 'Open Sans', arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased !important;
}

h1 {
    padding-top:1rem!important;
    font-size: 1.8rem!important;
    margin-bottom: 18px!important;
     font-weight: 500!important;
}

h2 {
    font-size: 26px;
    line-height: 1.42857143;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.text-fonts {
    margin-inline: 35px;
    text-align: -webkit-left;
    margin-top: 11px;
    color: rgb(255, 255, 255);
}

.alert .icon {
    margin-right: 15px;
}


/* Global styles
================================================== */

html {
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Open Sans', arial, sans-serif;
}

.body-inner {
    position: relative;
    overflow: hidden;
}

.preload {
    position: fixed;
    background: #fff url(../images/preload.gif) center center no-repeat;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

a:link,
a:visited {
    text-decoration: none;
}

.popup_auto {
    background: url();
    border-radius: 6.3rem;
}


/*----------popup--------css--------*/
.font-size1{font-size:1.5rem!important;font-weight: 600!important;}

.font-size{font-size:1.2rem!important;font-weight: 600!important;}
.popup_auto {
    z-index: 999;
    background-color: #029ede;
    padding: 5px 5px;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 21px;
    display: none;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 65%);
}

.popup_auto button {
    display: block;
    margin: 0 0 40px auto;
    background-color: transparent;
    font-size: 35px;
    color: #ffffff;
    /* background: #03549a; */
    border-radius: 100%;
    width: 35px;
    height: 5px;
    border: none;
    outline: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: black !important;
}

a.read-more:hover {
    color: #222;
}

section,
.section-padding {
    padding: 50px 0;
    position: relative;
}

.no-padding {
    padding: 0;
}

.gap-60 {
    clear: both;
    height: 60px;
}

.gap-40 {
    clear: both;
    height: 40px;
}

.gap-30 {
    clear: both;
    height: 30px;
}

.gap-20 {
    clear: both;
    height: 20px;
}

.mrb-30 {
    margin-bottom: 30px;
}

.mrb-80 {
    margin-bottom: -80px;
}

.mrt-0 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.pab {
    padding-bottom: 0;
}

a:focus {
    outline: 0;
}

.ts-padding {
    padding: 60px;
}

.solid-bg {
    background: #f9f9f9;
}
/*govind css*/

.marquee {
  width: 100%;
  overflow: hidden;
  background-color:rgba(7, 7, 7, 0);
  display: flex;
  align-items: center;
  position: relative;
  padding: 22px;
}

.marquee-content {
  display: flex;
  animation: marquee 60s linear infinite; /* Infinite animation */
}

.marquee-item {
  flex-shrink: 0;
  width: 80px; /* Set your desired width */
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 19px;
  position: relative;
  font-size: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.marquee-item img {
  width: 100%;
  height: auto;
}

/* Country name styling */
.marquee-item::after {
  content: attr(data-country); /* Use the custom attribute for country name */
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.marquee-item:hover::after {
  opacity: 1; /* Show the country name on hover */
  bottom: 50%; /* Move it to the center */
  transform: translate(-50%, -50%);
  background-color: #00796b;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*  */

.subscribes {
    background: linear-gradient(rgba(19, 19, 20, 0.72), rgba(14, 14, 15, 0.81)), url(../flags/60012349d960f30001c1f4fd.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*  */

.contact .font-a{font-size: 1.9rem!important;font-weight: 600;}

/* ADREESS */
.address{font-size:1rem!important;font-weight: 600;}
.address-1{font-size: 0.8rem!important;font-weight: 500;}
.display-2{font-size: 2rem!important;}
.display-3{font-size: 1.8rem!important;font-weight: 700!important;}

/*end css*/
.dark-bg {
    background: #252525;
    color: #fff;
}

.dark-bg h2,
.dark-bg h3 {
    color: #fff;
}

.solid-row {
    background: #f0f0f0;
}

.bg-overlay {
    position: relative;
}

.bg-overlay .container {
    position: relative;
    z-index: 1;
}

.bg-overlay:after {
    background-color: #00796b !important;
    z-index: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-overlay:after {
    position: relative;
}

.bg-overlay:after {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.content-hidden {
    position: absolute;
    height: 1px;
    width: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    overflow: hidden;
}


/* Dropcap */

.dropcap {
    font-size: 48px;
    line-height: 60px;
    padding: 0 7px;
    display: inline-block;
    font-weight: 700;
    margin: 5px 15px 5px 0;
    position: relative;
    text-transform: uppercase;
}

.dropcap.primary {
    background: #ffb600;
    color: #fff;
}

.dropcap.secondary {
    background: #3a5371;
    color: #fff;
}


/* Title */

.title {
    /*font-size: 32px;*/
    line-height: 36px;
    margin-bottom: 20px;
}

.backgtop {
    background-image: url(../img/bis-crs/sunconsultants-new.jpg);
    /* height: 400px; */
    min-height: 400px;
    width: 561px;
    /* background-size: contain; */
    border-radius: 0 0 30px 30px;
}


/* Title Border */


/* Section title */

.section-title {
    /*font-size: 18px;*/
    line-height: 28px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}

.section-sub-title {
    font-weight: 900;
    /*font-size: 36px;*/
    line-height: 46px;
    margin: 0 0 60px;
    color: #212121;
}

@media (max-width: 575px) {
    .section-sub-title {
        font-size: 28px;
    }
}


/* Column title */

.column-title {
    margin: 0 0 40px;
}

.column-title-small {
    font-size: 20px;
    margin: 0 0 25px;
}


/* Page content title */

.page-content-title.first {
    margin-top: 0;
}


/* Video responsive */

.embed-responsive {
    padding-bottom: 56.25%;
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Input form */

.form-control {
    box-shadow: none;
    border: 1px solid #dadada;
    padding: 5px 20px;
    height: 44px;
    background: white;
    color: #959595;
    /*font-size: 14px;*/
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ffb600;
}

hr {
    background-color: #fff9f9;
    border: 0;
    height: 1px;
    margin: 40px 0;
}

.alert hr {
    background: initial;
    margin: initial;
    border-top: 1px solid;
    height: initial;
    margin-bottom: 1rem;
    opacity: 0.2;
}

blockquote {
    padding: 25px;
    margin: 20px 0;
    background: #f9f9f9;
    position: relative;
    border-left: 3px solid #ffb600;
    padding-left: 40px;
}

blockquote.text-center {
    border-top: 3px solid #ffb600;
    border-left: 0;
    padding-left: 25px;
    padding-top: 50px;
}

blockquote.text-center:before {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

blockquote.text-right {
    border-right: 3px solid #ffb600;
    padding-right: 40px;
    border-left: 0;
    padding-left: 25px;
}

blockquote.text-right:before {
    left: auto;
    right: 5px;
}

blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 28px;
    color: #E5E5E5;
    top: 5px;
    left: 5px;
    font-weight: 700;
    z-index: 0;
}

blockquote p {
    /*font-size: 14px;*/
    line-height: 22px;
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 0;
}

cite {
    display: block;
    /*font-size: 14px;*/
    margin-top: 10px;
}


/* Ul, Ol */

.list-round,
.list-arrow,
.list-check {
    list-style: none;
    margin: 0;
    padding: 0 0 0 15px;
}

.list-round li {
    line-height: 28px;
}

.list-round li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    margin-right: 10px;
    color: #ffb600;
    font-size: 12px;
}

.list-arrow {
    padding: 0;
}

ul.list-arrow li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    margin-right: 10px;
    color: #ffb600;
    font-size: 16px;
    font-weight: bold;
}

ul.list-check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    margin-right: 10px;
    color: #ffb600;
    font-size: 14px;
}


/* Bootstrap */

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li>a:hover,
.nav-tabs>li>a {
    border: 0;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background: none;
}

.pattern-bg {
    background: #f5f5f5 url(../images/crossword.png);
}

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}


/* Button */

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

.btn-primary,
.btn-dark {
    border: 0;
    border-radius: 3px;
    padding: 12px 20px 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    transition: 350ms;
    /*font-size: 14px;*/
}

@media (max-width: 767px) {
    .btn-primary,
    .btn-dark {
        /*font-size: 13px;*/
    }
       .skills {
        background-size: 100% 100%!important;
    }
}

.btn-white.btn-primary {
    background: #fff;
    color: #ffb600;
}

.btn-primary {
    background: #c08a03;
}

.btn-dark {
    background: #23282d;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
    background: #111;
    color: #fff;
}

.btn-primary:hover:active,
.btn-primary:hover:focus,
.btn-dark:hover:active,
.btn-dark:hover:focus,
.btn-white.btn-primary:hover:active,
.btn-white.btn-primary:hover:focus {
    color: #fff;
    background-color: #111 !important;
}

.general-btn {
    margin-top: 50px;
}


/* Bootstrap */

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li>a:hover,
.nav-tabs>li>a {
    border: 0;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background: none;
}

.pattern-bg {
    background: #f5f5f5 url(../images/crossword.png);
}

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}


/* Top Bar
================================================== */

.top-bar {
    padding: 8px 0;
    background: #ebebeb;
    position: relative;
}


/* Top info */

ul.top-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.top-info li {
    position: relative;
    line-height: 10px;
    display: inline-block;
    margin-left: 0;
    padding-right: 15px;
}

ul.top-info li i {
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

ul.top-info li p.info-text {
    margin: 0;
    line-height: normal;
    display: inline-block;
    flex-direction: column;
}


/* Top social */

.top-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: -12px;
}

@media (max-width: 767px) {
    .top-social ul {
        margin-right: 0;
    }
}

.top-social ul li {
    display: inline-block;
    padding: 0;
}

.top-social ul li a {
    color: #2c2c2c;
    /*font-size: 14px;*/
    transition: 400ms;
    padding: 9px 12px;
}

.top-social ul li a:hover {
    color: #333;
}


/* Top bar border */

.top-bar-border {
    padding: 8px 20px 8px;
    border-bottom: 1px solid #ddd;
}

.top-bar-border ul.top-info {
    color: #707070;
    font-weight: 400;
}

.top-bar-border .top-social li a {
    color: #7c7c7c;
}

.top-bar-border ul.top-info li i {
    color: #ffb600;
}


/* Header area
================================================== */

.header {
    background: #fff;
    position: relative;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}

.header-one,
.header-one .site-navigation {
    background: #23282d;
}

.header-one .navbar-collapse {
    padding-left: 0;
}

@media (max-width: 991px) {
    .navbar-collapse.collapse {
        overflow-y: auto;
    }
}

.header-one ul.navbar-nav>li {
    padding-left: 0;
    padding-right: 30px;
}

@media (max-width: 991px) {
    .header-one ul.navbar-nav>li {
        padding-right: 0;
    }
}

.header-one .logo-area {
    padding: 10px 0;
}

.bg-reda {
    /*background-color: rgb(51, 51, 51);*/
    background-color: #00796b !Important;
}

.navbar-fixed {
    z-index: 9999;
    position: fixed;
    width: 100%;
    top: 0;
}

.header-two {
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.header-two .navbar-fixed {
    background-color: #fff;
}

ul.navbar-nav>li>a {
    padding: 6px 0 !important;
    color: #fff;
}

@media (max-width: 991px) {
    ul.navbar-nav>li>a {
        padding: 1px 0 !important;
    }
    .navbar-nav {
        margin-bottom: 15px;
    }
}

ul.navbar-nav>li:hover>a,
ul.navbar-nav>li.active>a {
    /*color: rgb(182, 186, 248) !important;*/
    color: #a2cdc8 !important;
}


/*-- Logo --*/

.header-one .logo img {
    width: auto;
    height: 35px;
}

.header-two .logo img {
    height: 30px;
}


/* header right */

.header-right {
    float: right;
}

ul.top-info-box {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

@media (max-width: 767px) {
    ul.top-info-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
}

ul.top-info-box li {
    position: relative;
    float: left;
    margin-left: 0;
    border-right: 1px solid #dedede;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 25px;
    margin-right: 25px;
}

@media (max-width: 767px) {
    ul.top-info-box li {
        border: 0;
        text-align: center;
        margin: 0;
        flex: 0 0 50%;
        padding: 0;
        margin-top: 10px;
    }
}

@media (max-width: 400px) {
    ul.top-info-box li {
        border: 0;
        text-align: center;
        margin: 0;
        flex: 0 0 100%;
        margin-top: 15px;
    }
}

ul.top-info-box li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

ul.top-info-box li.last {
    border-right: 0;
}

ul.top-info-box li .info-box span.info-icon {
    /*font-size: 20px;*/
    display: inline-block;
    text-align: center;
    margin: 2px 5px 0 0;
    position: relative;
}

ul.top-info-box li .info-box .info-box-content {
    display: inline-block;
    flex-direction: column;
}

ul.top-info-box li .info-box .info-box-title {
    /*font-size: 14px;*/
    margin-bottom: 8px;
    line-height: normal;
}

ul.top-info-box li .info-box .info-box-subtitle {
    margin: 0;
    line-height: normal;
    /*font-size: 15px;*/
    font-weight: 700;
    color: #111;
}


/*-- Search start --*/

ul.top-info-box>li.nav-search {
    cursor: pointer;
    padding-left: 30px;
    margin-left: 30px;
}

ul.top-info-box>li.nav-search:before {
    position: absolute;
    content: "";
    background: #ddd;
    left: 0;
    width: 1px;
    height: 40px;
    top: 50%;
    margin-top: -10px;
}

ul.top-info-box>li.nav-search i {
    /*font-size: 20px;*/
    top: 10px;
    position: relative;
    cursor: pointer;
    color: #999;
}


/* Main navigation */

.navbar-toggler {
    float: left;
    margin-top: 10px;
    padding: 12px;
}

.navbar {
    border-radius: 0;
    border: 0;
    margin-bottom: 0;
}

.navbar-toggler {
    margin: 10px 0;
    padding: 6px;
    border-radius: 0;
    font-size: 1rem;
    background: #ffb600;
}

.navbar-toggler:focus {
    outline: 0;
}

.navbar-dark .navbar-toggler-icon,
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

ul.navbar-nav>li:hover>a,
ul.navbar-nav>li.active>a {
    color: #23339be0;
    position: relative;
}

ul.navbar-nav>li {
    padding: 0 15px;
    position: relative;
}

@media (max-width: 1200px) {
    ul.navbar-nav>li {
        padding: 0 9px;
    }
    ul.navbar-nav>li .nav-link {
        /*font-size: 12px;*/
    }
}

.header-two .navbar-nav>.header-get-a-quote {
    top: -4px;
}

@media (max-width: 991px) {
    .header-two ul.navbar-nav>li {
        padding: 0;
        width: 100%;
    }
}

ul.navbar-nav>li:last-child {
    padding-right: 0;
}

ul.navbar-nav>li:last-child:after {
    background: none;
}

ul.navbar-nav>li>a:hover,
ul.navbar-nav>li>a:focus {
    background: none;
}

ul.navbar-nav>li>a i {
    font-weight: 700;
}

@media (max-width: 991px) {
    ul.navbar-nav>li>a i {
        float: right;
        background: #222;
        padding: 6px 10px;
        margin-top: 7px;
    }
    .header-two ul.navbar-nav>li>a i {
        color: #fff;
    }
    .header-two ul.navbar-nav>li.active>a i,
    .header-two ul.navbar-nav>li>a.active i {
        color: #ffb600;
    }
}

ul.navbar-nav>li>a:after,
ul.navbar-nav>li>a:after {
    display: none;
}

ul.navbar-nav>li>a {
    font-family: 'Open Sans', arial, sans-serif;
    /*color: rgb(169, 169, 169) !important;*/
    color: #fff !important;
    text-rendering: optimizeLegibility;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: 0.167em;
    font-size: 12px;
    margin: 0;
    line-height: 40px;
    padding: 30px 0;
    transition: 350ms;
}

.navbar-light ul.navbar-nav>li>a {
    color: #000 !important;
    font-size: 13px;
}


/* Dropdown */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -2px;
    border-radius: 0;
}

.dropdown-submenu>a:after {
    display: block;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    float: right;
    margin-top: 0;
    margin-right: -4px;
    border: 0;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-menu {
    text-align: left;
    background: rgb(51, 51, 51);
    z-index: 100;
    min-width: 278px;
    border-radius: 0;
    border: 0;
    padding: 0 10px;
    margin: 0;
}

.dropdown-menu-1 {
    text-align: left; 
    background: rgb(24, 23, 23);
    z-index: 100;
    min-width: 200px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid #fffefb;
    padding: 0 10px;
    margin: 0;
    height: 322px;
    overflow: scroll;
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .dropdown-menu {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    }
}

.dropdown-menu-large {
    min-width: 400px;
}

.dropdown-menu-large>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu-large>li>ul>li>a {
    padding-left: 0;
}

.dropdown-menu-large>li>ul>li.active>a {
    color: #ffb600 !important;
}

.navbar-nav>li>.dropdown-menu a {
    background: none;
}

.dropdown-menu li a {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding: 10px 30px;
    letter-spacing: 0.3px;
    color: #aaa;
}

@media (max-width: 991px) {
    .dropdown-menu li a {
        padding: 12px 0;
    }
}

.dropdown-menu li:last-child>a {
    border-bottom: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    color: #EEE;
}

@media (min-width: 991px) {
    ul.nav li.dropdown:hover ul.dropdown-menu {
        display: block;
    }
}

@media (min-width: 991px) {
    ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
        left: 100%;
        top: 0;
        display: none;
    }
    ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>.dropdown-menu>.active>a {
    background: none;
    color: #ffb600;
}


/*-- Nav Search start --*/

.site-navigation .container,
.search-area {
    position: relative;
}

.search-area {
    min-height: 70px;
    padding-right: 0;
}

.nav-search {
    position: absolute;
    cursor: pointer;
    top: 22px;
    right: 18px;
    color: #999;
}

@media (max-width: 991px) {
    .nav-search {
        top: 17px;
    }
}

.search-block {
    background-color: rgba(0, 0, 0, 0.65);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 100%;
    width: 300px;
    z-index: 10;
    margin-top: 0;
}

@media (max-width: 991px) {
    .search-block {
        top: 58px;
    }
}

.search-block .form-control {
    background-color: #222;
    border: none;
    color: #fff;
    width: 100%;
    height: 40px;
    padding: 0 12px;
}

.search-block .search-close {
    color: #999;
    position: absolute;
    top: -53px;
    right: -4px;
    font-size: 32px;
    cursor: pointer;
    background: #23282d;
    padding: 5px;
}

@media (max-width: 991px) {
    .search-block .search-close {
        top: -46px;
    }
}

.search-area .nav-search {
    top: 23px;
}

.search-area .search-block .search-close {
    top: -50px;
}

.search-area .search-block {
    right: 0;
}


/* Get a quote */

.header-get-a-quote .btn-primary {
    padding: 12px 25px !important;
    font-size: 13px;
    border-radius: 3px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    margin-top: 5px;
}

@media (max-width: 1200px) {
    .header-get-a-quote .btn-primary {
        padding: 12px !important;
    }
}

@media (max-width: 991px) {
    .header-get-a-quote .btn-primary {
        padding: 12px 30px !important;
    }
}

.header-get-a-quote .btn-primary:hover {
    background: #272d33;
    color: #ffb600 !important;
}

ul.navbar-nav>li.header-get-a-quote:hover>a:after {
    position: relative;
    content: no-close-quote;
}


/* Table of Content
==================================================
1.    Slider
2.    Call to action
3.    Features
4.    Facts
5.    Services
6.   Project area
7.   Content area
8.   Testimonial
9.   Subscribe area
10.   News section
11.   Footer
12.   Sub Pages
13.   Contact Us
14.   News Listing
15.   News Single
16.   Sidebar
17.   Error page
*/


/* Slider
================================================== */


/*-- Main slide --*/

.banner-carousel .banner-carousel-item {
    /* height: 430px; */
    /*min-height: 430px;*/
    color: #fff;
    /*background-position: 50% 50%;*/
    background-size: cover;
}

@media (max-width: 575px) {
    .banner-carousel .banner-carousel-item {
        /*height: 450px;*/
        padding: 106px;
    }
}

.slider-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-title-box {
    font-size: 16px;
    line-height: 39px;
    background: #ffb600;
    color: #fff;
    display: inline-block;
    padding: 0 15px;
    margin: 0 0 10px;
}

.slide-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    color: #fff;
    margin: 20px 0 10px;
}

@media (max-width: 991px) {
    .slide-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .slide-title {
        font-size: 16px;
    }
}

.slide-sub-title {
    font-style: normal;
    font-size: 60px;
    line-height: 58px;
    margin: 20px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .slide-sub-title {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .slide-sub-title {
        font-size: 30px;
        line-height: 30px;
    }
}

.slider-text {
    display: table;
    vertical-align: bottom;
    color: #fff;
    padding-left: 40%;
    width: 100%;
    padding-bottom: 0;
    padding-top: 20px;
}

.slider-text .slide-head {
    font-size: 36px;
    color: #0052a5;
    position: relative;
}

.slider-img {
    display: block;
    position: absolute;
    top: -80px;
    left: 20%;
    width: 314px;
    max-height: 100%;
}

.slider-img img {
    display: block;
    position: relative;
    max-height: 100%;
    width: auto;
}

.slider.btn {
    margin: 15px 5px 0;
    border: 2px solid transparent;
}

@media (max-width: 575px) {
    .slider.btn {
        font-size: 12px;
    }
}

.slider.border {
    background: none;
    border: 2px solid #ffb600 !important;
}

.slider.border:hover {
    background: #ffb600;
    border: 2px solid transparent;
}


/* Carousel control */

.banner-carousel .carousel-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    transform: translateY(-50%);
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    text-shadow: none;
    transition: all 0.25s ease;
    padding: 0;
    outline: 0;
    border: 0;
}

@media (max-width: 575px) {
    .banner-carousel .carousel-control {
        display: none !important;
    }
}

.banner-carousel .slick-dots {
    opacity: 0;
    filter: alpha(opacity=0);
    bottom: 60px;
}

.slick-dots li button::before {
    font-size: 12px;
}

.slick-dots li button:hover:before,
.slick-dots .slick-dots li button:focus:before,
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ffb600;
}

.slick-slide {
    outline: 0;
}

.banner-carousel:hover .carousel-control,
.banner-carousel:hover .carousel-control,
.banner-carousel:hover .slick-dots {
    opacity: 1;
    filter: alpha(opacity=100);
}

.banner-carousel .carousel-control.left {
    left: 20px;
}

.banner-carousel .carousel-control.right {
    right: 20px;
}

.banner-carousel .carousel-control i {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 58px;
    width: 60px;
    height: 60px;
    font-size: 22px;
    border-radius: 0;
    transition: all 500ms ease;
}

.banner-carousel .carousel-control i:hover {
    background: #ffb600;
    color: #fff;
}


/*-- Animation */

.banner-carousel [data-animation-in] {
    opacity: 0;
}


/* slick Box slider */

.box-slider-content {
    top: 50%;
    padding: 0;
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .box-slider-content {
        top: auto;
        transform: translateY(0);
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }
}

.box-slider-text {
    background: #111;
    background: rgba(0, 0, 0, 0.65);
    display: inline-block;
    padding: 20px 30px;
    max-width: 650px;
}

.box-slide-title {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

@media (max-width: 767px) {
    .box-slide-title {
        font-size: 16px;
    }
}

.box-slide-sub-title {
    font-size: 36px;
    margin: 8px 0 10px;
    color: #fff;
}

@media (max-width: 767px) {
    .box-slide-sub-title {
        font-size: 26px;
    }
}

.box-slide-description {
    color: #fff;
}

@media (max-width: 767px) {
    .box-slide-description {
        font-size: 15px;
    }
}

.box-slider-text .btn {
    padding: 10px 20px;
}

.box-slide.owl-theme .owl-controls {
    margin: -20px;
}


/* Call to action
================================================== */

.call-to-action {
    background-color: #272d33;
    padding: 30px;
}

.call-to-action-title {
    color: #fff;
    margin: 0;
    padding: 25px 0;
    line-height: normal;
    font-size: 22px;
    text-transform: capitalize;
}


/* Action style box */

.call-to-action-box {
    margin-top: -50px;
}

.call-to-action-box .action-style-box {
    background: #ffb600;
    padding: 30px;
}

.action-title {
    color: #fff;
    margin: 0;
    line-height: 36px;
    font-size: 18px;
    text-transform: uppercase;
}


/* Intro
================================================== */


/* Intro */

.ts-intro {
    padding-right: 20px;
}

.into-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 18px;
    line-height: normal;
    margin: 0;
}

.into-sub-title {
    color: rgb(21, 37, 138);
    ;
    text-transform: uppercase;
    font-size: 30px;
    line-height: normal;
    margin: 10px 0;
    margin-top: 18px;
    letter-spacing: 0.023em;
}


/*-- Featured Tab --*/

.featured-tab {
    padding-left: 15px;
}

.featured-tab .nav-tabs {
    border: 0;
}

.featured-tab .nav-tabs>li>a {
    background: #272d33;
    color: #fff;
    text-shadow: none;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    line-height: 50px;
    margin: 0 1px 20px;
    padding: 0 20px;
    border: 0 !important;
    transition: all 300ms ease;
}

.featured-tab .tab-content {
    border-top: 0;
    padding: 0;
    overflow: hidden;
}

.featured-tab .nav.nav-tabs {
    margin-bottom: 10px;
}

.featured-tab .nav-tabs>li.active>a {
    color: #fff;
    background: #ffb600;
    position: relative;
}

.featured-tab .nav-tabs>li.active>a:after {
    position: absolute;
    content: " ";
    width: auto;
    height: auto;
    bottom: -20px;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: #ffb600 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    transform: translateX(-50%);
}

.featured-tab .lead {
    font-size: 18px;
    line-height: 28px;
    color: #303030;
    font-weight: 400;
}

.featured-tab .tab-pane img.pull-left {
    margin: 0 30px 10px 0;
}

.featured-tab .tab-pane img.pull-right {
    margin: 0 0 0 30px;
}

.featured-tab .tab-icon i {
    font-size: 230px;
}

.tab-image-content {
    padding-left: 0;
}

.featured-tab .border-title.border-left {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 20px;
}


/* Tab services */

.featured-tab.tab-services .nav-tabs>li>a {
    font-size: 14px;
    padding: 0 21px;
    text-transform: capitalize;
}

.featured-tab.tab-services .nav.nav-tabs {
    margin-bottom: 20px;
}


/* Facts
================================================== */

.facts-wrapper {
    text-align: center;
}

.facts-wrapper .ts-facts {
    color: #fff;
}

.ts-facts .ts-facts-icon i {
    font-size: 42px;
    color: #ffb600;
}

.ts-facts .ts-facts-content .ts-facts-num {
    color: #fff;
    font-size: 44px;
    margin: 30px 0 20px;
}

.ts-facts .ts-facts-content .ts-facts-title {
    font-size: 16px;
    color: #ffb600;
    margin: 0;
}


/* Services
================================================== */


/* Service box */

.ts-service-box .ts-service-icon i {
    font-size: 36px;
    float: left;
    color: #ffb600;
}

.ts-service-box .ts-service-box-content {
    margin-left: 62px;
    margin-bottom: 30px;
}

.tab-content .ts-service-box .ts-service-box-content {
    margin-left: 90px;
}

.ts-service-box .ts-service-box-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 28px;
}

.ts-service-box .ts-service-box-info {
    margin-left: 25px;
    margin-bottom: 40px;
}

.service-box-title {
    font-size: 16px;
    margin: 0 0 10px;
}

.service-box-title a {
    color: #333;
}

.service-box-title a:hover {
    color: rgb(182, 186, 248);
}


/* Service box bg */

.ts-service-box-bg {
    /* background: #252525; */
    /* color: #fff; */
    padding: 20px;
}

.ts-service-box-bg h4,
.ts-service-box-bg h3 {
    color: #fff;
}

.ts-service-icon.icon-round i {
    font-size: 24px;
    color: #fff;
    background: #ffb600;
    text-align: center;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    position: relative;
    float: none;
}


/* Icon left */

.ts-service-box.icon-left .ts-service-box-icon {
    float: left;
}

.ts-service-box.icon-left .ts-service-box-icon i {
    background: #ffb600;
    color: #fff;
}

.ts-service-box.icon-left .ts-service-box-info {
    margin-left: 90px;
}

.ts-service-box.icon-left .ts-service-box-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
}


/* Service no box */

.service-no {
    font-size: 48px;
    color: #dbdbdb;
    float: left;
    margin-top: 10px;
}

.ts-service-box-content .ts-service-box-info {
    margin-left: 90px;
}


/* Service Image */

.ts-service-image-wrapper {
    margin-bottom: 30px;
}

.ts-service-icon i {
    font-size: 28px;
    margin-right: 15px;
    margin-top: 2px;
}

.ts-service-info {
    margin-left: 30px;
}

.ts-service-info h3 {
    font-size: 16px;
}

.ts-service-info .learn-more {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.ts-service-info .learn-more:hover {
    color: #ffb600;
}


/* Service Classic */

.ts-service-classic .ts-service-icon i {
    font-size: 24px;
    float: left;
    color: #fff;
    background: #ffb600;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: all 0.3s;
}

.ts-service-classic .ts-service-box-info {
    margin-left: 80px;
}

.ts-service-classic:hover .ts-service-icon i {
    background: #ffb600;
}


/* Projects area
================================================== */


/* Project filter nav */

.shuffle-btn-group {
    display: inline-block;
    margin: 20px 0 50px;
    width: 100%;
    border-bottom: 3px solid #ffb600;
}

.shuffle-btn-group label {
    display: inline-block;
    color: #212121;
    font-size: 14px;
    padding: 6px 25px;
    padding-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    margin: 0;
}

.shuffle-btn-group label.active {
    color: #212121;
    background: #ffb600;
}

.shuffle-btn-group label input {
    display: none;
}


/* Project shuffle Item */

.shuffle-item {
    padding: 0;
}

.shuffle-item .project-img-container {
    position: relative;
    overflow: hidden;
}

.shuffle-item .project-img-container img {
    transform: perspective(1px) scale3d(1.1, 1.1, 1);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover img {
    transform: perspective(1px) scale3d(1.15, 1.15, 1);
}

.shuffle-item .project-img-container:after {
    opacity: 0;
    position: absolute;
    content: "";
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover:after {
    opacity: 1;
}

.shuffle-item .project-img-container .gallery-popup .gallery-icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 5px 12px;
    background: #ffb600;
    color: #fff;
    opacity: 0;
    transform: perspective(1px) scale3d(0, 0, 0);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover .gallery-popup .gallery-icon {
    opacity: 1;
    transform: perspective(1px) scale3d(1, 1, 1);
}

.shuffle-item .project-img-container .project-item-info {
    position: absolute;
    top: 50%;
    margin-top: -10%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
    z-index: 1;
}

.shuffle-item .project-img-container .project-item-info-content {
    opacity: 0;
    transform: perspective(1px) translate3d(0, 15px, 0);
    transition: all 400ms;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title {
    font-size: 20px;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title a {
    color: #fff;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title a:hover {
    color: #ffb600;
}

.shuffle-item .project-img-container .project-item-info-content .project-cat {
    background: #ffb600;
    display: inline-block;
    padding: 2px 8px;
    font-weight: 700;
    color: #000;
    font-size: 10px;
    text-transform: uppercase;
}

.shuffle-item .project-img-container:hover .project-item-info-content {
    opacity: 1;
    transform: perspective(1px) translate3d(0, 0, 0);
}

.general-btn .btn-primary:hover {
    background: #000;
}


/* Project owl */

.owl-theme.project-slide {
    margin-top: 60px;
}

.project-slide .item {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.project-item img {
    width: 100%;
    max-width: auto;
    transition: all 0.6s ease 0s;
}

.project-item:hover img {
    transform: scale(1.1, 1.1);
}

.project-item-content {
    position: absolute;
    bottom: -1px;
    padding: 15px 20px;
    width: 100%;
    background: #ffb600;
}

.owl-theme.project-slide .owl-nav>div {
    position: absolute;
    top: -70px;
    right: 0;
    transform: translateY(-50%);
}

.project-slide .owl-nav>div {
    display: inline-block;
    margin: 0 2px;
    font-size: 20px;
    background: #ffb600;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.owl-theme.project-slide .owl-nav>.owl-prev {
    right: 35px;
    left: auto;
}


/* Projects Single page */

.project-title {
    font-size: 30px;
}

.project-info-label {
    color: #303030;
    font-weight: 700;
    font-size: 14px;
}

.project-info-content {
    font-size: 12px;
}

.project-info li {
    margin-bottom: 5px;
}

.project-link {
    margin-top: 15px;
}


/* Content area
================================================== */


/* Accordion */

.accordion-group .card {
    border-radius: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #dfdfdf !important;
}

.accordion-group .card-body {
    padding: 15px 20px;
}

.accordion-group .card-body img {
    max-width: 100px;
    margin-bottom: 10px;
}

.accordion-group .card-header .btn {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 15px;
    padding-bottom: 10px;
}

.accordion-group .card-header .btn:before {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    z-index: 0;
    font-size: 14px;
    right: 16px;
    padding: 3px 8px 1px;
    text-align: center;
    border-radius: 3px;
    top: 12px;
    content: "\f107";
    font-weight: 700;
    background-color: #333;
    color: #fff;
    transition: 0.3s;
}

.accordion-group .card-header .btn[aria-expanded=true] {
    color: #ffb600;
}

.accordion-group .card-header .btn[aria-expanded=true]::before {
    content: "\f106";
    background-color: #ffb600;
}

.accordion-group.accordion-classic .card-header .btn:before {
    display: none;
}


/* Clients */

.clients-logo {
    margin: 0 0 30px;
    border: 1px solid #dadada;
    min-height: 105px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.clients-logo img {
    filter: grayscale(100%);
    filter: gray;
}


/* Testimonial
================================================== */

.testimonial-area {
    padding: 100px 0;
    background-color: #ffb600;
    background-image: url(../images/parallax2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
}

.testimonial-area .border-title,
.testimonial-area .border-sub-title {
    color: #fff;
}

.quote-item .quote-text {
    margin: 0 0 10px;
    display: inline-block;
    padding: 0 40px 30px 60px;
    background-color: #fff;
    position: relative;
    font-size: 16px;
    font-style: italic;
}

@media (max-width: 575px) {
    .quote-item .quote-text {
        padding: 0 40px 30px 50px;
    }
}

.quote-item .quote-text:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 30px;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #ffc009;
}

.testimonial-slide .slick-dots {
    bottom: -35px;
}

img.testimonial-thumb {
    max-width: 80px;
    float: left;
    margin-right: 20px;
    border-radius: 5px;
}

.quote-item-info {
    padding-top: 15px;
    display: inline-block;
}

.quote-author {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 2px;
    font-weight: 700;
    display: block;
    color: #ffb600;
}

.quote-item-footer {
    margin-top: 0;
    margin-left: 60px;
}

@media (max-width: 575px) {
    .quote-item-footer {
        margin-left: 0;
    }
}


/* Testimonial Border */

.quote-item.quote-border .quote-text-border {
    border: 1px solid #ffb600;
    padding: 20px;
    position: relative;
    line-height: 28px;
    color: #666;
    font-size: 18px;
    text-align: center;
}

.quote-item.quote-border .quote-text-border:before {
    border: 12px solid;
    border-color: #e1e1e1 transparent transparent;
    border-top-color: #ffb600;
    bottom: 99px;
    position: absolute;
    content: "";
    display: block;
    height: 0;
    width: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.quote-item.quote-border .quote-text-border:after {
    border: 12px solid;
    border-color: #fff transparent transparent;
    bottom: -22px;
    position: absolute;
    content: "";
    display: block;
    height: 0;
    width: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.quote-item.quote-border .quote-item-footer {
    margin-left: 0;
    text-align: center;
    margin-top: 35px;
}

.quote-item.quote-border .quote-item-footer img.testimonial-thumb {
    float: none;
    margin: 0;
}

.quote-item.quote-border .quote-item-footer .quote-item-info {
    display: block;
}


/* Subscribe area
================================================== */

.subscribe {
    background: #ffb600;
    padding: 0;
}


/* Call to action */

.subscribe-call-to-acton {
    min-height: 115px;
    padding: 30px 0 0 30px;
}

@media (max-width: 575px) {
    .subscribe-call-to-acton {
        text-align: center;
        padding: 30px 0;
        min-height: auto;
    }
}

.subscribe-call-to-acton h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
}

.subscribe-call-to-acton h4 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}


/* Newsletter */

.ts-newsletter {
    background: #252525;
    position: relative;
    min-height: 115px;
    padding: 15px 0 0 50px;
}

@media (max-width: 767px) {
    .ts-newsletter {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .ts-newsletter {
        padding: 30px 5px 15px 5px;
        min-height: auto;
        text-align: center;
    }
}

.ts-newsletter:after {
    content: "";
    position: absolute;
    background: #252525;
    display: block;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
}

.newsletter-form input {
    background: none;
    font-size: 12px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}


/* News section
================================================== */

.latest-post {
    position: relative;
}

.latest-post .image-angle:before {
    border-bottom: 20px solid #f9f9f9;
}

.latest-post .post-title {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    font-weight: 600;
}

.latest-post .post-title a {
    color: #303030;
}

.latest-post .post-title a:hover {
    color: rgb(182, 186, 248);
}

.latest-post-meta {
    font-size: 13px;
    text-transform: uppercase;
}

.latest-post .post-body {
    padding: 20px 0 5px;
}


/* Footer
================================================== */


/*- Footer common */

.footer {
    background-color: #0d0d0d;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer .widget-title {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0 0 25px;
    padding-left: 15px;
    text-transform: uppercase;
    color: #fff;
    border-left: 3px solid #ffb600;
}


/* Footer about us */

.footer-logo {
    margin-bottom: 20px;
}


/* Footer social */

.footer-social {
    margin-top: 15px;
}

.footer-social .widget-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -13px;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social ul li a i {
    display: block;
    font-size: 16px;
    color: #999;
    transition: 400ms;
    padding: 10px 13px;
}

.footer-social ul li:hover {
    color: #fff;
}


/* Links */

.footer-widget ul.list-arrow li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 0;
}

.footer-widget ul.list-arrow li:last-child {
    border-bottom: 0;
}

.footer-widget ul.list-arrow li a,
.footer-widget ul.list-arrow li:before {
    color: #fff !important;
}

.footer-widget ul.list-arrow li:hover a,
.footer-widget ul.list-arrow li:hover {
    color: rgb(182, 186, 248);
}

.working-hours {
    padding-right: 10px;
}

.working-hours .text-right {
    float: right;
}


/*-- Copyright --*/

.copyright {
    background: #161515;
    color: rgb(245, 238, 238);
    padding: 14px 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 12px;
}

.footer-menu ul li {
    display: inline-block;
    line-height: 12px;
    padding-left: 15px;
}

.footer-menu ul.nav li a {
    background: none;
    color: #111;
    padding: 0;
}

.footer-menu ul li a:hover {
    color: #fff;
}

#back-to-top {
    right: 40px;
    top: auto;
    z-index: 10;
    display: none;
}

#back-to-top .btn:focus {
    outline: 0;
    box-shadow: none;
}

@media (max-width: 767px) {
    #back-to-top {
        right: 15px;
    }
}

#back-to-top.position-fixed {
    bottom: 20px;
}

#back-to-top .btn.btn-primary {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 3px;
    color: #ffb600;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
}

@media (max-width: 767px) {
    #back-to-top .btn.btn-primary {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
}

#back-to-top .btn.btn-primary:hover {
    color: #fff;
}


/* Sub Pages
================================================== */


/*-- Title border --*/

.main-container .border-left {
    margin-bottom: 30px;
}


/*-- Banner --*/

.banner-area {
    position: relative;
    min-height: 300px;
    color: #fff;
    background-position: 50% 50%;
    background-size: cover;
}

.banner-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 58px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 32px;
    }
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    transform: translateY(-50%);
}

.banner-heading {
    text-align: center;
}

.breadcrumb {
    padding: 0;
    background: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus,
.breadcrumb li a:hover {
    color: blue !important;
}

.breadcrumb li {
    margin-inline: 5px
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


/*-- About us page --*/


/* Slider pages */

.page-slider .carousel-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    transform: translateY(-50%);
    background-color: transparent;
    text-shadow: none;
    transition: all 0.25s ease;
    padding: 0;
    outline: 0;
    border: 0;
}

.page-slider .carousel-control.left {
    left: 0;
}

.page-slider .carousel-control.right {
    right: 0;
}

.page-slider .carousel-control i {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 70px;
    width: 40px;
    height: 70px;
    font-size: 22px;
    border-radius: 0;
    transition: all 500ms ease;
}

.page-slider .carousel-control i:hover {
    background: #ffb600;
    color: #fff;
}

.page-slider.small-bg .item {
    min-height: 330px;
    background-size: cover;
}

.page-slider.small-bg .box-slider-content {
    left: 20%;
}

.page-slider.small-bg .box-slider-text {
    background: rgba(0, 0, 0, 0.55);
    padding: 5px 20px;
}

.page-slider.small-bg .box-slide-title {
    font-size: 28px;
    color: #fff;
    font-weight: 900;
}


/*-- Get a quote page --*/

.page-quote-form {
    background: #f2f2f2;
    padding: 30px 50px 50px;
}

.get-a-quote-img {
    margin-bottom: -190px;
}


/*-- Partners carousel --*/

.partner-logo {
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.partner-logo img {
    transition: 350ms;
    opacity: 0.6;
    filter: grayscale(100%);
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

#partners-carousel .partner-logo {
    border: 0;
    border-right: 1px solid #eee;
    padding: 0 15px;
    margin-top: 20px;
}

#partners-carousel .partner-logo.last {
    border-right: 0;
}


/*-- Team page --*/

.team-slide .slick-slide {
    margin-left: 25px;
    padding-bottom: 60px;
}

.team-slide .slick-list {
    margin-left: -25px;
}

.team-slide .carousel-control {
    position: absolute;
    bottom: 0;
    left: 50%;
    border: 0;
    background-color: #ddd;
    height: 37px;
    width: 37px;
    border-radius: 4px;
    transition: 0.3s;
    z-index: 6;
}

.team-slide .carousel-control:hover {
    background-color: #ffb600;
    color: #fff;
}

.team-slide .carousel-control.left {
    transform: translateX(calc(-50% - 25px));
}

.team-slide .carousel-control.right {
    transform: translateX(calc(-50% + 25px));
}

.team-slide .carousel-control.slick-disabled {
    opacity: 0.4;
}

.team-slide .carousel-control.slick-disabled:hover {
    background-color: #ddd;
    color: #000;
}

.ts-team-wrapper {
    position: relative;
    overflow: hidden;
}

.ts-team-wrapper .ts-team-content {
    position: absolute;
    top: 76%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px 25px;
    margin-top: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    transition: 350ms;
}

@media (max-width: 1200px) {
    .ts-team-wrapper .ts-team-content {
        top: 72%;
    }
}

@media (max-width: 575px) {
    .ts-team-wrapper .ts-team-content {
        text-align: center;
    }
}

.ts-team-wrapper .ts-name {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 3px;
    line-height: normal;
    color: #ffb600;
}

.ts-team-wrapper .ts-designation {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 700;
}

.ts-team-wrapper .team-social-icons a i {
    color: #fff;
    margin-right: 8px;
    text-align: center;
    transition: 400ms;
}

.ts-team-wrapper .team-social-icons a i:hover {
    color: #ffb600;
}

.ts-team-wrapper:hover .ts-team-content {
    top: 0;
    padding-top: 50px;
}


/* Team Classic */

.ts-team-content-classic {
    margin-top: 15px;
}

.ts-team-content-classic .ts-name {
    font-size: 16px;
    margin-bottom: 5px;
    color: #212121;
}

.ts-team-content-classic .ts-designation {
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.ts-team-content-classic .team-social-icons a i {
    color: #999;
}

.ts-team-content-classic .team-social-icons a i:hover {
    color: #ffb600;
}


/*-- Pricing table  --*/

.ts-pricing-box {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    background: #f9f9f9;
}

.ts-pricing-box .ts-pricing-header {
    background: #252525;
    color: #fff;
    position: relative;
    padding: 30px 20px;
}

.ts-pricing-box .ts-pricing-name {
    font-size: 18px;
    line-height: normal;
    margin: 0 0 5px 0;
    color: #fff;
}

.ts-pricing-box .ts-pricing-price {
    font-size: 44px;
    color: #fff;
    margin: 15px 0 0;
    display: inline-block;
}

.ts-pricing-box .ts-pricing-price>small {
    font-size: 16px;
    line-height: 16px;
    display: block;
    margin-top: 15px;
    color: #fff;
}

.ts-pricing-box .ts-pricing-features {
    padding: 15px 0;
}

.ts-pricing-box .ts-pricing-features ul {
    padding: 0 20px;
}

.ts-pricing-box .ts-pricing-features ul>li {
    padding: 20px 0;
    border-top: 1px dotted #e5e5e5;
}

.ts-pricing-box .ts-pricing-features ul>li:first-child {
    border-top: 0;
}

.ts-pricing-box .plan-action {
    padding-bottom: 40px;
}


/* Pricing featured */

.ts-pricing-box.ts-pricing-featured .ts-pricing-header {
    background: #ff9800;
}


/* Contact Us
================================================== */

.map {
    height: 450px;
    z-index: 1;
}

.contact-info-box {
    margin-top: 20px;
}

.contact-info-box i {
    float: left;
    font-size: 24px;
    color: #ffb600;
}

.contact-info-box-content {
    padding-left: 40px;
}

.contact-info-box-content h4 {
    font-size: 16px;
    margin-top: 0;
    line-height: normal;
    font-weight: 700;
}

.contact-info-box-content p {
    margin-bottom: 0;
}

label {
    font-weight: 400;
}


/* Contact page 2 */

.ts-service-box.text-center .ts-service-icon.icon-squre i {
    float: none;
    margin-bottom: 20px;
}

.ts-service-box.text-center .ts-service-box-content {
    margin: 0;
}


/* News Listing
================================================== */

.post {
    border-bottom: 1px solid #dadada;
    padding: 0 0 30px;
    margin: 0 0 45px;
}

.post.last {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.post-body {
    padding: 20px 0;
}

.entry-header .entry-title {
    font-size: 24px;
    margin: 5px 0 15px;
    position: relative;
    line-height: 34px;
    text-transform: capitalize;
}

.entry-header .entry-title a {
    color: #303030;
}

.entry-header .entry-title a:hover {
    color: #ffb600;
}

.post-single .entry-header .entry-title {
    font-size: 28px;
}


/* Meta */

.post-meta {
    padding-bottom: 10px;
}

.post-meta a {
    color: #303030;
}

.post-meta a:hover {
    color: #ffb600;
}

.post-meta span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #dadada;
    line-height: 12px;
    display: inline-block;
}

.post-meta i {
    color: #bbb;
    margin-right: 3px;
}

.post-meta .post-comment {
    border-right: 0;
}

.post-meta .post-comment .comments-link {
    margin-left: 5px;
}

.post-footer .btn.btn-primary {
    font-size: 12px;
    margin-top: 10px;
}


/* Pagination */

.paging {
    margin-bottom: -5px;
}

.pagination li a {
    border-radius: 0 !important;
    margin-right: 8px;
    color: #7c7c7c;
}

.pagination>.active>a,
.pagination>.active>a:hover,
.pagination>li>a:hover {
    color: #fff;
    background: #ffb600;
    border: 1px solid transparent;
}


/* News Single
================================================== */

.tags-area {
    margin: 20px 0;
}

.post-tags a {
    border: 1px solid #dadada;
    color: #7c7c7c;
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    margin-left: 3px;
}

.post-tags a:hover {
    background: #ffb600;
    color: #fff;
    border: 1px solid transparent;
}


/* Post social */

.post-social-icons>li {
    display: inline-block;
}

.post-social-icons a i {
    margin-left: 5px;
    font-size: 12px;
    width: 28px;
    height: 26px;
    line-height: 26px;
    color: #fff;
    text-align: center;
}

.post-social-icons a i.fa-facebook-f {
    background: #41578a;
}

.post-social-icons a i.fa-twitter {
    background: #64bae2;
}

.post-social-icons a i.fa-google-plus {
    background: #c0343d;
}

.post-social-icons a i.fa-linkedin {
    background: #3397b6;
}


/* Author box */

.author-box {
    border: 1px solid #dadada;
    padding: 20px 20px 15px;
    margin: 20px 0;
}

.author-img img {
    width: 110px;
    height: 110px;
    margin-right: 30px;
}

.author-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.author-info h3 span {
    font-size: 12px;
    color: #999;
    border-left: 1px solid #AFAFAF;
    padding-left: 10px;
    margin-left: 10px;
    font-weight: 500;
}


/* Comments area */

.comments-area {
    margin: 40px 0;
}

.comments-list .comment-content {
    margin: 15px 0;
}

.comments-list .comment-reply {
    color: #303030;
    font-weight: 400;
}

.comments-list .comment-reply:hover {
    color: #ffb600;
}

.comments-counter {
    font-size: 18px;
}

.comments-counter a {
    color: #323232;
}

.comments-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.comments-list .comment {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.comments-list .comment.last {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comments-list img.comment-avatar {
    width: 84px;
    height: 84px;
    margin-right: 30px;
}

@media (max-width: 575px) {
    .comments-list img.comment-avatar {
        width: 40px;
        height: 40px;
        margin-right: 25px;
    }
}

.comments-list .comment-author {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;
    font-size: 16px;
    color: #303030;
}

.comments-list .comment-date {
    color: #959595;
    margin-bottom: 5px;
    font-size: 12px;
}

@media (max-width: 575px) {
    .comments-list .comment-date {
        float: none !important;
        display: inline-block;
    }
}

.comments-reply {
    list-style: none;
    margin: 0 0 0 70px;
}

@media (max-width: 767px) {
    .comments-reply {
        margin: 0;
        padding: 0;
    }
}

.comments-form {
    margin-bottom: 0;
}

.comments-form .title-normal {
    margin-bottom: 20px;
}

.comments-form .btn.btn-primary {
    margin-top: 20px;
}


/* Sidebar
================================================== */

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0 0 30px;
    padding-left: 15px;
    text-transform: uppercase;
    border-left: 3px solid #ffb600;
}


/* Widget common */

.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar-left .widget {
    margin-right: 20px;
}

.sidebar-right .widget {
    margin-left: 20px;
}

.sidebar .widget.box {
    padding: 25px;
}

.widget.box.solid {
    background: #f2f2f2;
}

.widget.box.red {
    background: #ec483b;
    color: #fff;
}

.widget.box.red .widget-title {
    color: #fff;
}

.widget ul li {
    line-height: 30px;
}

.sidebar .widget ul li a {
    color: #303030;
}

.sidebar .widget ul li a:hover {
    color: #ffb600;
}

.sidebar .widget ul li i {
    margin-right: 5px;
}

.sidebar .btn {
    font-weight: 700;
    font-size: 12px;
    margin-top: 15px;
    padding: 10px 25px;
}


/* Sidebar nav */

.sidebar ul.nav-tabs {
    border: 0;
}

.sidebar ul.nav-tabs li {
    width: 100%;
}

.sidebar ul.nav-tabs li a {
    color: #303030;
    border-radius: 0;
    padding: 15px 0;
    padding-left: 0;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    display: block;
    transition: 400ms;
}

.sidebar ul.nav-tabs li.active a,
.sidebar ul.nav-tabs li:hover a {
    color: #ffb600;
}

.sidebar ul.nav-tabs li {
    color: #303030;
    line-height: normal;
}

.sidebar ul.nav-tabs li:last-child a {
    border-bottom: 0;
}


/* Service menu */

.sidebar ul.service-menu li {
    width: 100%;
}

.sidebar ul.service-menu li a {
    background-color: #f4f4f4;
    padding: 15px 20px;
    border: 0;
    margin-bottom: 8px;
    position: relative;
    transition: 400ms;
    display: block;
}

.sidebar ul.service-menu li.active a,
.sidebar ul.service-menu li:hover a {
    background: #ffb600;
    color: #fff;
    cursor: pointer;
}


/* Recent News */

.widget.recent-posts .widget-title {
    margin-bottom: 35px;
}

.widget.recent-posts ul li {
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
    margin-bottom: 17px;
}

.widget.recent-posts ul li:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget.recent-posts .posts-thumb img {
    margin-right: 15px;
    width: 90px;
    height: 70px;
}

.widget.recent-posts .post-info .entry-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}

.widget.recent-posts .post-info .entry-title a {
    color: #303030;
    display: inline-block;
}

.widget.recent-posts .post-info .entry-title a:hover {
    color: #ffb600;
}

.widget.recent-posts .post-date {
    font-weight: 400;
    color: #999;
    text-transform: capitalize;
}


/* Widget tags */

.widget-tags ul>li {
    float: left;
    margin: 3px;
}

.sidebar .widget-tags ul>li a {
    border: 1px solid #dadada;
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 3px 15px;
    transition: all 0.3s ease 0s;
}

.sidebar .widget-tags ul>li a:hover {
    background: #ffb600;
    color: #fff;
    border: 1px solid transparent;
}


/* Error page
================================================== */

.error-page .error-code h2 {
    display: block;
    font-size: 200px;
    line-height: 200px;
    color: #303030;
    margin-bottom: 20px;
}

.error-page .error-body .btn {
    margin-top: 30px;
    font-weight: 700;
}


/*# sourceMappingURL=style.css.map */

.logo-slider {
    background: white;
    -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
    box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}


/*.logo-slider::before,*/


/*.logo-slider::after {*/


/*  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));*/


/*  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);*/


/*  content: "";*/


/*  height: 175px;*/


/*  position: absolute;*/


/*  width: 200px;*/


/*  z-index: 2;*/


/*}*/

.logo-slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.logo-slider::before {
    left: 0;
    top: 0;
}

.logo-slider .logo-slide-track {
    -webkit-animation: logo-scroll 60s linear infinite;
    animation: logo-scroll 60s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(166px * 20);
    animation-duration: 35s;
    animation-iteration-count: infinite;
}

.logo-slider .slide {
    height: 100%;
    width: 100%;
}

@-webkit-keyframes logo-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-166px * 12));
        transform: translateX(calc(-250px * 12));
    }
}

@keyframes logo-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-250px *));
        transform: translateX(calc(-250px * 7));
    }
}

.text-pety {
    text-align: -webkit-left;
    color: rgb(255, 255, 255);
    margin-inline: 35px;
}

.bg-red {
    background-color: rgb(21, 37, 138)
}

.style1 {
    border-top: 1px solid rgb(33, 55, 191);
    ;
}

.whatup {
    background-color: rgb(69, 90, 100);
    width: 297px;
    padding: 15px 0px 15px 14px;
    color: white
}

.c-11 {
    font-size: 28px;
    color: #444040e0;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.x .c1-13 {
    justify-content: center;
}

.x .c1-11 {
    display: flex;
}

.ct-12 {
    display: inline;
    list-style-type: none;
}

.ct-12 li {
    display: inline;
    margin: 2px;
}


/* abouts page */

.bg-imgs {
    background-image: url("../img/clinent/rs=w_900\,m.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/* cds */

.bxo- {
    text-transform: uppercase;
}

.working-hours p:hover {
    background-color: rgb(0 0 0 / 5%);
    padding: 8px;
}

.working-hours p {
    background-color: rgb(249, 249, 254);
    padding: 8px;
}

.working-hours a:hover {
    color: red;
}


/* silder--img */

.tryy img {
    height: 200px;
    width: 250px;
}


/* silder css -------------------*/


/* faqa-----------csss */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.boyfo {
    width: 100%;
    min-height: 100vh;
    background-color: #f3f6f6;
    opacity: 0.3;
    opacity: 1;
    display: grid;
    place-items: center;
}

.hero {
    display: flex;
    justify-content: center;
    transform: translateY(-55%);
}

.hero .img {
    filter: drop-shadow(0rem 1.5rem rgba(0, 0, 0, 0.1));
    transition: 0.3s ease-out;
}

.card:hover .img {
    filter: drop-shadow(0rem 2.5rem rgba(0, 0, 0, 0.1));
}

.title {
    text-align: center;
    font-size: 5rem;
    padding: 1rem;
}

.acc-btn {
    width: 100%;
    padding: 1.3rem 1.8rem;
    font-size: 1.0rem;
    cursor: pointer;
    background: inherit;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.5s linear;
}

.acc-btn:after {
    content: "\27A4";
    color: #fa8d0c;
    float: right;
    transition: all 0.3s linear;
}

.acc-btn.is-open:after {
    transform: rotate(90deg);
}

.acc-btn:hover,
.acc-btn.is-open {
    color: #000;
    font-weight: bold;
}

.acc-content {
    max-height: 0;
    color: rgba(0, 0, 0, 0.75);
    font-size: 1.5rem;
    margin: 0 2rem;
    padding-left: 1rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #ccc;
}

.credit {
    text-align: center;
    padding: 1rem;
}

.credit a {
    text-decoration: wavy underline;
    color: dodgerblue;
}


/* sender-sildwer--------- */

img {
    vertical-align: middle;
}


/* Position the image container (needed to position the left and right arrows) */

.container {
    position: relative;
}


/* Hide the images by default */

.mySlides {
    display: none;
}


/* Add a pointer when hovering over the thumbnail images */

.cursor {
    cursor: pointer;
}


/* Next & previous buttons */

.prev,

/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* Container for image text */

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Six columns side by side */

.column {
    float: left;
    width: 16.66%;
}


/* Add a transparency effect for thumnbail images */

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

.column a:hover img {
    -ms-transform: scale(1.7);
    /* IE 9 */
    -webkit-transform: scale(1.7);
    /* Safari 3-8 */
    transform: scale(1.7);
}


/* faq-----csss----- */

.containera {
    margin: 0 auto;
    padding: 4rem;
    width: 48rem;
}

.accordion {
    .accordion-item {
        border-bottom: 1px solid $lightgray;
        button[aria-expanded='true'] {
            border-bottom: 1px solid $blue;
        }
    }
    button {
        position: relative;
        display: block;
        text-align: left;
        width: 100%;
        padding: 1em 0;
        color: $text;
        font-size: 1.15rem;
        font-weight: 400;
        border: none;
        background: none;
        outline: none;
        &:hover,
        &:focus {
            cursor: pointer;
            color: $blue;
            &::after {
                cursor: pointer;
                color: $blue;
                border: 1px solid $blue;
            }
        }
        .accordion-title {
            padding: 1em 1.5em 1em 0;
        }
        .icon {
            display: inline-block;
            position: absolute;
            top: 18px;
            right: 0;
            width: 22px;
            height: 22px;
            border: 1px solid;
            border-radius: 22px;
            &::before {
                display: block;
                position: absolute;
                content: '';
                top: 9px;
                left: 5px;
                width: 10px;
                height: 2px;
                background: currentColor;
            }
            &::after {
                display: block;
                position: absolute;
                content: '';
                top: 5px;
                left: 9px;
                width: 2px;
                height: 10px;
                background: currentColor;
            }
        }
    }
    button[aria-expanded='true'] {
        color: $blue;
        .icon {
            &::after {
                width: 0;
            }
        }
        +.accordion-content {
            opacity: 1;
            max-height: 9em;
            transition: all 200ms linear;
            will-change: opacity, max-height;
        }
    }
    .accordion-content {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 200ms linear, max-height 200ms linear;
        will-change: opacity, max-height;
        p {
            font-size: 1rem;
            font-weight: 300;
            margin: 2em 0;
        }
    }
}

.mail-list {
    /*background-color: rgb(21, 37, 138);*/
    background-color: #00796b !important;
    color: white;
    padding: 5px;
    font-size: 14px;
}

@media (min-width: 575px) {
    .logotop {
        position: relative;
        top: -26px;
        right: -28px;
    }
}

@media (min-width: 575px) {
    .logotop {
        display: none;
    }
    .padd {
        padding: 40px;
    }
}

@media (max-width:769px) {
    .lolu {
        display: none;
    }
    .h-c-formone {
        display: none;
    }
    .logo-img {
        position: relative;
        right: 0px !important;
        height: 60px;
        padding: 3PX;
    }
    .mail-list {
        font-size: 12px !important
    }
    .heading_design h2 {
        padding: 5px 10px 3px 10px !important
    }
    .heading_design h2 {
        font-size: 13px !important;
        line-height: 19px !important;
    }
}

.lolu {
    height: 100px;
    width: auto;
    position: relative;
    top: 38px;
    z-index: 999;
}

@media(min-width:756px) {
    .lolo {
        display: none;
    }
}

@media(min-width:756px) {
    .navbar-collapse {
        height: 37px;
    }
    .popup_auto {
        display: none;
    }
    .navbar-nav {
        position: relative;
        left: 156px;
        width: 90%;
    }
    .logo-img {
        position: relative;
        right: 0px;
        height: 88px;
        padding: 3PX;
    }
}


/* ------------------------------------------------ */

.rownew {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}


/* ----------------------from-------------------- */

.fa {
    margin: 7px;
}

.h-c-form {
    background-color: #e7f8ffcc;
    max-width: 100%;
    border-radius: 5px;
    padding: 30px;
    z-index: 10;
}

.h-c-formone {
    background-color: #e5e5e5;
    max-width: 100%;
    border-radius: 5px;
    padding: 0px;
    z-index: 10;
    /* margin-top: 21px;
  margin-bottom: 21px; */
}

.h-form input,
.h-form textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    outline: none;
    font-size: 15px !important;
    border: 1px solid #029ede;
    border-radius: 3px;
}

#contentfrom {
    background: linear-gradient(45deg, #f1f1f1 41%, #2fbba9 89%) !important;
    padding: 35px 40px 15px !important;
    border-radius: 10px !important;
    width: 30% !important;
    margin-top: 2% !important;
}

.home-c-btn {
    display: block !important;
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    outline: none;
    border: none;
    padding: 10px !important;
    background: #029ede;
    color: #fff;
    transition: .3s;
    /*font-family: 'Poppins', sans-serif !important;*/
    border-radius: 5px !important;
    margin-top: 10px;
}

.ts-service-box-content p a:hover {
    color: rgb(151, 9, 9);
}

.ts-service-box-content p a {
    color: rgb(7, 7, 7);
}

.ts-service-box-content h4 {
    color: #000;
}

.ts-service-box-content p {
    color: #000;
}


/* faq -----new---------------------------------------- */

.wrapper {
    width: 100%;
}

.contai {
    background-color: white;
    color: black;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}

.question {
    font-weight: 500;
    padding: 6px 9px 10px 12px;
    position: relative;
    /*display: flex;*/
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    position: absolute;
    right: 20px;
    transition: 0.2s;
    font-weight: bold;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.answer ul li {
    margin-inline: 15px;
}

.question.active+.answercont {}

@media screen and (max-width: 790px) {
    .wrapper {
        width: 100%;
    }
}

.fmsc {
    font-size: 1.3em;
    font-family: 'Open Sans', arial, sans-serif;
    line-height: 1.5;
    box-sizing: inherit;
}

.h7 {
    font-family: 'Crimson Text', serif;
    line-height: 1.2;
    color: rgb(21, 37, 138);
    font-size: 27px !important;
    margin-bottom: 23px;
}


/* -------------counters------------------ */

.slide {
    margin-inline: 7px
}

.working-hours ul {
    margin-inline: 11px;
    list-style-type: none;
}


/* fpom--body-css------ */


/* input[type="email"],
        input[type="phone"],
        input[type="name"],
        input[type="Message"] { */

.name {
    width: 100%;
    padding: 7px 30px;
    margin-bottom: 1.20em;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 1em;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 31%;
    background-color: #1919ff;
    color: white;
    padding: 0.6em 0.4em;
    margin: .5em 0;
    transition-duration: 600ms;
    transition-property: background-color, transform;
    border: none;
    border-radius: 1em;
    cursor: pointer;
}

.help-sction {
    font-size: 16px;
    font-weight: bolder;
    list-style-type: disclosure-closed;
    list-style-type: none
}

input[type="submit"]:hover {
    transform: scale(1.15);
    background-color: #1313ad;
}

form {
    /* position: absolute; */
    margin: 2px;
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 44em; */
    /* height: 30em; */
    border-radius: 1em;
    /* background-color: #282829; */
    color: rgb(0, 0, 0);
    padding: 1.5em;
    animation: rotate 5000ms infinite;
}

.self {
    height: 413px;
    width: 932px;
}

.promenr {
    width: 80%;
}

.heading_design {
    background: #00796b;
    color: white;
    border-radius: 6px;
    padding: 10px 10px 10px 10px;
    font-weight: 500;
    box-shadow: 0 6px 10px -1px rgb(0 0 0 / 25%);
}

.border3d {
    z-index: 1;
    padding: 13px;
    box-shadow: 0 6px 10px -1px rgb(0 0 0 / 25%);
    border-radius: 10px;
}

.p-design {
    /*font-size: 18px !important;*/
    /*font-family: Arial !important;*/
    /* font-family: 'open sans' !important; */
}

.p-design li {
    /*font-size: 18px !important;*/
    /*font-family: Arial !important;*/
    line-height: 29px;
}

@media screen and (max-width: 767px) {
    .p-design li {
        /*font-size: 15px !important;*/
        /*font-family: Arial !important;*/
    }
}

@media screen and (max-width: 767px) {
    .p-design {
        /*font-size: 15px !important;*/
        /*font-family: Arial !important;*/
    }
}

.m-l30 {
    margin-left: 20px
}

.m-t10 {
    margin-top: 10px;
}

ul.dropdown-menu.show {
    width: 700px !important;
}

.right {
    width: 200px;
    /* height: 600px; */
    display: inline-block;
}

.left {
    width: 200px;
    /* height: 600px; */
    display: inline-block;
}

.center {
    width: 200px;
    /* height: 600px; */
    display: inline-block;
}


/* notification-- */

.l-n-span-line {
    border-bottom: 1px solid #cfcfcf;
    display: inline;
    padding-bottom: 10px;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.btn-primary {
    background-color: #0275d8;
    border-color: #0275d8;
    color: #fff;
}

btn-group-sm>.btn,
.btn-sm {
    border-radius: 3px;
    /*font-size: 12px;*/
    padding: 4px 8px;
}

.l-n-design h3 {
    font-weight: 600;
    color: #042d6a;
    text-transform: uppercase;
    /*font-size: 20px!important;*/
    transition: .4s ease-in;
    margin-bottom: 5px;
    line-height: 1.5;
}

.l-n-design p {
    /*font-size: 18px;*/
}

.pdf-place {
    margin: 0.6rem 0;
    width: 100%;
    /* height: 37.5rem; */
    height: auto;
    border: 2px solid #4375ab;
    border-radius: 5px;
    padding: 0.3rem;
}

.pdf-file-co {
    background: #19539e;
    padding: 6px;
    border-radius: 11px;
    color: white;
    display: flex
}

.skills {
    background-size: 100% 100%;
    padding: 6% 0;
    background: url("../img/skills.jpg") no-repeat;
}

.skills h2 {
    font-size: 1.8em;
    color: #fff;
    font-weight: 600;
}

.pie-wrapper {
    display: inline-block;
    height: 200px;
    margin: 2% 3% 1%;
    position: relative;
    width: 200px;
}

.pie-wrapper .pie {
    clip: rect(0, 200px, 200px, 100px);
    height: 200px;
    position: absolute;
    width: 200px;
}

.pie-wrapper .pie .half-circle {
    border: 5px solid #fff;
    border-radius: 50%;
    clip: rect(0, 100px, 200px, 0);
    height: 185px;
    position: absolute;
    width: 185px;
    margin: 8px;
}

.pie-wrapper .label {
    background: #34495e;
    border-radius: 50%;
    color: #ecf0f1;
    cursor: default;
    display: block;
    font-size: 3em;
    height: 160px;
    left: 10%;
    line-height: 3em;
    position: absolute;
    text-align: center;
    top: 4%;
    width: 160px;
}

.pie-wrapper .label .smaller {
    color: #bdc3c7;
    font-size: .45em;
    padding-bottom: 20px;
    vertical-align: super;
}

.pie-wrapper.style-2 .shadow {
    border: 5px solid #7B6C63;
    border-radius: 50%;
    height: 100%;
    width: 100%;
}

.pie-wrapper.style-2 .label {
    background: none;
    color: #7f8c8d;
}

.pie-wrapper.style-2 .label .smaller {
    color: #bdc3c7;
}

.pie-wrapper.progress-30 .pie .right-side {
    display: none;
}

.pie-wrapper.progress-30 .pie .half-circle {
    border-color: #3498db;
}

.pie-wrapper.progress-30 .pie .left-side {
    -webkit-transform: rotate(108deg);
    -moz-transform: rotate(108deg);
    -ms-transform: rotate(108deg);
    -o-transform: rotate(108deg);
    transform: rotate(108deg);
}

.pie-wrapper.progress-60 .pie {
    clip: rect(auto, auto, auto, auto);
}

.pie-wrapper.progress-60 .pie .right-side {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pie-wrapper.progress-60 .pie .half-circle {
    border-color: #9b59b6;
}

.pie-wrapper.progress-60 .pie .left-side {
    -webkit-transform: rotate(216deg);
    -moz-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg);
}

.pie-wrapper.progress-90 .pie {
    clip: rect(auto, auto, auto, auto);
}

.pie-wrapper.progress-90 .pie .right-side {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pie-wrapper.progress-90 .pie .half-circle {
    border-color: #e67e22;
}

.pie-wrapper.progress-90 .pie .left-side {
    -webkit-transform: rotate(324deg);
    -moz-transform: rotate(324deg);
    -ms-transform: rotate(324deg);
    -o-transform: rotate(324deg);
    transform: rotate(324deg);
}

.pie-wrapper.progress-45 .pie .right-side {
    display: none;
}

.pie-wrapper.progress-45 .pie .half-circle {
    border-color: #fff;
}

.pie-wrapper.progress-45 .pie .left-side {
    -webkit-transform: rotate(162deg);
    -moz-transform: rotate(162deg);
    -ms-transform: rotate(162deg);
    -o-transform: rotate(162deg);
    transform: rotate(162deg);
}

.pie-wrapper.progress-75 .pie {
    clip: rect(auto, auto, auto, auto);
}

.pie-wrapper.progress-75 .pie .right-side {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pie-wrapper.progress-75 .pie .half-circle {
    border-color: #fff;
}

.pie-wrapper.progress-75 .pie .left-side {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.pie-wrapper.progress-95 .pie {
    clip: rect(auto, auto, auto, auto);
}

.pie-wrapper.progress-85 .pie .right-side {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pie-wrapper.progress-85 .pie .half-circle {
    border-color: #fff;
}

.pie-wrapper.progress-95 .pie .left-side {
    -webkit-transform: rotate(342deg);
    -moz-transform: rotate(342deg);
    -ms-transform: rotate(342deg);
    -o-transform: rotate(342deg);
    transform: rotate(342deg);
}

div.pie-wrapper.progress-45.style-2 h3 {
    color: #fff;
    font-size: 0.8755em;
    margin-top: 8%;
}

div.pie-wrapper.progress-75.style-2 h3 {
    color: #fff;
    font-size: 0.8755em;
    margin-top: 8%;
}

div.pie-wrapper.progress-95.style-2 h3 {
    color: #fff;
    font-size: 0.8755em;
    margin-top: 8%;
}


/* srrvice ----- */

span {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: #f91942;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f;
}

.section-head p {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.item {
    background: #fff;
    text-align: center;
    padding: 15px 18px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: #00796b;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
    color: #fff;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f91942;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.2);
    color: #f91942;
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #f91942;
}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #f91942;
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #f91942;
}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #f91942;
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #f91942;
}

.item p {
    font-size: 15px;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    color: #054793;
    font-weight: 700;
}

/*silder css*/
.bg_1 {
    padding:55px;
    background: url(../flags/s2.png)no-repeat;
    background-size: cover;


}
.formom {padding: .1em!important;}


.form {
    background: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 15px;
    border: 1px solid #ff6600;
}

.slider_part {
    position: relative;
    margin: -14px;
}


.study {
    font-size: 56px;
    padding: 20px 12px;
    color: white;
    font-weight: 700;
}

.in_study {
    font-size: 55px;
    color: white;
}


.imag {
    padding: 50px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.bg_form {
  background: rgb(199 199 199 / 62%);
    padding: 4px;
    margin: 10px 0px;
}

.adj_form {
    padding: 15px;
}

.right_form {
    position: absolute;
    z-index: 9;
    margin-top: 20px;
}

.form_heading {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 35px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    padding: 20px 0px 10px 0px;
}

.adj_form {
    padding: 15px;
}

.req_input {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #8f8f8f;
    font-size: 16px;
    color: #fff;
    background: #fff;
}

.req_input:focus {
    border-color: #e2172b;
    box-shadow: 0 0px 8px rgba(226, 23, 43, 0.8) inset;
}

.req_textarea {
    float: left;
    width: 100%;
    min-height: 60px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #8f8f8f;
    font-size: 16px;
    color: #000;
    background: white;
}

.req_textarea:focus {
    border-color: #e2172b;
    box-shadow: 0 0px 8px rgba(226, 23, 43, 0.8) inset;
}

.wt {
    width: 100%;
}

.req_submit {
    font-family: 'Roboto', sans-serif;
    border: 1px solid #070582;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.req_submit.wt:hover {
    background: #e2172b;
}

.req_submit:hover {
    background: #070582;
    border: 1px solid #e2172b;
}


.req_input::-moz-placeholder {
    opacity: 1;
}

.req_textarea::-moz-placeholder {
    opacity: 1;
}

/* responsive */
@media (max-width: 768px) {
    .col-sm-7, .col-sm-5 {
        flex: 100%;
        max-width: 100%;
    }

    .imag {
        text-align: center;
        margin-bottom: 20px;
    }

    .right_form1 {
        padding: 20px;
    }
    .study{font-size: 25px;}
    .imag{padding: 23px;}
}




/* Fallback: horizontal top-level nav on desktop (Impact rules live in assets/css/main.css — load it after this file) */
@media (min-width: 1280px) {
    #header nav#navbar.navbar > ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        list-style: none !important;
        margin: 0;
        padding: 0;
    }

    #header nav#navbar.navbar > ul > li {
        list-style: none !important;
        position: relative;
    }
}




/* ============================================================
   Navbar SERVICES — click toggle, multi-column panel (nav-services-dropdown.js)
   ============================================================ */

.navbar li.dropdown.nav-services > ul.nav-services-panel {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li.dropdown.nav-services .nav-services-panel__link {
    display: block !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 0.42rem 0.65rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: #1f7d72 !important;
    text-decoration: none;
    border-radius: 4px;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.navbar li.dropdown.nav-services .nav-services-panel__link:hover,
.navbar li.dropdown.nav-services .nav-services-panel__link:focus {
    color: #047a6f !important;
    background-color: rgba(0, 121, 107, 0.08);
    outline: none;
}

.navbar li.dropdown.nav-services > ul.nav-services-panel > li {
    margin: 0;
    padding: 0;
    min-width: 0 !important;
    max-width: 100%;
    min-height: 0;
    list-style: none;
}

@media (min-width: 1280px) {

    .navbar li.dropdown.nav-services > ul.nav-services-panel {
        display: grid !important;
        position: absolute !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem 1.25rem;
        align-content: start;
        justify-items: stretch;
        grid-auto-flow: row;
        min-width: min(56rem, calc(100vw - 2rem));
        max-width: min(96vw, 58rem);
        max-height: min(72vh, 28rem);
        overflow-x: hidden;
        overflow-y: auto;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
        top: calc(100% + 8px) !important;
        padding: 14px 16px;
        background: #fff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
        border-radius: 8px;
        z-index: 1000;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .navbar li.dropdown.nav-services.nav-services-is-open > ul.nav-services-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .navbar li.dropdown.nav-services:hover:not(.nav-services-is-open) > ul.nav-services-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1279px) {

    .navbar li.dropdown.nav-services > ul.nav-services-panel {
        display: none;
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        width: 100%;
        max-width: none;
        max-height: min(60vh, 22rem);
        overflow-y: auto;
        margin: 8px 12px 10px 12px;
        padding: 8px 6px;
        background: rgba(0, 90, 80, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 6px;
        box-shadow: none;
    }

    .navbar li.dropdown.nav-services > ul.nav-services-panel.dropdown-active,
    .navbar li.dropdown.nav-services.nav-services-is-open > ul.nav-services-panel {
        display: grid !important;
        grid-template-columns: 1fr;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .navbar li.dropdown.nav-services .nav-services-panel__link {
        color: #e8f7f4 !important;
        font-size: 14px;
        padding: 10px 14px;
    }

    .navbar li.dropdown.nav-services .nav-services-panel__link:hover,
    .navbar li.dropdown.nav-services .nav-services-panel__link:focus {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }
}




/*end*/