@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap");

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

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: auto;
}

a {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

p {
  font-size: 14px;
  color: #444;
  font-weight: #444;
}

ul li,
ol li {
  list-style: none;
}

.responsive {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hide {
  display: none;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
  padding-top: 15px;
}

header:hover {
  background: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  padding-top: 15px;
}

header.active {
  background: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  padding: 5px 0;
}

.mobilemenu {
  position: absolute;
  display: block;
  content: "";
  top: 45px;
  right: 50px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.mobilemenu .menubar {
  content: "";
  width: 30px;
  height: 30px;
  padding-top: 2px;
  margin: 0 auto;
  display: block;
  text-align: center;
  cursor: pointer;
  right: 0;
  z-index: 999;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.mobilemenu .menubar span {
  position: relative;
  cursor: pointer;
  background-color: #28A6DE;
  border-radius: 50px;
  width: 30px;
  height: 3px;
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(1) {
  top: 0;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(2) {
  top: 6px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(3) {
  top: 13px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubarclick span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 13px;
  background-color: #28A6DE;
}

.mobilemenu .menubarclick span:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #28A6DE;
}

.mobilemenu .menubarclick span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
  background-color: #28A6DE;
}

@media screen and (min-width: 581px) {
  .mobilemenu {
    display: none;
  }
}

.top-header {
  width: 100%;
  justify-content: flex-end;
}


.top-call {
  text-align: center;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #28A6DE;
  color: #fefefe;
  padding: 10px 20px;
}

.top-call:not(:last-child) {
  margin-right: 15px;
}

.logo {
  width: 20%;
  background-color: transparent;
}

.logo a {
  width: 130px;
  height: 130px;
  background: url(../img/logo-white.png) no-repeat;
  background-size: cover;
  background-size: 120px;
  margin: 0 auto;
  display: block;
  transition: all 0.2s ease-in-out 0s;
}

header:hover .logo a,
header.active .logo a {
  width: 130px;
  height: 130px;
  background: url(../img/logo.png) no-repeat;
  background-size: cover;
  background-size: 120px;
  margin: 0 auto;
  display: block;
}

header.active .logo a {
  width: 90px;
  height: 90px;
  background: url(../img/logo.png) no-repeat;
  background-size: cover;
  background-size: 90px;
  margin: 0 auto;
  display: block;
}

header.active .top-header {
  display: none;
}

.item-menu {
  width: 80%;
  background-color: transparent;
}

.social-menu {
  width: 20%;
  background-color: #28A6DE;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social-menu a {
  padding: 17px 15px;
  font-size: 17px;
  color: #fff;
}

.menulist {
  background-color: transparent;
  text-align: right;
}

.menulist li {
  display: inline-block;
  text-align: right;
  padding: 17px 15px;
}

.menulist li:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 940px) {
  .menulist li {
    padding: 17px 5px;
  }
}

@media screen and (max-width: 767px) {
  .menulist li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .menulist li {
    margin-right: 5px;
  }
}

@media screen and (max-width: 480px) {
  .menulist li {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .menulist li {
    padding: 10px 150x;
  }
}

.menulist li a {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  border-bottom: 2px solid transparent;
}

.menulist li a:hover {
  color: #28A6DE;
  border-bottom: 2px solid #28A6DE;
}

header:hover .menulist li a,
header.active .menulist li a {
  color: #51565B;
}

@media screen and (max-width: 580px) {
  .menulist {
    width: 100%;
    position: fixed;
    text-align: center;
    right: 0;
    top: 145px;
    z-index: 99;
    display: none;
    background-color: #fff;
  }

  .menulist li a {
    color: #333;
  }
}

@media screen and (max-width: 480px) {
  .menulist {
    width: 100%;
    max-width: 280px;
    height: 100vh;
    padding: 0 25px;
    background-color: #fafafa;
  }
}

.section-indent {
  position: relative;
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(../img/dot.jpg) left top repeat;
}

.section-indenta {
  position: relative;
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-indent1 {
  position: relative;
  display: block;
  padding-top: 120px;
  overflow: hidden;
}

.layout01.layout01__img-more .layout01__img {
  margin-bottom: 61px;
}

.layout01 .layout01__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57.5%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.layout01 .layout01__img .tt-img-main {
  width: 100%;
  height: 500px;
}

.layout01 .layout01__img .tt-img-more.left-bottom {
  left: -27px;
  bottom: -63px;
}

.layout01 .layout01__img .tt-img-more img {
  max-width: 436px;
  -webkit-box-shadow: 0 0 50px rgba(48, 52, 66, .2);
  box-shadow: 0 0 50px rgba(48, 52, 66, .2);
}

.layout01 .layout01__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42.5%;
  flex: 0 0 50%;
  max-width: 50%;
}

.layout01 .layout01__content-wrapper {
  background-color: #fff;
  position: relative;
  margin: 35px 0 0 -85px;
  padding: 25px 5px 15px 70px;
}

.section-title.text-left {
  padding-left: 0;
}

.section-title {
  text-align: center;
  padding-bottom: 22px;
  position: relative;
  top: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.text-left {
  text-align: left !important;
}

.section-title .section-title__01 {
  font-size: 18px;
  line-height: 26px;
  color: #28a6de;
  font-weight: 600;
  font-family: Poppins, sans-serif;
}

.section-title .section-title__02 {
  font-size: 36px;
  line-height: 46px;
  color: #444;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  margin: 7px auto 0;
}

.section-title .section-title__03 {
  font-size: 36px;
  line-height: 46px;
  color: #28a6de;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  margin: 7px auto 0;
}


.tt-list-top {
  margin-top: 25px;
}

.tt-list01 li {
  color: #303442;
  padding: 0 0 0 27px;
  position: relative;
}

.tt-list01 li i {
  color: #28a6de;
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 13px;
  line-height: 1;
}

.tt-data-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
  margin-left: -40px;
}

.tt-data-info .tt-item {
  margin-left: 40px;
}

.personal-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 51px 0 0;
}

.personal-box::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #d3d4d7;
}

.personal-box .personal-box__img img {
  border-radius: 50%;
  max-width: 67px;
}

.personal-box .personal-box__content {
  margin: 0 0 0 25px;
  font-size: 14px;
  line-height: 24px;
}

.personal-box .personal-box__title {
  color: #303442;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: -4px;
}

.layout01 .layout01__img .tt-img-more {
  position: absolute;
}



.tt-slideinfo-wrapper:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.tt-slideinfo-wrapper {
  margin-left: -75px;
  margin-right: -75px;
}

.tt-slideinfo-wrapper {
  margin-bottom: -13px;
}

.tt-slideinfo-wrapper {
  overflow: hidden;
  position: relative;
}

.tt-slideinfo-wrapper::after,
.tt-slideinfo-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #fff;
  -webkit-transition: height .13s;
  transition: height .13s;
}

.tt-slideinfo-wrapper::before {
  top: 0;
}

.tt-slideinfo-wrapper .tt-slideinfo:nth-child(1) {
  z-index: 2;
  padding-left: 70px
}

.tt-slideinfo-wrapper .tt-slideinfo:nth-child(2) {
  z-index: 1
}

.tt-slideinfo-wrapper .tt-slideinfo:nth-child(3) {
  z-index: 0;
  padding-right: 70px
}

.tt-slideinfo-wrapper .tt-slideinfo.wide {
  width: calc(33.333% + 30px);
}

.tt-slideinfo-wrapper .tt-slideinfo:not(.active) {
  width: 50%;
}

.tt-slideinfo-wrapper .tt-slideinfo {
  -webkit-transition: width .13s;
  transition: width .13s;
  position: relative;
}

.tt-slideinfo {
  position: relative;
  height: 730px;
}

.tt-slideinfo-wrapper .tt-slideinfo .tt-item__bg {
  margin-left: -76px;
  width: calc(100% + 76px);
}

.tt-slideinfo .tt-item__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(12deg, 0);
  transform: skew(12deg, 0);
  overflow: hidden;
  background-color: #333;
}

.tt-slideinfo .tt-item__bg::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, .25)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .25) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  pointer-events: none;
  opacity: .5;
}

