* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  word-wrap: break-word;
}

body {
  color: #000;
  line-height: 1.3;
  font-weight: 400;
  font-size: 14px;
  font-family: 'TitilliumWeb-Regular';
  overflow-x: hidden !important;
}

@font-face {
  font-family: 'TitilliumWeb-Regular';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/TitilliumWeb-Regular.eot');
  src: local('?'),
    url('../fonts/TitilliumWeb-Regulard41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/TitilliumWeb-Regular.html') format('woff'),
    url('../fonts/TitilliumWeb-Regular.ttf') format('truetype'),
    url('../fonts/TitilliumWeb-Regular-2.html#TitilliumWeb-Regular') format('svg');
}

@font-face {
  font-family: 'TTitilliumWeb-Bold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/TitilliumWeb-Bold.eot');
  src: local('?'),
    url('../fonts/TitilliumWeb-Boldd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/TitilliumWeb-Bold.eot') format('woff'),
}


@font-face {
  font-family: 'TitilliumWeb-SemiBold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/TitilliumWeb-SemiBold.html');
  src: local('?'),
    url('../fonts/TitilliumWeb-SemiBoldd41d.html?#iefix') format('embedded-opentype'),
    url('../fonts/TitilliumWeb-SemiBold-2.html') format('woff'),
    url('../fonts/TitilliumWeb-SemiBold.ttf') format('truetype'),
    url('../fonts/TitilliumWeb-SemiBold-3.html#TitilliumWeb-SemiBold') format('svg');
}

p {
  font-size: 15px;
  font-weight: 300;
  color: #7f7f7f;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 120px 0;
}

.section-head {
  margin-bottom: 80px;
}
.section-head h6 {
  color: #333;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 15px;
  position: relative;
}
.section-head h6:before, .section-head h6:after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #2AAFC0;
  position: absolute;
  bottom: 3px;
}
.section-head h6:before {
  left: -40px;
}
.section-head h6:after {
  right: -40px;
}
.section-head h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.bg-gray {
  background: #f7f7f7;
}

.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

.full-width {
  width: 100% !important;
}

.lg-line-height {
  line-height: 1.5;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
  line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 7px;
  border-radius: 50%;
  background: #ddd;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #2AAFC0;
}

/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 02 Start Buttons ]
-----------------------------------------------------------------*/
.butn {
  padding: 14px 30px;
  background: #fff;
  border: 1px solid transparent;
  position: relative;
  z-index: 3;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
}
.butn span {
  position: relative;
  z-index: 2;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.butn:before, .butn:after {
  content: '';
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  z-index: 1;
  opacity: .4;
}
.butn:after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  background: #fff;
  opacity: 1;
}
.butn:hover:before, .butn:hover:after {
  width: 100%;
}
.butn:hover:after {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.butn:hover span {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.butn-bg {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}
.butn-bg:hover span {
  color: #ff0000;
}

.butn-light {
  background: #fff;
}
.butn-light:before, .butn-light:after {
  background: #ff0000;
}
.butn-light:hover span {
  color: #fff;
}
.butn-light span {
  color: #ff0000;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9;
  min-height: auto;
}
.navbar .icon-bar {
  color: #2bb4e6;
  padding: 5px 10px;
  border: 1px solid #2bb4e6; 
}
.navbar .navbar-nav .nav-link{
  font-size: 16px;
  font-weight: normal;
  color: #333;
  padding: 15px;
}
.navbar .navbar-nav .nav-link:hover{ color: #2bb4e6;}
.navbar .navbar-nav .active {
  color: #2bb4e6 !important;
}

.nav-scroll {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.04);
  /*position: fixed;*/
  position: relative;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  z-index: 111;
}
.nav-scroll .icon-bar {
  color: #2bb4e6;
}
.nav-scroll .navbar-nav .nav-link {
  color: #333;
}
.nav-scroll .navbar-nav .logo {
  padding: 15px 0;
  color: #2bb4e6;
}

.logo {
  padding: 0 0;color: #ff0000 ;
  }

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Header ]
-----------------------------------------------------------------*/
.header {
  min-height: calc(100vh + 80px);
  padding-bottom: 80px;
  overflow: hidden;
}
.header .caption .o-hidden {
  display: inline-block;
}
.header .caption h4 {
  font-weight: 200;
  letter-spacing: 4px;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}
.header .caption h1 {
  margin: 10px 0;
  font-size: 60px;
  font-weight: 500;
  font-family: inherit;
  word-spacing: 2px;
  letter-spacing: 2px;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.header .caption p {
  font-size: 15px;
  font-weight: 300;
  color: #eee;
  letter-spacing: 1px;
  word-spacing: 2px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.header .caption p span {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 5px;
  padding-right: 14px;
  position: relative;
}
.header .caption p span:last-child {
  padding: 0;
}
.header .caption p span:last-child:after {
  display: none;
}
.header .caption p span:after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2AAFC0;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: .5;
}
.header .caption .butn {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.slider .owl-item, .slider-fade .owl-item {
  height: 100vh;
  position: relative;
}
.slider .item, .slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
}
.slider .item .caption, .slider-fade .item .caption {
  z-index: 9;
}
.slider .owl-theme .owl-dots, .slider-fade .owl-theme .owl-dots {
  position: absolute;
  bottom: 5vh;
  width: 100%;
}

.creative {
  min-height: 105vh;
}
.creative .svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.creative .svg svg {
  fill: #fff;
  width: 101%;
}

.wave:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100px;
  background-image: url(../img/wave.html);
  background-size: cover;
  z-index: 7;
}

.bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 05 Start Hero ]
-----------------------------------------------------------------*/
.hero .intro h3 {
  margin-bottom: 10px;
  color: #ff0000;
}
.hero .intro h4 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}
.hero .intro h4:after {
  content: '';
  width: 60px;
  height: 2px;
  background: #2AAFC0;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
}
.hero .intro p {
  width: 90%;
  margin: 20px auto;
}
.hero .item .icon {
  width: 80px;
  height: 80px;
  line-height: 90px;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 40px;
  color: #2AAFC0;
  margin-bottom: 40px;
  position: relative;
}
.hero .item .icon:after {
  content: '';
  width: 20px;
  height: 1px;
  background: #2AAFC0;
  position: absolute;
  left: calc(50% - 10px);
  bottom: -20px;
}
.hero .item h5 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
}
.hero .hero-img {
  padding: 0 30px;
  position: relative;
}
.hero .hero-img img {
  position: relative;
  z-index: 2;
}
.hero .hero-img:after {
  content: '';
  position: absolute;
  top: -30px;
  left: 0px;
  bottom: 30px;
  right: 60px;
  background: #2AAFC0;
  background: -webkit-gradient(linear, left bottom, left top, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to top, #2AAFC0, #6976c5);
  z-index: -1;
}
.hero .hero-img:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 10px;
  bottom: 40px;
  right: 70px;
  background: #fff;
  z-index: 1;
}
.hero .content {
  padding-top: 30px;
}
.hero .content .sub-title {
  margin: 10px 0 15px;
  letter-spacing: 2px;
}
.hero .content p {
  margin-top: 15px;
}
.hero .content .butn {
  margin-left: 0;
}

