:root {
  --color-primary: #0b5be0;
  --color-dark: #000000;
  --color-secondary-dark: #212529;
  --color-white: #ffffff;
  --color-gray: #687188;
  --color-light-gray: #f5f7f9;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Asap", sans-serif;
  background-color: var(--color-white);
  font-size: 16px;
  color: var(--color-gray);
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: var(--color-dark);
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  color: var(--color-gray);
  line-height: 1.7em;
}

a {
  text-decoration: none;
  text-decoration-line: none;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

/*:hover{
  -webkit-transition: .3s;
     -moz-transition: .3s;
      -ms-transition: .3s;
       -o-transition: .3s;
          transition: .3s;
}*/

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--color-secondary-dark);
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0px 0px transparent inset, 0 0 0px rgba(126, 239, 104, 0);
  outline: none;
}

.form-control {
  box-shadow: inset 0 0px 0px transparent;
}

.form-control:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px transparent, 0 0 0px rgba(102, 175, 233, 0);
  box-shadow: inset 0 0px 0px transparent, 0 0 0px rgba(102, 175, 233, 0);
  border-color: var(--color-primary) !important;
}

select {
  cursor: pointer;
}

.form-control::-webkit-input-placeholder {
  color: var(--color-dark);
}

.form-control:-moz-placeholder {
  color: var(--color-dark);
}

.form-control::-moz-placeholder {
  color: var(--color-dark);
}

.form-control:-ms-input-placeholder {
  color: var(--color-dark);
}

.main-wraper {
  position: relative;
  overflow: hidden;
}

.light-bg {
  background: var(--color-light-gray);
}

.small {
  color: var(--color-primary);
}

.btn:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

/*----------------------
  pre loader start
--------------------*/

#load {
  margin: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  z-index: 120000;
}

.brand-txt {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}

.loader {
  width: 20em;
  height: 20em;
  font-size: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader .si-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: si-loader 3s linear infinite;
}

.loader .si-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  border-color: currentColor transparent transparent currentColor;
  border-width: 0.2em 0.2em 0em 0em;
  --deg: -45deg;
  animation-direction: normal;
}

.loader .si-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  color: #2196F3;
  border-color: currentColor currentColor transparent transparent;
  border-width: 0.2em 0em 0em 0.2em;
  --deg: -135deg;
  animation-direction: reverse;
}

.loader .si-ring .circle {
  position: absolute;
  width: 50%;
  height: 0.1em;
  top: 50%;
  left: 50%;
  background-color: transparent;
  transform: rotate(var(--deg));
  transform-origin: left;
}

.loader .si-ring .circle::before {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  content: '';
  width: 1em;
  height: 1em;
  background-color: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 2em,
    0 0 4em,
    0 0 6em,
    0 0 8em,
    0 0 10em,
    0 0 0 0.5em rgba(255, 255, 0, 0.1);
}

@keyframes si-loader {
  to {
    transform: rotate(1turn);
  }
}

/*----------------------
    pre loader end
--------------------*/

/*-----------
topbar start
----------*/

.contact-info ul li {
  padding-top: 10px;
  padding-bottom: 8px;
  font-size: 14px;
}

.topbar {
  background: var(--color-light-gray);
}

.topbar ul li {
  display: inline-block;
}

.contact-info {
  display: inline-block;
  width: calc(100% - 280px);
}

.contact-info ul li {
  padding-top: 10px;
  padding-bottom: 8px;
}

.contact-info ul li i {
  display: inline-block;
  vertical-align: middle;
  padding-right: 2px;
  color: var(--color-primary);
}

.contact-info ul>li+li {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ececec;
}

.contact-info ul li a {
  color: var(--color-gray);
}

.contact-info ul li a:hover {
  color: var(--color-primary);
}

.topbar-social {
  display: inline-block;
  width: 270px;
}

.topbar-social ul li {
  padding: 10px;
  border-left: 1px solid #ececec;
}

.topbar-social a {
  font-size: 14px;
  color: var(--color-gray);
}

.topbar-social a:hover {
  color: var(--color-primary);
}

