@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("flaticon.css");
:root{ 
    --primary-color:#0058ab;
    --secondary-color:#0058ab;
    --text-color:#8a8a8a;
    --light-bg-color:#f4f9fc;
    --primary-font-family: 'Houschka Pro' !important;
}
    
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Houschka Pro' !important;
    color:var(--text-color);
    font-weight:normal;
    font-style:normal;
    font-size:18px;
    line-height: 1.3;   

}
a{
    color:var(--primary-color);
    text-decoration:none;
    transition:.3s all;
    -webkit-transition:.3s all;
    -moz-transition:.3s all;
    -ms-transition:.3s all;
    display: inline-block;
}
a:hover{
    color:var(--secondary-color);
}
input, select, textarea, button {
    background-color: transparent;
    border: 2px solid #dce6f5;
    padding: 14px 20px;
    outline: none !important;
    box-shadow: none !important;
    height: auto;
    font-family: var(--primary-font-family);
    color: #000;
    font-weight: 600;
    font-size: 16px;
}
textarea {
    height: 100px !important;
    resize: vertical;
}
.container {
    max-width: 1366px;
    width: 100%;
}
.bg-light-section {
    background: var(--light-bg-color);
}
.bg-primary-color{
    background-color: var(--primary-color);
}
.bg-secondary-color{
    background-color: var(--secondary-color);
}
.breadcrumb-item+.breadcrumb-item {
    margin-bottom: 5px;
}
img{
    max-width:100%;
    height: auto;
        transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
}
ul, ol{
    padding:0;
    margin:0;
}
ul li, ol li{
    list-style:none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:  #000;
    margin-bottom:15px;
    font-weight: 600;
}
h1, .h1{
    font-size:52px;
    font-weight: 800;
}
h2, .h2{
font-size: 32px;
    font-weight: 600;
}
h3, .h3{
    font-size:32px;
    font-weight: 600;
}
h4, .h4{
    font-size:28px;
    font-weight: 600;
}
h5, .h5{
    font-size:24px;
}
h6, .h6{
    font-size:20px;
}
p{
    margin-bottom:15px;
    line-height: 28px;
    font-weight: 500;
       font-size: 16px;
    color: #222;
    letter-spacing: .24px;
}
p:last-child{
    margin-bottom:0;
}
.title {
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 700;
}
.pt-7 {
    padding-top: 70px;
}
.pb-7 {
    padding-bottom: 70px;
}
.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1.5em;
}
.alignleft {
    float: left;
    margin:0.5em 1.5em 0.5em 0;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
::scrollbar {
  width: 10px;
}
 
::scrollbar-track {
  background:#fff;
}
 
::-webkit-scrollbar {
  width: 0px;
}
 
::-webkit-scrollbar-track {
  background:#fff;
}
 
::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
::-moz-scrollbar {
  width: 0px;
}
 
::-moz-scrollbar-track {
  background:#fff;
}
 
::-moz-scrollbar-thumb {
  background-color: #ccc;
}
::-ms-scrollbar {
  width: 0px;
}
 
::-ms-scrollbar-track {
  background:#fff;
}
 
::-ms-scrollbar-thumb {
  background-color: #ccc;
}


/* From Uiverse.io by vinodjangid07 */ 
.global-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: rgb(161, 255, 20);
    border-radius: 30px;
    color: rgb(19, 19, 19);
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    transition-duration: .5s;
    padding: 12px 30px;
}

.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.bell path {
  fill: rgb(19, 19, 19);
}

.global-button:hover {
  background-color: rgb(192, 255, 20);
  transition-duration: .5s;
}

.global-button:active {
  transform: scale(0.97);
  transition-duration: .2s;
}

.global-button:hover .svgIcon {
  transform: rotate(250deg);
  transition-duration: 1.5s;
}

.global-button i {
    position: relative;
    transform: rotate(-40deg);
    transition: 0.6s;
    color: #fff;
    margin-left: 6px;
}
.global-button:hover i{
transform: rotate(0deg);
}


   .updown {
    transform: translateZ(0);
    animation: bob 3s ease-in-out infinite;
    position: absolute;
    right: 0;
  }

  @keyframes bob {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-30px); } /* move up */
    100% { transform: translateY(0); }
  }


section {
    overflow: hidden;
}


.navbar-brand img {
    max-width: 150px;
}
.navbar-toggler {
    vertical-align: middle;
    float: right;
        margin-top: 11px;
    padding: 0;
}
.navbar-toggler .line {
    height: 4px;
    width: 35px;
    background:var(--primary-color);
    margin: 6px auto;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar-toggler .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
}
.navbar-toggler .line:nth-child(2) {
    visibility: hidden;
}
.navbar-toggler .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    -moz-transform: rotate(-45deg) translate(7px, -7px);
    -ms-transform: rotate(-45deg) translate(7px, -7px);
}
.navbar-toggler.collapsed .line {
    transform: rotate(0deg) translate(0, 0)!important;
    -webkit-transform: rotate(0deg) translate(0, 0)!important;
    -moz-transform: rotate(0deg) translate(0, 0)!important;
    -ms-transform: rotate(0deg) translate(0, 0)!important;
    visibility: visible !important;
}
.site-header .navbar-nav>li .dropdown-icon {
    display: none;
}
.top-bar {
    background: var(--primary-color);
    padding: 5px 0;
    font-size: 12px;
}.top-header ul {
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 10px;
        padding-top: 5px;
}
.top-header ul li a {
    color: #fff !important;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px !important;
}