/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 06 section-box ]
-----------------------------------------------------------------*/
.section-box .half-img {
  background-position:75% 50%;
}
.section-box .half-content {
  padding: 30px;
}
.section-box .box-white {
  padding: 50px 4%;
  background: #fff;
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}
.section-box .skills .skill-item {
  margin-bottom: 30px;
}
.section-box .skills .skill-item:last-child {
  margin-bottom: 0;
}
.section-box .skills .skill-item h6 {
  font-size: 14px;
  margin-bottom: 10px;
}
.section-box .skills .skill-progress {
  width: 100%;
  height: 26px;
  border: 4px solid #f7f7f7;
  background: #f7f7f7;
  border-radius: 20px;
  position: relative;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
}
.section-box .skills .skill-progress .progres {
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  background: #2AAFC0;
  background: -webkit-gradient(linear, left top, right top, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to right, #2AAFC0, #6976c5);
  border-radius: 20px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.section-box .skills .skill-progress .progres:before {
  content: attr(data-value);
  padding: 4px 10px 3px;
  border-radius: 10px;
  font-size: 10px;
  color: #fff;
  background: #2AAFC0;
  background: -webkit-gradient(linear, left top, right top, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to right, #2AAFC0, #6976c5);
  position: absolute;
  top: -35px;
  right: 0;
}
.section-box .skills .skill-progress .progres:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid #2AAFC0;
  position: absolute;
  top: -12px;
  right: 15px;
}
.section-box .accordion .item {
  margin-bottom: 30px;
}
.section-box .accordion .title {
  padding: 10px 20px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  cursor: pointer;
  position: relative; 
}
.section-box .accordion .title:after {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 12px;
  right: 20px; display: none;
}
.section-box .accordion .title h6 {
  font-size: 22px;
  font-weight: 500;
}
.section-box .accordion .accordion-info {
  display: none;
  padding: 0px 15px;
  margin-top: 30px;
  border-left: 1px dotted #ccc;
}
.section-box .accordion .accordion-info .spac {
  margin-top: 30px;
  padding-left: 30px;
}
.section-box .accordion .accordion-info .spac h6 {
  position: relative;
  margin-bottom: 15px;
}
.section-box .accordion .accordion-info .spac h6:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555;
  position: absolute;
  top: 3px;
  left: -15px;
}
.section-box .accordion .accordion-info .spac ul {
  padding-left: 30px;
}
.section-box .accordion .accordion-info .spac li {
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
}
.section-box .accordion .accordion-info .spac li:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #222;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -15px;
}
.section-box .accordion .active {
  display: block;
}
.section-box .accordion .active .title {
  color: #fff;
  background: #ff0000;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.section-box .accordion .active .title:after {
  content: '\f068';
  display: none;
}
.section-box .vid-butn {
  font-size: 70px;
  color: #2AAFC0;
  position: relative;
  width: 70px;
  height: 70px;
  line-height: 70px;
  z-index: 3;
}
.section-box .vid-butn:hover:after {
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.section-box .vid-butn:after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  right: -10px;
  left: -10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.section-box .vid-butn:before {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: -1;
}

/* ----------------------------------------------------------------
     [ End section-box ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ 08 Start Numbers ]
-----------------------------------------------------------------*/
.numbers .icon {
  font-size: 45px;
  color: #2AAFC0;
  margin-bottom: 30px;
}
.numbers h3 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 30px;
}
.numbers h6 {
  font-weight: 300;
}