a.btn-touch {
  color: var(--color-white);
  background: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a.btn-touch:hover {
  color: var(--color-primary);
  background: var(--color-white);
}

/*----------
topbar over
---------*/
/*-----------
Navbar start
----------*/

.cm-header{
  position: absolute;
  width: 100%;
  z-index: 1038;
}

.navbar-custom {
  background: var(--color-white);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-custom .navbar-toggler {
  background: var(--color-primary);
  color: var(--color-white);
}

.nav-brand {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 600;
}

.nav-brand img {
  max-width: 200px;
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
}

.navbar-custom .nav-item .nav-link {
  color: #6879ab;
  font-weight: 500;
  position: relative;
}

.navbar-custom .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 50px;
  bottom: 0;
  left: 21px;
  transition: .4s;
}

.navbar-custom .nav-item:hover .nav-link {
  color: var(--color-primary);
}

.navbar-custom .nav-item:hover .nav-link:before {
  width: 30%;
}

.navbar-custom .nav-item .nav-link.menu-active {
  color: var(--color-primary);
}

.navbar-custom .nav-item .nav-link.menu-active:before {
  width: 30%;
}

.sticky-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 2px 32px #21252932;
  z-index: 1038;
}

.sticky-nav .nav-brand img {
  max-width: 140px;
}

/*----------
Navbar end
---------*/

/*------------------
Mobile navbar start
-----------------*/

.mobile-nav {
  position: fixed;
  top: 107px;
  bottom: 0;
  height: 100%;
  display: none;
  /*background: rgba(0, 123, 255, 0.53);*/
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  z-index: 1;
}

.mb-nav {
  height: 100%;
  padding: 15px;
}

.mb-nav .nav-item+.nav-item {
  border-top: 1px solid var(--color-white);
}

.mb-nav a {
  color: var(--color-white);
}

/*-----------------
Mobile navbar end
----------------*/

.main-wrapper{
  padding-top: 128px;
}

/*------------
slider start
----------*/
.main-slider {
  width: 100%;
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

.main-slider .swiper-slide {
  overflow: hidden;
  color: var(--color-white);
}

.main-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.main-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.main-slider .swiper-button-prev,
.main-slider .swiper-button-next {
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-top: -30px;
  text-align: center;
  border-radius: 60px;
}

.main-slider .swiper-button-prev {
  left: 25px;
}

.main-slider .swiper-button-prev:before {
  font-family: "themify";
  content: "\e629";
  font-size: 20px;
  color: var(--color-white);
}

.main-slider .swiper-button-next {
  right: 25px;
}

.main-slider .swiper-button-next:before {
  font-family: "themify";
  content: "\e628";
  font-size: 20px;
  color: var(--color-white);
}

.main-slider .swiper-pagination-bullets,
.main-slider .swiper-pagination-custom,
.main-slider .swiper-pagination-fraction {
  bottom: 45px;
}

.main-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  text-align: center;
  line-height: 10px;
  font-size: 12px;
  color: var(--color-dark);
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
}

.main-slider .swiper-pagination-bullet-active {
  color: var(--color-white);
  background: #007aff;
}

.main-slider .slide-title {
  max-width: 480px;
}

.main-slider .slide-title h2 {
  font-size: 60px;
  font-size: 4rem;
  color: var(--color-white);
  margin: 0 0 0.45em;
}

.main-slider .slide-text {
  max-width: 550px;
}

.main-slider .slide-text p {
  font-size: 18px;
  font-size: 1.2rem;
  color: var(--color-white);
  margin: 0 0 1.5em;
  text-transform: capitalize;
}

.main-slider-si .slide-btns>a:first-child,
.main-style-1 .slide-btns>a:first-child,
.main-style-3 .slide-btns>a:first-child {
  margin-right: 25px;
}

.main-style-3 {
  width: 100%;
  height: 700px;
}

.btn-theme {
  color: var(--color-white);
  min-width: 120px;
  padding: .60rem 20px;
  padding-right: 40px;
  background: var(--color-primary);
  position: relative;
}

.btn-theme i {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(-10%, -50%);
  font-size: 14px;
  text-decoration: none;
  margin-top: 2.5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-theme:hover {
  /*color: #2196F3;
  background: var(--color-white);*/
  color: var(--color-white);
}

.btn-theme:hover i {
  right: 6%;
}

/*----------
slider end
---------*/

/*-----------------------
common class style start
----------------------*/
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: left;
  margin-bottom: 50px;
}

/*-----------------------
common class style end
----------------------*/
/*-------------
about us start
------------*/
.abt-section-padding {
  padding: 200px 0 110px 0;
}

.abt-section .section-title {
  text-align: left;
  margin-bottom: 40px;
}

.section-title>span {
  font-size: 14px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: -3px 0 0;
}

.section-title h2 {
  font-size: 36px;
  margin: 0.1em 0 0;
}