.top-bar ul li {
    display: inline-block;
}
.head-contact li {
    color: #fff;
}
.head-contact li a{
    color:#fff;
}
.head-contact li a:hover{
    color: var(--secondary-color);
}
.head-contact li+li {
    margin-left: 20px;
}
.head-contact li i {
    margin-right: 5px;
}
.head-social-icons li+li {
    margin-left:5px;
}
.head-social-icons li a {
    display: block;
    color: var(--secondary-color);
    width: 20px;
    height: 20px;
    line-height: 21px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    background-color: #fff;
    text-align: center;
    font-size: 10px;
}
.head-social-icons li a:hover {
    color: #ffffff;
    background-color: var(--secondary-color);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.site-header {
    padding: 10px 0;
 background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -moz-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -ms-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    z-index: 2;
    width: 100%;
    overflow: hidden;
}
.site-header .navbar-nav>li {
    position: relative;
    margin-left: 15px;
}
.site-header .navbar-nav>li>a {
        padding-top: 10px;
    padding-bottom: 15px;
}
.site-header li a {
       font-size: 16px;
    color: #454545;
    font-weight: 600;
    text-transform: capitalize;
}
.site-header li a:hover, .site-header li.current-menu-item>a{
    color:var(--primary-color);
}
.site-header li.menu-btn a {
    color: #fff;
    background: var(--primary-color);
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    margin-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.site-header li.menu-btn a:hover {
    background: var(--secondary-color);
}
.site-header .navbar-nav .menu-item-has-children>a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 10px;
    vertical-align: text-bottom;
    font-size:16px;
}
.site-header .navbar-nav>li .sub-menu {
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    background: #ffffff;
    position: absolute;
    border: none;
    top: 80px;
    left: 0;
    width: 250px;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 3px solid var(--primary-color);
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.site-header .navbar-nav>li .sub-menu li {
    padding: 0;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding: 10px 0;
    margin: 0;
    font-weight: 400;
    color: var(--text-color);
}
.site-header .navbar-nav>li .sub-menu li a:hover, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
    color: var(--primary-color);
}
.site-header .navbar-nav>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.cta a {
    background: #0070ad;
    color: #fff !important;
    padding: 15px 20px !important;
}
.btn {
    border: none;
    line-height: initial;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    padding: 17px 55px 15.5px 25px;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    font-size: 15px;
    font-family: var(--primary-font-family);
    font-weight: 500;
    box-shadow:none !important;
    -webkit-box-shadow:none !important;
    -moz-box-shadow:none !important;
}
.btn-primary{
    background:var(--primary-color);
}
.btn-secondary {
    background: var(--secondary-color);
}
/*.btn i {
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    display: inline-block;
    height: 33px;
    width: 33px;
    line-height: 33px;
    color: var(--primary-color);
    border-radius: 50%;
    background-color: #f0f0f0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}*/
/*.btn-secondary i{
    color: var(--secondary-color);
}
.btn-primary:hover, .btn-primary:focus{
    background:var(--secondary-color);
}
.btn:hover i, .btn:focus i {
    background-color: #ffffff;
    color: var(--primary-color);
}
.btn-secondary:hover, .btn-secondary:focus{
    background: var(--primary-color);
}
.btn-secondary:hover i{
    color: var(--primary-color);
}*/
.read-more {
    color: #000;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -m-border-radius: 5px;
    border: 1px solid #ff7900;
}
.read-more i {
    font-size: 12px;
    vertical-align: middle;
    margin-left: 10px;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.read-more:hover {
    background: #ff7900;
    color:#fff;
}
.read-more:hover i{
    margin-left: 20px;
}
.main-banner {
    height: 75vh;
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*.item.main-banner:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #000a5b;*/
/*    opacity: 0.5;*/
/*}*/
.home-slider .container {
    padding: 0 25px;
}
.main-banner .d-table {
    width: 100%;
    height: 100%;
}
.main-banner .d-table-cell {
    vertical-align: middle;
}
.main-banner-content {
    max-width: 850px;
    position: relative;
    padding-top: 90px;
}
.main-banner-content .btn-box .btn:first-child {
    margin-right: 15px;
}
/*.main-banner-content span {
    display: inline-block;
    margin-bottom: 20px;
    background: var(--secondary-color);
    font-size: 18px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}*/
.main-banner-content h1 {
    margin-bottom: 0;
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 60px;
}
.main-banner-content p {
    line-height: 36px;
    color: #121521;
    max-width: 750px;
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 30px;
    color: #fff;
}
.main-banner-content img {
    width: 120px !important;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px;
}   

.home-slider .owl-nav button {
    position: relative;
    right: 30px;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    font-size: 21px !important;
    background: #fff !important;
    border-radius: 100%;
    outline: none;
}
.home-slider .owl-nav button:hover {
    background: var(--primary-color) !important;
    color:#fff !important;
}

/*.home-slider .owl-nav button i {
    line-height: 18px;
    width: 14px;
}*/
.home-slider .owl-nav button.owl-prev {
    margin-top: 35px;
    left: 20px;
    position: absolute;
}
.home-slider .owl-nav button.owl-next {
    margin-top: 35px;
        right: 20px;
    position: absolute;
}

.home-slider .owl-dots {
    text-align: center;
    margin-top: -60px;
    position: absolute;
    right: 40px;
}
.home-slider .owl-dots button.active {
    width: 30px;
    background: #ffffff !important;
}
.home-slider .owl-dots button {
    border: 2px solid #ffffff !important;
}



.owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%) !important;
    font-size: 30px !important;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    top: 27px;
}

.owl-nav button.owl-next {
    right: 0px;
}
 

.owl-dots {
    text-align: center;
    margin-top: 40px;
}
.owl-dots button {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color) !important;
    margin: 0 4px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
}
.owl-dots button.active {
    background: #0b5ed7 !important;
}
.featured-stories button.owl-next:after {
    position: absolute;
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    right: 35px;
    opacity: 1;
    font-size: 21px;
    top: 16px;
}