.tt-slideinfo .tt-item__bg .tt-item__bg-img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  opacity: .6;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  -webkit-transform: skew(-12deg);
  transform: skew(-12deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tt-slideinfo .tt-item__bg .tt-item__bg-top {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-slideinfo:hover .tt-item__bg .tt-item__bg-top::after,
.tt-slideinfo:hover .tt-item__bg .tt-item__bg-top::before {
  height: 0;
}

.tt-slideinfo .tt-item__bg .tt-item__bg-top::before {
  top: 0;
}

.tt-slideinfo .tt-item__bg .tt-item__bg-top::after,
.tt-slideinfo .tt-item__bg .tt-item__bg-top::before {
  content: '';
  width: calc(100% + 4px);
  height: 20px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: -2px;
  -webkit-transition: height .13s;
  transition: height .13s;
}

.tt-slideinfo .tt-item__content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}

.tt-slideinfo .tt-item__title {
  font-size: 36px;
  line-height: 1;
  width: 100%;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  position: relative;
}

.tt-slideinfo .tt-item__title .tt-icon {
  display: inline-block;
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  opacity: .44;
}

.tt-slideinfo .tt-item__title {
  font-size: 36px;
  line-height: 1;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.tt-slideinfo .tt-item__title span {
  position: relative;
  z-index: 2;
}

.tt-slideinfo .tt-item__content {
  color: #fff;
  text-align: center;
}

.tt-slideinfo.open-info .tt-item__description {
  display: block;
}

.tt-slideinfo .tt-item__description {
  max-width: 337px;
}

.tt-slideinfo .tt-item__description {
  max-width: 397px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}

.tt-slideinfo .tt-item__btn {
  margin-top: 28px;
  width: 100%;
}

.tt-slideinfo .tt-item__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background-color: #28a6de;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  position: relative;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}



.tt-slideinfo .tt-item__btn a {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
}

.tt-slideinfo:hover .tt-item__bg {
  overflow: hidden;
}

@-webkit-keyframes pulse {
  from {
    width: 100%;
    height: 100%;
    opacity: .8
  }

  50% {
    width: 140%;
    height: 140%;
    opacity: 0
  }

  to {
    width: 100%;
    height: 100%;
    opacity: 0
  }
}


.services-icons-section {
  background: url(../img/dotted-cta.png) center bottom/83.75rem auto no-repeat;
  padding: 65px 106px 65px;
}

.services-icons-section {
  position: relative;
  background-color: #047FBD !important;
  color: #fefefe;
}

.curve.top-right,
.curve1.top-right {
  bottom: calc(100% - 1px);
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.curve,
.curve1 {
  width: 110px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.curve.primary::after {
  background-image: url(../img/Artboard.svg);
}

.curve1.primary1::after {
  background-image: url(../img/Artboard1.svg);
}

.curve::after,
.curve1::after {
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: center center/100% 100% no-repeat;
  display: block;
}

.ele-icon {
  width: 55px;
  margin: 0 auto;
}

.elec-ban {
  width: 100%;
}

.elec-ban li {
  width: calc(20% - 25px);
  text-align: center;
}

.elec-ban li h3 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
}

.elec-ban li p {
  font-size: 15px;
  padding-top: 5px;
  color: #fff;
}


.how-we-do {
  width: 100%;
  display: block;
}

.we-do-conte {
  width: 40%;
  position: relative;
  display: block;
}

.left-how-we {
  position: absolute;
  display: block;
  content: "";
  background-color: #27261D;
  padding: 20px 25px;
  right: -138px;
  z-index: 11;
  width: 80%;
  top: 150px;
}

.left-how-we h2 {
  color: #fff;
  font-size: 45px;
  text-align: left;
  line-height: 65px;
}

.left-how-we p {
  color: #fff;
  font-size: 15px;
  text-align: left;
  padding-top: 10px;
}

.left-how-we ul li {
  color: #fff;
  font-size: 15px;
  text-align: left;
}

.we-do-img {
  width: 60%;
}

.we-do-img ul {
  display: block;
  height: 100%;
}

.whychoose {
  width: 95%;
  background-color: #28A6DE;
  padding: 250px 110px 90px;
}

.choose-ti h2 {
  font-size: 45px;
  color: #333333;
}

.choose-ti p {
  font-size: 18px;
  color: #333333;
}

.choose-srini {
  width: 40%;
}

.our-ele {
  width: 60%;
}

.chooe-list {
  width: 100%;
  padding-top: 85px;
}

.chooe-list ul li {
  width: calc(33.3% - 25px);
  margin-bottom: 35px;
}

.chooe-list ul li span {
  width: 50px;
  padding-top: 10px;
}

.chooe-list ul li span i {
  font-size: 35px;
  color: #333333;
}

.chooe-list ul li h2 {
  width: calc(100% - 50px);
  color: #333333;
  font-size: 21px;
}

/*brands-deal*/
.brand-bg {
  width: 100%;
  background-color: #fafafa;
  padding: 50px 0;
}

.brand-bg .fir-heading {
  background-color: #fff;
}

.brands-deal {
  width: 100%;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand-lsit {
  /* width: calc(20% - 15px); */
  /* margin-bottom: 15px; */
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/*end*/

.about-wrapper {
  padding: 100px 0 90px;
  background: url(../img/dot.jpg) left top repeat;
}

.about-wrapper1 {
  padding: 100px 0 90px;
  background-color: #fff;
}

.section_heading {
  text-align: center;
  width: 100%;
  margin: 0 0 40px;
}

.section_heading h2 {
  font-size: 40px;
  color: #51565b;
}

.section_heading h2 span {
  color: #a64243;
}

.separator {
  margin: 0px auto 0px;
  width: 120px;
  position: relative;
}

.separator ul {
  padding: 0px;
  margin: 0px;
}

.separator ul::before {
  content: '';
  width: 40px;
  height: 1px;
  background: #c9c9c9;
  left: -8px;
  top: 63%;
  position: absolute;
}

.separator ul li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px;
  padding: 0px;
  background: #a64243;
  border-radius: 50%;
}

.separator ul::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #c9c9c9;
  right: -8px;
  top: 63%;
  position: absolute;
}

.safety-poli {
  width: 100%;
}

.we-help {
  width: 30%;
  background-color: #28A6DE;
  padding: 10px;
}

.help-content {
  width: 100%;
  /* margin-left: 55px; */
}

.help-content p {
  font-size: 16px;
  color: #555;
  padding-top: 5px;
  text-align: center;
}

.policy-content {
  width: 100%;
}

.policy-content p {
  font-size: 16px;
  color: #555;
  padding-top: 5px;
  text-align: center;
}

.tneb li {
  padding: 20px;
  text-align: center;
}

.tneb li:not(:last-child) {
  border-bottom: 1px solid #43afe0;
}

.tneb li p {
  font-size: 15px;
  color: #fff;

}

/*end*/

/*fotter*/
.footer {
  background-color: #333;
  padding-top: 50px;
}

.foo-site {
  -webkit-box-shadow: 2px 20px 20px -10px #5a5a5a1f;
  box-shadow: 2px 20px 20px -10px #5a5a5a1f;
  padding: 25px;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.foo-site>li {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .foo-site>li {
    margin-bottom: 25px;
  }
}

.fomrfc {
  padding-bottom: 8px;
}

.sitemap h4 {
  position: relative;
  content: "";
  display: block;
  color: #fff;
  font-size: 22px;
}

.sitemap p {
  padding-top: 15px;
}

.sitemap h4::after {
  position: absolute;
  display: block;
  content: "";
  background-color: #28A6DE;
  width: 50px;
  height: 2px;
  border-radius: 50px;
  color: #333;
  font-size: 22px;
  left: 0;
}

.sociallink li {
  display: inline-block;
  margin-right: 10px;
}

.sociallink li .buttonBlue {
  font-size: 20px;
  text-align: center;
  color: #333;
  border-radius: 50px;
  padding: 0;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  margin-top: 0;
}

.sociallink li .animatedButton span {
  position: relative;
  pointer-events: none;
  color: #fafafa;
  padding: 7px;
  font-size: 20px;
  text-align: center;
}

.sitemap img {
  width: 120px;
}

.sitemap h5 {
  color: #28A6DE;
  font-size: 18px;
  text-transform: uppercase;
  padding-bottom: 10px;
  padding-top: 20px;
}

.Aboutcom li {
  padding-top: 10px;
  color: #fafafa;
}

.Aboutcom li a {
  color: #fafafa;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.Aboutcom li a:hover {
  padding-left: 5px;
}

.sitemap p {
  color: #fafafa;
}

.call-foo {
  padding-top: 5px;
  color: #fafafa;
}

.call-foo span {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.copyrights {
  width: 100%;
  background-color: #4d4d4d;
}

.copyrights p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/*end*/
.right-border {
  position: absolute;
  display: block;
  content: "";
  background-color: #28A6DE;
  width: 100%;
  max-width: 70px;
  height: 680px;
  left: 0;
  top: 0;
  z-index: 11;
  overflow-x: hidden;
}

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


.tt-breadcrumb {
  background-position: 0 0;
  background-size: cover;
  padding: 100px 0 10px 0;
}

.tt-breadcrumb ul {
  margin: 0 0 0 -7px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 145px
}

.tt-breadcrumb ul li {
  color: #bbbdc3;
  padding: 0 8px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}

.layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative
}

.layout01 .layout01__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57.5%;
  flex: 0 0 57.5%;
  max-width: 40%;
  position: relative
}

.layout01 .layout01__img .tt-img-main img {
  width: 100%;
}

.layout01 .layout01__img .tt-img-more {
  position: absolute
}

.layout01 .layout01__img .tt-img-more img {
  max-width: 436px;
  -webkit-box-shadow: 0 0 50px rgba(48, 52, 66, .2);
  box-shadow: 0 0 50px rgba(48, 52, 66, .2)
}

.layout01 .layout01__img .tt-img-more.left-bottom {
  left: -98px;
  bottom: -63px
}

.layout01 .layout01__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%
}

@media (min-width:1025px) {
  .layout01.layout01__img-more .layout01__img {
    margin-bottom: 61px
  }
}

.layout01 .layout01__content-wrapper {
  background-color: #fff;
  position: relative;
  margin: 35px 0 0 -85px;
  padding: 62px 0 0 75px
}

@media (max-width:1024.98px) {
  .layout01.layout01__img-more .layout01__img {
    margin-bottom: 129px
  }

  .layout01.layout01__small-layout .layout01__content-wrapper {
    padding-bottom: 22px !important
  }
}

.layout01 .layout01__bg-marker {
  position: absolute;
  z-index: 2;
  top: -26px;
  opacity: .08
}

.layout01 .layout01__bg-marker:before {
  content: '';
  width: 64px;
  height: 64px;
  background: #fff;
  position: absolute;
  display: block;
  z-index: 2;
  bottom: 0
}

.layout01.layout01__revers .layout01__img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2
}

.layout01.layout01__revers .layout01__img .tt-img-more.left-bottom {
  left: inherit;
  right: -98px
}

.layout01.layout01__revers .layout01__content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.layout01.layout01__revers .layout01__content-wrapper {
  margin-left: 0;
  margin-right: -85px;
  padding: 10px 95px 85px 0
}

.layout01.layout01__revers .layout01__bg-marker {
  left: -129px
}

.layout01.layout01__revers .layout01__bg-marker:before {
  right: 0
}

.layout01:not(.layout01__revers) .layout01__bg-marker {
  right: -129px
}

.layout01:not(.layout01__revers) .layout01__bg-marker:before {
  left: 0
}

@media (max-width:1500px) {

  .layout01 .layout01__bg-marker,
  .tt-box03 .tt-box03__bg-marker {
    display: none
  }

  .layout01 .layout01__img .tt-img-more img {
    max-width: 370px
  }

  .layout01 .layout01__img .tt-img-more.left-bottom {
    left: -27px;
    bottom: -63px
  }

  .layout01.layout01__revers .layout01__img .tt-img-more.left-bottom {
    left: auto;
    right: -27px
  }
}

@media (max-width:1229px) {
  .layout01.layout01__revers .layout01__content-wrapper {
    padding-bottom: 20px
  }
}

@media (max-width:1250px) {
  .layout01 .layout01__img .tt-img-more img {
    max-width: 370px
  }

  .layout01 .layout01__img .tt-img-more.left-bottom {
    left: -15px
  }

  .layout01.layout01__revers .layout01__img .tt-img-more.left-bottom {
    left: auto;
    right: -15px
  }
}

@media (max-width:1024.98px) {
  .layout01 .layout01__img .tt-img-more img {
    max-width: 232px;
    -webkit-box-shadow: 0 0 30px rgba(48, 52, 66, .2);
    box-shadow: 0 0 30px rgba(48, 52, 66, .2)
  }

  .layout01 .layout01__img .tt-img-more.left-bottom {
    left: -15px;
    bottom: -109px
  }

  .layout01 .layout01__content-wrapper {
    margin: 32px 0 0 -85px;
    padding: 25px 0 0 35px
  }

  .layout01.layout01__revers .layout01__img .tt-mg-more.left-bottom {
    right: -15px;
    left: auto
  }

  .layout01.layout01__revers .layout01__content-wrapper {
    padding: 25px 35px 0 0
  }

  .layout01 .layout01__bg-marker {
    display: none
  }
}

@media (max-width:766.98px) {
  .layout01 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0
  }

  .layout01.layout01__img-more .layout01__img {
    margin-bottom: 0
  }

  .layout01 .layout01__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 458px;
    padding-bottom: 21px;
    padding-left: 35px
  }

  .layout01 .layout01__img .tt-img-more img {
    max-width: 53%;
    min-width: 146px;
    -webkit-box-shadow: 0 0 20px rgba(48, 52, 66, .2);
    box-shadow: 0 0 20px rgba(48, 52, 66, .2)
  }

  .layout01 .layout01__img .tt-img-more.left-bottom {
    left: 0;
    bottom: 0
  }

  .layout01 .layout01__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    padding: 0
  }

  .layout01 .layout01__content-wrapper,
  .layout01.layout01__revers .layout01__content-wrapper {
    margin: 33px 0 0;
    padding: 0
  }

  .layout01.layout01__revers .layout01__img .tt-img-more.left-bottom {
    right: inherit;
    left: 0
  }

  .layout01.layout01__revers .layout01__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .layout01.layout01__single-img .layout01__img {
    padding-left: 0;
    padding-bottom: 0
  }
}