.about-section .about-details p {
  padding-bottom: 1.5em;
  text-align: justify;
}

.about-section ul {
  list-style: none;
  margin-bottom: 35px;
}

.about-section ul li {
  position: relative;
  padding-left: 30px;
}

.about-section ul li:before {
  font-family: "Themify";
  content: "\e6bc";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

.about-section ul>li+li {
  margin-top: 8px;
}

.about-section .img-holder {
  position: relative;
}

.about-section .img-holder:before {
  content: "";
  background: url("../images/about-dot.png") center center/cover no-repeat local;
  width: 386px;
  height: 374px;
  position: absolute;
  right: -100px;
  bottom: 0;
}

.about-section .img-holder img {
  border-radius: 10px;
}

.about-section .img-holder>img:first-child {
  position: relative;
  z-index: 1;
}

.about-section .img-holder>img:last-child {
  position: absolute;
  right: 0;
  top: -110px;
}

/*-----------
about us end
----------*/

/*----------------
our service start
---------------*/

.services-section {
  background-color: var(--color-light-gray);
  padding-bottom: 100px;
}

.services-section .services-grid {
  margin: 0 -15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.services-section .services-grid .grid {
  width: calc(33.33% - 30px);
  background-color: var(--color-white);
  padding: 30px 50px;
  float: left;
  margin: 0 15px 30px;
  position: relative;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.services-section .services-grid .grid:hover {
  box-shadow: 0 30px 60px 0 #6871883b;
}

.services-section .services-grid .icon {
  margin-bottom: 15px;
}

.services-section .icon i:before {
  font-size: 50px;
  font-size: 3.33333rem;
  background: -webkit-linear-gradient(var(--color-primary), #06347f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-section h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.3em 0 0.7em;
  text-transform: capitalize;
}

.services-section h4 a {
  color: #151221;
}

.services-section h4 a:hover {
  color: var(--color-primary);
}

.services-section p {
  margin: 0;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-more {
  display: inline-block;
  background: var(--color-primary)18;
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 6px;
}

.service-more:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.services-section .all-service {
  text-align: center;
}

.services-section .all-service p {
  font-style: italic;
  margin: 0;
}

.services-pg-section-s2 {
  background-color: #f8f9ff;
  padding-bottom: 70px;
}

/*--------------
our service end
-------------*/


/*------------------
quick contact strat
-----------------*/

.cta-section {
  background: rgba(6,52,127,1);
  background: -moz-linear-gradient(left, rgba(6,52,127,1) 0%, rgba(11,93,224,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(6,52,127,1)), color-stop(100%, rgba(11,93,224,1)));
  background: -webkit-linear-gradient(left, rgba(6,52,127,1) 0%, rgba(11,93,224,1) 100%);
  background: -o-linear-gradient(left, rgba(6,52,127,1) 0%, rgba(11,93,224,1) 100%);
  background: -ms-linear-gradient(left, rgba(6,52,127,1) 0%, rgba(11,93,224,1) 100%);
  background: linear-gradient(to right, rgba(6,52,127,1) 0%, rgba(11,93,224,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#06347f', endColorstr='#0b5de0', GradientType=1 );
  padding: 20px 0;
}

.cta-section .cta-content {
  position: relative;
  padding: 40px 0;
}

.cta-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

.btn-contact {
  color: #0952c9;
  background: var(--color-white);
  font-weight: 600;
}

.btn-contact i {
  font-weight: 700;
}

.btn-contact:hover {
  color: #0952c9
}

/*-----------------
quick contact end
----------------*/

/*--------------------
counter section start
-------------------*/
.counter-section {
  background-color: var(--color-light-gray);
}

.counter-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px;
}

.counter-box:hover {
  box-shadow: 0 30px 60px 0 #6871883b;
}

.counter-title {
  color: #151221;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.counter-icon {
  color: #2196F3;
  font-size: 40px;
  margin-bottom: 15px;
}

.si-counter,
.si-sup {
  font-size: 30px;
  font-weight: 500;
}

.count-year {
  position: relative;
}

/*.count-year:after{
  position: absolute;
  content: "+";
  font-size: 22px;
  top: -5px;
  right: 43%;
}*/

/*-------------------
counter section end
-----------------*/

/*---------------
contact us start
--------------*/

/*.contact-wrapper {
  background: url("../images/contact-bg.jpg") center center/cover no-repeat local;
  position: relative;
  padding-bottom: 65px;
}

.contact-wrapper:before {
  content: "";
  background-color: rgba(245, 247, 249, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-wrapper .content-area p {
  font-style: italic;
  text-align: center;
  padding: 0 45px;
  margin-bottom: 2.5em;
}

.contact-wrapper form input,
.contact-wrapper form select,
.contact-wrapper form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 0;
  border-bottom: 1px solid #d0d4df;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-left: 0;
}

.contact-wrapper form input:focus,
.contact-wrapper form select:focus,
.contact-wrapper form textarea:focus {
  border-color: var(--color-primary);
}

.contact-wrapper form textarea {
  height: 140px;
}

.contact-wrapper form {
  margin: 0 -7.5px;
  overflow: hidden;
}

.contact-wrapper form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: var(--color-gray);
}

.contact-wrapper form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: var(--color-gray);
}

.contact-wrapper form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: var(--color-gray);
}

.contact-wrapper form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: var(--color-gray);
}

.contact-wrapper form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 12px;
  font-size: 15px;
  font-size: 1rem;
}

.contact-wrapper form select {
  color: var(--color-gray);
  padding-left: 0;
}

.contact-wrapper form > div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}

.contact-wrapper form .fullwidth {
  width: calc(100% - 15px);
  float: none;
  clear: both;
}

.contact-wrapper .submit-area {
  width: 100%;
  float: none;
  clear: both;
  text-align: center;
}*/

/*** contact form error handling ***/
/*.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.93333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: var(--color-primary);
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
  width: 100%;
  color: var(--color-white);
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}*/

/*-------------
contact us end
-------------*/

/*--------------------
New contact us start
------------------*/
.si-contact-wrapper {
  background: url("../images/contact-bg.jpg") center center/cover no-repeat local;
  position: relative;
  padding-bottom: 65px;
}

.si-contact-wrapper:before {
  position: absolute;
  content: "";
  background-color: #687188b5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.si-contact-wrapper .section-title span {
  color: var(--color-light-gray);
}

.si-contact-wrapper .section-title h2 {
  color: var(--color-white);
}

.si-input {
  height: 42px;
  border: 1.5px solid #b4d4eb;
  border-radius: 6px;
}

.si-textarea {
  height: unset;
}

.si-input::placeholder {
  color: var(--color-gray);
}

.si-input:-ms-input-placeholder {
  color: var(--color-gray);
}

.si-input::-ms-input-placeholder {
  color: var(--color-gray);
}

.si-label {
  color: var(--color-white);
}

/*--------------------
New contact us end
------------------*/


/*----------------
testimonial start
---------------*/

.testimonial-img-block {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0px 4px 12px 2px var(--color-dark)00032;
}

.user-title {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
}

.user-post {
  font-size: 14px;
}

.user-review {
  position: relative;
  padding: 20px 50px 10px;
  margin: 0;
  font-size: 16px;
}

.quote-left {
  position: absolute;
  top: -12px;
  left: 6px;
  font-size: 40px;
}

.quote-right {
  position: absolute;
  bottom: -12px;
  right: 6px;
  font-size: 40px;
}

/*--------------
testimonial end
-------------*/
/*=============Back to top start=============*/

.si-scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #0947ae;
  color: var(--color-white);
  z-index: 1999;
  cursor: pointer;
}

.si-scroll-top:hover {
  color: var(--color-white);
}


/*=============Back to top end=============*/

/*=============home end=============*/

/*============About us strat============*/

.breadcrumb-section {
  background: url(../images/about.jpg) center center/cover no-repeat local;
  width: 100%;
  height: 300px;
  position: relative;
  text-align: center;
}

.bc-container {
  display: table;
  height: 100%;
}

.bc-row {
  vertical-align: middle;
  display: table-cell;
}

.breadcrumb-section .breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--color-primary);
  ;
}

.breadcrumb-section .breadcrumb li.active a {
  color: #313131;
}

.our-skill-section {
  /*background: var(--color-light-gray);*/
  background: var(--color-white);
  position: relative;
  height: 550px;
  min-height: 550px;
  overflow: hidden;
}

.skill-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skill-content+.skill-content {
  margin-top: 45px;
}

.skill-title {
  font-size: 17px;
  font-weight: 500;
}

.si-progress {
  background: #adb5bdad;
  height: 6px;
  border-radius: 50px;
  overflow: visible;
  box-shadow: 1px 1px 12px #d6d6d6;
}

.si-progress .progress-bar {
  background: var(--color-primary);
  border-radius: 50px;
  overflow: visible;
  position: relative;
}

.si-progress .progress-bar:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50px;
  right: 0;
  box-shadow: 0px 0 12px var(--color-primary)b0;
}

.si-skill-per {
  position: absolute;
  font-size: 13px;
  top: -42px;
  right: -8px;
  background: var(--color-primary);
  padding: 5px;
  border-radius: 6px;
  box-shadow: 0px 0 12px 2px var(--color-primary)61;
}

.si-skill-per span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}

.w-95 {
  width: 95%;
}

.w-90 {
  width: 90%;
}

/*skill bg animation start*/
.skill-animation {
  /*background: #4e54c8;*/
  /*background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8); */
  width: 100%;
  height: 550px;
}

.animation-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.animation-circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(33, 150, 243, 0.22);
  animation: fly-animate 25s linear infinite;
  bottom: -150px;
  padding: 10px;
}