.featured-stories button.owl-prev:after {
    position: absolute;
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    opacity: 1;
    font-size: 21px;
    top: 16px;
    left: 20px;
}



.about_img
 {
    position: relative;
}

.about_img img {
    border-radius: 10px;
}
.about-sec {
    position: relative;
    z-index: 9;
    background: #fff;
}


.about-sec p {
    font-size: 21px;
    color: #000;
    line-height: 32px;
}

/*.about-innovation {
    background: #0070ade8;
    padding: 50px;
    width: 40%;
    position: relative;
    bottom: -140px;
}*/
.about-innovation h4{
color: #fff;
}
.about-innovation p {
    color: #fff;
    font-size: 32px;
    line-height: 50px;
}

.counter-sec {
    padding: 50px 0px;
}
.counter-sec h4 {
    font-size: 38px;
    margin-bottom: 25px;
    /* border-bottom: 1px solid; */
    position: relative;
    padding-bottom: 10px;
}
.counter-sec h4:after {
    content: "";
    position: absolute;
    background: #0b5ed7;
    height: 4px;
    width: 10%;
    bottom: 0;
    left: 0;
    border-radius: 100px;
}






.content-box img {
    width: 100%;
}

.content-box .img-box {
    width: 150px;
    position: relative;
    transition: 0.6s
}
.content-box:hover .img-box img {
    transform: scale(1.3);
            transform: rotateY(180deg);
}


.content-box p {
    font-size: 14px;
}

.counter-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.counter-item {
    background:rgb(61 64 165);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    padding-bottom: 0;
}
.counter-icon {
    font-size: 45px;
    color: #fff;
    margin-bottom: 10px;
}
.counter-item h4 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}
.counter-item p {
    font-size: 20px;
    color: #fff;
}
.counter-item .feature-small-content {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
}
.image-bg-column {
    background-size: cover;
    background-position: center center;
}
.appointment-section .shape-left{
    display: none;
}


.shape-left {
    position: absolute;
    bottom: 0;
    right: calc(100% - 1px);
    height: 100%;
    width: 200px;
    text-align: right;
    z-index: 1;
}
.form-control {
    background-color: transparent;
    border: 1px solid #cfcfcf;
    padding: 10px 20px;
    outline: none !important;
    box-shadow: none !important;
    height: auto;
    font-family: var(--primary-font-family);
    color: #000;
    font-weight: 500;
    font-size: 14px;
}.wpcf7-list-item {
    margin: 0 0 0 0em;
}
select{
        background-color: transparent;
    border: 1px solid #cfcfcf;
    padding: 10px 20px;
    outline: none !important;
    box-shadow: none !important;
    height: auto;
    font-family: var(--primary-font-family);
    color: #000;
    font-weight: 500;
    font-size: 12px;
    width: 100%;
}
.form-field label {
    font-size: 14px;
    color: #000;
    padding-bottom: 5px;
    font-weight: 600;
}

.form-floating, .form-field {
    position: relative;
    margin-bottom: 20px;
}
.form-floating>.form-control, .form-floating>label {
    padding: 14px 20px;
}
.form-control:focus, .form-floating>.form-control:not(:placeholder-shown){
    border-color:var(--primary-color);
}
.form-floating>.form-control, .form-floating>.form-select {
    height: auto;
    line-height: normal;
}
.form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 14px;
    padding-bottom: 14px;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: 1;
    transform: scale(.85) translateY(-11px) translateX(8px);
    -webkit-transform: scale(.85) translateY(-11px) translateX(8px);
    -moz-transform: scale(.85) translateY(-11px) translateX(8px);
    -ms-transform: scale(.85) translateY(-11px) translateX(8px);
    padding: 0 10px;
    height: auto;
    background: #fff;
}
.form-submit .btn {
    padding-right: 25px;
}
.contact-form .form-control:focus{
    border-color: #dce6f5;
}
.input-group-text {
    border-color: #dce6f5;
    background: #dce6f5;
    width: 50px;
    text-align: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-size: 18px;
}
.input-group {
    flex-wrap: nowrap;
}
.wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}
.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-not-valid {
    border-color: #000000 !important;
}
.wpcf7-response-output {
    text-align: center;
        padding: 10px !important;
    margin: 10px 0 !important;
}
.contact-form textarea {
    height: 150px !important;
}
.contact-form .input-group p {
    width: 100%;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.contact-form label {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 6px;
}
.contact-form p{
    margin-bottom: 0px;
}
.contact-form  .input-group{
    margin-bottom: 15px;
}

.contact-form .form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.contact-form .form-control {
    padding: 14px 20px;
}

.career-form .form-control {
    padding: 14px 20px;
    background: #fff;
}

.contact-form .col-12 .input-group {
    margin-bottom: 15px;
}

.location-sec {
    background-color: #e9f0f3;
    padding: 30px;
}
.location-sec a {
    color: #000;
    font-size: 16px;
    display: block;
    line-height: 30px;
}
.location-sec h4{    
    font-size: 21px;
}
.location-sec i {
    padding-right: 10px;
}












.review-slider {
    padding-left: 35px;
    padding-right: 35px;
}
.review-box {
    text-align: center;
    padding: 0 20px;
}
.review-box-image {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin-bottom: 26px;
}
.review-box-image img {
    display: block;
    width: 140px;
    padding: 8px;
    border: 2px solid #2e3192;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
}
.review-box-image .quote-icon {
    position: absolute;
    top: 0;
    right: -3px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
        border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    color: #fff;
}
.review-box h5 {
    font-weight: 600;
    font-size: 20px;
}
.review-box h6 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #ff7900;
}
.page-template-doctors-template .team-box{
    margin: 0px !important;
}
.single-our_team  .team-box{
        margin: 0px !important;
}
.single-our_team .team-box{
    margin: 0px !important;
}