.tt-services-promo__list {
  margin-top: -30px
}

.tt-services-promo__list .tt-services-promo {
  margin-top: 30px
}

.tt-services-promo__list .tt-item {
  width: calc(33.3% - 20px);
}

.tt-services-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative
}

.tt-services-promo .tt-value {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 110px;
  line-height: 46px;
  color: #d2eefd;
  position: absolute;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.tt-services-promo .tt-value.tt-value__indent {
  left: 5px;
  margin-top: -5px
}

.tt-services-promo .tt-bg-marker {
  position: absolute;
  right: 10px;
  top: 0;
  margin-top: 30px;
  background-image: url(../images/services-promo-bg.png);
  background-position: 0 top;
  background-repeat: no-repeat;
  width: 52px;
  height: calc(100% - 60px)
}

.tt-services-promo .tt-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-shadow: 0 0 20px rgba(48, 52, 66, .05);
  box-shadow: 0 0 20px rgba(48, 52, 66, .05);
  background-color: #fff;
  min-height: 120px;
  margin-left: 40px;
  padding: 27px 35px 27px 25px;
  text-align: left;
  position: relative;

}

.tt-services-promo .tt-wrapper .tt-col-icon {
  font-size: 38px;
  line-height: 34px;
  color: #f47629;
  width: 56px;
  min-width: 56px;
  position: relative;
  top: 6px
}