.animation-circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.animation-circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
  padding: 0;
}

.animation-circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.animation-circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.animation-circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.animation-circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.animation-circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.animation-circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.animation-circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.animation-circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes fly-animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 45%;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/*skill bg animation end*/

.video-section {
  background: url(../images/slider/slide-2.jpg) center center/cover no-repeat local;
  background-attachment: fixed;
  width: 100%;
  height: 450px;
  position: relative;
  text-align: center;
}

.video-section:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-dark)00062;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-img {
  border-radius: 50px;
  position: relative;
}

.video-a {
  position: relative;
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto;
}

.video-span {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  border-radius: 50px;
  top: -5px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  padding: 2px;
  border: 3px dashed #ffffffab;
  animation: play-circle 50s linear infinite;
}

.video-desc {
  font-size: 22px;
  color: var(--color-white);
  margin: 0;
}

@keyframes play-circle {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*============About us end============*/

/*============Contact us strat===============*/
.contact-detail-section {
  background-color: var(--color-light-gray);
}

.contact-box {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
}

.contact-box span {
  font-size: 50px;
  color: #2196f3;
}

.contact-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact--inner-info {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

/*============Contact us strat===============*/

/*==============Our sservice start=============*/

.c-padding {
  padding: 30px 0;
}

.common-desc {
  font-style: italic;
  text-align: center;
  padding: 0 45px;

}

.service-block {
  background: var(--color-light-gray);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: .4s;
}

.service-inner {
  padding: 20px;
}

.s-sub-title {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.s-title {
  color: var(--color-dark)000a2;
  text-transform: uppercase;
}

.s-detail {
  text-align: justify;
}

.service-block:hover {
  box-shadow: 0 0 6px 0 #607d8b42;
  margin-top: -5px;
}

/*==============Our sservice end=============*/

/*==============portfolio start=============*/

.port-grid {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.port-img {
  transition: .5s ease;
}

.port-grid:hover .port-img {
  transform: scale(1.05);
}

/*.port-view{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #2196f394;
}

.port-view span{
  color: white;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.port-grid:hover .port-view{
  opacity: 1;
}*/

.tab-content>.tab-pane,
.tab-content>.tab-pane.show.active {
  transition: .4s;
}

/*==============portfolio end=============*/


/*==============portfolio other start=============*/

#filters {
  margin: 10px 0 25px;
  padding: 0;
  list-style: none;
}

/*#filters li {
  float:left;
}*/

#filters li span {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #6879ab;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid #6879ab42;
  cursor: pointer;
}

#filters li span.active {
  background: var(--color-primary);
  color: var(--color-white);
}

#portfoliolist {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  /*grid-template-columns: repeat(3, 1fr);*/
}