.team-box {
    position: relative;
    display: block;
    margin: 0 25px;
    padding-bottom: 30px;
}
.team-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;

}
.team-box .image-box a {
    display: block;
}
.team-box .image-box img {
    transition: all 500ms 
ease;
    -webkit-transition: all 500ms 
ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    height: 300px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.team-box .team-content {
    position: relative;
    display: block;
    margin: 0 0px;
    position: relative;
    padding: 15px;
    border-radius: 0px 0px 15px 15px;
    -webkit-border-radius: 0px 0px 15px 15px;
    -moz-border-radius: 0px 0px 15px 15px;
    -ms-border-radius: 0px 0px 15px 15px;
    /* margin-top: -67px; */
    z-index: 1;
    box-shadow: 0 10px 30px #e7e8ea;
    -webkit-box-shadow: 0 10px 30px #e7e8ea;
    -moz-box-shadow: 0 10px 30px #e7e8ea;
    -ms-box-shadow: 0 10px 30px #e7e8ea;
    text-align: center;
}
.team-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #ff7900;
    font-size: 16px;
}
.team-content span {
    text-transform: capitalize;
    font-size: 14px;
        font-weight: 600;
}
.team-content .social-icons {
    margin-top: 20px;
}


.doctor-details h5 {
    font-size: 18px;
    color: #ff7900;
}

.doctor_fullinfo h4 {
    font-size: 20px;
    color: #ff7900;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 8px;
}
figure.doctor-image img {
    border-radius: 10px !important;
}


.social-icons li {
    display: inline-block;
    margin: 0 3px;
}
.social-icons li a {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #ff7900;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    font-size: 16px;
    color:#ff7900
}
.social-icons li a:hover {
    border-color: #ff7900;
    background:#ff7900;
    color:#fff;
}
.team-box:hover .image-box img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}
.blog-grid {
    background: #fff;
/*    box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);*/
    position: relative;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    overflow: hidden;
}
.blog-grid .image-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-grid .image-box img {
    width: 100%;
    height: 280px;
    vertical-align: middle;
    object-fit: cover;
    object-position: center center;
}
.blog-grid:hover .image-box img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}
.blog-grid .image-box a {
    display: block;
}
.blog-grid-content {
    padding: 30px 30px;
    position: relative;
    top: -60px;
    background: #fff;
    margin-left: 25%;
}
.blog-grid-content h3 {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
} 
.blog-grid-content h3 a {
    font-size: 21px;
    line-height: 32px;
    font-weight: 600;
    color: #000;
}
.blog-grid-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-info {
    margin-bottom: 15px;
}
.post-info a{
    color: var(--text-color);
}
.blog-grid-content .post-date {
    position: absolute;
    display: inline-block;
    right: 30px;
    top: -45px;
    width: 90px;
    height: 90px;
    background: var(--light-bg-color);
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border: 5px solid #fff;
    padding: 13px 0 10px 0;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    margin-top: -45px;
    margin-bottom: 23px;
}
.blog-grid-content .post-date h3 {
    display: block;
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
    color:#000;
}
.blog-grid-content .post-date h3 span {
    display: block;
    font-size: 15px;
    line-height: 16px;
    font-weight: 600;
    color: #142441;
    text-transform: uppercase;
    margin-top: 4px;
    color:var(--primary-color);
}
.blog-post-date ul {
    display: flex;
    align-content: space-between;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 30px;
}