.tt-services-promo .tt-wrapper .tt-title {
  font-size: 18px;
  line-height: 34px;
  color: #555;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  padding: 0 0 8px;
  margin: 0;
  text-align: center;
}

.tt-services-promo .tt-wrapper .tt-title+* {
  margin-top: 0
}

@media (max-width:1229.98px) {
  #tt-pageContent .tt-obj .tt-obj__wrapper {
    padding: 32px 15px 0;
    width: calc(100% - 20px)
  }

  #tt-pageContent .tt-obj .tt-obj__title {
    font-size: 22px;
    line-height: 32px
  }

  .tt-services-promo .tt-wrapper {
    padding: 27px 15px 27px 25px
  }

  .tt-services-promo .tt-wrapper .tt-col-icon {
    font-size: 30px;
    line-height: 26px;
    width: 47px;
    min-width: 47px
  }

  .tt-services-promo .tt-wrapper .tt-title {
    font-size: 21px;
    line-height: 31px
  }
}

@media (max-width:758px) {
  .tt-services-promo {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto
  }
}

/*gallery*/
.list-port {
  background-color: #eef9ff;
  padding: 40px 0;
}


.starli-port1 li {
  width: calc(50% - 25px);
}

.starli-port li {
  width: calc(50% - 25px);
  margin-bottom: 25px;
  height: 280px;
}