#portfoliolist .portfolio {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin: 0;
  padding: 10px;
  display: none;
  overflow: hidden;
}

.portfolio-wrapper {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.port-img {
  transition: .5s ease;
}

.portfolio-wrapper:hover .port-img {
  transform: scale(1.05);
}

.port-title {
  margin: 0;
  padding: 8px 0;
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

.port-title:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 65%;
  left: 0;
  top: 7px;
  bottom: 0;
  background: var(--color-primary);
  border-radius: 50px;
}

/*==============portfolio other end=============*/
/*==============footer start=============*/
.footer {
  background: var(--color-light-gray);
  padding-top: 80px;
  position: relative;
}

.pb-30 {
  padding-bottom: 40px;
}

.f-desc {
  color: var(--color-gray);
  text-align: justify;
}

.f-title {
  padding-left: 12px;
  color: var(--color-secondary-dark);
  margin-bottom: 24px;
}

.f-menu-block li a {
  color: var(--color-gray);
  font-size: 14px;
}

.fm-link {
  position: relative;
  padding-left: 30px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.fm-link:before {
  position: absolute;
  content: "\e661";
  font-size: 13px;
  top: 8px;
  left: 10px;
  font-family: "themify";
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.fm-link:hover,
.fm-link:hover :before {
  color: var(--color-primary);
}

.fm-link:hover:before {
  left: 12px;
}

.fc-link {
  position: relative;
  padding-left: 40px;
}

.fc-link:before {
  position: absolute;
  content: "\e621";
  font-size: 14px;
  top: 8px;
  left: 10px;
  font-family: "themify";
}

.fc-sm-link {
  padding-top: 0;
}

.fc-sm-link:before {
  display: none;
}

.fc-email:before {
  content: "\e75a";
}

.fc-link:hover {
  color: var(--color-primary);
}

.si-copyright {
  padding: 25px 0;
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, .075);
}

.f-social-li+.f-social-li {
  margin-left: 8px;
}

.f-social-a {
  padding: 0;
  width: 35px;
  height: 35px;
  color: var(--color-gray);
  background: #68718842;
  border-radius: 50px;
  line-height: 35px;
  text-align: center;
  font-size: 17px;
}

.f-social-a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/*==============footer end=============*/

/*==============Our Services start=============*/
.serv-section,
.pb-50 {
  padding-bottom: 50px;
}

.serv-section ul li:before {
  content: "\e65d";
}

/*==============Our Services end=============*/

/*.contact-li{
  position: relative;
  padding-left: 50px;
}
.mail-li{
 line-height: 40px; 
}
.tel-li, .mail-li{
  display: inline-block;
  vertical-align: top;
  width: 49%;
  margin-top: 30px;
}

.tel-li a, .mail-li a{
  color: var(--color-gray);
}

.contact-li:before{
  font-family: 'themify';
  position: absolute;
  font-size: 25px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 0;
  color: var(--color-primary);
  background: var(--color-primary)18;
  text-align: center;
  border-radius: 6px;
}
.add-li:before{
  content: "\e693";
}

.tel-li:before{
  content: "\e621";
}

.mail-li:before{
  content: "\e75a";
}*/

.contact-block {
  /*background-color: var(--color-light-gray);*/
  padding: 5px;
  border-radius: 10px;
}

.contact-block .si-label {
  color: var(--color-secondary-dark);
}

.contact-block .si-input {
  border: 1px solid #607d8b92;
}


.fetures-block {
  background: rgba(11, 91, 224, 0.05);
  padding: 30px;
  border-radius: 10px;
}

.fetures-block p {
  font-size: 18px;
  margin: 20px 0 0;
}

/*==============Our Services new start=============*/

.serv-nav {
  border-radius: 6px;
  border: 1px solid #68718852;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.serv-nav .nav-link {
  padding: 12px 15px;
  border-radius: 0;
}

.serv-nav .nav-link+.nav-link {
  border-top: 1px solid #68718852;
}

.serv-nav .nav-link.active,
.serv-nav .show>.nav-link {
  background: var(--color-primary);
}

.serv-ul li {
  position: relative;
  padding-left: 30px;
}

.serv-ul li+li {
  margin-top: 10px;
}

.serv-ul li:before {
  font-family: "Themify";
  content: "\e65d";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

.serv-sub-title {
  margin: 30px 0;
}

.mt-30 {
  margin-top: 30px;
}

/*==============Our Services new end=============*/

.dragscroll {
  overflow-y: hidden;
  overflow-x: auto;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: grab;
}

/*==============New Contact us start=============*/

.contact-detail {
  background: var(--color-white);
  box-shadow: 0 0 30px var(--color-primary)32;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.contact-icon {
  font-size: 35px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--color-primary);
  background: var(--color-primary)18;
  text-align: center;
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
}

.contact-desc {
  margin-bottom: 0;
  margin-top: 20px;
}

.contact-desc a {
  color: var(--color-gray);
}

.contact-desc a:hover {
  color: var(--color-primary);
}

.mt-60 {
  margin-top: 60px;
}

.c-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: 0 0 30px var(--color-primary)32;
  border-radius: 10px;
  padding: 10px 0;
  margin: 0 15px;
}

/*==============New Contact us end=============*/

/*==============Portfoli page start=============*/

.portfolio-section #portfoliolist .portfolio {
  flex: 0 0 50%;
  max-width: 50%;
}

/*==============Portfoli page end=============*/