.blog-post-date ul li {
    color: #181818;
    font-size: 14px;
    position: relative;

}
.blog-post-date li.category {
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 600;
    padding-left: 60px;
    text-transform: uppercase;
}
.blog-post-date li.category:after {
    content: "";
    height: 4px;
    width: 40px;
    position: absolute;
    left: 0;
    display: block;
    left: 0;
    top: 10px;
    background: #0070ad;
}
.blog-section .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.go-top {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 25px;
    bottom: 25px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.go-top:hover {
    background: var(--secondary-color);
}
.go-top.active {
    opacity: 1;
    visibility: visible;
}
.site-footer {
/*       background: linear-gradient(90deg, #0e0a34 0, #003a88 100%);*/
    position: relative;
    background: #dee1e8;
}
.footer-map img {
    margin-bottom: 40px;
    width: 60%;
}
.footer-logo img {
opacity: 0.5
}

footer:hover .footer-logo img{
    opacity: 1;
}
.footer-logo{
    text-align: center;
}
.footer-logo img {
  width: 100%;
  transition: width 0.2s linear;
  animation: growImage linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 70%;
  margin: 0 auto;
}

@keyframes growImage {
  from {
    width: 100%;
  }
  to {
    width: 80%;
  }
}













.footer-logo {
    margin-bottom: 30px;
    margin-top: 20px;
}
.footer-social ul li {
    display: inline-block;
    margin-right: 4px;

}   
.footer-social li a {
    display: block;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 37px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    background-color: #3a3a3a;
    text-align: center;
    font-size: 16px;
}
.footer-social li a:hover {
    color: #ffffff;
    background-color: #ff7900;
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.site-footer p, .site-footer a {
    color: #000;
    font-size: 18px;
}
footer ul li
{
     line-height: 38px;
}
.site-footer h2 {
    font-size: 21px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 400;
}

/*.site-footer h2:after {
    content: '';
    position: relative;
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    margin-top: 8px;
}*/
.footer-links li {
    margin-bottom: 8px;
}
.footer-links li a {
    position: relative;
    transition: 0.6s;
}
.footer-links li a:before {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-right: 12px;
    font-size: 14px;
    color: #ddd;
    display: none;
    position: absolute;
    left: 0;
}
.footer-links li a:hover:before{
    display: block;
    padding-left: 0px;
    left: 0;
}
.footer-links li a:hover {
    color:var(--secondary-color);
    padding-left: 20px;
}
.footer-map iframe {
    width: 100%;
    height: 240px;
/*  -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);*/
}
.footer-map ul li {
    margin-bottom: 15px;
    display: flex;
    line-height: 28px;
}
.footer-map ul li i {
    margin-right: 10px;
    position: relative;
    top: 6px;
    color: #000;
}


.copyright-area {
    background: #dee1e8;
    font-size: 16px;
    padding-bottom: 20px;
}
.copyright-area p, .copyright-area a {
    color: #000;
    font-size: 16px;
    text-align: left;
}
.copyright-area a:hover{
    color: var(--secondary-color);
}
.copyright-area svg {
  margin:0 2px;
}
.copyright-area #heart {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dashoffset: 400;
  stroke-dasharray: 400;
  animation: stroke 3s ease-in-out infinite alternate;
  -webkit-animation: stroke 3s ease-in-out infinite alternate;
  -moz-animation: stroke 3s ease-in-out infinite alternate;
  -ms-animation: stroke 3s ease-in-out infinite alternate;
  stroke: red;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
.newsletter-section {
    border-bottom: 1px solid #272a35;
    margin-bottom: 60px;
    padding-bottom: 50px;
}
.newsletter-section .title {
    color: #fff;
    font-weight: bold;
}
.newsletter-form input {
    display: block;
    width: 100%;
    height: 70px;
    line-height: initial;
    border: none;
    background-color: #ffffff;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    color: #121521;
    outline: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 165px;
    padding-left: 30px;
    font-size: 18px;
}
.newsletter-form form{
    position: relative;
}
.newsletter-form button {
    position: absolute;
    right: 7.5px;
    top: 7.5px;
}
.page-title-banner {
    min-height: 300px;
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}
    .page-title-banner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #101010;
    z-index: -1;
    opacity: .5;
    }

.page-title-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}
.page-title-banner p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    width: 50%;
}

.breadcrumb-sec {
    /*background: #f8fafc;*/
    background: #f8fafc;
    padding: 10px 0px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.breadcrumb {
  margin-bottom: 0px;
}


ol.breadcrumb li.breadcrumb-item{
    font-size: 16px;
    font-weight: 400;  
}
.breadcrumb-item.active {
    color: #000;
}

.breadcrumb-item a {
    color: #0070ad;
}

.about-item-section .left-align-icon {
    border: 1px solid #000;
    padding: 22px;
    height: 98%;
}

.single-service-section img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    margin-bottom:25px;
    width: 100%;
}
.single-service-content ul {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin: 30px 0 20px;
}
.single-service-content ul li {
    width: 45%;
    position: relative;
    margin-bottom: 20px;
    padding-left: 35px;
}
.single-service-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -webkit-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -moz-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -ms-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background-color: rgb(244 87 46 / 26%);
    color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}
.single-service-content h1, .single-service-content h2, .single-service-content h3,.single-service-content h4, .single-service-content h5, .single-service-content h6 {
    clear: both;
}
.widget-area .widget {
    margin-top: 35px;
    -webkit-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    -moz-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    -ms-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    background-color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.widget-area .widget:first-child {
    margin-top: 0;
}
.widget-area .widget .widget-title {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    font-weight: bold;
    font-size: 20px;
}
.widget-area .widget .widget-title::before {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
}
.widget-area .widget_services_list ul li a {
    display: block;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 35px;
    color: #5d6576;
    z-index: 1;
    font-weight: 500;
    font-size: 16px;
}
.widget-area .widget_services_list ul li a i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.widget-area .widget_services_list ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    opacity: 0;
    visibility: hidden;
}
.widget-area .widget_services_list ul li a.active::before, .widget-area .widget_services_list ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.widget-area .widget_services_list ul li a.active, .widget-area .widget_services_list ul li a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding-left: 20px;
}
.widget_form .row>div {
    width: 100%;
}
.widget_form .form-control {
    padding: 12px 20px;
    background-color: #f6f6f6;
}
.widget_form .form-field .ajax-loader {
    position: absolute;
    right: 0;
    top: 15px;
}
.widget_form .form-field {
    position: relative;
    margin-bottom: 15px;
}
.widget_form .form-submit .btn{
    width:100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.pagination-area {
    margin-top: 20px;
    text-align: center;
}
.pagination-area .page-numbers {
    width: 40px;
    height: 40px;
    margin: 0 2px;
    display: inline-block;
    background-color: #ffffff;
    line-height: 40px;
    color: #121521;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -ms-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
    background: var(--secondary-color);
    color: #ffffff;
}
.entry-meta {
    margin-bottom: 20px;
}
.entry-meta li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}
.entry-meta li::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -15px;
    width: 8px;
    height: 2px;
    background: var(--secondary-color);
}
.entry-meta li:last-child::before {
    display:none;
}
.entry-meta li span {
    color: #000;
}
.widget-area .widget_fovia_posts_thumb .item {
    overflow: hidden;
    margin-bottom: 20px;
}
.widget-area .widget_fovia_posts_thumb .item:last-child {
    margin-bottom: 0px;
}
.widget-area .widget_fovia_posts_thumb .item .thumb {
    float: left;
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 80px;
    margin-right: 15px;
}
.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.widget-area .widget_fovia_posts_thumb .item .info {
    overflow: hidden;
}
.widget-area .widget_fovia_posts_thumb .item .info time {
    display: block;
    color: #7d7d7d;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}
.widget-area .widget_fovia_posts_thumb .item .info h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.widget-area .widget_fovia_posts_thumb .item  .info a{
    color: #000;
}
.contact-map iframe {
    width: 100% !important;
    height: 500px !important;
    vertical-align: middle;
/*  -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);*/
}
.container-bg-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 69px 30px 52px 100px;
    margin-bottom: -105px;
    z-index: 1;
}
.contact-link-item {
    position: relative;
    display: inline-block;
    padding-left: 95px;
}
.contact-link-item .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    line-height: 73px;
    text-align: center;
    font-size: 30px;
    background: #fff;
    border-radius: 50%;
    color:var(--secondary-color);
}
.contact-link-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.contact-link-item p, .contact-link-item a {
    color: #fff;
}
.contact-link-item a:hover {
    color: #fff;
}
.page-404 img {
    max-width: 80%;
}
.archive-subtitle {
    margin-bottom: 15px;
}