.starli-port li a {
  width: 100%;
  height: 100%;
}

/*end*/
/*contact us*/
.contact {
  position: relative;
}

.leftcont {
  width: 60%;
  padding: 150px 25px 50px 25px;
  background-color: #fafafa;
}

.leftcont>p {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 300;
}

.leftcont>h2 {
  font-size: 45px;
  font-weight: 600;
  color: #444;
  padding-bottom: 15px;
}

.leftcont .contbox {
  position: relative;
  display: block;
  content: "";
  padding: 30px;
  background-color: #fff;
  width: 100%;
  max-width: 550px;
  margin-top: 25px;
  left: 350px;
}

.leftcont .contbox .req-email {
  font-size: 22px;
  color: #0093e1;
  text-align: center;
  font-weight: 500;
  padding-bottom: 5px;
}

.leftcont .contbox .blen-conta li {
  width: 100%;
}

.leftcont .contbox .blen-conta li:not(:first-child) {
  margin-top: 10px;
}

.leftcont .contbox .blen-conta li p {
  font-size: 15px;
  color: #444;
  padding-bottom: 5px;
}

.leftcont .contbox .blen-conta li label input {
  width: 100%;
  padding: 0 15px;
  border: 1px solid #ddd;
  outline: 0 none;
  height: 40px;
  border-radius: 3px;
}