/* ----------------------------------------------------------------
     [ End Numbers ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 09 Start Works ]
-----------------------------------------------------------------*/
.works .row {
  padding: 0 15px;
}
.works .filtering .filter {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #eee;
  border-radius: 30px;
}
.works .filtering span {
  margin: 0 5px;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
}
.works .filtering .active {
  background: #2AAFC0;
  background: -webkit-gradient(linear, left top, right top, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to right, #2AAFC0, #6976c5);
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.works .item-img {
  position: relative;
  margin-top: 30px;
}
.works .item-img:hover .item-img-overlay {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}
.works .item-img-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.works .item-img-overlay:after {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
.works .item-img-overlay .icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f1f1f1;
  margin: 15px 5px 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.works .item-img-overlay .icon:hover {
  background: #2AAFC0;
  color: #fff;
}
.works .item-img-overlay .icon:before {
  line-height: 2;
}
.works .item-img-overlay p {
  color: #2AAFC0;
  font-weight: 400;
}
.works .item-img-overlay h6 {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ----------------------------------------------------------------
     [ End Works ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 10 Start Team ]
-----------------------------------------------------------------*/
.team .item {
  border: 1px solid rgba(42, 175, 192, 0.3);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.team .item:hover {
  background: #2AAFC0;
  background: -webkit-gradient(linear, left top, right top, from(#540000), to(#ff0000));
  background: linear-gradient(to right, #540000, #ff0000);
  color: #fff;
}
.team .item:hover .team-img {
  border-color: #fff;
}
.team .item:hover span {
  color: #eee !important;
}
.team .item:hover p {
  color: #ccc;
}
.team .item .team-img {
  float: left;
  width: 170px;
  height: 170px;
  border: 5px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px;
}
.team .item .info {
  padding: 15px 15px 15px 0;
  margin-left: 200px;
}
.team .item .info h6 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.team .item .info span {
  font-size: 13px;
  margin-bottom: 10px;
  color: #2AAFC0;
}
.team .item .info p {
  margin-bottom: 10px;
  font-size: 15px;
}
.team .item .info .icon {
  margin: 0 5px;
}

/* ----------------------------------------------------------------
     [ End Team ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 11 Start Price ]
-----------------------------------------------------------------*/
.price .pricing-tables {
  padding: 0 50px;
}
.price .item {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.price .item .type {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.price .item .type img {
  position: absolute;
  bottom: -10px;
  left: -30px;
  width: calc(100% + 60px);
}
.price .item .type h4 {
  font-size: 20px;
  font-weight: 500;
}
.price .item .value {
  margin: 30px 0;
}
.price .item .value h3 {
  font-size: 55px;
}
.price .item .value h3 span {
  font-size: 15px;
}
.price .item .value .per {
  font-size: 13px;
  margin-top: 5px;
  color: #2AAFC0;
}
.price .item .features {
  text-align: left;
  overflow: hidden;
  padding: 15px 0;
}
.price .item .features ul {
  margin-bottom: 0;
}
.price .item .features li {
  margin-bottom: 15px;
}
.price .item .features li:last-child {
  margin-bottom: 0;
}
.price .item .features li .true {
  color: #3ff312;
}
.price .item .features li .false {
  color: #ec126d;
}
.price .item .features i {
  float: right;
  font-size: 11px;
}
.price .item .order {
  margin-top: 30px;
}
.price .item .order .butn {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.price .item.active {
  color: #fff;
  position: relative;
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.price .item.active:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2AAFC0;
  background: -webkit-gradient(linear, left top, left bottom, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to bottom, #2AAFC0, #6976c5);
  z-index: -1;
  opacity: .9;
}
.price .item.active .value .per {
  color: #eee;
}

/* ----------------------------------------------------------------
     [ End Price ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 12 Start Testimonials ]
-----------------------------------------------------------------*/
.testimonials .icon {
  width: 80px;
  margin-bottom: 15px;
}
.testimonials h5 {
  font-weight: 400;
  margin-bottom: 80px;
}
.testimonials .item .client-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(200, 200, 200, 0.15);
}
.testimonials .item h6 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.testimonials .item h6 span {
  display: block;
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
}
.testimonials .item p {
  padding: 30px;
  color: #eee;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(200, 200, 200, 0.1)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.1), transparent);
}
.testimonials .owl-theme .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  line-height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 5px 0;
}
.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
  background: #ff0000;
}

/* ----------------------------------------------------------------
     [ End Testimonials ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 13 Start Blog ]
-----------------------------------------------------------------*/
.blog .item {
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 10px;
}
.blog .item .post-img {
  padding: 15px;
}
.blog .item .post-img .img {
  overflow: hidden;
}
.blog .item .post-img:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.blog .item .post-img img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.blog .item .cont {
  padding: 15px 15px 30px;
}
.blog .item .info {
  margin-bottom: 10px;
}
.blog .item .info a {
  color: #999;
  font-size: 12px;
  margin: 0 5px 5px;
}
.blog .item h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.blog-nav {
  position: static !important;
  background: #fff !important;
  margin: 0;
}
.blog-nav .logo {
  color: #1c1c1c !important;
}
.blog-nav .navbar-nav li a {
  color: #1c1c1c !important;
  font-weight: 500;
}

.min-header {
  height: 40vh;
  background: #1c1c1c;
  position: relative;
}
.min-header h5 {
  font-weight: 800;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 15px;
}
.min-header a {
  position: relative;
  color: #ddd;
}
.min-header a:after {
  content: '/';
  position: relative;
  margin: 0 10px;
}
.min-header a:last-child:after {
  display: none;
}

.blogs .posts .post {
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.blogs .posts .post .content {
  padding: 50px 15px;
  background: #fff;
}
.blogs .posts .post .content .post-title h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.blogs .posts .post .content .meta {
  margin-bottom: 20px;
}
.blogs .posts .post .content .meta li {
  display: inline-block;
  font-size: 12px;
  color: #777;
  margin: 5px;
}
.blogs .posts .post .content p {
  font-weight: 300;
}
.blogs .posts .post .content .spical {
  padding: 15px;
  margin: 30px 0;
  border-left: 2px solid #111;
  background: #f7f7f7;
  font-size: 16px;
}
.blogs .posts .post .share-post {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #eee;
  text-align: left;
}
.blogs .posts .post .share-post span {
  font-weight: 700;
}
.blogs .posts .post .share-post ul {
  float: right;
}
.blogs .posts .post .share-post ul li {
  display: inline-block;
  margin: 0 10px;
}
.blogs .posts .title-g h3 {
  font-weight: 800;
  font-size: 25px;
}
.blogs .posts .comments-area .comment-box {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.blogs .posts .comments-area .comment-box:nth-child(odd) {
  margin-left: 80px;
}
.blogs .posts .comments-area .comment-box:last-child {
  margin-bottom: 0;
}
.blogs .posts .comments-area .comment-box .author-thumb {
  width: 80px;
  float: left;
}
.blogs .posts .comments-area .comment-box .comment-info {
  margin-left: 100px;
}
.blogs .posts .comments-area .comment-box .comment-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blogs .posts .comments-area .comment-box .comment-info .reply {
  margin-top: 10px;
  font-weight: 600;
}
.blogs .posts .comments-area .comment-box .comment-info .reply i {
  padding-right: 5px;
  font-size: 12px;
}
.blogs .posts .comment-form .form input[type='text'],
.blogs .posts .comment-form .form input[type='email'],
.blogs .posts .comment-form .form textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  background: #f4f4f4;
}
.blogs .posts .comment-form .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.blogs .posts .pagination {
  display: block;
  text-align: center;
}
.blogs .posts .pagination li {
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  border: 1px solid #ddd;
}
.blogs .side-bar .widget {
  margin-bottom: 50px;
}
.blogs .side-bar .widget:last-child {
  margin-bottom: 0;
}
.blogs .side-bar .widget .widget-title {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.blogs .side-bar .widget .widget-title h6 {
  position: relative;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.blogs .side-bar .widget .widget-title h6:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #2AAFC0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blogs .side-bar .widget li {
  margin-bottom: 10px;
  color: #777;
}
.blogs .side-bar .widget li:last-child {
  margin: 0;
}
.blogs .side-bar .search form input {
  width: calc(100% - 52px);
  height: 50px;
  padding: 0 10px;
  border: 0;
  background: #f7f7f7;
}
.blogs .side-bar .search form button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #1c1c1c;
  color: #fff;
  border: 0;
  float: right;
}

/* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 14 Start Subscribe ]
-----------------------------------------------------------------*/
.subscribe {
  background-size: auto;
  background-repeat: repeat;
}
.subscribe h4 {
  font-weight: 500;
  margin-bottom: 50px;
}
.subscribe form {
  position: relative;
}
.subscribe input {
  padding: 14px 10px;
  width: 100%;
  margin: auto;
  border: 0;
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.subscribe .butn {
  cursor: pointer;
  padding: 10px 0;
  width: 140px;
  border: 1px solid transparent;
  border-radius: 30px;
  position: absolute;
  top: 4px;
  right: -6px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#2AAFC0), to(#6976c5));
  background: linear-gradient(to right, #2AAFC0, #6976c5);
}
.subscribe .butn:hover {
  border-color: #2AAFC0;
}

/* ----------------------------------------------------------------
     [ End Subscribe ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 15 Start Contact-Info ]
-----------------------------------------------------------------*/
.contact-info .info {
  padding: 100px 5%;
}
.contact-info .info .gradient {
  position: relative;
  z-index: 3;
}
.contact-info .info .item {
  margin-bottom: 20px;
}
.contact-info .info .item .icon {
  float: left;
  font-size: 35px;
  color: #ff0000;
}
.contact-info .info .item .cont {
  margin-left: 60px;
}
.contact-info .info .item h6 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 15px 0; 
}
.contact-info .info .social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: #fff;
  background: #333;
  font-size: 15px;
  text-align: center;
}
.contact-info .info .social a:hover {
  background: #ff0000;
}
.contact-info .map {
  position: relative; padding: 0;
}
.contact-info .map #ieatmaps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------
     [ End Contact-Info ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 16 Start Contact ]
-----------------------------------------------------------------*/
.contact .form input, .contact .form textarea {
  width: 100%;
  padding: 15px;
  background: #F7F7F7;
  border: 0;
  border-radius: 10px;
}
.contact .form textarea {
  height: 140px;
  max-height: 140px;
  max-width: 100%;
}
.contact .form button {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: #ff0000;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}
.contact .form button:hover {
  background: #ff0000;
}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 17 Start Footer ]
-----------------------------------------------------------------*/
footer {
  background: #111;
  padding: 40px 0;
}
footer .social a {
  color: #fff;
  font-size: 13px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #222;
  margin: 15px 5px;
}
footer .social a:hover {
  background: #ff0000;
}
footer p {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 18 Responsive ]
-----------------------------------------------------------------*/


@media screen and (max-width: 991px) {
  .header {
    min-height: calc(50vh + 80px);
  }
  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .bgimg-height {
    height: 400px;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

  .navbar {
    padding-left: 15px;
  }
  .navbar .navbar-collapse {
    max-height: auto;
    overflow: hidden;
    background: #f3f3f3;
    text-align: center;
    padding: 6px 0;
    margin-top: 12px;
  }
  .navbar .nav-link {
    margin: 0 auto !important;
  }

  .nav-scroll .navbar-collapse .nav-link {
    color: #333 !important;
  }
  .nav-scroll .navbar-collapse .active {
    color: #2bb4e6 !important;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 0% 0% !important;
  }
  .header .caption h4 {
    font-size: 30px;
  }
  .header .caption h1 {
    font-size: 45px;
    line-height: 1.4;
    margin-top: 16%;
  }

  .services .item {
    padding: 0;
  }
  .services .bord {
    border: 0;
  }
  .services hr {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }

  .section-box h3 {
    font-size: 25px;
    line-height: 1.3;
  }

  .hero .intro h3 {
    font-size: 28px;
  }

  .hero .intro h4 {
    font-size: 20px;
  }

  .subscribe h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .bgimg-height-sm {
    height: 400px;
  }

  .header .caption h4 {
    font-size: 16px;
  }
  .header .caption h1 {
    font-size: 25px;
    margin-top: 20%;
  }
  .header .caption p {
    font-size: 14px;
  }
  .header .caption p span {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .portfolio .filtering span {
    margin-bottom: 10px;
  }
  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }

}

@media screen and (max-width: 480px) {
  .section-head h4 {
    font-size: 25px;
  }

  .section-box .accordion .title h6 {
    line-height: 1.5;
    font-size: 14px;
  }

  .section-box .half-content {
    padding: 15px;
  }

  .works .filtering .filter {
    border: 0;
    padding: 0;
  }

  .works .filtering span {
    margin: 0 0 5px;
  }

  

  .price .pricing-tables {
    padding: 0 30px;
  }

  .subscribe input {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 30px;
  }

  .subscribe .butn {
    border-radius: 30px;
  }
}


/*.dropdown:hover>.dropdown-menu {
  display: block;
}*/

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color:0;
}

.dropdown-item {
  text-transform: capitalize;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: normal;
}

.dropdown-menu { padding: 0;margin: 0;}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: #2bb4e6;
}

/*===========new design css============*/
.top-heder{ background: #083061;}
.clearfix{ clear: both;}
.top-heder{ padding: 5px 0;}
.top-header-socialicon a{ color: #fff; display: inline; margin-right: 12px; font-size: 13px; }
.top-header-socialicon a:hover{ color: #2bb4e6;}
.addressbar{ text-align: right;}
.addressbar img{ width: auto; margin-right:12px; }
.addressbar p{ color: #fff; display: inline; margin-right: 25px; font-size: 15px;} 
.addressbar .marging-remove{ margin-right: 0;}
.home-slider .carousel-caption {
  position: absolute;
  right: 15%;
  top: 24%;
  left: 8%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: left;
  width: 36%;
  bottom: auto;
}
.home-slider h3{ color: #083061;  font-size: 30px; text-transform: uppercase; margin-bottom: 18px;}
.sliderbtn{ margin-bottom: 18px;}
.sliderbtn .whitebox{ width: 187px; text-align: center; float: left;  background: #fff; text-transform: uppercase;  margin: 0; color: #2bb4e6; font-size: 36px; font-weight: bold;  }
.sliderbtn .bluebox {
  width: auto;
  text-align: center;
  background: #083061;
  text-transform: uppercase;
  margin: 0;
  color: #dadee1;
  font-size: 36px;
  font-weight: bold;
  float: left;
  padding: 0 15px;
}
.home-slider .carousel-indicators{  cursor: pointer;}
.home-slider .carousel-indicators .active {
  background-color: #083061;
}
.home-slider p{ color: #083061; font-size:18px; font-family: 'TitilliumWeb-SemiBold';}
.about-sec{ background: #f7f7f7; padding: 60px 0;}
.main-title h2{ color: #083061; text-transform: uppercase; font-size:36px; font-weight: bold; }
.main-title .borderline{ background: #2bb4e6; width: 17%; height: 3px; margin-top:13px;}
.about-box{ margin-top:25px;}
.about-box .numbertxt{ color:#2bb4e6; font-size: 42px; font-weight: bold;}
.about-box h3{ color:#083061; font-size: 26px; text-transform: uppercase; margin-bottom: 18px;}
.about-box p{ font-size: 18px; color: #888787;}
.home-contact-details h4 {
  color: #083061;
  margin: 12px 0 0 0;
  font-size: 24px;
  font-weight: normal;
}
.home-contact-details .readbtn{ margin-top: 3px;}
.home-contact-details .readbtn a {
  display: inline-block;
  background: #083061;
  color: #f7f7f7;
  border-radius: 50px;
  padding: 12px 36px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}
.home-contact-details .readbtn a:hover{ background: #2bb4e6;}
.home-contact-details img{ width: auto; margin-right: 16px; position: relative; top: -5px;}
.home-contact-details p{ font-size: 27px; color: #083061;}
.home-about-info .about-blue-box{ background: #083061; padding: 27px 50px; text-align: center; height: 185px;}
.home-about-info .about-blue-box img{ width: auto;}
.home-about-info .about-blue-box p{ color: #f7f7f7; font-size: 20px; margin-bottom:0;}
.home-about-info .m-b{ margin-bottom:30px;}
.home-about-info .guaranteed-box{ margin-top:59px; height:300px; padding-top:32%;}
.home-about-info .p-left-remove{ padding-left:0;}
.quality-sec{ margin-top:46px;}

.services-sec{ padding: 40px 0 30px 0;}
.centertitle{ text-align: center;}
.centertitle .bordercenter{ margin: 13px auto 0 auto; width: 9%;}
.services-sec .ser-center-para{ color: #878787; font-size: 20px; width: 72%; text-align: center; margin: 25px auto; font-family: 'TitilliumWeb-SemiBold';}
.home-services-info .ser-gray-box{ background: #f7f7f7; border: 1px solid #ebebeb; border-radius: 3px; box-shadow: 1px 1px 3px #dcdcdc; padding: 35px 55px; margin-bottom: 20px;}
.home-services-info .ser-gray-box .ser-icon{float: left; width: 30%;}
.home-services-info .ser-gray-box .ser-icon img{ width: auto; }
.home-services-info .ser-gray-box .ser-box-content{float: left; width: 70%;}
.home-services-info .ser-gray-box .ser-box-content h4{ color: #312e2e; font-size:20px; margin-bottom:15px;}
.home-services-info .ser-gray-box .ser-box-content p{ color: #9d9d9d; font-size:17px; margin: 0;}

.products-sec{ background: #f3f3f3; padding: 60px 0;}
.products-slider{ margin-top: 32px;}
.products-slider img{ width: auto; padding: 64px 0;}
.products-slider p{ font-size: 16px; color: #312e2e; text-align: center; padding: 0 25px;}

/*=============hover effects============*/
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  border: none;
  background: #fff; opacity:9;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  cursor: pointer;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translatey(-100px);
  -ms-transform: translatey(-100px);
  transform: translatey(-100px);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  padding: 10px;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  border: 2px solid #ebebeb;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin: 55% 0 0;
  font-weight: bold;
  font-size: 16px;
  background: #2bb4e6;
  border-radius: 5px;
  color: #fff;
  padding:6px 8px;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect:hover h2,
.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translatey(0);
  -webkit-transform: translatey(0);
  transform: translatey(0);
}

.hovereffect:hover a.info {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

/*===========hover effect css end==========*/

.partners-sec{ padding: 50px 0 40px 0;} 

.contact-sec{ padding: 40px 0; background: #083061;}
.contact-page{ background: url(../images/map.png) no-repeat #fbfbfb center; padding: 40px 0;}
.contact-sec h2{ color: #fff;}
.contact-page .form-control{ background:#fff; color: #333; border:1px solid #a5a5a5;} 
.contact-page .btn {
  background: #57bee3;
  color: #fff;
  text-align: center;
  border: none;
  width: 100%;
  font-size: 18px;
  font-family: 'TitilliumWeb-SemiBold';
}
.contact-page .btn:hover{ background: #083061;}
.contact-page .form-control::placeholder {
  color: #333 !important;
}
.contact-page::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333 !important;
}
.contact-page::-moz-placeholder {
  /* Firefox 19+ */
  color: #333 !important;
}
.contact-page:-ms-input-placeholder {
  /* IE 10+ */
  color: #333 !important;
}
.contact-page:-moz-placeholder {
  /* Firefox 18- */
  color: #333 !important;
}
.contact-page-details{ text-align: center; margin-top: 30px;} 
.contact-page-details  p{ color: #333;}
.contact-page-details .fa {
  font-size: 35px;
  margin-bottom: 20px;
  color: #2bb4e6;
}
.contact-border{ border-right: 1px dashed #ccc;} 


.footer-map{ margin-top: 30px;}
.footer-map iframe{ width: 100%; height: 245px; border-radius: 5px; border:2px solid #a5a5a5;}
.home-form{ margin-top: 0; }
.footer-contact-details .footer-box{ text-align: center; color: #fff; }
.footer-contact-details .footer-box p{ font-size: 16px; color: #fff; margin: 0;}
.footer-contact-details .footer-box .fa{ font-size: 35px; margin-bottom: 20px; color: #2bb4e6;}
.footer-border{ margin: 30px 0;}
.bottom-footer{ background: #000; padding: 15px 0 50px;} 
.bottom-footer .bluetxt{ color: #2bb4e6;}
.bottom-footer a{ color: #2bb4e6;}
.bottom-footer a:hover{ text-decoration: underline;} 
.bottom-footer p{ color: #fff; letter-spacing: 0; text-transform: capitalize; font-size: 15px; text-align: left; margin: 0;} 
.bottom-footer .footer-right{ text-align: right;}

/*#diamond {
  width: 200px;
  height: 200px;
  background: #083061;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin 
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;

}
#diamond img{ width: auto;}

#diamond .para {
  position: relative;
  transform: rotate(45deg);
  text-align: center;
}

*/

.home-about-info .about-blue-box .top-marign {
  margin-top: 30px;
  height: 300px;
  padding-top: 32%;
}

.home-about-info .blue-sec{ background: #083061; padding: 7% 30px 0 30px;}
.home-about-info .paddingdiv{ padding: 30px 10% 30px 20px;}
.about-sec{ padding: 0;}
.about-left{  text-align: center;}
.about-left img{ width: auto;}
.about-left p{ font-size: 16px; color: #fff; font-weight: normal;}
button:focus{ outline: none;}

.container1{ max-width: 1920px; margin:0 auto;}
.container{ max-width: 1200px; margin: 0 auto;}

.top-header-socialicon{ padding-top: 2px;}
.footermenu{ padding-top: 10px;}
.top-footer ul{ list-style: none; margin: 0;}
.top-footer li{ display: inline-block; padding: 2px 30px; border-right: 1px solid #2bb4e6;}
.top-footer li a{ color: #fff; font-size: 16px;}
.top-footer li a:hover{ color: #2bb4e6;}
.top-footer li a.active{ color: #2bb4e6;}
.top-footer li:last-child{ border-right: none;}
.footer-social-box{ text-align: right;} 
.footer-social-box a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-right:8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #083061;
  text-align: center;
  padding-top: 9px;
  border: 1px solid #2bb4e6;
}
.footer-social-box a:hover{ background: #2bb4e6;}
.home-serives-box{ margin-top: 50px; } 
.home-serives-box .ser-main-box{ margin-bottom: 30px;}
.home-serives-box .ser-icon{ float: left; width: 80px; height: 80px; background: #2bb4e6; text-align: center; margin-right: 30px; padding: 6px;}
.home-serives-box .ser-icon img{ width: 100%;}
.home-serives-box .ser-box-info{ width: 70%; float: left;}
.home-serives-box .ser-box-info h4{ color: #312e2e; font-size: 20px; margin-bottom: 8px;  font-weight: normal;}
.home-serives-box .ser-box-info p{ font-size: 16px; margin: 0;}
.addressbar .fa{ margin-right: 8px; color: #2bb4e6;}
.captcha-box{ margin: 20px 0 0 0;}
.innerpage{ background: #2bb4e6;}
.innerpage h3{ color: #fff; text-align: center; padding: 8px 0; text-transform: uppercase; font-size: 30px; }

/*============about page css============*/

.inner-page-info{ padding: 40px 0;}

.inner-page-title h2{ color:#fff; padding: 6% 0;}
.aboutus-img{ background: url(../images/aboutus-banner.jpg) no-repeat center; background-size: cover;}

.about-gray-box{ background: #fbfbfb; padding: 20px;}
.about-page p{ margin: 0;}
.about-page h4{ margin: 20px 0; font-size: 20px; font-weight: bold; color: #083061;}
.mission-vison-box {  border-radius: 5px; padding: 20px;}
.mission-vison-img { width: 30%; float: left; margin: 0 20px 0 0;}
.mission-vison-info{ width: 66%; float: left; margin-top: 15px;}
.mission-vison-info p{ color: #fff;}
.mission-vison-info h4{ margin: 0 0 10px 0; color: #fff;}
.mission-vison-img img{ width: 100%; padding: 17px 10px;}
.mission-vison-sec{ margin-top: 30px;}
.mission-bg{ background: url(../images/mission-bg.jpg) no-repeat center; background-size: cover;}
.vision-bg{ background: url(../images/vision-bg.jpg) no-repeat center; background-size: cover;}
.testimonial-info-box { border:1px solid #f7f7f7;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05); padding: 20px; margin-bottom: 20px;
}
.testimonial-info-box:hover{ background: #fbfbfb;}

/*============testimonial page css============*/
.testimonials-banner{ background: url(../images/testimonials-banner.jpg) no-repeat center; background-size: cover;}
.testimonial-title{  background-image: linear-gradient(to right, #083061 , #50adf6); border-radius: 5px; margin-bottom: 15px; padding: 15px; }
.testimonial-title h5{ font-size: 18px; font-weight: normal; color: #fff; margin: 0;}

/*===========services page css================*/
.services-banner{ background: url(../images/services-banner.jpg) no-repeat center; background-size: cover;}
.services-page .nav-tabs .nav-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 18px
}
.services-page .nav-tabs {
    border:none;
    padding: 0;
}
.services-page .nav-tabs .nav-link {
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05); margin-bottom: 15px;
}

.services-page  .borderdiv {
  background: #2bb4e6;
  width: 15%;
  height: 5px; margin-bottom: 15px;
}
.services-page .services-icon{  width: 85px; height: 85px; border-radius: 50%; border:2px solid #f3f3f3; margin-right: 12px;}
.services-page .services-icon img{ width: 100%;}
.services-page .nav-tabs .nav-item.show .nav-link,
.services-page .nav-tabs .nav-link.active {
  border: 1px solid #2bb4e6;
  border-radius: 5px;
}
.services-page .nav-tabs .nav-link:focus,
.services-page .nav-tabs .nav-link:hover {
   border: 1px solid #2bb4e6;
   border-radius: 5px;
}

.services-page .tab-content h4{ color: #2756a5; font-weight: normal; margin-bottom: 10px;font-size: 24px; }
.services-page .services-info h6 {
  color: #05b1dc;
  font-weight: normal;
  margin-bottom: 8px;
}
.services-page .ser-gray-box{ background: #fbfbfb; padding: 20px; border-radius: 5px;}
.services-page ul{ padding-left: 0; margin: 0; list-style: none;}
.services-page li {
  background: url(../images/left-arrow.png) no-repeat 6px 15px;
  padding: 10px 0 0 23px;
  color: #7f7f7f;
}
.services-info-box {
  margin-bottom: 15px;
  border-bottom: 1px dashed #2bb4e6;
  padding-bottom: 15px;
}
.services-tab .nav-tabs .nav-link {
  font-size: 15px;
  margin: 0;
  display: inline-block;
  width: auto;
  box-shadow: none;
  -webkit-box-shadow: none
}
.services-tab .nav-tabs{ border-bottom: 1px solid #2bb4e6;}
.services-tab .nav-tabs .nav-item.show .nav-link,
.services-tab .nav-tabs .nav-link.active {
  border: 1px solid #2bb4e6;
  border-radius: 5px 5px 0 0;
}
.services-tab .nav-tabs .nav-link:focus,
.services-tab .nav-tabs .nav-link:hover {
  border: 1px solid #2bb4e6;
  border-radius: 5px 5px 0 0;
}

.services-tab .tab-content{ padding: 15px 0;}
.ser-gray-box img{  float: left; margin:0 15px 15px 0; width: auto; border: 1px solid #ccc;}
.ser-img img{ margin-bottom: 20px; border-radius: 5px; border:1px solid #ccc;}

.contact-banner{background: url(../images/contact-banner.jpg) no-repeat center; background-size: cover; }

b, strong {
    font-weight: bold;
}
.res-services-page{ display: none;}
.res-services-page .res-serimg{ width: 100%;}
.res-services-page .services-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid #f3f3f3;
  margin-right: 12px;
}
.res-services-page .card-header { padding: 10px; background-color: #fdfdfd;}
.res-services-page .card-header a{ font-size: 18px;     width: 100%;}
.res-services-page h4 {
    color: #2756a5;
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 24px;
}
.res-services-page .borderdiv {
  background: #2bb4e6;
  width: 15%;
  height: 5px;
  margin-bottom: 15px;
}
.res-ser-info{ margin-bottom: 15px;}
.res-ser-info .ser-img{ width: 100%;}
.res-ser-info h6 {
  color: #05b1dc;
  font-weight: normal;
  margin-bottom: 8px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 8px;
}
.res-ser-info ul{ list-style: none;}
.res-ser-info li {
  background: url(../images/left-arrow.png) no-repeat 6px 15px;
  padding: 10px 0 0 23px;
  color: #7f7f7f;
  text-align: justify;
}

.res-ser-info .leftimg {
  float: left;
  margin: 0 15px 8px 0;
  width: 44%;
}

.res-ser-info p{ text-align: justify;}

.career-page {
  width: 55%;
  margin: 0 auto;
  background: #fbfbfb;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.career-page .btn{ width: 100%; background: #2bb4e6; color: #fff; text-transform: uppercase;}
.career-page .btn:hover{ background: #083061;}

.home-intro{ padding: 50px 0;}
.home-intro .para1{ font-size: 18px; text-align: center;}
.home-intro-ser img{     width: 60px;}
.home-intro-ser h4{ font-size: 18px; margin-bottom: 5px; font-weight: normal; color: #05b1dc;}
.intro-ser-img{ width: 22%; float: left;}
.home-intro-info{ width: 78%; float: left;}
.home-intro-ser-box {
  border: 1px solid #fbfafa;
  padding: 15px;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
  border-radius: 5px;
}
.home-intro-ser-box:hover{ background: #fbfbfb;} 
.home-intro-ser-box p{ line-height: 20px; font-size: 14px;}
.home-intro .colorfont { color: #05b1dc; margin-bottom: 5px; font-size: 20px;}
.home-intro-ser{ margin-top: 30px;}

.career-bg{ background: url(../images/career-banner.jpg) no-repeat center; background-size: cover; }

.res-menu {
  display: none;
}

.res-menu .dropdown {
  outline: 0;
}


.res-menu .btn {
  font-size: 15px;
  color: #fff;
  margin: 0 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  text-transform: capitalize;
  font-weight: normal;
}

.res-menu .btn:hover {
  outline: none;
}

.dropdown1:hover>.dropdown-menu {
  display: block;
}

/*============media query============*/

@media screen and (max-width :1366px) {
.container1{ width: 100%;}
.container{ width: 100%;}
}

@media screen and (max-width :1199px) {
.about-info .panel-tabs>li>a{ margin: 0 5px; width: 139px; font-size: 14px;}
.logo img { width: 160px;}
.home-slider .carousel-caption{ top: 10%;}
.home-services-info .ser-gray-box{ padding: 20px;}
.sliderbtn .whitebox{ padding: 0 15px; width: auto; font-size: 26px;}
.sliderbtn .bluebox{ font-size: 26px;}
.home-slider h3{ font-size: 20px;}
.home-slider p{ font-size: 15px; margin: 0;}
.home-contact-details h4{ font-size: 22px;}
.home-contact-details p { font-size: 22px;}
.home-slider .carousel-caption{ left: 2%;}
.mission-vison-img { width: 20%; float: left; margin: 0 10px 0 0;}
.mission-vison-info { width: 65%;}
.services-page .services-icon{  width: 60px; height: 60px; margin-right: 2px;}
.services-page .nav-tabs .nav-link{ padding: 10px 6px; font-size: 15px;}
.career-page { width: 80%;}
.home-intro-ser img { width: 50px;}
}

@media screen and (max-width :991px) {
.navbar-toggler{ outline: none;}
.addressbar p{margin-right: 8px; font-size: 12px;}
.home-about-info .col-md-4{flex: none; max-width: 100%;}
.home-about-info .col-md-8{flex: none; max-width: 100%;}
.services-sec .ser-center-para{ width: 100%;}
.home-about-info .col-md-8{flex: none; max-width:100%;}
.home-about-info .about-left .col-md-4{max-width:33%;}
.home-services-info .ser-gray-box .ser-icon img { width: 72px;}
.home-services-info .ser-gray-box .ser-box-content h4{ font-size: 16px;}
.home-services-info .ser-gray-box .ser-box-content p{ font-size: 15px;}
.bottom-footer .col-md-6{flex: none; max-width:100%;}
.bottom-footer p{ text-align: center;}
.bottom-footer .footer-right{ text-align: center;}
.navbar .navbar-nav .nav-link{ padding: 5px 15px; display: block;} 
.navbar .navbar-nav .nav-link:hover{ color: #2bb4e6;}
.container { max-width: 100%;}
.sliderbtn .whitebox{ font-size: 20px;}
.sliderbtn .bluebox{ font-size: 20px;}
.nav-scroll{ position: fixed;}
.top-footer .col-md-8{flex: none; max-width:100%;}
.top-footer .col-md-4{flex: none; max-width:100%;}
.footer-social-box { text-align: center;}
.footermenu{ margin-bottom: 20px; text-align: center;}
.mission-vison-img { width: 100%; float: none; margin: 0 10px 0 0;}
.mission-vison-info { width: 100%; float: none;}
.mission-vison-img img { width: 35%; padding: 0;}
.mission-vison-box{ text-align: center;}
.career-page { width: 100%;}
.home-intro .col-sm-6{ max-width: 50%; flex:0 auto;}
.home-intro-ser-box{ margin-bottom: 20px;}
.res-menu {
  display: block;
}
.menudropdown {
  display: none;
}
}


@media screen and (max-width :820px) {
.home-slider .carousel-caption{ width:55%; }
}

@media screen and (max-width :810px) {
.home-serives-box .ser-icon{ width: 75px; height: 75px;}
}

@media screen and (max-width :768px) {
.top-heder .col-md-3{flex: none; max-width:100%;}
.top-heder .col-md-9{flex: none; max-width:100%;}
.top-header-socialicon{ text-align: center; padding-bottom: 15px;}
.addressbar p{ font-size: 15px;} 
.home-slider .carousel-caption {top: 6%; width: 50%;}
.home-slider h3 {font-size: 16px;}
.addressbar { text-align: center;}
.centertitle .bordercenter{ width: 17%;}
}

@media screen and (max-width :775px) {
.home-serives-box .ser-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px auto;
  float: none;
}
.home-serives-box .ser-box-info {
  width: auto;
  float: none;
  text-align: center;
}
}

@media screen and (max-width :767px) {
.navbar-toggler{ margin-right: 0; padding: 0;}
.nav-scroll .navbar-toggler{ margin-right: 10px;}
.home-services-info .ser-gray-box .ser-icon{ width: 24%;}
.addressbar {text-align: center;}
.home-services-info .ser-gray-box .ser-icon{ margin-right: 15px;}
.home-slider img{ height: 315px;}
.home-slider .carousel-caption{ width: 56%;}
.home-about-info .paddingdiv {padding: 30px 0;}
.contact-page-details p{ margin-bottom: 32px;}
.bottom-footer{ padding: 15px 0 40px;}
.about-box p{ text-align: justify;}
.about-gray-box img{ margin-bottom: 20px;}
.about-gray-box p{ text-align: justify;}
.res-services-page{ display: block;}
.services-page { display: none;}
}

@media screen and (max-width :660px){
.home-services-info .col-sm-6{ flex: none; max-width: 100%;}
.navbar-toggler{ margin-right: 0;}
.home-services-info .ser-gray-box .ser-icon { width: 15%;}
.home-services-info .ser-gray-box .ser-box-content { float: left; width: 82%;}
.home-services-info .ser-gray-box .ser-box-content h4 {font-size: 18px;}
.home-slider img { height: 270px;}
.home-intro .col-sm-6{ max-width: 100%; flex:0 auto;}
.home-intro-info {width: 86%;}
.intro-ser-img{  width: 10%; margin-right: 20px;}
}

@media screen and (max-width :638px) {
.top-footer li{ padding: 2px 10px;}
}

@media screen and (max-width :590px) {
.home-services-info .ser-gray-box .ser-box-content{ width:70%;}
.home-intro-info { width: 80%;}
}

@media screen and (max-width :575px) {
.home-about-info .about-left .col-md-4 { max-width: 50%;}
.home-about-info .blue-sec{ padding: 30px;}
.home-contact-details h4{ margin-bottom: 15px;}
.captcha-box .col-xs-4{ max-width: 40%;}
.captcha-box .col-xs-8{ max-width: 60%;}
.footer-contact-details .footer-box p{margin-bottom: 20px;}
.mission-vison-box{ margin-bottom: 20px;}
.mission-vison-img img { width: 120px;}
.res-ser-info ul{ margin-bottom: 0;}
}

@media screen and (max-width :550px) {
.home-slider img {height: 260px;}
.home-slider .carousel-caption {width: 75%;}
.sliderbtn .bluebox {font-size: 18px;}
.sliderbtn .whitebox{ font-size: 18px;}
.home-slider h3 {font-size: 16px;}
.home-slider p {font-size: 14px;}
}

@media screen and (max-width :500px) {
.home-services-info .ser-gray-box .ser-box-content { width: 70%; margin-left: 20px;}
.sliderbtn {margin-bottom: 6px;}
.home-slider h3{ margin-bottom: 8px;}
.res-services-page h4{ font-size: 18px;}
}

@media screen and (max-width :450px) {
.home-slider img {height: 215px;}
.home-slider .carousel-indicators{ bottom: -8px;}
.home-services-info .ser-gray-box .ser-icon{ width: auto; float: none; text-align: center;}
.home-services-info .ser-gray-box .ser-icon img{ width: auto; margin-bottom: 15px;}
.home-services-info .ser-gray-box .ser-box-content{  width: auto; float: none; text-align: center; margin-left: 0;}
.home-services-info .ser-gray-box .ser-box-content h4{ font-size: 20px;}
.home-services-info .ser-gray-box .ser-box-content p{ font-size: 17px;}
.res-ser-info .leftimg {
  float: none;
  margin: 0 0 15px 0;
  width: 100%;
}
}

@media screen and (max-width :438px) {
.top-footer li a{ font-size: 15px;}
.top-footer li{ margin-bottom: 8px;}
}

@media screen and (max-width :420px) {
.intro-ser-img { width: 15%;}
.home-intro-info { width: 78%;}
}

@media screen and (max-width :375px) {
.home-about-info .about-left .col-md-4{ max-width:100%;}
.sliderbtn .whitebox { font-size:16px;}
.sliderbtn .bluebox { font-size:16px;}
.about-box h3{ font-size: 20px;}
.about-box .numbertxt{ font-size:32px;}
.about-box p{ font-size: 16px;}
.home-contact-details p{ font-size: 18px;}
.services-sec .ser-center-para{ font-size: 18px;}
.home-slider h3 {font-size: 14px;}
.captcha-box .col-xs-4{ max-width: 70%; margin: 0 auto;}
.captcha-box .col-xs-8{ max-width: 100%;}
.res-services-page .services-icon{margin-right: 4px; display: inline-block; }
.home-intro-ser-box{ text-align: center;}
.intro-ser-img { width: 100%; margin: 0 0 10px 0;}
.home-intro-info{ width: 100%;}
.home-intro-ser img { width: 80px;}
}

@media screen and (max-width :360px) {
.home-contact-details h4 { font-size: 20px;}
.res-services-page .services-icon { width: 70px; height: 70px;}
.res-services-page .card-header a { font-size: 15px;}
}

@media screen and (max-width :320px) {
.home-slider img { height: 185px;}
.home-slider .carousel-caption{ top: 0;}
.sliderbtn .whitebox { font-size: 14px;}
.sliderbtn .bluebox {font-size: 14px;}
.home-slider p{ line-height: 18px;}
}