@media only screen and (min-width: 1200px) {
.site-header .navbar-nav>li {
    margin-left: 15px;
}   
}

@media only screen and (max-width: 1199px) {
.main-banner {
    height: 550px;
}
.main-banner-content {
    max-width: 550px;
}
.main-banner-content h1 {
    font-size: 50px;
}

.banner-info {
    width: 55%;
}
.banner2-right {
    left: -45px;
}
.blog-grid-content {
    margin-left: 12%;
}

h1, .h1{
    font-size:46px;
}
h2, .h2{
    font-size:40px;
}
h3, .h3{
    font-size:36px;
}
h4, .h4{
    font-size:28px;
}
h5, .h5{
    font-size:24px;
}
h6, .h6{
    font-size:20px;
}   
.feature-box {
    padding: 25px;
}

.site-footer p, .site-footer a {
    word-break: break-all;
}
section.cta-sec {
    padding: 60px 0px 70px 0px;
}


section.cta-sec h2 {
    font-size: 32px;
}
.title {
    font-size: 36px;
}
}

@media only screen and (max-width: 1024px) {
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
.who-we-are {
    margin-top: 50px;
    margin-left: 0px;
}
.who-we-serve-list{
    margin-top: 40px;
}

.who-we-serve-list .heading {
    text-align: left;
    padding: 0px 0px;
}

.myrris-innovation{
    padding: 50px 0px
}
.about-innovation {
    width: 100%;
 }

.seven-values p {
    width: 100%;
}.values-section-content {
    left: 0px;
}.values-section-two .values-section-content {
    left: 0px;
    margin-right: 0px;
}.values-section-one {
    margin-bottom: 0px;
}.values-section-two {
    margin-bottom: 0px;
}section.cta2 {
    margin-top: 40px;
}.cta2 .container {
    padding: 50px 50px;
    border-radius: 0px;
}
.values-section-content {
    padding: 20px 20px;
}.partners-img {
    height: 90px;
    width: 50%;
}.partners-sec img {
    margin-top: 8px;
}.career-apply {
    margin-top: 0px !important;
}.liquidity-section {
    margin-top: 50px;
}
.take_closer_look {
    padding: 50px 0px;
    padding-bottom: 0px;
}.latest-client-info {
    max-width: 48%;
    padding: 40px 20px;
}
}


@media only screen and (max-width: 991px) {
h1, .h1{
    font-size:40px;
}
h2, .h2{
    font-size:33px;
}
h3, .h3{
    font-size:30px;
}
h4, .h4{
    font-size:26px;
}
h5, .h5{
    font-size:24px;
}
h6, .h6{
    font-size:20px;
}
.pb-7 {
    padding-bottom: 60px;
}

.pt-7 {
    padding-top: 60px;
}
.site-header {
    padding: 0;
}
.header-logo img {
    width: 240px;
    height: auto;
}

.navigation-bar .navbar-toggler {
    position: absolute;
    right: 0;
    z-index: 999;
}

.site-header .navbar {
    padding: 15px 0 !important;
}
.site-header .navbar-collapse{
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 80%;
    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    background: #f2f2f2;
     
}
.site-header .navbar-collapse.show {
    padding: 0px 0px;
    visibility: visible;
    transform: translateX(0);
    top: 0px;
}

.site-header .navbar-nav>li {
    position: relative;
    margin-left: 0px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgb(220 230 245 / 25%);
}
.site-header .navbar-nav>li:last-child{
    border:none;
}
.site-header .navbar-nav>li>a {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
    padding-right: 25px;
    color: #fff;
}
.site-header .navbar-nav>li{
    color: #fff;
}
.site-header .navbar-nav>li .dropdown-icon {
    display: inline-block;
    position: absolute;
    right: 15px;
    font-size: 24px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    top: 8px;
}
.site-header li.menu-btn {
    padding: 20px 25px;
}
.site-header li.menu-btn a {
    color: #fff;
    text-align: center;
    margin:0;
}
.site-header .navbar-nav .menu-item-has-children>a:after{
    display:none;
}
.site-header li.menu-btn a {
    background: var(--secondary-color);
}
.site-header .navbar-nav>li .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    padding: 0;
    width: 100%;
    margin: 0;
    border: none;
    display:none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none;
}
.site-header .navbar-nav>li .sub-menu li {
    padding: 0;
    border-bottom: 1px solid rgb(220 230 245 / 25%);
    color:#fff;
}
.site-header .navbar-nav>li .sub-menu li:last-child{
    border:none;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 35px;
    padding-right: 25px;
    color: #fff;
    font-size: 16px;
}
.site-header .navbar-nav>li .sub-menu li a:hover {
    color: #fff;
}
.site-header .navbar-nav>li.current-menu-item>a, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
    color: var(--secondary-color);
}
.site-header ul li .dropdown-icon.active:before {
    content: '\f068';
}
.main-banner-content h1 {
    font-size: 42px;
}
.main-banner-content {
    max-width: 650px;
    padding-right: 50px;
}