.leftcont .contbox .blen-conta li label textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.leftcont .contbox .blen-conta #error {
  font-size: 14px;
  background-color: #eb572a;
  padding: 0px;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

.leftcont .contbox .subbtn {
  text-align: center;
  margin: 25px auto 0;
  padding: 8px 18px;
  outline: none;
  border-radius: 3px;
  border: 0;
  display: block;
  background-color: #0093e1;
  color: #fff;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.leftcont .contbox .subbtn:hover {
  background-color: #eb572a;
}

.leftcont .ble-con {
  padding-top: 25px;
}

.leftcont .ble-con .phone {
  width: 33.3%;
  padding: 10px;
}

.leftcont .ble-con .phone h3 {
  font-size: 18px;
  color: #0093e1;
  font-weight: 500;
  padding-bottom: 5px;
}

.leftcont .ble-con .phone a {
  font-size: 15px;
  color: #444;
  padding-top: 3px;
}

.rightimg {
  width: 40%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  right: 0;
  z-index: -1;
}

.map {
  width: 100%;
  padding: 0;
  margin: 0;
}

/*end*/
/*Brahmin Marriage*/
.bm {
  width: 100%;
  display: block;
  background: url(../img/bm.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 65px 0;
}

.bm h2 {
  font-size: 35px;
  text-align: left;
  color: #fff;
}

.brahmin {
  margin: 30px 0;
}

.brahmin .brah-list {
  margin-bottom: 30px;
}

.brahmin .brah-list .brah-text {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-list .brah-text {
    width: 100%;
  }
}

.brahmin .brah-list .brah-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #a64243;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 25px;
  border-bottom: 0.5px dotted #a64243;
}

.brahmin .brah-list .brah-text h4 {
  font-size: 16px;
  color: #585858;
  font-weight: 500;
  padding-bottom: 10px;
}

.brahmin .brah-list .brah-text2 h2 {
  text-align: right;
  font-size: 28px;
  font-weight: 500;
  color: #a64243;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 25px;
  border-bottom: 0.5px dotted #a64243;
}

.brahmin .brah-list .brah-text2 h4 {
  text-align: right;
  font-size: 16px;
  color: #585858;
  font-weight: 500;
  padding-bottom: 10px;
}

/* .brahmin .brah-list .brah-text p {
  font-size: 15px;
  color: #8f8f8f;
  position: relative;
  padding-left: 15px;
  font-weight: 500;
} */

/* .brahmin .brah-list .brah-text p::before {
  width: 5px;
  height: 5px;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 9px;
  background-color: #28a6de;
  border-radius: 50px;
} */

.brahmin .brah-list .brah-text .lis-titl {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.brahmin .brah-list .brah-text ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.brahmin .brah-list .brah-text ul li {
  padding: 5px 0;
  width: 350px;
  margin-right: 15px;
}

/* .brahmin .brah-img {
  width: 30%;
} */

@media screen and (max-width: 767px) {
  .brahmin .brah-img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .brahmin .brah-img {
    width: 100%;
  }
}

.brahmin .brah-img .img-brah {
  padding: 10px 10px;
  width: 100%;
  height: 420px;
  display: block;
  background-color: #28a6de;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-img .img-brah {
    width: 100%;
    margin-top: 25px;
  }
}