.owl-nav button.owl-next {
    right: -5px;
    left: auto;
}
.owl-nav button.owl-prev {
    left: -5px;
}
.home-slider .owl-nav button {
    right: 15px;
    left:auto;
}
.owl-dots {
    margin-top: 10px;
}
.form-control {
    padding: 16px 20px;
}
.blog-grid-content .post-date {
    right: 15px;
    top: -25px;
    width: 80px;
    height: 80px;
    border-width: 4px;
}
.blog-grid-content {
    padding: 20px;
}
.post-info {
    font-size: 14px;
}

.single-service-content ul li {
    width: 100%;
}


    .main-banner {
        height: 500px;
    }
.about_img img {
    width: 100%;
}
    section.cta-sec {
        padding: 60px 0px 0px 0px;
    }



.main-banner-content h1 {
        font-size: 36px;
        line-height: 56px;
    }
.heading h2 {
    font-size: 30px;
}.service-sec {
    margin-bottom: 30px;
}.industry-list ul li {
    width: 100%;
}

.banner2-right {
    left: 4%;
    width: 90%;
    top: -40px;
}

.banner2-right h3 {
    font-size: 22px;
}.banner2-right p {
    font-size: 16px;
}


.stories-sec {
    max-width: 700px;
    padding: 30px 20px;
}
.stories-sec h4 {
    font-size: 25px;
}
.stories-sec p {
    font-size: 16px;
}

.get-started-sec h3 {
    font-size: 30px;
}
.get-started-sec p {
    line-height: 30px;
    font-size: 18px;
}
.services-offer {
    padding-bottom: 35px;
}.solutions-info img {
    height: 200px;
}.who-info {
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid#ccc;
    padding-bottom: 20px;
}.who-info {
    margin-top: 20px;
    margin-bottom: 50px;
}section.about-section.about-sec.pt-7.pb-7 {
    padding-top: 0px;
}
.counter-sec h4 {
    font-size: 30px;
 }.counter-sec {
    padding: 20px 0px;
}.myrris-innovation {
    padding: 20px 0px;
}.about-innovation p {
    font-size: 28px;
}.events-sec {
    margin-bottom: 30px;
}.heading.partners {
    padding-top: 0px !important;
}
.solutions-list .solutions_sec {
    position: relative;
    left: 0px;
}.liquidity-content {
    padding-left: 0px;
}.take_closer_look .pl-padding {
    margin-left: 0px;
}.who-we-serve-list {
    padding: 30px;
}.we-serve-content {
    padding: 30px 0px;
}    .liquidity-section {
        margin-top: 0px;
    }
    .liquidity-section {
    padding-bottom: 20px;
}.take_closer_look {
    margin-top: 0px !important;
}
.who-we-serve-list ul {
    justify-content: flex-start;
}
.page-title-banner p {
    width: 60%;
}
}

@media (max-width: 768px) {

  .accordion.horizontal {
    display: block;
    height: auto;
  }

  .accordion.horizontal .accordion-item {
    display: block;
    width: 100%;
  }

  .accordion.horizontal .accordion-button {
    writing-mode: horizontal-tb;
    transform: rotate(0);
    text-align: left;
  }

  .accordion.horizontal .accordion-collapse {
    display: none;
  }
  .accordion.horizontal .accordion-item.active .accordion-collapse {
    display: block;
  }
    .solutions-info img {
        height: 300px;
    }.accordion.horizontal .accordion-button {
    font-size: 21px;
}.solutions-info h4 {
    font-size: 21px;
}
.location-sec {
    margin-bottom: 30px;
}
}





@media only screen and (max-width: 767px) {
body {
    font-size: 16px;
}
h1, .h1{
    font-size:30px;
}
h2, .h2{
    font-size:28px;
}
h3, .h3{
    font-size:26px;
}
h4, .h4{
    font-size:24px;
}
h5, .h5{
    font-size:22px;
}
h6, .h6{
    font-size:18px;
}
.btn {
    font-size: 14px;
}
.main-banner-content .btn {
    min-width: 240px;
}
.site-header .navbar-nav>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.site-header .navbar-nav>li .dropdown-icon {
    right: 5px;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 15px;
}
.main-banner-content h1 {
    font-size: 30px;
}
.btn {
    padding: 14px 50px 13.5px 20px;
}
.home-slider .container {
    padding: 0 15px;
}
.home-slider .owl-nav button {
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 42px !important;
    font-size: 24px !important;
}
.home-slider .owl-nav button.owl-prev {
    margin-top: 25px;
}
.home-slider .owl-nav button.owl-next {
    margin-top: 25px;
}

.site-footer h2, .footer-logo {
    margin-bottom: 20px;
        font-size: 22px;
}
.copyright-area p {
    max-width: 400px;
    margin: 0 auto;
}
.go-top {
    right: 15px;
    bottom: 15px;
}
.site-header .navbar {
    padding: 10px 0 !important;
}
.main-banner {
    height: 450px;
}
.owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 24px !important;
    line-height: 42px !important;
}
.page-title-banner {
    min-height: 200px;
}
.left-align-icon {
    margin: 0 auto;
}
.about-item-section .row>div+div {
    margin-top: 40px;
}