.brbg {
  background-color: #fafafa;
  padding: 25px 0;
}

/*end*/

/*Clients*/
.brah-list li {
  width: calc(50% - 25px);
  margin-bottom: 25px;
}

.brahmin .brah-list .brah-text1 {
  width: calc(50% - 25px);
}

@media screen and (max-width: 767px) {
  .brahmin .brah-list .brah-text1 {
    width: 100%;
  }
}

.brahmin .brah-list .brah-text1 h2 {
  font-size: 22px;
  font-weight: 500;
  color: #28a6de;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 25px;
  text-align: center;
  border-bottom: 0.5px dotted transparent;
}

.brahmin .brah-list .brah-text1 h4 {
  font-size: 16px;
  color: #585858;
  font-weight: 500;
  padding-bottom: 10px;
  text-align: center;
}

.brahmin .brah-list .brah-text1 p {
  font-size: 15px;
  color: #8f8f8f;
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}

.brahmin .brah-list .brah-text1 p::before {
  width: 5px;
  height: 5px;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 9px;
  background-color: #28a6de;
  border-radius: 50px;
}

.brahmin .brah-list .brah-text1 .lis-titl {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.brahmin .brah-list .brah-text1 ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.brahmin .brah-list .brah-text1 ul li {
  padding: 5px 0;
  width: 350px;
  margin-right: 15px;
}

.brahmin .brah-img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .brahmin .brah-img {
    width: 100%;
  }
}

.brahmin .brah-img .img-brah {
  padding: 5px 5px;
  width: 100%;
  height: 220px;
  display: block;
  background-color: #28a6de;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-img .img-brah {
    width: 100%;
    margin-top: 25px;
  }
}

.brbg {
  background-color: #fafafa;
  padding: 25px 0;
}

/*end*/

.elect-servi {
  padding: 80px 0;
}

.our-elect {
  width: 100%;
}

.our-elect li {
  width: calc(33.3% - 35px);
  margin-bottom: 35px;
  position: relative;
  display: block;
}

.our-elect li a {
  width: 100%;
  height: 100%;
}

.our-elect li a img {
  height: 250px;
}

.ele-tilte {
  position: absolute;
  display: block;
  width: 85%;
  background-color: #fff;
  padding: 15px;
  bottom: 0;
  left: 0;
}

.ele-tilte h2 {
  position: relative;
  display: block;
  content: "";
  font-size: 19px;
  color: #444;
  font-weight: 500;
}

.ele-tilte h2::after {
  width: 70px;
  height: 2px;
  background-color: #28A6DE;
  left: 0;
  display: block;
  content: "";
  top: -5px;
  position: absolute;
}