.single-service-section img {
    margin-bottom: 25px;
}
.single-service-content ul {
    margin: 20px 0 10px;
}
.blog-grid-content .post-date {
    top: -32px;
}
.blog-grid-content .post-date h3 {
    font-size: 28px;
}
.container-bg-box {
    margin-bottom: 60px;
}
.contact-link-item {
    margin-bottom: 30px;
    padding-left: 65px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.contact-link-item:last-child {
    margin-bottom: 0px;
}
.contact-link-item .icon-box {
    width: 50px;
    height: 50px;
    line-height: 54px;
    font-size: 22px;
}
.contact-map iframe {
    height: 350px !important; 
}
section.cta-sec a {
    font-size: 16px;
    width: 90%;
    margin-bottom: 10px;
}.get-started {
    padding: 40px 30px;
}.blog-grid-content {
    margin-left: 6%;
}.banner-info {
    width: 70%;
}
.industry-list ul li a i {
    position: absolute;
    left: 0;
}
.industry-list ul li a {
    padding-left: 40px;
        font-weight: 500;
    font-size: 20px;
}.container {
    padding-left: 18px;
    padding-right: 18px;
}.accordion.horizontal .accordion-item {
    border-bottom: 1px solid #d7d7d7;
}.accordion.horizontal .accordion-item {
    border-top: 1px solid#d7d7d7 !important;
}.who-info {
    margin-bottom: 10px;
}.values-section-content .heading {
    padding-top: 0px;
    padding-bottom: 10px;
}section.values-section-two .row.align-items-center {
    flex-direction: column-reverse;
}.cta-heading.text-end {
    text-align: center !important;
    margin-top: 20px;
}.cta-heading h2 {
    font-size: 24px;
    text-align: center;
}.cta-heading p {
    text-align: center;
}
.cta2 .container {
    padding: 40px 30px;
}section.events-conferences.mt-5 {
    margin-top: 0px !important;
}
.who-sec img {
    margin-top: 20px;
}
.latest-client .owl-controls {
    bottom: 20px;
    left: 80%;
    width: 30%;
    padding: 20px 50px 20px 20px;
}
.featured-stories button.owl-next:after {
   top: 3px;
}

.featured-stories button.owl-prev:after {
   top: 3px;
}
.latest-client-info h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
}
.latest-client-info {
    max-width: 55%;
 }
 .who-we-serve .heading {
    text-align: left;
    padding: 0px 0px;
}.page-title-banner p {
    width: 80%;
}
}



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

  .heading h2,
  section.cta-sec h2,
  .solutions-list .heading h2 {
    font-size: 26px;
  }

  .page-title-banner h1 {
    font-size: 21px;
  }

  .career-form h1 {
    font-size: 21px;
    font-weight: 500;
  }

  .services-info h4 {
    font-size: 21px;
  }

  .blog-grid-content h3 a {
    font-size: 21px;
    line-height: 30px;
  }

  .latest-client-info h4 {
    font-size: 24px;
    line-height: 26px;
  }

  section.about-section.about-sec p,
  .get-started-sec p,
  .main-banner-content p {
    font-size: 16px;
    line-height: 28px;
  }

  section.cta-sec p {
    margin-bottom: 20px;
    line-height: 32px;
  }

  .about-innovation p {
    font-size: 25px;
    line-height: 38px;
  }

  section.about-section.pt-7.pb-7 {
    padding-bottom: 0;
  }

  section.about-section.about-sec.pt-7 {
    padding-top: 0;
  }

  .banner-sec2 {
    margin-top: 60px;
    padding-bottom: 30px;
  }

  section.our-solutions {
    margin-top: 170px !important;
  }

  .stories-sec {
    padding-bottom: 100px;
  }

  .solutions-list {
    padding: 50px 0;
    background: #f3f3f3;
  }

  .who-we-are {
    margin-top: 30px;
  }

  .top-header ul {
    justify-content: center;
  }

  .top-header ul li a {
    padding: 10px;
    font-size: 14px;
  }

  .page-title-banner {
    min-height: 200px;
  }

  .banner-info {
    width: 100%;
    padding: 30px;
    bottom: -150px;
  }

  .main-banner-content {
    max-width: 100%;
    padding: 0;
  }

  .main-banner-content p {
    margin: 10px 0 0;
  }

  .global-btn2 {
    padding: 12px 20px;
    font-size: 15px;
  }

  .apply-now-btn {
    margin-bottom: 10px;
  }

  .content-box .img-box {
    width: 150px;
  }

  .service-sec img {
    height: 250px;
  }

  .featured-stories .our-stories img {
    height: 300px;
  }

  .partners-img {
    width: 40%;
    height: auto;
  }

  .partners-sec img {
    width: 100%;
    margin-top: 8px;
  }

  .featured-stories .owl-controls {
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    bottom: 5%;
    padding: 15px 30px 15px 20px;
  }

  .featured-stories button.owl-prev:after,
  .featured-stories button.owl-next:after {
    top: -3px;
    font-size: 18px;
  }

  .who-we-serve-list ul {
    display: block;
    justify-content: flex-start;
  }

  .who-we-serve-list li.nav-item button {
    padding: 12px 0;
  }

  .who-we-serve-list li.nav-item .active:after {
    bottom: 0;
  }


  .take_closer p {
    height: auto;
  }

  .latest-client-info {
    max-width: 100%;
  }

  .copyright-area .text-end {
    text-align: left !important;
    margin-top: 10px;
  }

.featured-stories .heading {
  padding: 30px;
}

.latest-stories {
  padding: 70px 0 110px;
}

.solutions_sec .owl-nav button {
  margin: 0 65px;
}

section.featured-stories.latest-client .owl-controls {
  width: 50%;
}

.page-title-banner p {
  width: 95%;
}section.solutions-list .heading {
    padding-bottom: 0px;
}
}