* {
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  position: relative;
  width: 100%;
}

img {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
:root {
  --font-family:"Roboto1", 'Source Han Sans English', 'Source Han Sans J', 'Source Han Sans K', 'Source Han Sans T', 'Source Han Sans', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
}
.hamburger {
  display: none;
}
.x-center {
  width: 1140px;
}
.center {
  width: 1200px;
}
.app{
  display: none;
}
.header-box{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
  width: 100%;
  transition: 0.3s;
}
.appnavBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 90%) / 2);
  z-index: 100;
}
.appnavBtn p:not(:first-of-type){
  margin-top: 4px;
}
.appnavBtn p{
  width: 19px;
  height: 2px;
  background-color: #ffffff;
}
.appnav{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  background-color: transparent;
  z-index: 110;
  transition: 0.5s;
  opacity: 0;
}
.appnav.active{
  left: 0;
  opacity: 1;
}
.appnav .zc{
  width: calc(70% - (100% - 90%) / 2);
  padding-left: calc((100% - 90%) / 2);
  padding-top: 20px;
  background-color: #4E08AF;
  height: calc(100% - 20px);
  overflow-y: auto;
}
.appnav .zc .close{
  font-size: 22px;
  color: #ffffff;
}
.appnav .zc .txt{
  margin: 50px 0 60px 0;
}
.appnav .zc .txt a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  display: block;
  border-bottom: 2px solid transparent;
  width: max-content;
  max-width: 100%;
  padding-bottom: 7px;
}
.appnav .zc .txt a.active{
  border-bottom-color: #7F1AF0;
}
.appnav .zc .txt a:not(:first-of-type){
  margin-top: 30px;
}
.appnav .zc .bt{
  display: flex;
  align-items: center;
}
.appnav .zc .bt a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #C2C2C2 ;
}
.appnav .zc .bt span{
  width: 1px;
  height: 14px;
  background-color: #7F1AF0;
  margin: 0 15px;
}
.appnav .zc .bt a.active{
  color: #ffffff;
}
.appnav .zc .bt i{
  font-size: 18px;
  color: #ffffff;
}
.appsearch{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: none;
}
.appsearch form{
  width: calc(90% - 10px);
  padding: 5px;
  background-color: #9831FF;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.appsearch form input{
  width: calc(100% - 45px);
  height: 100%;
  border-radius: 30px;
  background-color: #ffffff;
  text-indent: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  border: none;
  outline: none;
}
.appsearch form button{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: none;
  background-color: transparent;
  outline: none;
}
.appsearch form button i{
  font-size: 18px;
  color: #ffffff;
}
.appsearch .close{
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30%;
}
.header-box.active{
  background-color: rgba(150,78,255, 0.9);
}
.header-box.active form{
  background-color: #7F0EF0;
}
.header-box .ct{
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.header-box .ct .logo img{
  height: 63px;
}
.header-box .nav{
  display: flex;
  margin-left: 65px;
}
.header-box .nav li a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  position: relative;
}
.header-box .nav li a::after{
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0px;
  height: 2px;
  background-color: #FFFFFF;
  transition: 0.3s;
}
.header-box .nav li a:hover::after{
  width: 43px;
}
.header-box .nav li a.active::after{
  width: 43px;
}
.header-box .nav li:not(:first-of-type){
  margin-left: 35px;
}
.header-box .language{
  display: flex;
  align-items: center;
  margin-left: 60px;
}
.header-box .language a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #C2C2C2;
}
.header-box .language a.active{
  color: #FFFFFF;
}
.header-box .language span{
  color: #666666;
  line-height: 1;
  margin: 0 4px;
}
.header-box .search{
  margin-left: 60px;
}
.header-box .search .mr{
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.5s;
}
.header-box .search .mr:hover{
  transform: scale(1.2);
}
.header-box .ct form{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  opacity: 0;
  transition: 0.5s;
  background-color: #8C3FFF;
  border-radius: 19px;
  display: flex;
  width: calc(495px - 8px);
  height: calc(38px - 8px);
  padding: 4px;
}
.header-box .ct form.active{
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}
.header-box .ct form input{
  width: calc(440px - 30px);
  padding: 0 15px;
  background-color: #FFFFFF;
  border-radius: 19px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #8C3FFF;
  outline: none;
  border: none;
}
.header-box .ct form button{
  outline: none;
  border: none;
  background-color: transparent;
  width: calc(100% - 440px);
  cursor: pointer;
}
.header-box .ct form button i{
  font-size: 24px;
  color: #FFFFFF;
}
.mySwiper{
  width: 100%;
  height: 100vh;
}
.mySwiper .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiper .ct{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 11%;
}
.mySwiper .ct h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 122px;
  color: #FFFFFF;
  line-height: 1;
}
.mySwiper .ct h6{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 25px;
}
.mySwiper .ct .icon{
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin-top: 210px;
}
.mySwiper .ct .icon .item{
  display: flex;
  align-items: center;
  margin-right: 45px;
  margin-bottom: 40px;
}
.mySwiper .ct .icon .item p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  color: #FFFFFF;
  margin-left: 17px;
  line-height: 1;
}
.mySwiper .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  opacity: 1;
  margin: 0 15px !important;
}
.mySwiper .swiper-pagination-bullet-active{
  background-color: #FFFFFF;
}
.mySwiper .swiper-pagination{
  bottom: 35px;
}
.i1-box{
  background: url('../image/i1-bg.png') no-repeat center / cover;
  width: 100%;
  border-top: 40px solid #4D07AF;
  border-bottom: 60px solid #4D07AF;
}
.i1-box .ct{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 193px 0 42px 0;
  margin: 0 auto;
}
.i1-box .ct h6{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 35px;
}
.i1-box .ct .i1-Swiper{
  width: 100%;
  margin-top: 120px;
  padding-bottom: 113px;
}
.i1-box .ct .i1-Swiper .item img{
  height: 147px;
}
.i1-box .ct .i1-Swiper .item p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 42px;
  margin-top: 60px;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar{
  height: 28px;
  width: 684px;
  border-radius: 18px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 13px;
  background-color: #470CA3;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar::before{
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #140064;
  z-index: 89;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar::after{
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #140064;
  z-index: 89;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar-drag{
  background-color: #7D0DED;
  border-radius: 18px;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar-drag::before{
  display: block;
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.i1-box .ct .i1-Swiper .swiper-scrollbar-drag::after{
  display: block;
  content: '';
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
}
.i1-box .ct .i1-Swiper .swiper-scrollbar {
  pointer-events: none; /* 禁止点击事件 */
}
.i1-box .ct .i1-Swiper .swiper-scrollbar .swiper-scrollbar-drag {
  pointer-events: auto; /* 允许拖动事件 */
}
.banner{
  width: 100%;
  height: 740px;
  position: relative;
}
.banner .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .ct{
  position: absolute;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.banner .ct .left{
  width: calc(100% - 446px - 70px);
}
.banner .ct .left h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 106px;
  color: #FFFFFF;
  line-height: 1;
}
.banner .ct .left h6{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 30px;
}
.banner .ct .left .icon{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 75px;
}
.banner .ct .left .icon .item{
  display: flex;
  align-items: center;
  margin-right: 45px;
  margin-top: 30px;
}
.banner .ct .left .icon .item p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  color: #FFFFFF;
  margin-left: 17px;
  line-height: 1;
}
.banner .ct .right{
  width: 446px;
}
.banner .ct .right img{
  width: 100%;
}
.banner .flow{
  position: absolute;
  right: calc((100% - 1200px) / 2);
  bottom: 0px;
  width: 530px;
}
.banner .flow img{
  width: 100%;
}
.p-box{
  width: 100%;
  background-color: #4617A8;
}
.p-box .ct{
  margin: 0 auto;
  padding: 40px 0 60px 0;
  position: relative;
}
.p-box .ct .pb{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #BCC1FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-box .ct .pb i{
  font-size: 28px;
  color: #BCC1FF;
  transition: 0.3s;
}
.p-box .ct .pb:hover{
  background-color: #BCC1FF;
}
.p-box .ct .pb:hover>i{
  color: #5211B3;
}
.p-box .ct .prev{
  left: -120px;
}
.p-box .ct .next{
  right: -120px;
}
.p-box .ct .p-swiper{
  width: 100%;
  height: 1018px;
}
.p-box .ct .p-swiper a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.p-box .ct .p-swiper a:hover>.bg{
  transform: scale(1.1);
}
.p-box .ct .p-swiper a .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s;
}
.p-box .ct .p-swiper a .flow{
  width: calc(100% - 60px - 45px);
  padding: 0 45px 0 60px;
  position: absolute;
  top: 177px;
  left: 0;
}
.p-box .ct .p-swiper a .flow img{
  height: 145px;
}
.p-box .ct .p-swiper a .flow p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 42px;
  margin-top: 85px;
}
.p-box .ct .p-swiper a .jt{
  position: absolute;
  left: 60px;
  bottom: 200px;
  transition: 0.3s;
}
.p-box .ct .p-swiper a .jt:hover{
  transform: translate(15px);
}
.p-nav{
  width: 100%;
  background-color: #7426E7;
  transition: 0.3s;
}
.p-nav.active{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.p-nav .ct{
  margin: 0 auto;
  position: relative;
}
.p-nav .ct .flow{
  position: absolute;
  top: 100%;
  left: 0px;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
  opacity: 0;
  z-index: 9;
  width: 100%;
}
.p-nav .ct .flow .nb{
  display: none;
}
.p-nav .ct .flow .nb .rq{
  display: flex;
  flex-wrap: wrap;
  background-color: #964EFF;
  border-radius: 0 0 20px 20px;
  width: calc(100% - 40px);
  padding: 13px 20px 0 20px;
}
.p-nav .ct .flow a{
  border: 1px solid transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
  border-radius: 18px;
  margin-right: 15px;
  line-height: 1;
  padding: 0 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  height: 36px;
  transition: 0.3s;
}
.p-nav .ct .flow a:hover{
  border-color: #ffffff;
}
.p-nav .ct .flow a.active{
  border-color: #ffffff;
}
.p-nav .ct .flow.active{
  transform: scaleY(1);
  opacity: 1;
}
.p-nav .ct .ab{
  width: 100%;
  overflow: hidden;
}
.p-nav .ct i{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 88;
  cursor: pointer;
  font-size: 38px;
  color: #FFFFFF;
}
.p-nav .ct .prev{
  left: -50px;
}
.p-nav .ct .next{
  right: -50px;
}
.p-nav .ct .navbar{
  width: 100%;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  overflow-x: auto;
}
.p-nav .ct .navbar::-webkit-scrollbar{
  width: 5px;
  height: 10px;
}
.p-nav .ct .navbar::-webkit-scrollbar-thumb{
  background: #d3d3d3;
}
.p-nav .ct .navbar::-webkit-scrollbar-track {
  background: #4617A8;
}
.p-nav .ct .item{
  /* display: inline-block; */
  width: 100%;
  /* height: 100%; */
  /* flex-shrink: 0; */
}
/*.p-nav .ct .item:not(:first-of-type){*/
/*  margin-left: 100px;*/
/*}*/
.p-nav .ct .one{
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 26px;
  color: #FFFFFF;
  display: block;
  position: relative;
  padding: 28px 0;
}
.p-nav .ct .one::after{
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 0px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s;
}
.p-nav .ct .one:hover::after{
  width: 102px;
}
.p-nav .ct .one.active::after{
  width: 102px;
}
/*.p-nav .ct .flow{*/
/*  position: absolute;*/
/*  top: 100%;*/
/*  left: 0px;*/
/*  transform: scaleY(0);*/
/*  transform-origin: top;*/
/*  transition: 0.3s;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  background-color: #964EFF;*/
/*  border-radius: 0 0 20px 20px;*/
/*  width: calc(100% - 40px);*/
/*  padding: 13px 20px 0 20px;*/
/*  opacity: 0;*/
/*  z-index: 9;*/
/*}*/
/*.p-nav .ct .item:hover>.flow{*/
/*  transform: scaleY(1);*/
/*  opacity: 1;*/
/*}*/
/*.p-nav .ct .flow a{*/
/*  border: 1px solid transparent;*/
/*  font-family: var(--font-family);*/
/*  font-weight: 400;*/
/*  font-size: 22px;*/
/*  color: #FFFFFF;*/
/*  border-radius: 18px;*/
/*  margin-right: 15px;*/
/*  line-height: 1;*/
/*  padding: 0 18px;*/
/*  margin-bottom: 12px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  height: 36px;*/
/*}*/
/*.p-nav .ct .flow a:hover{*/
/*  border-color: #ffffff;*/
/*}*/
/*.p-nav .ct .flow a.active{*/
/*  border-color: #ffffff;*/
/*}*/
.p-nav .pnav-swiper{
  width: 100%;
}
.p-nav .pnav-swiper .swiper-slide{
  width: auto;
  position: unset;
}
.pl-box{
  width: 100%;
  background-color: #4617A8;
}
.pl-box .ct{
  padding: 90px 0 80px 0;
  margin: 0 auto;
}
.p-title{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-title h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 1;
  margin: 0 15px;
  text-align: center;
  max-width: 80%;
}
.p-title img{
  height: 30px;
}
.p1-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.p1-list li{
  width: calc((100% - 81px) / 4);
  height: 421px;
  margin-right: 27px;
  margin-bottom: 27px;
  transition: 0.3s;
}
.p1-list li:nth-of-type(4n){
  margin-right: 0;
}
.p1-list li a{
  display: block;
  width: 100%;
  padding-top: 66px;
  height: calc(100% - 66px);
  position: relative;
  background-color: #ffffff;
  background: linear-gradient(180deg, #FFFFFF, #FFFFFF);
}
.p1-list li a:hover{
  background: linear-gradient(180deg, #F7F8FF, #DFE2FF);
}
.p1-list li:hover{
  transform: translateY(-10px);
}
.p1-list li a .flow{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 0 0 20px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #474A90;
  max-width: calc(80% - 26px);
  width: max-content;
  background-color: #C7CCFF;
  padding: 4px 13px;
  word-wrap: break-word;
  text-align: center;
}
.p1-list li a .bjib{
  position: absolute;
  right: 0;
  top: 31px;
}
.p1-list li a .bjib img:last-of-type{
  display: none;
}
.p1-list li a .ib{
  width: 100%;
  height: 206px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.p1-list li a .ib img{
  max-width: 95%;
  max-height: 100%;
}
.p1-list li a .txt{
  width: 90%;
  margin: 25px auto 0;
}
.p1-list li a .txt h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 22px;
  color: #474A90;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: center;
}
.p1-list li a .txt h6{
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #777777;
  text-align: center;
  /* line-height: 1;
  margin-top: 5px; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.p1-list li a .txt .more{
  width: 117px;
  height: 26px;
  background: #474A90;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  transition: 0.3s;
}
.p1-list li a .txt .more span{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #F8F9FC;
  line-height: 1;
}
.p1-list li a .txt .more img{
  margin-left: 7px;
  height: 13px;
}
.p1-list li a .txt .more:hover{
  background-color: #964EFF;
}
.p1-list li:hover> a.bjib img:last-of-type{
  display: block;
}
.p1-list li:hover> a.bjib img:first-of-type{
  display: none;
}
.coo-box{
  width: 100%;
  background-color: #4617A8;
}
.coo-box .ct{
  margin: 0 auto;
  padding: 105px 0 129px 0;
}
.coo-box .ct .map{
  margin-top: 99px;
  width: 100%;
}
.coc-box{
  background-color: #4617A8;
  width: 100%;
}
.coc-box .ct{
  margin: 0 auto;
  padding: 108px 0 80px 0;
}
.coc-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 109px;
}
.coc-list li{
  width: calc((100% - 60px) / 2);
  height: 213px;
  margin-right: 60px;
  margin-bottom: 40px;
  background: linear-gradient(240deg, #7326E6, #9F5EFF);
  box-shadow: 3px 5px 27px 0px rgba(1,7,116,0.52);
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
}
.coc-list li:hover{
  transform: translateY(-15px);
}
.coc-list li:nth-of-type(2n){
  margin-right: 0;
}
.coc-list li img{
  position: absolute;
  top: 35px;
  right: 42px;
  height: 103px;
}
.coc-list li .txt{
  width: calc(100% - 33px - 100px);
  padding: 90px 100px 0 33px;
  height: calc(100% - 90px);
}
.coc-list li .txt h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 1;
}
.coc-list li .txt p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #FFFFFF;
  margin-top: 10px;
  line-height: 28px;
}
.s1-box{
  width: 100%;
  height: 440px;
  background: linear-gradient(-60deg, #03004C, #7426E7);
}
.s1-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s2-box{
  width: 100%;
  background-color: #4617A8;
}
.s2-box .ct{
  margin: 0 auto;
  padding: 0 0 125px 0;
  position: relative;
}
.s2-box .back{
  position: fixed;
  top: 215px;
  left: calc((100% - 1200px) / 2 - 95px);
  z-index: 89;
}
.swg{
  padding-top: 105px;
}
.swg img{
  margin: 0 auto;
}
.swg h4{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 42px;
  color: #FFFFFF;
  text-align: center;
  margin: 25px 0 24px 0;
}
.swg p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #964EF6;
  text-align: center;
}
.se-list{
  margin-top: -230px;
  position: relative;
  z-index: 2;
}
.se-list li{
  transition: 0.3s;
}
.se-list li:not(:first-of-type){
  margin-top: 40px;
}
.se-list li a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 260px;
  background-color: #AE5DFF;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.se-list li:hover{
  transform: translateX(15px);
}
.se-list li:hover>a{
  background-color: #8C00FA;
}
.se-list li a .ib{
  width: 354px;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #DFE2FF, #F7F8FF);
}
.se-list li a .ib img{
  max-width: 90%;
  max-height: 90%;
}
.se-list li a .txt{
  width: calc(100% - 354px - 69px - 98px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 98px 0 69px;
}
.se-list li a .txt h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.se-list li a .txt h6{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 15px 0 35px 0;
}
.se-list li a .txt .more{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 37px;
  border-radius: 18px;
  background-color: #ffffff;
}
.se-list li a .txt .more span{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #4617A8;
  line-height: 1;
}
.se-list li a .txt .more img{
  margin-left: 7px;
  height: 20px;
}
.pd1-box{
  width: 100%;
  background-color: #F7F8FF;
  border-top: 40px solid #FFFFFF;
  /* border-bottom: 40px solid #FFFFFF; */
}
.pd1Ct{
  margin: 0 auto;
  padding: 60px 0 84px 0;
  position: relative;
}
.pd1Ct .back{
  top: 65px;
}
.pd1Ct .top{
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.pd1Ct .top:nth-of-type(2){
  margin-top: 0px;
}
.pd1Ct .top .left{
  width: 567px;
}
.pd1Ct .top .left .top-swiper-box{
  width: 100%;
  height: 486px;
  background: url('../image/pd2.jpg') no-repeat center / cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.pd1Ct .top .left .top-swiper{
  width: 100%;
  height: 100%;
}
.pd1Ct .top .left .top-swiper .img-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd1Ct .top .left .top-swiper .img-box img{
  max-width: 90%;
  max-height: 90%;
  height: 80%;
}
.pd1Ct .top .left .bottom-swiper-box{
  margin-top: 30px;
  width: 100%;
  height: 100px;
}
.pd1Ct .top .left .bottom-swiper{
  width: 100%;
  height: 100%;
}
.pd1Ct .top .left .bottom-swiper .swiper-slide-thumb-active .img-box{
  border-color: #964EFF;
}
.pd1Ct .top .left .bottom-swiper .img-box{
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid transparent;
  transition: 0.3s;
}
.pd1Ct .top .left .bottom-swiper .img-box img{
  max-width: 70%;
  max-height: 70%;
}
.pd1Ct .top .right{
  width: calc(100% - 567px - 85px);
}
.pd1Ct .top .right h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #040050;
  line-height: 42px;
}
.pd1Ct .top .right .type{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #964EFF;
  line-height: 1;
  border-radius: 20px;
  padding: 4px 18px 8px 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  margin: 25px 0 30px 0;
}
.pd1Ct .top .right .txt p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #666666;
  line-height: 30px;
}
.pd2 .pd1Ct .top .right .txt p{
  width: calc(100% - 10px);
  padding-left: 10px;
  position: relative;
  line-height: 2;
}
.pd2 .pd1Ct .top .right .txt p:not(:first-of-type){
  margin-top: 5px;
}
.pd2 .pd1Ct .top .right .txt p::before{
  display: block;
  display: none;
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666666;
  position: absolute;
  left: 0;
  top: 10px;
}
.pd2 .pd1Ct .top .right .txt p{
  width: calc(100% - 15px);
  padding-left: 15px;
}
.pd2 .pd1Ct .top .right .txt p::before{
  width: 6px;
  height: 6px;
}
.pd1Ct .top .right .model{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.pd1Ct .top .right .model p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  margin-right: 35px;
  margin-top: 10px;
}
.pd1Ct .top .right .model .ab{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 60px - 35px);
}
.pd1Ct .top .right .model .ab a{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #03004C;
  border-radius: 18px;
  border: 2px solid #03004C;
  padding: 0 10px;
  margin-right: 35px;
  margin-top: 10px;
  transition: 0.3s;
}
.pd1Ct .top .right .model .ab a:hover{
  border-color: #4817AA;
  background-color: #4817AA;
  color: #ffffff;
}
.pd1Ct .content{
  margin-top: 45px;
}
.pd2 .pd1Ct .content{
  margin-top: 45px;
}
.pd2.pd3 .pd1Ct .content{
  margin-top: 45px;
}
.pd1Ct .content h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #964EFF;
  border-radius: 20px;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  width: max-content !important;
  max-width: calc(100% - 50px) !important;
  padding: 7px 25px !important;
  line-height: 1;
}
.pd1Ct .content h3:not(:first-of-type){
  margin-top: 40px;
}
.pd1Ct .content p,
.pd1Ct .content span{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px !important;
  color: #666666;
  line-height: 30px;
  margin-top: 20px;
}
.pd1Ct .content .txt{
  margin-top: 20px;
}
.pd1Ct .content .txt p{
  margin-top: 0;
  padding-left: 28px;
  width: calc(100% - 28px);
  position: relative;
}
.pd1Ct .content .txt p::before{
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #141E3E;
  position: absolute;
  left: 0;
  top: 11px;
}
.pd1Ct .content img{
  width: 100%;
  margin-top: 30px;
}
.pd1Ct .content .ib{
  /* display: flex;
  justify-content: space-between; */
  margin-top: 40px;
}
.pd1Ct .content .ib p{
  width: 100%;
  margin: 0;
}
.pd1Ct .content .ib img{
  /*width: calc((100% - 40px) / 2);*/
  width: 100%;
  /*margin: 0;*/
}
.ab1-box{
  width: 100%;
  background-color: #4617A8;
}
.ab1Ct{
  margin: 0 auto;
  padding: 105px 0;
}
.ab1Ct .appcontent{
  display: none;
}
.ab1Ct .content{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.ab1Ct .content .left{
  width: 743px;
}
.ab1Ct .content .left h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.ab1Ct .content .left .txt p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 30px;
}
.ab1Ct .content .left .txt p:not(:first-of-type){
  margin-top: 22px;
}
.ab1Ct .content .left .txt p:nth-of-type(3){
  margin-top: 50px;
}
.ab1Ct .content .right{
  width: calc(100% - 743px - 73px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ab1Ct .content .right .ib1{
  height: 417px;
}
.ab1Ct .content .right .ib2{
  height: 202px;
}
.ab1Ct .content .right .ib{
  width: 100%;
  overflow: hidden;
}
.ab1Ct .content .right .ib img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.ab1Ct .content .right .ib:hover img{
  transform: scale(1.05);
}
.ab1Ct .cor{
  margin-top: 140px;
}
.ab1Ct .cor .container{
  margin-top: 85px;
  width: 100%;
  height: 880px;
  position: relative;
}
.ab1Ct .cor .container .mr{
  width: 100%;
  height: 100%;
}
.ab1Ct .cor .container .mr .box{
  width: 100%;
  height: 100%;
  display: flex;
}
.ab1Ct .cor .container .mr .item{
  width: calc(100% / 3);
  height: 100%;
  position: relative;
}
.ab1Ct .cor .container .mr .item .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab1Ct .cor .container .mr .item .flow{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
}
.ab1Ct .cor .container .mr .item .flow .icon{
  height: 146px;
}
.ab1Ct .cor .container .mr .item .flow h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  text-align: center;
  line-height: 52px;
  margin-top: 50px;
}
.ab1Ct .cor .container .mr .item .line{
  width: 92px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 67px;
}
.ab1Ct .cor .ful{
  width: 100%;
  height: 100%;
  display: none;
}
.ab1Ct .cor .ful .box{
  display: flex;
  width: 100%;
  height: 100%;
}
.ab1Ct .cor .ful .box .left{
  width: 68%;
  height: 100%;
  position: relative;
}
.ab1Ct .cor .ful .box .left .flow{
  position: absolute;
  top: 210px;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab1Ct .cor .ful .box .left .flow img{
  height: 146px;
}
.ab1Ct .cor .ful .box .left .flow h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 52px;
  text-align: center;
  margin: 40px 0 100px 0;
}
.ab1Ct .cor .ful .box .left .flow p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 52px;
  text-align: center;
}
.ab1Ct .cor .ful .box .left .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab1Ct .cor .ful .box .left .line{
  width: 92px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 67px;
  transform: translateX(-50%);
}
.ab1Ct .cor .ful .box .right{
  width: 32%;
  height: 100%;
}
.ab1Ct .cor .ful .box .right .ib{
  width: 100%;
  height: calc(100% / 3);
  position: relative;
  overflow: hidden;
}
.ab1Ct .cor .ful .box .right .ib .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.9s;
}
.ab1Ct .cor .ful .box .right .ib:hover .bg{
  transform: scale(1.1);
}
.ab1Ct .cor .ful .box .right .ib .flow{
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab1Ct .cor .ful .box .right .ib .flow img{
  height: 95px;
}
.ab1Ct .cor .ful .box .right .ib .flow p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
  /* line-height: 52px; */
  margin-top: 10px;
  text-align: center;
}
.ab1Ct .cor .ful .box .right .ib .flow .app{
  display: none;
}
.ab1Ct .cor .ful .box .right .ib .line{
  width: 92px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 44px;
}
.back{
  position: absolute;
  top: 0px;
  left: -95px;
  border-radius: 30px;
  z-index: 8;
  background-color: #A244FF;
  cursor: pointer;
  transition: transform 0.3s;
}
.back.active{
  position: fixed;
  z-index: 89;
  left: calc((100% - 1200px) / 2 - 95px);
}
.back:hover{
  transform: translateY(-10px);
}
.back .rund{
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.back .rund i{
  font-size: 30px;
  color: #A244FF;
}
.back p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 20px 0;
}
.page {
  width: 100%;
  margin-top: 25px;
}
.page .el-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  padding: 0px;
}
.page .el-pagination .page-num{
	
}
.page .el-pagination__total{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.page .el-pagination button:disabled{
  background-color: #9A9A9A;
}
.page .el-pagination .btn-prev {
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: 23px;
  padding: 0;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  background-color: transparent !important;
}
.page .el-pagination .btn-next {
  padding: 0;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  background-color: transparent !important;
  margin-left: 18px;
}
.page .el-pagination .btn-next .el-icon,
.page .el-pagination .btn-prev .el-icon{
  font-size: 16px;
  color: #ffffff;
}
.page .el-pager li {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  background: transparent;
  border: none !important;
  margin-right: 5px;
  padding: 0px;
  border-radius: 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.page .el-pagination .page-num{
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	background: transparent;
	border: none !important;
	margin-right: 5px;
	padding: 0px;
	border-radius: 50%;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
}
.page .el-pager li.active {
  background-color: #FFFFFF;
  color: #333333;
}

.page .el-pagination .page-num.page-num-current{
	background-color: #FFFFFF;
	color: #333333;
}
.page .el-pagination .el-pager li:hover {
  color: #333333 !important;
  background-color: #FFFFFF;
}
.page .el-pagination .el-pager .btn-quicknext:hover {
  color: #FFFFFF;
}
.footer-boxapp{
  display: none;
}
.footer-box{
  width: 100%;
  background: linear-gradient(0deg, #03004C, #7426E7);
}
.footer-box .ct{
  margin: 0 auto;
  padding: 70px 0 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-box .ct .logo img{
  height: 63px;
}
.footer-box .ct .left{
  width: 240px;
}
.footer-box .ct .left .txt{
  margin-top: 50px;
}
.footer-box .ct .left .txt p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
.footer-box .ct .left .txt .hm{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  margin: 10px 0 20px 0;
}
.footer-box .ct .right{
  display: flex;
  justify-content: space-between;
  width: calc(100% - 240px - 60px);
}
.footer-box .ct .right .item h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
.footer-box .ct .right .item .txt{
  margin-top: 30px;
}
.footer-box .ct .right .item .txt a{
  display: block;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
}
.footer-box .ct .right .item .txt a:not(:first-of-type){
  margin-top: 15px;
}
.footer-box .ct .right .item .qr{
  margin-top: 35px;
}
.footer-box .ct .right .item .qr .qri{
  width: 120px;
}
.footer-box .ct .right .item .qr .icon{
  display: flex;
  justify-content: space-between;
  width: 120px;
  margin-top: 14px;
}
.footer-box .ct .right .item .qr .icon img{
  height: 23px;
  transition: 0.5s;
}
.footer-box .ct .right .item .qr .icon img:hover{
  transform: rotateY(180deg);
}
.footer-box .bottom{
  width: calc(100% - 100px);
  margin: 0 auto;
  border-top: 2px solid #601FCC;
}
.footer-box .bottom .bct{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 22px 0 18px 0;
}
.footer-box .bottom .bct a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
@media only screen and (min-width:1960px) {
  .mySwiper .ct{
    bottom: 18%;
  }
}
@media only screen and (max-width:1460px) {
  .center{
    width: 1000px;
  }
  .header-box .ct{
    height: 90px;
  }
  .header-box .nav li:not(:first-of-type){
    margin-left: 25px;
  }
  .header-box .nav li a{
    font-size: 18px;
  }
  .header-box .language{
    margin-left: 50px;
  }
  .header-box .search{
    margin-left: 50px;
  }
  .header-box .nav{
    margin-left: 55px;
  }
  .header-box .language a{
    font-size: 18px;
  }
  .header-box .ct form{
    width: calc(480px - 8px);
  }
  .header-box .ct form input{
    width: calc(425px - 30px);
  }
  .header-box .ct form button{
    width: calc(100% - 425px);
  }
  .mySwiper .ct h3{
    font-size: 92px;
  }
  .mySwiper .ct h6{
    font-size: 38px;
  }
  .mySwiper .ct .icon .item p{
    font-size: 26px;
  }
  .mySwiper .ct .icon .item img{
    height: 28px;
  }
  .mySwiper .ct .icon{
    margin-top: 180px;
  }
  .i1-box .ct .title{
    height: 122px;
  }
  .i1-box .ct h6{
    font-size: 42px;
    margin-top: 30px;
  }
  .i1-box .ct .i1-Swiper .item img{
    height: 127px;
  }
  .i1-box .ct .i1-Swiper .item p{
    font-size: 30px;
    margin-top: 50px;
    line-height: 38px;
  }
  .i1-box .ct .i1-Swiper{
    margin-top: 100px;
    padding-bottom: 100px;
  }
  .banner .ct .right{
    width: 380px;
  }
  .banner .ct .left{
    width: calc(100% - 380px - 50px);
  }
  .banner .ct .left h3{
    font-size: 82px;
  }
  .banner .ct .left h6{
    font-size: 38px;
    margin-top: 25px;
  }
  .banner .ct .left .icon .item p{
    font-size: 26px;
  }
  .banner .ct .left .icon .item img{
    height: 28px;
  }
  .banner .ct .left .icon{
    margin-top: 60px;
  }
  .banner{
    height: 640px;
  }
  .banner .ct{
    bottom: 95px;
  }
  .p-box .ct .p-swiper{
    height: 840px;
  }
  .p-box .ct .p-swiper a .flow img{
    height: 115px;
  }
  .p-box .ct .p-swiper a .flow{
    top: 150px;
    width: calc(100% - 50px - 35px);
    padding: 0 35px 0 50px;
  }
  .p-box .ct .p-swiper a .flow p{
    font-size: 30px;
    line-height: 36px;
    margin-top: 70px;
  }
  .p-box .ct .p-swiper a .jt{
    bottom: 150px;
    height: 30px;
  }
  .p-box .ct .pb{
    width: 46px;
    height: 46px;
  }
  .p-box .ct .pb i{
    font-size: 24px;
  }
  .p-box .ct .next{
    right: -100px;
  }
  .p-box .ct .prev{
    left: -100px;
  }
  .p1-list li a .bjib img{
    width: 150px;
  }
  .p1-list li a .bjib img{
    width: 150px;
  }
  .p1-list li a .txt h3{
    font-size: 18px;
  }
  .p1-list li a .txt h6{
    font-size: 14px;
  }
  .p1-list li a .flow{
    font-size: 14px;
  }
  .p1-list li a .ib{
    height: 180px;
  }
  .p1-list li a .txt{
    margin: 20px auto 0;
  }
  .p1-list li a .txt .more{
    margin: 17px auto 0;
  }
  .p1-list li{
    height: 365px;
  }
  .p1-list li a{
    padding-top: 55px;
    height: calc(100% - 55px);
  }
  .p-nav .ct .one{
    font-size: 22px;
  }
  /*.p-nav .ct .item:not(:first-of-type){*/
  /*  margin-left: 80px;*/
  /*}*/
  .p-nav .ct .flow a{
    font-size: 18px;
    margin-right: 10px;
    height: 34px;
  }
  .p-title h3{
    font-size: 40px;
  }
  .p-title img{
    height: 26px;
  }
  .se-list li a{
    height: 230px;
  }
  .se-list li a .ib{
    width: 310px;
  }
  .se-list li a .txt{
    width: calc(100% - 310px - 49px - 78px);
    padding: 0 78px 0 49px;
  }
  .se-list li a .txt h3{
    font-size: 28px;
  }
  .se-list li a .txt h6{
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0 30px 0;
  }
  .se-list li a .txt .more span{
    font-size: 16px;
  }
  .se-list li a .txt .more img{
    height: 18px;
  }
  .se-list li a .txt .more{
    height: 35px;
  }
  .se-list{
    margin-top: -200px;
  }
  .banner .flow{
    width: 450px;
    right: calc((100% - 1000px) / 2);
  }
  .coc-list li .txt h3{
    font-size: 32px;
  }
  .coc-list li .txt p{
    font-size: 20px;
  }
  .coc-list li img{
    height: 90px;
    right: 35px;
    top: 30px;
  }
  .coc-list li{
    height: 195px;
  }
  .coc-list li .txt{
    width: calc(100% - 23px - 70px);
    padding: 80px 70px 0 23px;
    height: calc(100% - 80px);
  }
  .ab1Ct .content .left h3{
    font-size: 28px;
    margin-bottom: 18px;
  }
  .ab1Ct .content .left .txt p{
    font-size: 18px;
    line-height: 26px;
  }
  .ab1Ct .content .left .txt p:not(:first-of-type){
    margin-top: 18px;
  }
  .ab1Ct .content .left .txt p:nth-of-type(3){
    margin-top: 38px;
  }
  .ab1Ct .content .left{
    width: 630px;
  }
  .ab1Ct .content .right{
    width: calc(100% - 630px - 50px);
  }
  .ab1Ct .content .right .ib1{
    height: 340px;
  }
  .ab1Ct .content .right .ib2{
    height: 160px;
  }
  .pd1Ct .top .left{
    width: 460px;
  }
  .pd1Ct .top .left .top-swiper-box{
    height: 390px;
  }
  .pd1Ct .top .left .top-swiper .img-box img{
    max-width: 70%;
    max-height: 70%;
    height: 70%;
  }
  .pd1Ct .top .left .bottom-swiper-box{
    height: 78px;
  }
  .pd1Ct .top .right{
    width: calc(100% - 460px - 65px);
  }
  .pd1Ct .top .right h3{
    font-size: 28px;
    line-height: 34px;
  }
  .pd1Ct .top .right .type{
    font-size: 20px;
  }
  .pd1Ct .top .right .txt p{
    font-size: 18px;
    line-height: 24px;
  }
  .pd1Ct .content h3{
    font-size: 20px;
  }
  .pd1Ct .content p,
  .pd1Ct .content span{
    font-size: 18px !important;
    line-height: 24px;
  }
  .pd1Ct .top .right .model p{
    font-size: 16px;
  }
  .pd1Ct .top .right .model .ab a{
    font-size: 16px;
    margin-right: 25px;
  }
  .back .rund{
    width: 62px;
    height: 62px;
  }
  .back p{
    font-size: 18px;
  }
  .footer-box .ct .right{
    width: calc(100% - 240px - 15px);
  }
  .ab1Ct .cor .container{
    height: 745px;
  }
  .ab1Ct .cor .ful .box .right .ib .flow img{
    height: 70px;
  }
  .ab1Ct .cor .ful .box .right .ib .flow{
    top: 40px;
  }
  .ab1Ct .cor .ful .box .right .ib .flow p{
    font-size: 28px;
  }
  .ab1Ct .cor .ful .box .right .ib .line{
    bottom: 40px;
  }
  .ab1Ct .cor .ful .box .left .flow img{
    height: 120px;
  }
  .ab1Ct .cor .ful .box .left .flow{
    top: 170px;
  }
  .ab1Ct .cor .ful .box .left .flow h3{
    font-size: 40px;
  }
  .ab1Ct .cor .ful .box .left .flow p{
    font-size: 28px;
  }
  .ab1Ct .cor .ful .box .left .flow p{
    line-height: 38px;
  }
  .ab1Ct .cor .container .mr .item .flow .icon{
    height: 120px;
  }
  .ab1Ct .cor .container .mr .item .flow{
    top: 170px;
  }
  .ab1Ct .cor .container .mr .item .flow h3{
    font-size: 40px;
    line-height: 44px;
  }
  .back.active{
    left: calc((100% - 1000px) / 2 - 95px);
  }
  .s2-box .back{
    top: 245px;
    left: calc((100% - 1000px) / 2 - 95px);
  }
}
@media only screen and (max-width:1260px) {
  .mySwiper .ct .icon{
    margin-top: 130px;
  }
}

 .news-content{
   margin-top:50px;
   color:#fff;
}
.news-content h2{
    font-size:30px;
    text-align: center;
    margin-bottom:30px;
}
.news-content p{
    font-size:18px;
   margin-bottom:20px;
   line-height: 2;
}

.news-content{
   margin-top:50px;
   color:#fff;
   margin-bottom:50px;
}
.news-tab{
    font-size:20px;
    color:#fff;
    margin-bottom:30px;
    width:100%;
    display: block;
    padding:0 0 20px;
    border-bottom:1px solid #fff;
}
.news-tab a{
    color:#fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media(max-width:999px){
    .news-tab a span{
        display: block;
        width:100%;
    }
}
.p-title h3.cph3{
    color:#000;
}
.cp-bot{
    margin-top:30px;
}
.t-center{
    text-align: center;
}
.ltitle{
    font-size:30px;
}
.form{
    margin-top:30px;
}
.form .col-sm-12{
    display: flex;
    flex-wrap: wrap;
    justify-content:start;
    margin-bottom: 20px;
}
.form .input{
    width:calc(100% - 150px);
    padding:5px 10px;
    border:2px solid #646097;
    border-radius: 5px;
}
.form .submit{
    padding:15px 20px;
    border:none;
    border-radius: 10px;
    background:#a144fe ;
    color:#fff;
}
.form .tip{
    width:150px;
}
.sticky-top {
    z-index: 500
}

.row-gutter-0 {
    margin-left: 0;
    margin-right: 0
}

.row-gutter-0>[class*=col] {
    padding-right: 0;
    padding-left: 0
}

.fz-13 {
    font-size: 13px!important
}

.fz-14 {
    font-size: 14px!important
}

.fz-16 {
    font-size: 16px!important
}

.fz-17 {
    font-size: 17px!important
}

.fz-25 {
    font-size: 25px!important
}

.align-v {
    align-items: center!important
}

.align-v-h {
    justify-content: center!important;
    align-items: center!important
}

.border-top {
    border-top: 1px solid #e7ebef!important
}

.border-bottom {
    border-bottom: 1px solid #e7ebef!important
}

.is-sticky .navbar-nav,.mt-0 {
    margin-top: 0!important
}

.mt-5 {
    margin-top: 5px!important
}

.mt-10 {
    margin-top: 10px!important
}

.mt-20 {
    margin-top: 20px!important
}

.mt-30 {
    margin-top: 30px!important
}

.mt-40 {
    margin-top: 40px!important
}

.mt-50 {
    margin-top: 50px!important
}

.mt-60 {
    margin-top: 60px!important
}

.mt-70 {
    margin-top: 70px!important
}

.mt-80 {
    margin-top: 80px!important
}

.mt-100 {
    margin-top: 100px!important
}

.mb-0 {
    margin-bottom: 0!important
}

.mb-5 {
    margin-bottom: 5px!important
}

.mb-10 {
    margin-bottom: 10px!important
}

.mb-20 {
    margin-bottom: 20px!important
}

.mb-30 {
    margin-bottom: 30px!important
}

.mb-40 {
    margin-bottom: 40px!important
}

.mb-45 {
    margin-bottom: 45px!important
}

.mb-50 {
    margin-bottom: 50px!important
}

.mb-60 {
    margin-bottom: 60px!important
}

.mb-70 {
    margin-bottom: 70px!important
}

.mb-80 {
    margin-bottom: 80px!important
}

.mb-90 {
    margin-bottom: 90px!important
}

.mb-100 {
    margin-bottom: 100px!important
}

.mr-0 {
    margin-right: 0!important
}

.mr-20 {
    margin-right: 20px!important
}

.mr-30 {
    margin-right: 30px!important
}

.mr-40 {
    margin-right: 40px!important
}

.mr-50 {
    margin-right: 50px!important
}

.ml-0 {
    margin-left: 0!important
}

.ml-20 {
    margin-left: 20px!important
}

.ml-30 {
    margin-left: 30px!important
}

.ml-40 {
    margin-left: 40px!important
}

.ml-50 {
    margin-left: 50px!important
}

.mx-80 {
    margin-right: 80px;
    margin-left: 80px
}

.pb-10 {
    padding-top: 10px!important;
    padding-bottom: 10px!important
}

.pt-20 {
    padding-top: 20px!important
}

.pt-30 {
    padding-top: 30px!important
}

.pt-40 {
    padding-top: 40px!important
}

.pt-50 {
    padding-top: 50px!important
}

.pt-60 {
    padding-top: 60px!important
}

.pt-70 {
    padding-top: 70px!important
}

.pt-80 {
    padding-top: 80px!important
}

.pt-90 {
    padding-top: 90px!important
}

.pt-100 {
    padding-top: 100px!important
}

.pt-110 {
    padding-top: 110px!important
}

.pt-120 {
    padding-top: 120px!important
}

.pt-130 {
    padding-top: 65px!important
}

.pt-140 {
    padding-top: 140px!important
}

.pt-150 {
    padding-top: 150px!important
}

.pt-170 {
    padding-top: 170px!important
}

.pb-20 {
    padding-bottom: 20px!important
}

.pb-30 {
    padding-bottom: 30px!important
}

.pb-40 {
    padding-bottom: 40px!important
}

.pb-50 {
    padding-bottom: 50px!important
}

.pb-60 {
    padding-bottom: 60px!important
}

.pb-70 {
    padding-bottom: 70px!important
}

.pb-80 {
    padding-bottom: 80px!important
}

.pb-90 {
    padding-bottom: 90px!important
}

.pb-100 {
    padding-bottom: 100px!important
}

.pb-110 {
    padding-bottom: 110px!important
}

.pb-130 {
    padding-bottom: 130px!important
}

.pb-140 {
    padding-bottom: 140px!important
}

.pb-150 {
    padding-bottom: 150px!important
}

.pb-170 {
    padding-bottom: 170px!important
}

.pb-120 {
    padding-bottom: 120px!important
}

.pb-220 {
    padding-bottom: 220px!important
}

.pr-0 {
    padding-right: 0!important
}

.pr-15 {
    padding-right: 15px!important
}

.pr-20 {
    padding-right: 20px!important
}

.pr-30 {
    padding-right: 30px!important
}

.pr-50 {
    padding-right: 50px!important
}

.pr-60 {
    padding-right: 60px!important
}

.pr-70 {
    padding-right: 70px!important
}

.pr-100 {
    padding-right: 100px!important
}

.pl-0 {
    padding-left: 0!important
}

.pl-15 {
    padding-left: 15px!important
}

.pl-20 {
    padding-left: 20px!important
}

.pl-30 {
    padding-left: 30px!important
}

.pl-40 {
    padding-left: 40px!important
}

.pl-50 {
    padding-left: 50px!important
}
section {
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}
.heading-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px
}

.heading-title {
    font-size: 37px;
    margin-bottom: 20px;
    color: #fff;
}

.heading-title .underlined-text {
    border-bottom: 4px solid #2e3192
}

.cart-table .cart-product-title,.heading-desc,.slider .fancybox-layout5 .fancybox-item .fancybox-title,.widget-post-item .widget-post-title {
    font-size: 16px;
    margin-bottom: 0
}

.heading-layout2 .heading-title {
    font-size: 40px
}

.heading-layout3 .heading-title {
    font-size: 50px
}

.fancybox-layout3 .heading-desc:last-of-type,.fancybox-layout3 .heading-subtitle,.fancybox-layout4 .heading-desc:last-of-type,.fancybox-layout4 .heading-subtitle,.fancybox-layout5 .heading-desc,.heading-light .heading-subtitle,.testimonials-light .testimonial-meta-desc {
    color: #c1c3ec
}

.banner-layout3 .btn-white:hover,.banner-layout4 .btn-white:hover,.blog-layout1 .post-item:hover .post-desc,.blog-layout1 .post-item:hover .post-meta-cat a,.blog-layout1 .post-item:hover .post-meta-cat a:after,.blog-layout1 .post-item:hover .post-title a,.btn-link.btn-white,.btn-primary:hover,.btn-secondary:hover,.contact-info .contact-box .contact-desc,.contact-info .contact-box .contact-icon,.contact-info .contact-box .contact-title,.contact-info .contact-box .time-list li,.contact-layout4 .accordion-item .accordion-title,.contact-layout5 .widget-banner .btn-white:hover,.fancybox-layout5 .fancybox-item:hover .fancybox-body .fancybox-icon,.fancybox-layout5 .fancybox-item:hover .fancybox-body .fancybox-title,.fancybox-light .fancybox-item .fancybox-icon,.fancybox-light .fancybox-item .fancybox-title,.footer .time-list li .day,.header-topbar .contact-list li a:not(.btn):hover,.heading-light .heading-title,.nav-tabs-white .nav-link,.nav-tabs-white .nav-link.active,.nav-tabs-white .nav-link:hover,.page-title-light .breadcrumb-item a,.page-title-light .breadcrumb-item+.breadcrumb-item::before,.page-title-light .breadcrumb-item.active,.page-title-light .pagetitle-heading,.testimonials-light .testimonial-meta-title,.testimonials-light .testimonial-title,.widget-banner .widget-icon,.widget-banner .widget-title {
    color: #fff
}

.contact-layout4 .accordion-item .accordion-body p,.fancybox-light .fancybox-item .fancybox-desc,.footer .footer-widget-contact p,.heading-light .heading-desc,.page-title-light .pagetitle-desc {
    color: #f9f9f9
}

.contact-panel-title,.text-block-title {
    font-size: 24px;
    margin-bottom: 14px;
    color:#fff;
}

.about-layout2 .about-Text p,.cta-desc,.text-block-desc {
    font-size: 16px;
    color:#fff;
}

.text-link {
    font-size: 14px
}

.text-link a:not(.btn) {
    padding-bottom: 2px;
    border-bottom: 2px solid #2e3192
}

.text-link a:not(.btn).color-secondary,.underlined-text-secondary {
    border-bottom-color: #c00
}

.text-link:hover a:not(.btn) {
    color: #c00;
    border-bottom-color: #c00
}

.text-link:hover a:not(.btn).color-secondary {
    color: #2e3192;
    border-bottom-color: #2e3192
}

.underlined-text,.underlined-text-secondary {
    padding-bottom: 2px;
    border-bottom: 2px solid
}

.blog-layout1 .post-item:hover,.underlined-text {
    border-bottom-color: #2e3192
}

.header-transparent+.page-title,.header-transparent.header-full+.slider {
    margin-top: -135px
}

.pagetitle-subheading {
    color: #2e3192;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px
}

.pagetitle-heading {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px
}

.pagetitle-desc {
    font-size: 17px;
    margin-bottom: 0
}

.accordion-item.opened .accordion-header:not(.collapsed) .accordion-title,.banner-layout3 .btn-white,.banner-layout4 .btn-white,.banner-layout8 .btn-white,.btn-link.btn-primary,.comments-list .comment-item .comment-content .comment-reply:hover,.contact-layout3 .btn-white,.contact-layout4 .btn-white,.contact-layout5 .widget-banner .btn-white,.member .social-icons li a:hover i,.miniPopup-departments-trigger .menu-lines.active,.miniPopup-departments-trigger a:hover,.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover,.page-title-layout3 .pagetitle-categorey a:hover,.post-item .post-meta-cat a:hover,.post-item .post-title a:hover,.product-meta-review a:hover,.product-title a,.service-item .service-category a:hover,.widget-categories-layout2 ul li a:hover,.widget-poducts .widget-product-item:hover .widget-product-title a,.widget-post-item:hover .widget-post-title a,.widget-search .widget-form-search .btn:hover,[class*=page-title] .breadcrumb-item a,[class*=page-title] .breadcrumb-item+.breadcrumb-item::before {
    color: #2e3192
}

.checkbox-controls .custom-checkbox label,.contact-list li a,.lang-dropdown .dropdown-menu .dropdown-item,.nice-select .current,.nice-select .option,[class*=page-title] .breadcrumb-item.active {
    color: #848e9f
}

[class*=page-title] .btn,[class*=page-title] .video-btn {
    margin-top: 32px
}

.btn-lg,[class*=page-title] .btn:not(.btn-xl) {
    min-width: 200px
}

[class*=page-title].bg-overlay:before {
    opacity: .5;
    background-color: transparent;
    background-image: linear-gradient(180deg,#1d2a4d 0,rgba(255,255,255,0) 70%)
}

[class*=page-title].bg-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(13,14,67,.15)
}

.page-title-layout1,.page-title-layout2,.page-title-layout3 {
    padding-top: 15px
}

.page-title-layout1 .breadcrumb-area,.page-title-layout2 .breadcrumb-area,.page-title-layout3 .breadcrumb-area {
    margin-top: 10px;
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,.25)
}

.page-title-layout3 {
    padding-top: 150px
}

.page-title-layout3 .pagetitle-heading {
    font-size: 47px;
    font-weight: 600;
    line-height: 1.3
}

.page-title-layout3 .pagetitle-categorey {
    display: inline-block;
    border-radius: 3px;
    padding: 2px 10px;
    background-color: #c00
}

.page-title-layout3 .pagetitle-categorey a {
    position: relative;
    color: #fff;
    margin-right: 3px;
    padding-right: 3px
}

.page-title-layout3 .pagetitle-categorey a:after {
    content: ",";
    position: absolute;
    top: 0;
    right: -2px;
    color: #fff
}

.page-title-layout3 .pagetitle-categorey a:last-child {
    margin-right: 0;
    padding-right: 0
}

.blog-tags ul li:last-child a:before,.features-list-layout3 .feature-item:last-of-type:after,.footer .footer-copyright-links li a:last-of-type:before,.is-sticky .logo-light,.mix,.navbar .dropdown-menu .nav-item:last-child>.nav-item-link:before,.navbar .logo-light,.page-title-layout3 .pagetitle-categorey a:last-child:after,.post-item .post-meta-cat a:last-child:after,.post-item .post-meta>:last-child:after,.service-item .service-category a:last-of-type:after,.sidebar-layout2 .widget:after,.testimonial-hidden .testimonial-item,.widget-member:after,.widget-search .widget-form-search .btn:before {
    display: none
}

.btn,.btn-icon {
    display: inline-flex
}

.page-title-layout4 .breadcrumb-area {
    padding: 22px 0;
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(132,142,159,.25)
}

@media (min-width: 992px) and (max-width:1199px) {
    .pagetitle-heading {
        font-size:60px
    }

    .pagetitle-desc {
        font-size: 16px
    }
}

.btn,label {
    font-weight: 700
}

.btn {
    text-transform: capitalize;
    z-index: 1;
    font-size: 15px;
    min-width: 195px;
    height: 68px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 0;
    border-radius: 3px;
    overflow: hidden
}

.btn-social,.custom-control-label,.label-radio,label.error {
    font-weight: 400
}

.btn:not(.btn-link),.btn:not(.btn-rounded) {
    -webkit-clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0)
}

.btn.active,.btn:active,.btn:focus {
    box-shadow: none;
    outline: 0
}

#scrollTopBtn,.slick-arrow:hover,.social-icons li a {
    box-shadow: 0 0 0 2px #dfdfea inset
}

.btn i,.btn span,.btn-icon i,.btn-icon span {
    margin: 0 5px
}

.btn .icon-filled {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    display: inline-block
}

.btn-outlined:before {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    border-right: 3px solid transparent;
    width: 30px;
    height: 30px;
    transform: rotate(-45deg);
    transition: .3s ease-in-out
}

.btn-primary,.btn-primary .icon-filled,.btn-primary.btn-outlined:hover,.btn-secondary .icon-filled,.btn-white-style2:hover,.pricing-widget-layout1 .pricing-list li .price,.widget-services ul li a:hover {
    color: #fff;
    background-color: #2e3192
}

.btn-primary .icon-outlined {
    border: 1px solid #2e3192;
    color: #2e3192;
    background-color: #fff
}

.btn-primary:hover .icon-outlined,.btn-secondary-style2:active,.btn-secondary-style2:focus,.btn-secondary-style2:not(.btn-outlined):hover,.btn-white,.contact-layout4 .accordion-item.opened .accordion-header:not(.collapsed) .accordion-title:after,.fancybox-layout5 .fancybox-item:hover .fancybox-body .btn-link.btn-secondary .icon-filled,.header-topbar .social-icons li a:hover i,.post-item .btn-link .plus-icon,.social-icons li a:hover i,.testimonials-layout2 .slick-arrow:hover:before,.widget-categories ul li a.active .cat-count,.widget-categories ul li a:hover .cat-count {
    color: #c00;
    background-color: #fff
}

.banner-layout8 .btn-white:hover,.btn-primary:hover .icon-filled,.btn-secondary,.btn-secondary.btn-outlined:hover,.btn-white:hover,.contact-layout3 .btn-white:hover,.contact-layout4 .btn-white:hover,.miniPopup-language-area:hover .miniPopup-language-trigger,.pricing-widget-layout2 .pricing-list li .price,.pricing-widget-layout3 .pricing-list li .price,.testimonials-layout3 .slick-arrow:hover:before {
    color: #fff;
    background-color: #c00
}

.btn-primary.btn-outlined {
    color: #2e3192;
    background-color: transparent;
    border: 2px solid #2e3192
}

.btn-primary-style2:hover {
    color: #2e3192!important;
    background-color: #fff!important
}

.btn-primary:active,.btn-primary:focus,.btn-primary:not(.btn-outlined):hover,.widget-tags ul li a:hover {
    color: #fff;
    border-color: #c00;
    background-color: #c00
}

.btn-secondary:hover .icon-filled,.cart-minipopup .cart-item .cart-delete:hover,.cta-layout2 .icon-filled,.fancybox-layout1 .fancybox-item .btn:hover .plus-icon,.fancybox-layout1 .fancybox-item:hover .fancybox-icon,.fancybox-layout5 .fancybox-item .btn-secondary .icon-filled,.fancybox-layout5 .fancybox-item:hover .fancybox-body,.features-list-layout3.list-secondary .feature-item .feature-icon,.pagination li a.current,.pagination li a:hover,.service-item .btn-link.btn-primary:hover .plus-icon,.slick-arrow:hover:before,.slider .cta-banner .icon-filled,.slider .cta-banner .slick-dots li:not(:first-child):before,.slider .cta-banner .slick-dots li:not(:last-child):after,.slider .slider-banner .slick-arrow:hover:before,.video-btn-primary:hover .video-player {
    background-color: #c00
}

.btn-secondary.btn-outlined {
    color: #c00;
    background-color: transparent;
    border: 2px solid #c00
}

.btn-secondary:active,.btn-secondary:focus,.btn-secondary:not(.btn-link):hover,.btn-secondary:not(.btn-outlined):hover,.widget-nav .nav-next:hover .nav-icon,.widget-nav .nav-prev:hover .nav-icon {
    color: #fff;
    border-color: #2e3192;
    background-color: #2e3192
}

.btn-light.btn-outlined:hover,.btn-white-style2,.btn-white.btn-outlined:hover,.contact-layout4 .accordion-item:after,.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .btn-primary:hover {
    color: #2e3192;
    background-color: #fff
}

.btn-white:active,.btn-white:focus {
    color: #c00;
    border-color: #fff;
    background-color: #fff
}

.btn-white.btn-outlined {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff
}

.btn-light.btn-outlined:hover:before,.btn-white.btn-outlined:before {
    border-right-color: #fff
}

.btn-light,.btn-light:active,.btn-light:focus {
    color: #c00;
    background-color: #6d6fb3
}

.btn-light:active,.btn-light:focus {
    border-color: #6d6fb3
}

.btn-light:hover {
    color: #fff;
    border-color: #fff;
    background-color: #c00
}

.btn-light.btn-outlined {
    color: #fff;
    background-color: transparent;
    border: 2px solid #6d6fb3
}

.btn-light.btn-outlined:before {
    border-right-color: #6d6fb3
}

.btn-light.btn-outlined:hover {
    border-color: #fff
}

.btn-link {
    background-color: transparent;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0!important;
    border-radius: 0;
    -webkit-clip-path: none!important;
    clip-path: none!important
}

.btn-link.btn-icon {
    height: auto;
    line-height: 1;
    padding: 0
}

.btn-link.btn-primary.btn-underlined {
    padding-bottom: 3px;
    border-bottom: 2px solid #2e3192
}

.btn-link.btn-primary:hover {
    color: #c00;
    background-color: transparent
}

.accordion-item .accordion-title:hover,.action-btn,.blog-tags ul li a:hover,.btn-link.btn-secondary,.btn-link.btn-white:hover,.contact-layout4 .accordion-item .accordion-title:hover,.contact-layout4 .accordion-item.opened .accordion-header:not(.collapsed) .accordion-title,.features-list-layout3.list-secondary .feature-item .feature-title,.footer .footer-copyright-links li a:hover,.footer .footer-widget-nav li a:hover,.list-filter .filter.active,.list-filter .filter:hover,.locations-panel ul li a:hover,.map-container .accordion-item.opened .accordion-header:not(.collapsed) .accordion-title,.miniPopup-departments-trigger a,.nav ul .nav-item .nav-item-link.active,.nav-tabs .nav-link.active,.nav-tabs .nav-link:hover,.navbar .dropdown-menu .nav-item>.nav-item-link:hover,.navbar .nav-item .nav-item-link:hover,.process-item:hover .btn-link,.process-item:hover .process-icon,.product-item-single .product-rating i.active,.product-title a:hover,.rating .active,.search-popup .search-popup-btn:hover,.text-oranger,.topbar-nav li a:hover,.widget-nav .nav-next:hover .nav-ttile,.widget-nav .nav-prev:hover .nav-ttile {
    color: #c00
}

.btn-link.btn-secondary:hover {
    color: #2e3192;
    background-color: transparent
}

.btn-link.btn-white.btn-underlined {
    padding-bottom: 3px;
    border-bottom: 2px solid #fff
}

.btn-link.btn-white:hover.btn-underlined {
    border-color: #c00
}

.blog-layout2 .post-item.featured-post .post-img img,.btn-block,.list-filter .filter.active:before,.list-filter .filter:hover:before,.map iframe,.navbar .dropdown-menu .nav-item>.nav-item-link:hover:before,.navbar .nav-item .nav-item-link.active:before,.navbar .nav-item .nav-item-link:hover:before,.nice-select .list {
    width: 100%
}

.btn-icon {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px
}

.btn-social {
    height: 54px;
    line-height: 54px;
    width: 54px;
    min-width: 0!important;
    color: #fff;
    border-radius: 3px
}

.btn-facebook {
    background-color: #4267b2
}

.btn-twitter {
    background-color: #1da0f0
}

.btn-google-plus {
    background-color: #ea4335
}

.btn-xl {
    height: 70px;
    line-height: 70px;
    min-width: 250px
}

.btn-xl i,.btn-xl span {
    margin: 0 7px
}

.btn-xhight {
    height: 70px;
    line-height: 68px
}

.btn-rounded {
    border-radius: 50px
}

label {
    line-height: 1;
    margin-bottom: 10px;
    color: #2e3192
}

label.error {
    color: red;
    font-size: 14px;
    margin: 7px 0 0
}

.form-group,.gallery-img {
    margin-bottom: 30px
}

.form-control {
    font-size: 14px;
    height: 60px;
    padding: 0 20px;
    border-radius: 4px;
    background-color: #fff;
    border: 2px solid #e6e8eb
}

.form-control:focus {
    border-color: #2e3192;
    background-color: #fff
}

.form-control::-webkit-input-placeholder {
    color: #26365e
}

.form-control:-moz-placeholder {
    color: #26365e
}

.form-control::-moz-placeholder {
    color: #26365e
}

.form-control:-ms-input-placeholder {
    color: #26365e
}

.custom-control {
    display: flex;
    align-items: center
}

textarea.form-control {
    min-height: 120px;
    padding-top: 16px
}

.form-title {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px
}

.checkbox-controls .custom-checkbox {
    margin-right: 30px;
    margin-bottom: 13px
}

.label-radio {
    display: block;
    padding-left: 26px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 13px;
    color: #848e9f
}

.label-radio input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.radio-indicator {
    position: absolute;
    top: -1px;
    left: 0;
    height: 17px;
    width: 17px;
    background: 0 0;
    border: 2px solid #eaeaea;
    border-radius: 50%
}

.label-radio input:checked:focus~.radio-indicator,.label-radio input:checked~.radio-indicator,.label-radio:hover input:not([disabled]):checked~.radio-indicator {
    background: 0 0
}

.radio-indicator:after {
    content: "";
    position: absolute;
    display: none;
    left: 3px;
    top: 3px;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #2e3192
}

.label-radio input:checked~.radio-indicator:after,.services-layout5 .service-item .service-img,.services-layout6 .service-item .service-img {
    display: block
}

.custom-control-label:before {
    position: absolute;
    top: -2px;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #e7ebef;
    border-radius: 0
}

.custom-control-label:after {
    position: absolute;
    top: 2px;
    left: -20px;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat;
    border-radius: 1px
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
    background-color: #c00;
    width: 8px;
    height: 8px
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: transparent;
    border-color: transparent
}

.custom-control-input:checked~.custom-control-label::before {
    border: 1px solid #2e3192!important;
    background-color: transparent
}

.custom-control-input:focus~.custom-control-label::before,.slider .slick-arrow:hover {
    box-shadow: none
}

input[type=checkbox],input[type=radio] {
    box-shadow: none!important
}

.nice-select {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 2px;
    margin-bottom: 30px
}

.form-group-icon {
    position: absolute;
    top: 23px;
    left: 23px;
    z-index: 2;
    color: #d7d8da;
    pointer-events: none
}

.form-group-icon+.form-control,.form-group-icon+select+.form-control {
    padding-left: 45px
}

.form-group-icon+.form-control[type=date],.form-group-icon+.form-control[type=time] {
    padding: 0 15px
}

.form-group-date .form-group-icon {
    top: 22px;
    left: auto;
    right: 14px;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff
}

::-webkit-calendar-picker-indicator,::-webkit-inner-spin-button {
    opacity: 0
}

.nav-tabs {
    border-bottom: none
}

.nav-tabs .nav-link {
    display: block;
    position: relative;
    padding-bottom: 10px;
    margin: 0 30px 0 0;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1;
    font-size: 16px;
    color: #2e3192
}

.footer .footer-copyright-links li:last-child a,.header-topbar .contact-list li:last-child,.list-filter li:last-child,.member .social-icons li:last-child,.nav-tabs .nav-link:last-of-type,.navbar .dropdown-menu .nav-item:last-child,.navbar .nav-item:last-child,.navbar-actions>li:last-child,.pagination li:last-child,.social-icons li:last-of-type,.topbar-nav li:last-child {
    margin-right: 0
}

.nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #c00;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: transform 2s cubic-bezier(.2, 1, .3, 1)
}

.nav-tabs .nav-link.active:after,.nav-tabs .nav-link:hover:after {
    transform: scale3d(1,1,1);
    transform-origin: 0 50%
}

.carousel-dots-light .slick-dots li button,.fancybox-layout4 .slick-dots li button,.member:hover .member-info,.nav-tabs-white .nav-link:after {
    background-color: #fff
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.locations-panel ul li a i,.pagination li,.social-icons li {
    margin-right: 10px
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .4s linear
}

.plus-icon,.social-icons li a i {
    display: flex;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background-color: #2e3192;
    width: 26px;
    height: 26px
}

.social-icons li a i {
    justify-content: center;
    font-size: 12px;
    transition: .4s linear
}

.header-topbar .social-icons li a:hover,.social-icons li a:hover {
    background-color: #c00;
    box-shadow: 0 0 0 2px #c00 inset
}

.icon-arrow-right {
    font-size: 65%
}

.plus-icon {
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-right: 3px;
    font-style: normal;
    transition: .3s linear
}

.pagination li a,.slick-arrow {
    align-items: center;
    transition: .3s linear;
    display: flex
}

.breadcrumb {
    padding: 0;
    background-color: transparent
}

.breadcrumb-item {
    position: relative;
    font-size: 14px
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105"
}

.pagination li a {
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    width: 58px;
    height: 58px;
    color: #fff;
    background-color: #2e3192
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 5px
}

.banner-layout1 .fancybox-layout2 .fancybox-item:last-child,.banner-layout2 .fancybox-layout2 .fancybox-item:last-child,.banner-layout3 .fancybox-layout2 .fancybox-item:last-child,.banner-layout4 .fancybox-layout2 .fancybox-item:last-child,.blog-layout2 .post-item:not(.featured-post) .post-title,.contact-layout3 .fancybox-layout2 .fancybox-item:last-of-type,.contact-layout4 .fancybox-layout2 .fancybox-item:last-of-type,.contact-list li:last-child,.fancybox-item .fancybox-desc,.feature-item:last-of-type,.list-items li:last-of-type,.map-container .contact-list li:last-child,.product-details .tab-content p:last-child,.product-meta-details li:last-child,.services-layout3 .service-item .service-desc,.services-layout4 .service-item .service-desc,.services-layout5 .service-item .service-desc,.services-layout6 .service-item .service-desc,.widget-categories ul li:last-child,.widget-categories-layout2 ul li:last-child,.widget-poducts .widget-product-item:last-of-type,.widget-post-item:last-of-type,.widget-services ul li:last-child,.widget:last-child {
    margin-bottom: 0
}

.list-items li {
    position: relative;
    padding-left: 27px;
    font-weight: 700;
    margin-bottom: 9px
}

.list-items li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 9px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    color: #2e3192
}

.list-horizontal,.locations-panel ul,.widget-tags ul {
    display: flex;
    flex-wrap: wrap
}

.list-horizontal li,.widget-filter .price-output {
    flex: 0 0 50%;
    max-width: 50%
}

@media (max-width: 992px) {
    .mt-30,.mt-40 {
        margin-top:20px!important
    }

    .mt-50 {
        margin-top: 25px!important
    }

    .mt-60 {
        margin-top: 30px!important
    }

    .mt-70 {
        margin-top: 35px!important
    }

    .mt-80 {
        margin-top: 40px!important
    }

    .mt-100 {
        margin-top: 50px!important
    }

    .mb-30 {
        margin-bottom: 15px!important
    }

    .mb-40 {
        margin-bottom: 20px!important
    }

    .mb-50 {
        margin-bottom: 25px!important
    }

    .mb-60 {
        margin-bottom: 30px!important
    }

    .mb-70 {
        margin-bottom: 35px!important
    }

    .mb-80 {
        margin-bottom: 40px!important
    }

    .mb-90 {
        margin-bottom: 45px!important
    }

    .mb-100 {
        margin-bottom: 50px!important
    }

    .mr-30 {
        margin-right: 15px!important
    }

    .mr-40 {
        margin-right: 20px!important
    }

    .mr-50 {
        margin-right: 25px!important
    }

    .ml-30 {
        margin-left: 15px!important
    }

    .ml-40 {
        margin-left: 20px!important
    }

    .ml-50 {
        margin-left: 25px!important
    }

    .pt-30 {
        padding-top: 15px!important
    }

    .pt-40 {
        padding-top: 20px!important
    }

    .pt-50 {
        padding-top: 25px!important
    }

    .pt-60 {
        padding-top: 30px!important
    }

    .pt-70 {
        padding-top: 35px!important
    }

    .pt-80 {
        padding-top: 40px!important
    }

    .pt-90 {
        padding-top: 45px!important
    }

    .pt-100 {
        padding-top: 50px!important
    }

    .pt-110 {
        padding-top: 55px!important
    }

    .pt-120 {
        padding-top: 60px!important
    }

    .pt-130,.pt-140 {
        padding-top: 70px!important
    }

    .pt-150 {
        padding-top: 75px!important
    }

    .pt-160 {
        padding-top: 80px!important
    }

    .pt-170 {
        padding-top: 85px!important
    }

    .pb-30 {
        padding-bottom: 15px!important
    }

    .pb-40 {
        padding-bottom: 20px!important
    }

    .pb-50 {
        padding-bottom: 25px!important
    }

    .pb-60 {
        padding-bottom: 30px!important
    }

    .pb-70 {
        padding-bottom: 35px!important
    }

    .pb-80 {
        padding-bottom: 40px!important
    }

    .pb-90 {
        padding-bottom: 45px!important
    }

    .pb-100 {
        padding-bottom: 50px!important
    }

    .pb-110 {
        padding-bottom: 55px!important
    }

    .pb-120 {
        padding-bottom: 60px!important
    }

    .pb-130 {
        padding-bottom: 65px!important
    }

    .pb-140 {
        padding-bottom: 70px!important
    }

    .pb-150 {
        padding-bottom: 75px!important
    }

    .pb-160 {
        padding-bottom: 80px!important
    }

    .pb-170 {
        padding-bottom: 85px!important
    }

    .heading-title {
        font-size: 30px
    }

    .list-horizontal {
        flex-direction: column
    }

    .list-horizontal li {
        flex: 0 0 100%!important;
        max-width: 100%!important
    }

    .features-layout2 .feature-item .feature-img {
        display: none
    }
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 50px rgba(255,255,255,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0)
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 50px rgba(255,255,255,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0)
    }
}

@-webkit-keyframes spinner {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes slideTopDown {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-6px)
    }
}

@keyframes slideTopDown {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-6px)
    }
}

@-webkit-keyframes headerAnimation {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes headerAnimation {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes zoomOut {
    50% {
        transform: scale(1.1)
    }
}

@keyframes zoomOut {
    50% {
        transform: scale(1.1)
    }
}

.alert-primary {
    padding: 30px;
    border-radius: 15px;
    color: #2e3192;
    border-color: transparent;
    background-color: #fff2f2
}

.alert-primary .alert-title,.contact-info .contact-box .contact-title,[class*=pricing-widget-layout] .pricing-title {
    font-size: 19px
}

.alert-info {
    padding: 27px;
    color: #848e9f;
    border-color: #eef7ff;
    background-color: #eef7ff
}

.slick-list {
    margin: 0 -10px
}

.slick-slide {
    margin: 0 10px
}

.gallery .slick-slide,.m-slides-0 .slick-list,.m-slides-0 .slick-slide {
    margin: 0
}

.slick-arrow {
    position: absolute;
    top: 50%;
    justify-content: center;
    z-index: 3;
    width: 60px;
    height: 60px;
    font-size: 0;
    border-radius: 50%;
    transform: translateY(-50%)
}

.slick-arrow:before {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: icomoon;
    font-size: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background-color: #2e3192;
    transition: .3s linear
}

.navbar .dropdown-menu .dropdown-toggle:after,.slick-arrow.slick-next,.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.features-list-layout3 .feature-item .feature-icon:before,.slick-arrow.slick-next:before,.slider .slider-banner .slick-arrow.slick-next:before {
    content: "\e907"
}

.slick-arrow.slick-prev,.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.slick-arrow.slick-prev:before,.slider .slider-banner .slick-arrow.slick-prev:before {
    content: "\e905"
}

.slick-dots {
    list-style: none;
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
    margin-bottom: 0
}

.slick-dots li {
    display: inline-flex;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 7px;
    transition: .3s linear
}

.slick-dots li button {
    display: block;
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: #2e3192;
    transition: .2s linear
}

.slick-dots li.slick-active button {
    background-color: #c00;
    box-shadow: 0 0 0 5px rgba(244,87,46,.15)
}

.carousel-dots-light .slick-dots li.slick-active button {
    box-shadow: 0 0 0 5px rgba(255,255,255,.2)
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center
}

.preloader .loading {
    position: relative;
    width: 80px;
    height: 80px
}

.preloader .loading span {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 5px solid #2e3192;
    border-radius: 50%;
    -webkit-animation: 1.2s cubic-bezier(.5,0,.5,1) infinite rotating;
    animation: 1.2s cubic-bezier(.5,0,.5,1) infinite rotating;
    border-color: #2e3192 transparent transparent
}

.preloader .loading span:first-child {
    -webkit-animation-delay: -.45s;
    animation-delay: -.45s
}

.preloader .loading span:nth-child(2) {
    -webkit-animation-delay: -.3s;
    animation-delay: -.3s
}

.preloader .loading span:nth-child(3) {
    -webkit-animation-delay: -.15s;
    animation-delay: -.15s
}

@-webkit-keyframes rotating {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    position: relative;
    z-index: 1000;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.1)
}

.navbar {
    padding: 0;
    height: 100px;
    max-height: 100px;
    background-color: #fff
}

.navbar>.container,.navbar>.container-fluid {
    position: relative;
    height: 100px
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 100px
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    border-radius: 0;
    width: 23px;
    position: relative
}

.is-sticky .logo-dark,.navbar .navbar-toggler .menu-lines {
    display: inline-block
}

.navbar .navbar-toggler .menu-lines:after,.navbar .navbar-toggler .menu-lines:before {
    content: "";
    position: absolute;
    left: 0;
    width: 23px;
    height: 1px;
    display: inline-block;
    background-color: #c00;
    transition: .3s
}

.miniPopup-departments-trigger .menu-lines:before,.navbar .navbar-toggler .menu-lines:before {
    top: 0
}

.navbar .navbar-toggler .menu-lines:after {
    top: 12px
}

.navbar .navbar-toggler .menu-lines span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 1px;
    background-color: #c00
}

.fancybox-layout3 .fancybox-item:hover .fancybox-icon,.fancybox-layout4 .fancybox-item:hover .fancybox-icon,.miniPopup-departments-trigger .menu-lines.active span,.navbar .navbar-toggler.actived .menu-lines>span {
    opacity: 0
}

.navbar .navbar-toggler.actived .menu-lines:before {
    top: 0;
    transform: rotate(-45deg)
}

.navbar .navbar-toggler.actived .menu-lines:after {
    top: 0;
    transform: rotate(45deg)
}

.navbar .nav-item {
    position: relative;
    margin-right: 25px
}

.navbar .nav-item .nav-item-link {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
    position: relative;
    color: #2e3192;
    line-height: 100px;
    letter-spacing: .4px;
    padding-right: 15px
}

.navigation li.active a {
    color: #c00!important;
    border-top: 2px solid #c00;
    font-weight: 800
}

.navbar .dropdown-toggle:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.navbar .dropdown-menu {
    border-radius: 0;
    border: none;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
}

.navbar .dropdown-menu.mega-dropdown-menu,.slider,.testimonials-layout2 .testimonial-item,.testimonials-layout3 .testimonial-item {
    padding: 0
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block {
    padding: 50px 20px 40px
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
    padding: 40px 60px 40px 120px
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .menu-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 70px;
    background-color: #fff;
    -webkit-clip-path: url(#path-direction-right2);
    clip-path: url(#path-direction-right2)
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured>.nav {
    justify-content: space-between
}

.about-layout2 .author-desc,.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc,.product-meta-review,.widget-plan .plan-price .period {
    font-size: 14px
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 10px
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 55px!important;
    margin-right: 15px
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:before {
    background-color: #dfdfea
}

#scrollTopBtn:hover i,.cart-table .cart-product-remove:hover,.contact-info .boxes-wrapper>[class*=col-]:first-of-type .contact-box,.fancybox-layout5 .fancybox-item .btn-secondary .icon-filled:hover,.member .social-icons li a:hover,.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover [class*=icon-],.search-popup .search-popup-close:hover,.slider .cta-banner .slick-dots li.slick-active:after,.slider .cta-banner .slick-dots li.slick-active:before,.testimonials-layout3 .slick-arrow:before,.video-btn-primary .video-player,.video-btn:hover .video-player,.widget-search {
    background-color: #2e3192
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c00;
    background-color: #fff;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 10px;
    transition: .3s
}

.navbar .dropdown-menu .nav-item {
    padding: 0 40px;
    margin-right: 0
}

.navbar .dropdown-menu .nav-item>.nav-item-link {
    font-size: 14px;
    color: #848e9f;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 42px!important;
    white-space: nowrap;
    position: relative;
    padding-right: 0;
    border-bottom: 1px solid #dfdfea
}

.navbar .dropdown-menu .nav-item>.nav-item-link:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #c00;
    transition: .5s
}

.banner-layout1 .fancybox-layout2 .fancybox-item:last-child .fancybox-body,.banner-layout2 .fancybox-layout2 .fancybox-item:last-child .fancybox-body,.banner-layout3 .fancybox-layout2 .fancybox-item:last-child .fancybox-body,.banner-layout4 .fancybox-layout2 .fancybox-item:last-child .fancybox-body,.navbar .dropdown-menu .nav-item:last-child>.nav-item-link,.widget-banner {
    border-bottom: 0
}

.navbar .dropdown-menu .nav-title {
    font-size: 18px;
    margin-bottom: 8px
}

.navbar-actions>li,.widget-nav .nav-prev .nav-icon {
    margin-left: 20px
}

.lang-dropdown .dropdown-item {
    font-size: 14px;
    padding: .25rem 1rem
}

.lang-dropdown .lang-dropdown-toggle {
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-right: 15px;
    color: #fff
}

.lang-dropdown .lang-dropdown-toggle:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    border: 0;
    display: block!important
}

.lang-dropdown .lang-dropdown-toggle i {
    font-size: 30px;
    margin-right: 7px
}

.lang-dropdown .dropdown-menu {
    min-width: 100px!important;
    padding: .6rem 0!important
}

.lang-dropdown .dropdown-menu .dropdown-item:focus,.lang-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: #2e3192
}

.header-topbar {
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #252775
}

.header-topbar .contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-right: 30px
}

.header-topbar .contact-list li a:not(.btn) {
    color: #f4f4f4
}

.header-topbar .contact-list li>i {
    font-size: 16px;
    color: #c00;
    margin-right: 8px
}

.header-topbar .social-icons li a,.testimonials-layout2 .slick-arrow,.testimonials-layout3 .slick-arrow {
    width: 34px;
    height: 34px
}

.header-topbar .social-icons li a i {
    width: 20px;
    height: 20px;
    color: #2e3192;
    background-color: #fff
}

.about-img,.about-layout1 .about-Text p:first-of-type,.cart-table .cart-product,.fancybox-item,.header-topbar .header-topbar-search,.member .member-img,.miniPopup-language-area,.testimonials-layout3 .testimonial-thmb,.ui-slider,.widget-search .widget-form-search {
    position: relative
}

.header-topbar .header-topbar-search .form-control {
    height: 30px;
    border: 2px solid;
    border-radius: 0;
    color: #fff;
    background-color: transparent;
    border-color: transparent transparent transparent rgba(255,255,255,.15)
}

.header-topbar .header-topbar-search .form-control:focus {
    border-color: rgba(255,255,255,.15)!important
}

.header-topbar .header-topbar-search .form-control::-webkit-input-placeholder {
    color: #788fc8;
    font-style: italic;
    font-size: 13px
}

.header-topbar .header-topbar-search .form-control:-moz-placeholder {
    color: #788fc8;
    font-style: italic;
    font-size: 13px
}

.header-topbar .header-topbar-search .form-control::-moz-placeholder {
    color: #788fc8;
    font-style: italic;
    font-size: 13px
}

.header-topbar .header-topbar-search .form-control:-ms-input-placeholder {
    color: #788fc8;
    font-style: italic;
    font-size: 13px
}

.header-topbar .header-topbar-search .header-topbar-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff
}

.header-topbar .lang-dropdown .lang-dropdown-toggle {
    padding: 0 10px
}

.footer .contact-list li a .contact-icon,.header-topbar .lang-dropdown .lang-dropdown-toggle img {
    margin-right: 7px
}

.topbar-nav li {
    margin-right: 15px
}

.topbar-nav li a {
    font-size: 13px;
    color: #fff
}

.header-layout2 .header-actions,.header-layout4 .header-actions {
    margin-left: 10px;
    border-left: 2px solid #dfdfea
}

.header-layout3 .miniPopup-language-trigger {
    color: #c0c3ec;
    background-color: transparent
}

.header-layout3 .miniPopup-language-trigger:after {
    right: 7px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateX(0) translateY(-50%)
}

.header-layout3 .miniPopup-language-trigger span {
    padding: 0 4px
}

.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 0!important;
    height: 80px!important;
    max-height: 80px!important;
    background-color: #fff!important;
    box-shadow: 0 3px 4px rgba(0,0,0,.07);
    -webkit-animation: .8s headerAnimation;
    animation: .8s headerAnimation
}

.cart-minipopup,.miniPopup {
    top: 100%;
    background-color: #fff
}

.is-sticky>.container,.is-sticky>.container-fluid {
    position: relative;
    height: 80px
}

.is-sticky .miniPopup-departments-trigger {
    height: 80px
}

.is-sticky .navbar-brand {
    line-height: 80px
}

.is-sticky .header-top-right {
    display: none!important
}

.is-sticky .nav-item .nav-item-link {
    line-height: 80px!important
}

.miniPopup {
    position: absolute;
    left: 0;
    z-index: 150;
    width: 310px;
    padding: 40px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.15);
    transition: .3s;
    transform: translateY(20px)
}

.cart-minipopup.active,.miniPopup-language-area:hover .miniPopup-language,.miniPopup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.miniPopup-language-trigger {
    position: relative;
    z-index: 151;
    height: 50px;
    margin-top: 10px;
    padding: 0 20px;
    border-radius: 0;
    color: #848e9f;
    background-color: #fff;
    transition: .3s;
    -webkit-clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0)
}

.miniPopup-language-trigger:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.cart-minipopup .cart-total,.footer .contact-list li {
    font-weight: 600;
    font-family: "Titillium Web",sans-serif
}

.miniPopup-language-trigger.active:after {
    content: "\f077"
}

.miniPopup-language {
    width: 160px;
    padding: 5px
}

.miniPopup-language li {
    padding: 10px 8px
}

.miniPopup-departments-trigger {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    height: 100px;
    color: #c00;
    transition: .3s
}

.miniPopup-departments-trigger .menu-lines {
    position: relative;
    width: 25px;
    height: 14px;
    margin-right: 15px
}

.miniPopup-departments-trigger .menu-lines span {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #c00;
    transition: .3s
}

.miniPopup-departments-trigger .menu-lines:after,.miniPopup-departments-trigger .menu-lines:before {
    content: "";
    position: absolute;
    right: 0;
    width: 14px;
    height: 2px;
    display: inline-block;
    background-color: #c00;
    transition: .3s
}

.miniPopup-departments-trigger .menu-lines:after {
    bottom: 0
}

.miniPopup-departments-trigger .menu-lines.active:after,.miniPopup-departments-trigger .menu-lines.active:before {
    top: 7px;
    background-color: #2e3192
}

.miniPopup-departments-trigger .menu-lines.active:before {
    transform: rotate(-45deg)
}

.miniPopup-departments-trigger .menu-lines.active:after {
    transform: rotate(45deg)
}

.miniPopup-departments.dropdown-menu {
    top: 100%;
    display: block;
    min-width: 220px;
    width: 220px;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.15)!important
}

.cart-minipopup {
    width: 310px;
    padding: 40px;
    position: absolute;
    left: 0;
    z-index: 1055;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 83px 0 rgba(40,40,40,.05);
    transform: translateY(10px);
    transition: .4s
}

.cart-minipopup .cart-item {
    position: relative;
    display: flex;
    margin-bottom: 20px
}

.cart-minipopup .cart-item .cart-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 3px;
    margin-right: 15px
}

.cart-minipopup .cart-item .cart-content {
    flex: 1;
    padding-right: 22px
}

.cart-minipopup .cart-item .cart-title {
    display: block;
    color: #2e3192;
    font-family: Roboto,sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.cart-minipopup .cart-item .cart-price {
    color: #2e3192;
    font-size: 16px;
    font-weight: 700;
    line-height: 1
}

.cart-minipopup .cart-item .cart-delete {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #2e3192;
    color: #fff;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    font-style: normal;
    position: absolute;
    top: 0;
    right: 0;
    transition: .4s
}

.cart-minipopup .cart-total {
    font-size: 19px;
    line-height: 1;
    margin-bottom: 20px
}

.cart-minipopup .cart-action .btn {
    min-width: 105px;
    height: 40px;
    line-height: 40px
}

.action-btn-cart {
    position: relative;
    font-size: 17px;
    color: #2e3192
}

.cart-counter,.search-popup .search-popup-close {
    color: #fff;
    background-color: #c00;
    position: absolute;
    text-align: center
}

.cart-counter {
    top: -8px;
    right: -9px;
    width: 19px;
    height: 19px;
    line-height: 19px;
    z-index: 3;
    font-size: 12px;
    border-radius: 50%
}

.search-popup {
    position: fixed;
    z-index: 2300;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scale(.7);
    transition: .5s ease-in-out
}

.blog-layout1 .post-item:hover:after,.search-popup.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.search-popup.active .search-popup-form {
    transform: translateY(-50%) scaleX(1)
}

.search-popup.inActive {
    opacity: 0;
    transition-delay: 0.5s;
    transform: scale(1)
}

.search-popup.inActive .search-popup-form {
    transition-delay: 0s;
    transform: translateY(-50%) scaleX(0)
}

.search-popup .search-popup-close {
    top: 0;
    right: 0;
    cursor: pointer;
    font-style: normal;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 3px;
    transition: .2s linear
}

.search-popup .search-popup-form {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 550px;
    margin: -40px auto 0;
    transform: translateY(-50%) scaleX(0);
    transition: .5s ease-in-out 0.5s
}

.search-popup .search-popup-btn {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 80px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    color: #2e3192;
    transition: .3s
}

.search-popup .search-popup-form-input {
    font-family: "Titillium Web",sans-serif;
    font-weight: 300;
    font-size: 35px;
    z-index: 1;
    width: 100%;
    height: 80px;
    border: none;
    padding: 0 0 0 40px;
    color: #848e9f;
    background: 0 0;
    border-bottom: 2px solid #e7ebef;
    transition: .3s
}

.search-popup .search-popup-form-input::-webkit-input-placeholder {
    color: #848e9f
}

.search-popup .search-popup-form-input:-moz-placeholder {
    color: #848e9f
}

.search-popup .search-popup-form-input::-moz-placeholder {
    color: #848e9f
}

.search-popup .search-popup-form-input:-ms-input-placeholder {
    color: #848e9f
}

.btn-contact {
    height: 50px;
    min-width: 150px;
    border-color: #9698c8!important
}

.btn-contact:hover {
    border-color: #2e3192!important;
    background-color: #2e3192
}

.btn-contact:before {
    border-right-color: #9698c8;
    border-left-color: #9698c8
}

.contact-phone .contact-icon {
    position: relative;
    font-size: 50px;
    color: #c00;
    margin-right: 12px
}

.contact-phone .phone-link {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap
}

.about-layout2 .author-singnture,.header-actions>li {
    margin-left: 30px
}

@media (min-width: 1200px) {
    .header-topbar {
        display:block
    }

    .header-topbar>.container-fluid,.navbar>.container-fluid {
        padding-left: 30px;
        padding-right: 30px
    }

    .banner-layout1 .container-fluid {
        padding-left: calc((100% - 1160px)/ 2)
    }

    .banner-layout3 .container-fluid {
        padding-right: calc((100% - 1160px)/ 2)
    }

    .banner-layout5 .container-fluid,.banner-layout8 .container-fluid {
        padding-left: calc((100% - 1240px)/ 2)
    }
}

@media (min-width: 992px) and (max-width:1200px) {
    .navbar .nav-item {
        margin-right:20px
    }
}

@media (max-width: 420px) {
    .header .navbar-brand img {
        max-width:201px
    }

    .about-img img,.header .action-btn-login span {
        display: none
    }

    .about-layout2 .about-text-banner {
        display: none!important
    }
}

.accordion-item {
    padding: 22px ;
    margin-top: -1px;
    border-top: 2px solid #e7ebef;
    border-bottom: 2px solid #e7ebef;
    background-color: #fff;
    box-sizing: border-box;
}

.accordion-item:first-child {
    border-top: 4px solid #2e3192
}

.accordion-item .accordion-title {
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    display: block;
    position: relative;
    padding-left: 40px;
    color: #2e3192
}

.accordion-item .accordion-title:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "+";
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background-color: #c00
}

.accordion-item.opened .accordion-header:not(.collapsed) .accordion-title:after {
    content: "-";
    background-color: #2e3192
}

.accordion-item .accordion-body,.product-details .tab-content {
    padding-top: 20px
}

.accordion-item .accordion-body p,.widget-poducts .widget-product-item .widget-product-title {
    font-size: 15px;
    margin-bottom: 0
}

.accordion-item .accordion-body p:not(:last-child),.counter-item {
    margin-bottom: 30px
}

.banner-layout1,.banner-layout2 {
    overflow-x: hidden;
    padding-right: 30px
}

.banner-layout1 .banner-shape,.banner-layout2 .banner-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 205px;
    max-height: 638px;
    -webkit-clip-path: url(#path-direction-right);
    clip-path: url(#path-direction-right)
}

.banner-layout1 .banner-img,.banner-layout2 .banner-img {
    min-height: 700px;
    -webkit-clip-path: url(#path-direction-right-large);
    clip-path: url(#path-direction-right-large)
}

.banner-layout1 .banner-text,.banner-layout2 .banner-text,.banner-layout3 .banner-text,.banner-layout4 .banner-text {
    max-width: 600px
}

.banner-layout1 .fancybox-layout2 .fancybox-item .fancybox-body,.banner-layout2 .fancybox-layout2 .fancybox-item .fancybox-body {
    border-bottom: 1px solid #faab97
}

.banner-layout1,.banner-layout8,.fancybox-layout3,.fancybox-layout4,.footer,.services-layout2 {
    overflow-x: hidden
}

.banner-layout1 .top-shape {
    height: 90px;
    background-color: #c00
}

.banner-layout1 .top-shape:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    border-radius: 0 0 0 70px;
    background-color: #fff
}

.banner-layout1 .banner-content {
    padding: 110px 100px 110px 0;

}

.banner-layout1 .banner-content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    z-index: -1;

}

.banner-layout1 .banner-shape {
    right: 70px;
    -webkit-animation: 1s infinite zoomOut;
    animation: 1s infinite zoomOut;
    background: linear-gradient(to right,rgba(244,87,46,0) 0,rgba(244,87,46,0) 45%,#c00 78%)
}

.banner-layout2 .banner-content {
    padding: 110px 100px 110px 110px;
    background-color: #c00;
    -webkit-clip-path: url(#path-direction-right-large);
    clip-path: url(#path-direction-right-large)
}

.banner-layout2 .banner-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
    background-color: #c00
}

.banner-layout2 .banner-shape {
    left: 0;
    background-color: #c00
}

.banner-layout3,.banner-layout4 {
    overflow-x: hidden;
    padding-left: 30px
}

.banner-layout3 .banner-img,.banner-layout4 .banner-img {
    min-height: 700px
}

.banner-layout3 .banner-shape,.banner-layout4 .banner-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 205px;
    max-height: 638px;
    -webkit-clip-path: url(#path-direction-left);
    clip-path: url(#path-direction-left)
}

.banner-layout3 .banner-content,.banner-layout4 .banner-content {
    padding: 110px 0 110px 130px;
    background-color: #2e3192
}

.banner-layout3 .fancybox-layout2 .fancybox-item .fancybox-desc,.banner-layout4 .fancybox-layout2 .fancybox-item .fancybox-desc {
    color: #c0c3ec
}

.banner-layout3 .fancybox-layout2 .fancybox-item .fancybox-body,.banner-layout4 .fancybox-layout2 .fancybox-item .fancybox-body {
    border-bottom: 1px solid #c1c3ec
}

.banner-layout3 .top-shape {
    height: 90px;
    background-color: #2e3192
}

.banner-layout3 .top-shape:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    border-radius: 0 0 70px;
    background-color: #fff
}

.banner-layout3 .banner-img,.banner-layout4 .banner-content,.banner-layout4 .banner-img {
    -webkit-clip-path: url(#path-direction-left-large);
    clip-path: url(#path-direction-left-large)
}

.banner-layout3 .banner-content:before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    z-index: -1;
    background-color: #2e3192
}

.banner-layout3 .banner-shape {
    left: 70px;
    -webkit-animation: 1s infinite zoomOut;
    animation: 1s infinite zoomOut;
    background: linear-gradient(to right,#2e3192 0,#2e3192 15%,rgba(46,49,146,0) 50%,rgba(46,49,146,0) 100%)
}

.banner-layout4 .banner-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
    background-color: #2e3192
}

.banner-layout4 .banner-shape {
    right: 0;
    background-color: #2e3192
}

.banner-layout5 .banner-content {
    padding: 120px 0
}

.banner-layout5 .banner-img {
    position: relative;
    padding: 120px 0;
    max-width: 670px
}

.banner-layout5 .banner-img:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 80px;
    z-index: -1;
    background-color: #eef7ff
}

.banner-layout7 .banner-img {
    -webkit-clip-path: url(#path-direction-down);
    clip-path: url(#path-direction-down)
}

.banner-layout7 .container-fluid {
    padding-left: calc((100% - 1250px)/ 2);
    padding-right: 0
}

.banner-layout7 .banner-content {
    padding: 115px 0 125px 70px;
    background-color: #fff
}

.banner-layout7 .banner-content>div {
    max-width: 680px
}

.banner-layout7 .testimonials-layout3 .testimonial-title {
    margin-bottom: 80px
}

.banner-layout8 .banner-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    margin-left: 20px;
    -webkit-clip-path: url(#path-direction-left-large);
    clip-path: url(#path-direction-left-large)
}

.banner-layout8 .banner-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #c00;
    -webkit-clip-path: url(#path-direction-left-large);
    clip-path: url(#path-direction-left-large)
}

@media (min-width: 1400px) {
    .header-topbar>.container-fluid,.navbar>.container-fluid {
        padding-left:50px;
        padding-right: 50px
    }

    .banner-layout1,.banner-layout2 {
        padding-right: 60px
    }

    .banner-layout3,.banner-layout4 {
        padding-left: 60px
    }

    .banner-layout2 .banner-content {
        padding-right: calc((100% - 1340px)/ 2)
    }

    .banner-layout4 .banner-content {
        padding-left: calc((100% - 1340px)/ 2)
    }
}

@media (min-width: 1399px) {
    .banner-layout2 {
        padding-right:20px
    }

    .banner-layout4 {
        padding-left: 20px
    }
}

.footer .footer-primary {
    position: relative;
    padding-top: 35px;
    padding-bottom: 0;
    background-color: #0d0e43
}

.cta-banner,.job-item {
    background-color: #fff
}

.footer .footer-primary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    z-index: 1;
    background-image: url(../image/pattern.png)
}

.footer .footer-secondary {
    position: relative;
    padding: 10px 0;
    background-color: #fff
}

.footer .footer-secondary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    height: 5px;
    background-color: #c00
}

.footer [class*=footer-widget] {
    position: relative;
    z-index: 2;
    margin-bottom: 30px
}

.footer .footer-widget-title {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 30px
}

.footer .contact-list li {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 2
}

.footer .contact-list li a {
    color: #c00;
    display: flex;
    align-items: center
}

.footer .footer-widget-nav li a {
    display: block;
    position: relative;
    color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 11px
}

.footer .footer-copyright-links li a {
    position: relative;
    color: #2e3192;
    display: block;
    margin-right: 25px;
    padding: 3px 0
}

.footer .footer-copyright-links li a:before {
    content: "-";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
    color: #2e3192
}

.footer .time-list li {
    border-bottom-color: #3c3d73
}

.footer .time-list li .time {
    color: #848e9f
}

.footer .footer-widget-time {
    padding: 40px;
    background-color: #0a0a32
}

#scrollTopBtn {
    position: fixed;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    bottom: 30px;
    opacity: 0;
    z-index: 1000;
    overflow: hidden;
    border-radius: 50%;
    transition: .3s ease-in-out
}

#scrollTopBtn i,.services-layout4 .contact-phone .phone-icon .icon-item,.services-layout5 .contact-phone .phone-icon .icon-item,.services-layout6 .contact-phone .phone-icon .icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    background-color: #c00;
    transition: .3s ease-in-out
}

#scrollTopBtn.actived {
    right: 30px;
    opacity: 1
}

@media (min-width: 320px) and (max-width:1200px) {
    .footer .footer-primary {
        padding-top:35px;
        padding-bottom: 30px
    }

    .footer .footer-secondary {
        padding: 20px 0
    }

    .footer .footer-secondary:after {
        left: 20px;
        right: 20px;
        height: 3px
    }

    .footer .footer-widget {
        margin-bottom: 20px
    }

    .footer .footer-widget-title {
        margin-bottom: 15px
    }

    .footer .footer-widget-nav li a {
        font-size: 13px
    }

    .footer .phone-number {
        margin: 10px 0
    }
}

.counter-item .counter-number {
    position: relative;
    font-size: 52px;
    line-height: 1;
    color: #252775;
    font-weight: 400;
    padding-bottom: 22px;
    margin-bottom: 20px
}

.counter-item .counter-number:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dfdfea
}

.counter-item .counter-desc {
    font-size: 19px;
    font-weight: 800;
    color: #2e3192
}

.cta-title {
    font-size: 26px;
    margin-bottom: 15px
}

.cta-banner {
    position: relative;
    z-index: 3;
    height: 350px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 83px 0 rgba(40,40,40,.12)
}

.cta-banner .cta-title {
    font-size: 24px;
    margin-bottom: 15px
}

.cta-banner .cta-desc {
    font-size: 17px
}

.cta-layout1 .cta-icon,.cta-layout2 .cta-icon {
    position: absolute;
    top: 55px;
    right: 40px;
    z-index: -1;
    color: #f0f0f7;
    font-size: 115px;
    line-height: 1
}

.cta-layout1 .cta-icon i,.cta-layout2 .cta-icon i {
    line-height: 1
}

.cta-layout1 .cta-banner,.cta-layout2 .cta-banner {
    padding: 55px 60px;
    margin-top: -175px;
    margin-bottom: 65px
}

.cta-layout1 {
    padding-bottom: 180px
}

.cta-layout1:after {
    content: "";
    position: absolute;
    top: -200px;
    left: -30px;
    width: calc(100% + 30px);
    height: 398px;
    z-index: 1;
    background-image: url(../image/pattern2.png)
}

.cta-layout1+.banner-layout7 {
    margin-top: -130px
}

.cta-layout2 .cta-banner {
    margin-bottom: 45px
}

@media (max-width: 1199px) {
    .header-topbar {
        display:none
    }

    .banner-layout1 .banner-img,.banner-layout3 .banner-img {
        min-height: 600px
    }

    .banner-layout1 .banner-content,.banner-layout3 .banner-content {
        padding: 50px
    }

    .banner-layout1 .banner-content:before {
        left: 0;
        width: 120%
    }

    .banner-layout3 .banner-img {
        order: 2
    }

    .banner-layout3 .banner-content {
        order: 1
    }

    .banner-layout3 .banner-content:before {
        right: 0;
        width: 120%
    }

    .cta-layout1 .cta-banner,.cta-layout2 .cta-banner {
        margin-bottom: 30px
    }
}

@media (min-width: 1200px) {
    .cta-layout1 {
        margin-left:30px
    }

    .cta-layout1>.container {
        max-width: 1310px;
        padding-right: 45px
    }

    .slider .slick-arrow:before {
        font-size: 50px
    }

    .slider .slick-arrow.slick-next {
        right: -5px
    }

    .slider .slick-arrow.slick-prev {
        left: -5px
    }

    .slider .btn {
        min-width: 190px
    }

    .slider .btn.btn-outlined {
        line-height: 58px
    }
}

@media (max-width: 991px) {
    body,html {
        overflow-x:hidden
    }

    .order-1-md {
        order: 1
    }

    .order-2-md {
        order: 2
    }

    .page-title-layout1,.page-title-layout2,.page-title-layout3 {
        padding-top: 60px
    }

    .page-title-layout1 .breadcrumb-area,.page-title-layout2 .breadcrumb-area,.page-title-layout3 .breadcrumb-area {
        margin-top: 70px;
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,.25)
    }

    .pagetitle-heading {
        font-size: 35px;
        line-height: 1.3
    }

    .pagetitle-desc {
        font-size: 15px;
        font-weight: 400
    }

    .navbar .navbar-toggler {
        position: absolute;
        right: 15px;
        height: 13px
    }

    .navbar .collapse:not(.show) {
        display: block
    }

    .navbar .navbar-nav {
        margin: 0!important
    }

    .navbar .nav-item {
        margin-right: 0
    }

    .navbar .nav-item .nav-item-link {
        color: #222;
        line-height: 35px!important;
        padding-left: 15px
    }

    .navbar .nav-item .nav-item-link:hover {
        color: #2e3192
    }

    .header .logo-light,.header-transparent .logo-light,.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured:after,.navbar .dropdown-toggle:after,.navbar .nav-item .nav-item-link:before {
        display: none
    }

    .navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        opacity: 0;
        background-color: rgba(0,0,0,.6);
        z-index: 1000;
        padding: 0;
        transition: .4s
    }

    .navbar .navbar-collapse .navbar-nav {
        opacity: 0;
        width: 240px;
        height: 100%;
        overflow-y: auto;
        padding: 50px 0 20px;
        background-color: #fff;
        transform: translateX(-100%);
        transition: .3s 0.4s
    }

    .navbar .navbar-collapse.menu-opened {
        opacity: 1;
        visibility: visible
    }

    .navbar .navbar-collapse.menu-opened .navbar-nav {
        opacity: 1;
        transform: translateX(0)
    }

    .navbar .navbar-collapse.menu-opened .close-mobile-menu {
        opacity: 1;
        transform: scale(1)
    }

    .navbar .close-mobile-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1100;
        width: 35px;
        height: 35px;
        line-height: 33px;
        text-align: center;
        border-radius: 50%;
        border: 1px solid #fff;
        color: #fff;
        cursor: pointer;
        opacity: 0;
        transform: scale(.8);
        transition: .4s 0.5s
    }

    .navbar .nav-item [data-toggle=dropdown]:after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 0;
        width: 50%;
        text-align: right;
        z-index: 2;
        padding-right: 15px;
        line-height: 35px;
        display: block!important
    }

    .navbar .nav-item.opened>[data-toggle=dropdown]:after,.navbar .nav-item.show>[data-toggle=dropdown]:after {
        content: "\f107"
    }

    .header .navbar,.header-transparent .navbar,.navbar .dropdown-menu {
        background-color: #fff
    }

    .navbar .dropdown-menu .nav-item {
        padding: 0 15px 0 30px
    }

    .navbar .dropdown-menu .nav-item .nav-item-link {
        padding-left: 0;
        border-bottom: none
    }

    .navbar .dropdown-menu .dropdown-menu-col .nav-item,.navbar .mega-dropdown-menu .nav-item,.navbar .navbar-nav .dropdown-menu.show {
        padding: 0
    }

    .navbar .nav-item.dropdown-submenu>.dropdown-menu.show {
        padding-left: 10px
    }

    .navbar .dropdown-submenu .dropdown-menu .nav-item {
        padding: 0 0 0 15px
    }

    .header-topbar>.container,.navbar .mega-dropdown-menu .container {
        max-width: none
    }

    .navbar .mega-dropdown-menu>.nav-item {
        padding: 0 10px
    }

    .navbar .dropdown-menu .nav-title {
        font-size: 15px
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block {
        padding: 10px 0 0
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
        padding: 10px;
        height: auto
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-title {
        font-size: 18px
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc {
        font-size: 13px
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
        line-height: 40px!important
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
        width: 20px;
        height: 20px;
        margin-right: 10px
    }

    .header .logo-dark,.header-transparent .logo-dark {
        display: inline-block
    }

    .header .module-btn,.header-transparent .module-btn {
        color: #c00;
        margin: 0 60px 0 0
    }

    .header .navbar .navbar-toggler .menu-lines span,.header .navbar .navbar-toggler .menu-lines:after,.header .navbar .navbar-toggler .menu-lines:before,.header-transparent .navbar .navbar-toggler .menu-lines span,.header-transparent .navbar .navbar-toggler .menu-lines:after,.header-transparent .navbar .navbar-toggler .menu-lines:before {
        background-color: #c00
    }

    .header .navbar-expand-lg>.container,.header .navbar-expand-lg>.container-fluid,.header-transparent .navbar-expand-lg>.container,.header-transparent .navbar-expand-lg>.container-fluid {
        width: 100%;
        max-width: none
    }

    .header .navbar,.header .navbar>.container,.header .navbar>.container-fluid,.header-transparent .navbar,.header-transparent .navbar>.container,.header-transparent .navbar>.container-fluid {
        height: 80px
    }

    .header .header-full .navbar,.header .header-full .navbar .navbar-brand,.header .navbar-brand,.header-transparent .header-full .navbar,.header-transparent .header-full .navbar .navbar-brand,.header-transparent .navbar-brand {
        margin-left: 15px;
        line-height: 80px!important
    }

    .header .header-full .navbar,.header .header-full .navbar .navbar-brand,.header-transparent .header-full .navbar,.header-transparent .header-full .navbar .navbar-brand {
        line-height: 80px
    }

    .header-transparent .action-btn,.lang-dropdown .lang-dropdown-toggle {
        color: #c00
    }

    .action-btn-search {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%)
    }

    .banner-layout5 .banner-content,.banner-layout5 .banner-img {
        padding: 60px 0
    }

    .banner-layout7 .banner-img {
        margin: 0 30px 30px
    }

    .banner-layout7 .banner-content {
        padding: 60px 30px
    }

    .cta-banner .cta-title {
        font-size: 16px
    }

    .cta-layout1 .cta-banner,.cta-layout2 .cta-banner {
        padding: 25px 30px;
        margin: 0 0 30px
    }
}

.careers .slick-slide,[class*=services-layout] .slick-slide {
    margin: 15px;
    transition: opacity .3s,visibility .3s,box-shadow .4s
}

.careers .slick-slide:not(.slick-active),.work-process .slick-slide:not(.slick-active),[class*=services-layout] .slick-slide:not(.slick-active) {
    opacity: 0;
    visibility: hidden
}

.careers .slick-list,.work-process .slick-list,[class*=services-layout] .slick-list {
    margin: -15px;
    overflow: visible
}

.careers .slick-dots,.services-layout4 .slick-dots,.services-layout5 .slick-dots {
    margin-top: 15px
}

.job-item {
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.12);
    transition: .4s;
    height: 100%
}

.job-item:hover {
    transform: translateY(-3px)
}

.job-item .job-meta {
    margin-bottom: 32px
}

.job-item .job-type {
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-right: 10px;
    text-transform: capitalize;
    color: #fff;
    background-color: #c00
}

.job-item .job-location {
    font-size: 13px
}

.job-item .job-title {
    font-size: 22px;
    margin-bottom: 18px
}

.job-item .btn {
    margin-top: 10px
}

.header-transparent+.slider {
    margin-top: -100px
}

.header-transparent+.slider .slide-item {
    padding-top: 100px
}

.slider .slide-item {
    min-height: 550px;
    height: calc(100vh - 160px)
}

.slider .slide-subtitle {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.slider .slide-title {
    color: #fff;
    font-size: 78px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px
}

.slider .slide-desc {
    color: #f9f9f9;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    max-width: 600px;
    margin-bottom: 30px
}

.slider .fancybox-layout5 .fancybox-item {
    padding: 0;
    max-width: 175px
}

.slider .fancybox-layout5 .fancybox-item:not(:nth-child(-n + 2)) {
    margin-top: -30px
}

.slider .slick-arrow.slick-next:before {
    content: "\e908"
}

.slider .slick-arrow.slick-prev:before {
    content: "\e906"
}

.slider .slick-dots {
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%
}

.contact-layout5 .widget-banner,.services-layout6 .service-item .service-body,.slider .cta-banner,.widget-plan .widget-body {
    padding: 50px
}

.slider .cta-banner .cta-icon {
    font-size: 50px;
    line-height: 1;
    color: #2e3192;
    margin-bottom: 28px
}

.slider .cta-banner .slick-dots {
    position: static;
    text-align: left;
    margin-left: -17px
}

.slider .cta-banner .slick-dots li button {
    border-color: #c00
}

.slider .cta-banner .slick-dots li.slick-active button,.widget-search .widget-form-search .form-control:focus {
    border-color: #2e3192
}

.slider .slider-banner .slick-arrow {
    width: 34px;
    height: 34px;
    top: 70px
}

.slider .slider-banner .slick-arrow:before {
    width: 34px;
    height: 34px;
    font-size: 13px;
    background-color: #2e3192
}

.slider .slider-banner .slick-arrow.slick-next {
    right: 50px
}

.slider .slider-banner .slick-arrow.slick-prev {
    right: 90px;
    left: auto
}

.slider-layout2 .slide-item {
    height: auto;
    padding-top: 100px;
    padding-bottom: 220px
}

.cart-table .cart-product-quantity,.slider-centerd {
    text-align: center
}

.slider-centerd .slide-desc {
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 1400px) {
    .slider .slick-arrow.slick-prev {
        left:30px
    }

    .slider .slick-arrow.slick-next {
        right: 30px
    }
}

@media (min-width: 768px) and (max-width:1200px) {
    .slider .slide-item {
        padding-right:50px;
        padding-left: 50px
    }

    .slider .slick-arrow.slick-prev {
        left: 10px
    }

    .slider .slick-arrow.slick-next {
        right: 10px
    }
}

@media (min-width: 992px) and (max-width:1200px) {
    .slider .slide-title {
        font-size:65px
    }
}

@media (min-width: 768px) and (max-width:991px) {
    section {
        padding-top:60px;
        padding-bottom: 60px
    }

    .slider .slide-title {
        font-size: 50px;
        margin-bottom: 10px
    }
}

@media (min-width: 320px) and (max-width:767px) {
    section {
        padding-top:50px;
        padding-bottom: 50px
    }

    .heading-title {
        font-size: 25px;
        margin-bottom: 10px
    }

    .accordion-item .accordion-title,.heading-desc,.heading-subtitle,.text-link {
        font-size: 15px
    }

    .heading-layout2 .heading-title {
        font-size: 30px
    }

    .text-block-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .pagetitle-desc {
        font-size: 14px;
        margin-bottom: 10px
    }

    .pagetitle-heading {
        font-size: 30px!important;
        line-height: 1.2;
        margin-bottom: 20px
    }

    .btn:not(.btn-link) {
        font-size: 13px;
        min-width: 120px;
        height: 55px
    }

    .btn-icon {
        padding: 0 10px
    }

    .btn-xl {
        height: 55px;
        min-width: 150px
    }

    .form-group,.job-item .job-meta,.nice-select {
        margin-bottom: 20px
    }

    .nav-tabs .nav-link {
        font-size: 13px;
        margin: 0 15px 0 0
    }

    .nav-tabs .nav-link:after {
        bottom: 4px
    }

    .breadcrumb-item a,.breadcrumb-item+.breadcrumb-item {
        font-size: 12px
    }

    .pagination li a {
        font-size: 16px;
        width: 35px;
        height: 35px
    }

    .list-items li {
        font-size: 14px
    }

    .list-horizontal li {
        flex: 0 0 100%;
        max-width: 100%
    }

    .dropdown-menu.mega-dropdown-menu>.nav-item {
        padding: 0 15px
    }

    .dropdown-menu.mega-dropdown-menu .nav-item:last-child>.nav-item-link {
        border-bottom: 1px solid #f2f2f2
    }

    .dropdown-menu.mega-dropdown-menu [class^=col-]:last-child .nav-item:last-child>.nav-item-link {
        border-bottom: none
    }

    .accordion-item {
        padding: 10px 0
    }

    .accordion-item .accordion-body p {
        font-size: 13px
    }

    .footer .footer-copyright-links {
        justify-content: flex-start!important
    }

    #scrollTopBtn {
        bottom: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px
    }

    #scrollTopBtn.actived {
        right: 20px
    }

    .job-item {
        padding: 20px
    }

    .job-item .job-title {
        margin-bottom: 10px
    }

    .header-transparent+.slider {
        margin-top: 0!important
    }

    .slider .slide-item {
        min-height: 0;
        padding: 100px 10px;
        height: auto!important
    }

    .slider .slide-desc {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 20px
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .slider .slide-title {
        font-size:35px;
        line-height: 45px;
        margin-bottom: 10px
    }

    .slider .slick-arrow.slick-prev {
        left: 0
    }

    .slider .slick-arrow.slick-next {
        right: 0
    }
}

.video-btn {
    text-align: center;
    display: inline-flex;
    position: relative;
    padding-left: 88px;
    height: 88px;
    align-items: center
}

.video-btn .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 88px;
    line-height: 88px;
    border-radius: 50%;
    color: #fff;
    background-color: #c00;
    transition: .3s linear
}

.video-btn .video-player:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    border: 2px solid #fff
}

.video-btn .video-player:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30px;
    width: 30px;
    z-index: 3;
    border-radius: 50%;
    -webkit-animation: 3s infinite ripple;
    animation: 3s infinite ripple;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 0 rgba(255,255,255,.3)
}

.video-btn .video-btn-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    margin-left: 22px
}

.video-btn-sm {
    padding-left: 68px;
    height: 68px
}

.video-btn-sm .video-player {
    width: 68px;
    height: 68px;
    line-height: 68px
}

.video-btn-white .video-player {
    background-color: #fff!important;
    color: #252775
}

.video-btn-white .video-player-animation {
    border-color: #fff!important
}

.video-banner {
    position: relative;
    z-index: 2
}

.contact-layout5 .contact-panel,.product-item-single .product-img img,.video-banner img {
    border-radius: 15px
}

.video-banner .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.video-banner .video-btn-title {
    position: absolute;
    bottom: -30px;
    left: -7px;
    line-height: 1.5
}

.feature-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    transition: .3s linear
}

.feature-item .feature-icon {
    position: relative;
    width: 26px;
    height: 30px;
    margin-right: 10px;
    background-color: #2e3192;
    -webkit-clip-path: url(#hexagon-clippath);
    clip-path: url(#hexagon-clippath)
}

.feature-item .feature-icon:before {
    content: "\e93d";
    font-family: icomoon;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 8px;
    color: #fff;
    transform: translate(calc(-50% - 1px),-50%)
}

.feature-item .feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #2e3192
}

.features-list,.features-list-layout2 .feature-item {
    padding: 30px;
    background-color: #eef7ff;
    -webkit-clip-path: polygon(calc(100% - 20px) 0,100% 20px,100% 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 20px) 0,100% 20px,100% 100%,0 100%,0 0)
}

.features-list-layout2 .feature-item {
    padding: 20px 10px;
    border-radius: 0
}

.features-list-layout3 .feature-item {
    padding-bottom: 10px
}

.features-list-layout3 .feature-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 30px;
    height: 1px;
    background-color: #dfdfea
}

.features-list-layout3 .feature-item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0
}

.features-list-layout3 .feature-item .feature-icon {
    width: 26px;
    height: 26px;
    -webkit-clip-path: none;
    clip-path: none;
    border-radius: 50%
}

.fancybox-item .fancybox-icon {
    font-size: 45px;
    line-height: 1
}

.fancybox-layout1 .fancybox-item {
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
    background-color: #eef7ff;
    border-radius: 10px 10px 0 0;
    -webkit-clip-path: url(#path-direction-down);
    clip-path: url(#path-direction-down);
    transition: .3s linear
}

.fancybox-layout1 .fancybox-item .fancybox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 118px;
    margin: 0 auto 22px;
    color: #fff;
    background-color: #2e3192;
    -webkit-clip-path: url(#hexagon-clippath);
    clip-path: url(#hexagon-clippath)
}

.fancybox-layout1 .fancybox-item .fancybox-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px
}

.fancybox-layout1 .fancybox-item .fancybox-desc {
    margin-bottom: 21px
}

.fancybox-layout2 .fancybox-item {
    display: flex;
    margin-bottom: 30px
}

.fancybox-layout2 .fancybox-item .fancybox-body {
    padding-bottom: 27px;
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px)
}

.fancybox-layout2 .fancybox-item .fancybox-icon {
    flex: 0 0 80px;
    max-width: 80px
}

.fancybox-layout2 .fancybox-item .fancybox-title {
    font-size: 20px;
    margin-bottom: 16px
}

.fancybox-layout2 .fancybox-item:hover .fancybox-icon {
    -webkit-animation: 1s infinite slideTopDown;
    animation: 1s infinite slideTopDown
}

.fancybox-layout3 .fancybox-item,.fancybox-layout4 .fancybox-item {
    padding: 50px 34px 50px 37px;
    border-radius: 4px;
    background-color: #fff
}

.fancybox-layout3 .fancybox-item .fancybox-img,.fancybox-layout4 .fancybox-item .fancybox-img {
    position: absolute;
    top: -25px;
    left: 40px;
    right: 40px;
    opacity: 0;
    -webkit-clip-path: url(#path-direction-down-sm);
    clip-path: url(#path-direction-down-sm);
    transform: scale(.5);
    transition: .3s
}

.fancybox-layout3 .fancybox-item .fancybox-icon,.fancybox-layout4 .fancybox-item .fancybox-icon {
    color: #2e3192;
    margin-bottom: 37px;
    transition: .3s linear
}

.fancybox-layout3 .fancybox-item .fancybox-title,.fancybox-layout4 .fancybox-item .fancybox-title {
    color: #2e3192;
    font-size: 20px;
    margin-bottom: 17px
}

.fancybox-layout3 .fancybox-item .btn,.fancybox-layout4 .fancybox-item .btn,.services-layout5 .service-item .btn,.services-layout6 .service-item .btn {
    margin-top: 26px
}

.fancybox-layout3 .fancybox-item:hover .fancybox-img,.fancybox-layout4 .fancybox-item:hover .fancybox-img,.testimonials-layout3 .testimonial-meta.slick-current .testimonial-thmb:before {
    opacity: 1;
    transform: scale(1)
}

.fancybox-layout4 {
    padding-bottom: 250px
}

.fancybox-layout4 .slick-dots {
    position: absolute;
    bottom: -60px;
    text-align: right;
    right: calc((100% - 870px)/ 2)
}

.fancybox-layout4 .slick-dots li.slick-active button {
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,.15)
}

.fancybox-layout5 .fancybox-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.fancybox-layout5 .fancybox-item {
    margin: 10px;
    padding: 45px;
    max-width: 290px;
    -webkit-clip-path: url(#hexagon-clippath);
    clip-path: url(#hexagon-clippath)
}

.fancybox-layout5 .fancybox-item .fancybox-icon {
    color: #2e3192;
    margin-bottom: 11px
}

.fancybox-layout5 .fancybox-item .fancybox-body {
    text-align: center;
    padding: 45px 20px;
    background-color: #fff;
    -webkit-clip-path: url(#hexagon-clippath);
    clip-path: url(#hexagon-clippath);
    height: 100%
}

.fancybox-layout5 .fancybox-item .fancybox-title {
    font-size: 17px;
    margin-bottom: 17px
}

.fancybox-layout5 .fancybox-item .fancybox-body,.fancybox-layout5 .fancybox-item .fancybox-icon,.fancybox-layout5 .fancybox-item .fancybox-title {
    transition: .2s linear
}

@media (min-width: 1200px) {
    .fancybox-layout3 .fancybox-desc {
        display:-webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal
    }

    .fancybox-layout3 .carousel-wrapper,.fancybox-layout4 .carousel-wrapper {
        margin-right: -200px
    }

    .fancybox-layout5 .heading-desc {
        padding: 0 60px
    }

    .fancybox-layout5 .fancybox-item:not(:nth-child(-n + 4)) {
        margin-top: -30px
    }

    .blog-single .post-item .post-title {
        font-size: 40px
    }

    .blog-single .post-item .post-desc p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px
    }

    .blog-single .post-item .post-body {
        margin-bottom: 0
    }
}

.member {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: .3s linear
}

.member .member-img img {
    width: 100%;
    height: 375px
}

.member .member-info {
    position: relative;
    margin-top: -100px;
    padding: 40px 40px 25px;
    background-color: transparent;
    -webkit-clip-path: url(#path-direction-up);
    clip-path: url(#path-direction-up);
    transition: .3s
}

.member .member-info .member-name {
    font-size: 20px;
    margin-bottom: 7px;
    padding-top: 10px;
    transition: .3s
}

.member .member-info .member-desc {
    font-size: 14px;
    margin-bottom: 0;
    transition: .3s
}

.member .social-icons {
    transform: scale(0);
    transition: .3s
}

.member .social-icons li a {
    width: 38px;
    height: 38px;
    border: 0;
    box-shadow: none;
    border-radius: 2px;
    background-color: #c00;
    transition: .3s linear
}

.member .social-icons li a i {
    width: 20px;
    height: 20px;
    color: #c00;
    background-color: #fff
}

.member:hover .social-icons {
    transform: scale(1)
}

.team-layout1 .member,.team-layout2 .member:hover {
    box-shadow: 0 5px 83px 0 rgba(40,40,40,.11)
}

.team-layout1 .member .member-info:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100px;
    background-color: #fff
}

.team-layout2 .member .member-info {
    padding-top: 70px
}

.testimonial-item {
    position: relative;
    padding: 47px 45px;
    border-radius: 10px
}

.testimonial-title {
    color: #848e9f;
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px
}

.testimonial-meta {
    transition: opacity .3s
}

.testimonial-meta.slick-current,.widget-member .member .social-icons li {
    opacity: 1
}

.testimonial-meta.slick-current .testimonial-thmb {
    border-color: #c00;
    background-color: #fff
}

.testimonial-meta-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap
}

.testimonial-meta-desc {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0
}

.testimonial-thmb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 20px;
    transition: .3s
}

.testimonial-thmb img {
    display: block;
    border-radius: 50%;
    margin: auto
}

.testimonials-rating {
    position: relative;
    max-width: 300px;
    padding: 20px 0 20px 30px
}

.testimonials-rating:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 143px;
    height: 95px;
    background-image: url(https://www.nxapharma.com/assets/images/icons/text-shape.png)
}

.testimonials-rating .total-rate {
    font-family: "Titillium Web",sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #2e3192;
    margin-right: 10px
}

.testimonials-rating .overall-rate {
    font-weight: 700;
    color: #c00;
    border-bottom: 2px solid #c00
}

.testimonials-layout2 .testimonial-thmb,.testimonials-layout3 .testimonial-thmb {
    width: 68px;
    height: 68px;
    padding: 10px;
    flex: 0 0 68px;
    border: 2px solid #c1c3ec
}

.testimonials-layout2 .slick-arrow:before,.testimonials-layout3 .slick-arrow:before {
    width: 34px;
    height: 34px;
    font-size: 11px;
    background-color: #c00
}

.comments-list .comment-item .comment-content,.testimonials-layout2 .testimonial-item .testimonial-meta {
    padding-left: 120px
}

.testimonials-layout2 .testimonial-title {
    font-size: 23px
}

.testimonials-layout2 .slick-arrow {
    top: calc(100% - 34px)
}

.testimonials-layout2 .slick-arrow.slick-next {
    right: auto;
    left: 50px
}

.testimonials-layout3 .testimonials-container {
    position: relative;
    padding-left: 115px
}

.testimonials-layout3 .testimonials-container:before {
    content: "\e93e";
    font-family: icomoon;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 45px;
    color: #c00
}

.testimonials-layout3 .slider-nav-thumbnails {
    padding-left: 115px
}

.testimonials-layout3 .testimonial-thmb:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    border-radius: 50%;
    opacity: 0;
    background-color: rgba(244,87,46,.8);
    transform: scale(.7);
    transition: .3s
}

.blog-layout1 .post-item,.blog-layout1 .post-item .post-img {
    border-radius: 6px 6px 0 0
}

.testimonials-layout3 .slick-arrow {
    top: calc(100% + 34px)
}

.testimonials-layout3 .slick-arrow.slick-next {
    right: auto;
    left: 40px
}

@media (min-width: 576px) {
    .testimonials-layout1 .testimonial-item {
        margin-bottom:80px
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+0) .testimonial-item,.testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+1) .testimonial-item {
        background-color: #fff;
        box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+0) .testimonial-item:before,.testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+1) .testimonial-item:before {
        content: "\e93e";
        font-family: icomoon;
        position: absolute;
        top: -30px;
        left: 45px;
        font-size: 45px;
        color: #c00
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+0) .testimonial-item:after,.testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(4n+1) .testimonial-item:after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 50px;
        border-style: solid;
        border-width: 36px 46px 0 0;
        border-color: #fff transparent transparent
    }
}

@media (max-width: 575px) {
    .testimonials-layout1 .testimonial-item {
        margin-bottom:40px
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(odd) .testimonial-item {
        background-color: #fff;
        box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(odd) .testimonial-item:before {
        content: "\e93e";
        font-family: icomoon;
        position: absolute;
        top: -30px;
        left: 27px;
        font-size: 45px;
        color: #c00
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(odd) .testimonial-item:after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 50px;
        border-style: solid;
        border-width: 36px 46px 0 0;
        border-color: #fff transparent transparent
    }
}

.client {
    position: relative;
    display: flex!important;
    align-items: center;
    justify-content: center;
    height: 90px
}

.client img {
    padding: 0 15px;
    transition: transform .5s
}

.client:hover img {
    transform: scale(1.1)
}

.clients-light .client img {
    filter: brightness(100)
}

.clients-light .client img:first-of-type {
    opacity: .98
}

.post-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.08);
    transition: .3s linear
}

.post-item:not(.post-item-single):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    background-color: #c00;
    transform: scale(.7);
    transition: .3s ease-in-out
}

.post-item .post-img,.product-img {
    position: relative;
    overflow: hidden
}

.post-item .post-img img {
    transition: .9s
}

.post-item .post-img .post-meta-date {
    position: absolute;
    z-index: 3;
    top: 40px;
    left: 40px;
    height: 39px;
    display: flex
}

.post-item .post-img .post-meta-date .day,.post-item .post-img .post-meta-date .month {
    display: inline-flex;
    align-items: center
}

.post-item .post-img .post-meta-date .day {
    padding: 0 10px;
    font-size: 26px;
    color: #fff;
    background-color: #2e3192
}

.post-item .post-img .post-meta-date .month {
    padding: 0 15px;
    color: #848e9f;
    background-color: #fff
}

.post-item .post-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 23px
}

.post-item .post-title a,.widget-poducts .widget-product-item .widget-product-title a,.widget-post-item .widget-post-title a {
    color: #252775
}

.post-item .post-meta {
    margin-bottom: 18px
}

.post-item .post-meta>* {
    position: relative;
    font-size: 13px;
    color: #2e3192;
    line-height: 1;
    margin-right: 8px;
    padding-right: 8px
}

.post-item .post-meta>:after {
    content: "-";
    position: absolute;
    top: 0;
    right: -2px;
    color: #848e9f
}

.post-item .post-meta>:last-child {
    padding-right: 0;
    margin-right: 0
}

.post-item .post-body {
    position: relative;
    z-index: 3;
    padding: 37px 45px;
    margin-bottom: -65px;
    transition: .3s ease-in-out
}

.post-item .post-meta-cat {
    display: inline-flex
}

.post-item .post-meta-cat a {
    position: relative;
    color: #c00;
    padding-right: 7px;
    font-weight: 700
}

.post-item .post-meta-cat a:after {
    content: ",";
    position: absolute;
    top: -1px;
    right: 1px;
    color: #c00
}

.post-item .post-meta-cat a:last-child,.service-item .service-category a:last-of-type {
    padding-right: 0
}

.post-item .btn-link {
    padding: 12px 0;
    margin-top: 5px;
    opacity: 0;
    color: #fff
}

.post-item .btn-link:hover .plus-icon {
    color: #fff!important;
    background-color: #2e3192!important
}

.blog-layout1 .post-item:hover .post-img img,.post-item:hover .post-img img {
    transform: scale(1.1) rotate(1deg)
}

.blog-layout1 .post-item {
    margin-bottom: 30px;
    border-bottom: 8px solid #dfdfea
}

.blog-layout1 .post-item:hover .post-body {
    transform: translateY(-65px)
}

.blog-layout1 .post-item:hover .btn-link {
    transition-delay: 0.2s;
    opacity: 1
}

.blog-layout2 .post-item {
    box-shadow: none;
    margin-bottom: 40px
}

.blog-layout2 .post-item .post-img {
    overflow: hidden;
    border-radius: 5px
}

.blog-layout2 .post-item.featured-post .post-img {
    max-height: 360px
}

.blog-layout2 .post-item:not(.featured-post) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.blog-layout2 .post-item:not(.featured-post) .post-img {
    flex: 180px 0 0;
    max-width: 180px
}

.blog-layout2 .post-item:not(.featured-post) .post-body {
    padding: 15px 30px;
    margin-bottom: 0;
    flex: calc(100% - 180px) 0 0;
    max-width: calc(100% - 180px)
}

.post-item-single .post-img {
    border-radius: 5px 5px 0 0
}

.blog-widget-title {
    font-size: 21px;
    margin-bottom: 24px
}

.widget-nav .nav-icon {
    position: relative;
    max-width: 60px;
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eaeaea;
    transition: .3s linear
}

.widget-nav .nav-ttile {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    color: #2e3192;
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    transition: .3s linear
}

.widget-nav .nav-next .nav-icon {
    margin-right: 20px
}

.widget-nav .nav-prev .nav-ttile {
    text-align: right
}

.widget-nav .nav-next,.widget-nav .nav-prev {
    flex: 0 0 160px;
    max-width: 160px
}

.blog-author {
    position: relative;
    padding: 35px;
    border-radius: 5px 5px 0 0;
    border-bottom: 8px solid #2e3192;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
}

.blog-author .blog-author-avatar {
    flex: 0 0 100px;
    max-width: 100px;
    overflow: hidden;
    margin-bottom: 20px;
    padding-right: 30px
}

.blog-author .blog-author-avatar img {
    border-radius: 3px
}

.blog-author .blog-author-content {
    flex: calc(100% - 100px);
    max-width: calc(100% - 100px)
}

.blog-author .blog-author-name {
    font-size: 18px;
    margin-bottom: 12px
}

.blog-author .blog-author-bio {
    font-size: 15px;
    margin-bottom: 13px
}

.bordered-box {
    border-radius: 4px;
    border: 1px solid #e5e8ea
}

.bordered-box .blog-share,.bordered-box .blog-tags {
    padding: 25px
}

.comments-list .comment-item {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 30px
}

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

.comments-list .comment-item .comment-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    overflow: hidden
}

.about-layout2 .author-img img,.comments-list .comment-item .comment-avatar img {
    border-radius: 50%
}

.comments-list .comment-item .comment-content .comment-author {
    display: inline-flex;
    font-size: 18px;
    margin-right: 20px;
    margin-bottom: 0
}

.comments-list .comment-item .comment-content .comment-date {
    font-size: 12px;
    line-height: 1;
    color: #616161
}

.comments-list .comment-item .comment-content .comment-desc {
    padding: 35px 40px;
    position: relative;
    margin: 10px 0;
    background-color: #eef7ff
}

.comments-list .comment-item .comment-content .comment-desc:before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    border-style: solid;
    border-width: 0 20px 15px 0;
    border-color: transparent #eef7ff transparent transparent
}

.comments-list .comment-item .comment-content .comment-reply {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #c00
}

.comments-list .comment-item .nested-comment {
    border-top: 1px solid #eaeaea;
    padding: 30px 0 0;
    margin: 30px 0 0 90px
}

.blog-comments-form .form-control {
    height: 60px
}

.blog-comments-form .btn {
    height: 70px;
    line-height: 70px
}

.blog-tags ul li a {
    position: relative;
    font-size: 14px;
    padding-right: 5px;
    color: #2e3192
}

.blog-tags ul li a:before {
    content: ",";
    position: absolute;
    top: -2px;
    right: 1px;
    color: #2e3192
}

@media (min-width: 768px) {
    .widget-nav-next {
        text-align:right;
        flex-direction: row-reverse
    }
}

.contact-panel,.login-form {
    padding: 60px;
    background-color: #fff
}

.contact-info .boxes-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -40px;
    overflow: hidden;
    border-radius: 10px
}

.contact-info .boxes-wrapper>[class*=col-]:nth-of-type(2) .contact-box {
    background-color: #3851a2
}

.contact-info .boxes-wrapper>[class*=col-]:nth-of-type(3) .contact-box {
    background-color: #2d4990
}

.contact-info .contact-box {
    position: relative;
    padding: 45px;
    height: 100%
}

.contact-info .contact-box .contact-icon {
    font-size: 50px;
    flex: 0 0 80px;
    max-width: 80px
}

.contact-info .contact-box .phone-number {
    font-size: 23px;
    margin-top: 5px;
    font-weight: 600;
    color: #fff!important
}

.contact-info .contact-box .phone-number .icon-phone {
    font-size: 17px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    background-color: #1ebaae
}

.contact-info .contact-box .btn-white.btn-outlined {
    height: 42px;
    border: 1px solid rgba(255,255,255,.25)
}

.contact-panel {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.1)
}

.login-form,.widget {
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
}

.contact-panel .panel-header {
    padding: 35px 40px;
    border-radius: 5px 5px 0 0;
    background-color: #2e3192
}

.contact-panel .panel-header .panel-title {
    font-size: 20px
}

.map-container {
    z-index: 1;
    width: 75%;
    margin: 0 auto
}

.map-container .accordion-item {
    padding: 0;
    border: 0
}

.map-container .accordion-header {
    border-top: 1px solid #e7ebef;
    border-bottom: 1px solid #e7ebef
}

.map-container .accordion-body,.map-container .accordion-header {
    padding: 20px 40px
}

.map-container .accordion-title {
    padding: 0 40px 0 0;
    font-size: 17px
}

.map-container .accordion-title:after {
    left: auto;
    right: 0
}

.map-container .contact-list li {
    font-size: 14px;
    margin-bottom: 7px
}

.contact-layout1 .text-block {
    margin-bottom: 37px;
    padding-right: 50px
}

.contact-layout1 .text-block-desc,.product-details .tab-content p,.product-item-single .product-desc,.product-item-single .product-rating i {
    font-size: 15px
}

.contact-layout2 .testimonials-layout2 {
    margin-top: 20px;
    padding-top: 70px;
    border-top: 2px solid #c1c3ec
}

.contact-layout3 .fancybox-layout2 .fancybox-item .fancybox-body,.contact-layout4 .fancybox-layout2 .fancybox-item .fancybox-body {
    border-bottom: 1px solid #6d6fb3
}

.contact-layout3 .fancybox-layout2 .fancybox-item:last-of-type .fancybox-body,.contact-layout4 .fancybox-layout2 .fancybox-item:last-of-type .fancybox-body {
    padding-bottom: 0;
    border-bottom: 0
}

.contact-layout4 .accordion-item {
    border-color: #6d6fb3;
    background-color: transparent
}

.time-list li,[class*=pricing-widget-layout] .pricing-list li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dcdee2
}

.contact-layout4 .accordion-item:first-child {
    border-top-color: #fff
}

.contact-layout5 .contact-panel-form {
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 50px
}

.contact-layout5 .contact-panel-banner {
    padding-top: 30px;
    flex: 0 0 30%;
    max-width: 30%
}

.contact-layout5 .widget-banner.bg-overlay-primary::before {
    background-color: rgba(46,49,146,.95)
}

.contact-layout5 .widget-banner .widget-desc {
    font-size: 16px;
    margin-bottom: 160px
}

.locations-panel {
    margin-bottom: 65px
}

.locations-panel .locations-panel-header {
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 25px
}

.locations-panel .locations-panel-title {
    font-size: 25px;
    margin-bottom: 25px
}

.locations-panel ul li {
    margin-bottom: 18px;
    flex-basis: 25%
}

.locations-panel ul li a {
    color: #2e3192;
    font-size: 14px;
    font-weight: 700
}

.login-form {
    margin: auto;
    max-width: 400px;
    border-radius: 20px
}

@media (min-width: 1300px) {
    .contact-layout2 {
        margin-right:20px;
        margin-left: 20px;
        overflow: hidden;
        border-radius: 20px
    }
}

[class*=pricing-widget-layout] {
    padding: 40px;
    border-radius: 12px
}

[class*=pricing-widget-layout] .pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 15px
}

.widget-categories ul li a,.widget-categories ul li a .cat-count {
    align-items: center;
    color: #fff;
    transition: .3s linear;
    display: flex
}

[class*=pricing-widget-layout] .pricing-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

[class*=pricing-widget-layout] .pricing-list li .price {
    line-height: 1;
    padding: 6px 10px;
    border-radius: 5px
}

.pricing-widget-layout1 {
    background-color: #eef7ff
}

.pricing-widget-layout3 {
    border: 2px solid #dfdfea
}

.widget-plan {
    border-radius: 13px;
    border: 2px solid #e6e8eb
}

.widget-plan .widget-footer {
    padding: 50px;
    border-top: 2px solid #e6e8eb
}

.widget-plan .plan-price {
    line-height: 1;
    font-size: 50px;
    color: #435ba1
}

@media (max-width: 992px) {
    .testimonial-title {
        font-size:18px
    }

    .testimonial-meta-title {
        font-size: 13px
    }

    .contact-info .contact-box {
        padding: 25px
    }

    .contact-panel {
        padding: 20px
    }

    .contact-panel .contact-panel-desc {
        font-size: 13px;
        line-height: 23px
    }

    .contact-layout3 .contact-panel,.contact-layout4 .contact-panel {
        margin-top: 30px
    }

    .contact-layout5 .contact-panel-form {
        padding-right: 0
    }

    .contact-layout5 .contact-panel-banner,.contact-layout5 .contact-panel-form {
        flex: 0 0 100%;
        max-width: 100%
    }

    [class*=pricing-widget-layout] {
        padding: 20px;
        border-radius: 8px
    }

    [class*=pricing-widget-layout] .pricing-title {
        font-size: 16px
    }

    [class*=pricing-widget-layout] .pricing-list li {
        font-size: 14px
    }

    [class*=pricing-widget-layout] .pricing-list li .price {
        padding: 3px 6px
    }
}

.sidebar.sticky-top {
    top: 100px
}

.widget {
    position: relative;
    padding: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 5px;
    border-bottom: 8px solid #dfdfea
}

.widget .widget-title {
    font-size: 22px;
    margin-bottom: 23px
}

.widget-search .widget-form-search .form-control {
    height: 55px
}

.widget-search .widget-form-search .btn {
    position: absolute;
    top: 0;
    right: 20px;
    width: auto;
    color: #c00;
    padding: 0;
    min-width: 0;
    height: 55px;
    line-height: 55px
}

.widget-categories ul li,.widget-categories-layout2 ul li {
    margin-bottom: 11px
}

.widget-categories ul li a {
    position: relative;
    justify-content: space-between;
    font-family: "Titillium Web",sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 20px;
    text-transform: capitalize;
    background-color: #2e3192
}

.widget-services ul li a,.widget-tags ul li a {
    text-transform: capitalize;
    color: #c00;
    background-color: #fff
}

.widget-categories ul li a .cat-count {
    justify-content: center;
    font-size: 13px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #c00
}

.widget-categories ul li a.active,.widget-categories ul li a:hover {
    background-color: #c00;
    -webkit-clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0)
}

.widget-categories-layout2 ul li a {
    position: relative;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    color: #c00
}

.widget-services ul li {
    margin-bottom: 4px
}

.widget-services ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    padding: 22px 30px;
    border-radius: 50px;
    font-family: "Titillium Web",sans-serif;
    transition: .4s
}

.widget-tags ul li a {
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 6px 10px;
    margin: 0 10px 10px 0;
    border-radius: 3px;
    border: 1px solid #c00;
    transition: .4s
}

.widget-post-item {
    margin-bottom: 25px
}

.widget-post-item .widget-post-img {
    flex: 0 0 80px;
    max-width: 80px;
    margin-right: 15px
}

.about-img img,.gallery-img img,.widget-poducts .widget-product-item .widget-product-img img,.widget-post-item .widget-post-img img {
    border-radius: 5px
}

.widget-post-item .widget-post-date {
    line-height: 1;
    font-size: 13px;
    margin-bottom: 4px
}

.widget-download .btn:not(:last-child),.widget-poducts .widget-product-item {
    margin-bottom: 20px
}

.widget-poducts .widget-product-item .widget-product-img {
    margin-right: 20px;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 2px
}

.widget-poducts .widget-product-item .widget-product-price {
    color: #2e3192;
    font-size: 15px;
    font-weight: 700
}

.widget-banner .widget-icon {
    font-size: 55px;
    margin-bottom: 4px
}

.widget-banner .widget-desc {
    font-size: 17px;
    color: #f9f9f9;
    margin-bottom: 90px
}

.widget-banner .phone-number {
    font-size: 20px;
    margin-top: 5px;
    color: #fff!important
}

.widget-schedule {
    background-color: #f6f6f6
}

.widget-schedule .widget-icon {
    color: #c00;
    font-size: 50px;
    margin-bottom: 6px
}

.time-list li {
    display: flex;
    justify-content: space-between
}

.time-list li:last-child {
    margin-bottom: 0;
    border-bottom: 0
}

.widget-member {
    padding: 0;
    overflow: visible
}

.widget-member .member {
    z-index: 3;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.15)
}

.widget-member .member:before {
    transform: scaleX(1)
}

.widget-download .btn {
    height: 80px;
    border-radius: 0;
    -webkit-clip-path: none;
    clip-path: none;
    padding: 0;
    justify-content: flex-start;
    text-align: center
}

.widget-download .btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 30px;
    margin: 0;
    transition: .3s;
    background-color: rgba(255,255,255,.1)
}

.widget-download .btn .btn-text {
    flex: 1
}

.widget-filter .ui-slider {
    background-color: rgba(34,34,34,.06);
    border-radius: 0;
    height: 4px;
    margin-bottom: 18px
}

.widget-filter .ui-slider-range {
    height: 4px;
    background-color: #c00
}

.widget-filter label {
    color: #848e9f;
    font-size: 14px;
    margin-bottom: 0
}

.widget-filter input {
    background-color: transparent;
    color: #2e3192;
    font-size: 14px;
    border: none
}

.widget-filter .btn-filter {
    font-size: 14px;
    font-weight: 700;
    color: #252775
}

.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-widget.ui-widget-content {
    border: none
}

.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit
}

.ui-slider-horizontal .ui-slider-handle {
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background-color: #c00
}

.process-item:hover,.services-layout3 .service-item:hover .service-icon .icon-item,.services-layout4 .service-item:hover .service-icon .icon-item,.services-layout5 .service-item:hover .service-icon .icon-item,.services-layout6 .service-item:hover .service-icon .icon-item {
    transform: translateY(-5px)
}

.sidebar-layout2 .widget {
    padding: 0;
    box-shadow: none;
    border-bottom: 0;
    background-color: transparent
}

@media (min-width: 320px) and (max-width:992px) {
    .widget {
        padding:20px;
        margin-bottom: 30px
    }

    .widget:after {
        top: 20px;
        bottom: 20px
    }
}

.about-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 120px;
    height: 120px
}

.about-badge:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-animation: 10s infinite spinner;
    animation: 10s infinite spinner;
    background: url(../image/text.png) no-repeat
}

.about-badge .about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    font-size: 42px;
    color: #fff;
    background-color: #c00
}

.about-layout1 .about-badge {
    position: absolute;
    top: -60px;
    right: 60px
}

.about-layout1 .about-Text {
    padding: 170px 0 0 70px
}

.about-layout1 .about-Text p {
    font-size: 16px;
    color: #252775
}

.about-layout1 .btn-xl {
    min-width: 230px
}

.about-layout2 .about-img {
    padding-right: 40px
}

.about-layout2 .about-text {
    position: absolute;
    top: 0;
    z-index: 2
}

.about-layout2 .about-text-banner {
    position: relative;
    width: 470px;
    height: 400px;
    padding-right: 40px;
    display: flex;
    align-items: center
}

.about-layout2 .about-text-banner:after,.about-layout2 .about-text-banner:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-color: #fff
}

.about-layout2 .about-text-banner:before {
    left: 0;
    width: calc(100% - 140px)
}

.about-layout2 .about-text-banner:after {
    right: 0;
    width: 141px;
    -webkit-clip-path: url(#path-direction-right);
    clip-path: url(#path-direction-right)
}

.about-layout2 .author-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #dfdfea;
    margin-right: 20px
}

.about-layout2 .author-title {
    font-size: 19px;
    margin-bottom: 0
}

@media (max-width: 1199px) {
    .feature-item {
        margin:10px 0
    }

    .contact-layout5 .contact-panel,.contact-layout5 .widget-banner {
        padding: 30px
    }

    .about-layout1 .about-img {
        margin-top: 70px
    }

    .about-layout1 .about-Text {
        padding: 30px 0 0
    }
}

.service-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 7px 7px 0 0;
    border-bottom: 8px solid #dfdfea;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.05);
    transition: .4s
}

.product-img img,.product-item {
    border-radius: 6px
}

.service-item .service-body {
    position: relative;
    z-index: 2;
    background-color: #fff
}

.service-item .service-category {
    display: inline-flex;
    padding: 5px 12px;
    margin-bottom: 27px;
    border-radius: 0 0 3px 3px;
    background-color: #c00
}

.service-item .service-category a {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding-right: 7px
}

.service-item .service-category a:after {
    content: ",";
    position: absolute;
    top: 0;
    right: 2px;
    color: #fff
}

.service-item .service-icon {
    color: #c00;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 25px;
    transition: .3s linear
}

.service-item .service-title {
    font-size: 21px;
    margin-bottom: 18px;
    transition: .3s linear
}

.service-item .service-desc {
    margin-bottom: 26px;
    transition: .3s linear
}

.service-item:hover {
    z-index: 3;
    border-color: #c00!important;
    box-shadow: 0 5px 83px 0 rgba(40,40,40,.12)
}

.services-layout1 .service-item {
    border-radius: 7px 0 0 7px
}

.services-layout1 .service-item .service-body {
    padding: 20px 0 40px 40px;
    border-top-right-radius: 7px
}

.services-layout2 .service-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0;
    border-right: 8px solid #dfdfea;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.08)
}

.services-layout2 .service-item .service-img {
    flex: 0 0 40%;
    max-width: 40%
}

.services-layout2 .service-item .service-body {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 50px 50px 50px 0
}

.services-layout2 .service-item .service-body:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70px;
    width: 72px;
    z-index: -1;
    background-color: #fff;
    -webkit-clip-path: url(#path-direction-left2);
    clip-path: url(#path-direction-left2)
}

.services-layout2 .slick-slider {
    padding-bottom: 70px
}

.services-layout3 .service-item,.services-layout4 .service-item,.services-layout5 .service-item,.services-layout6 .service-item {
    border-bottom: 0;
    overflow: visible;
    margin-bottom: 110px;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.08)
}

.services-layout3 .service-item .service-body,.services-layout4 .service-item .service-body,.services-layout5 .service-item .service-body,.services-layout6 .service-item .service-body {
    padding: 50px 50px 40px;
    overflow: hidden
}

.services-layout3 .service-item .service-icon,.services-layout4 .service-item .service-icon,.services-layout5 .service-item .service-icon,.services-layout6 .service-item .service-icon {
    color: #252775;
    font-size: 75px;
    margin-bottom: 25px
}

.services-layout3 .service-item .service-icon .icon-item,.services-layout4 .service-item .service-icon .icon-item,.services-layout5 .service-item .service-icon .icon-item,.services-layout6 .service-item .service-icon .icon-item {
    display: block;
    transition: .3s linear
}

.services-layout3 .service-item .service-icon .icon-item:nth-child(2),.services-layout4 .service-item .service-icon .icon-item:nth-child(2),.services-layout5 .service-item .service-icon .icon-item:nth-child(2),.services-layout6 .service-item .service-icon .icon-item:nth-child(2) {
    position: absolute;
    top: -60px;
    right: -100px;
    font-size: 200px;
    color: #eaeaf4
}

.services-layout3 .service-item .service-img,.services-layout4 .service-item .service-img,.services-layout5 .service-item .service-img,.services-layout6 .service-item .service-img {
    padding: 0 50px;
    margin-top: -20px
}

.services-layout3 .service-item .service-img img,.services-layout4 .service-item .service-img img,.services-layout5 .service-item .service-img img,.services-layout6 .service-item .service-img img {
    width: 100%;
    -webkit-clip-path: url(#path-direction-up);
    clip-path: url(#path-direction-up);
    transform: translateY(50px)
}

.services-layout3 .service-item .service-more,.services-layout4 .service-item .service-more,.services-layout5 .service-item .service-more,.services-layout6 .service-item .service-more {
    position: absolute;
    bottom: -110px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) scale(.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.services-layout3 .service-item .service-more .plus-icon,.services-layout4 .service-item .service-more .plus-icon,.services-layout5 .service-item .service-more .plus-icon,.services-layout6 .service-item .service-more .plus-icon {
    position: absolute;
    width: 60px;
    height: 68px;
    border-radius: 0;
    color: #fff;
    background-color: #c00;
    -webkit-clip-path: url(#hexagon-clippath);
    clip-path: url(#hexagon-clippath)
}

.services-layout3 .service-item .service-more .service-more-svg,.services-layout4 .service-item .service-more .service-more-svg,.services-layout5 .service-item .service-more .service-more-svg,.services-layout6 .service-item .service-more .service-more-svg {
    width: 110px;
    height: 122px
}

.services-layout3 .service-item:hover .service-more,.services-layout4 .service-item:hover .service-more,.services-layout5 .service-item:hover .service-more,.services-layout6 .service-item:hover .service-more {
    opacity: 1;
    transform: translateX(-50%) scale(1)
}

.services-layout4 .slick-track,.services-layout5 .slick-track {
    padding-bottom: 80px
}

.services-layout4 .service-item,.services-layout5 .service-item,.services-layout6 .service-item {
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.12)
}

.services-layout4 .contact-phone,.services-layout5 .contact-phone,.services-layout6 .contact-phone {
    max-width: 290px
}

.services-layout4 .contact-phone .phone-icon,.services-layout5 .contact-phone .phone-icon,.services-layout6 .contact-phone .phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #dfdfea inset
}

.services-layout4 .slick-slide,.services-layout5 .slick-slide,.services-layout6 .slick-slide {
    margin: 15px
}

.services-layout4 .slick-list,.services-layout5 .slick-list,.services-layout6 .slick-list {
    margin: -15px
}

.services-layout5 .service-item .service-img img,.services-layout6 .service-item .service-img img {
    -webkit-clip-path: url(#path-direction-down2);
    clip-path: url(#path-direction-down2)
}

.services-layout5 .text-block {
    margin-top: -90px
}

.services-layout5 .slick-dots {
    margin-top: 80px
}

.services-layout6 .text-block {
    margin-top: -35px;
    padding-right: 60px
}

.services-layout6 .slick-dots {
    margin-top: 40px;
    text-align: right
}

.list-filter li {
    margin-right: 30px
}

.list-filter .filter {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2e3192;
    padding-bottom: 3px
}

.list-filter .filter:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c00;
    transition: .4s
}

.services-carousel .slick-arrow.slick-prev {
    left: -30px
}

.services-carousel .slick-arrow.slick-next {
    right: auto;
    left: -30px;
    top: calc(50% + 70px)
}

@media (min-width: 1200px) {
    .contact-layout2 .contact-panel,.contact-layout3 .contact-panel,.contact-layout4 .contact-panel {
        margin-left:30px
    }

    .contact-layout9 .contact-panel-form {
        padding-right: 70px
    }

    .contact-layout8 .contact-panel {
        margin-right: 30px
    }

    .sidebar.has-marign-right {
        margin-right: 40px
    }

    .sidebar.has-marign-left {
        margin-left: 40px
    }

    .widget-member.shifted-top {
        margin-top: -450px
    }

    .services-carousel .carousel-wrapper {
        margin-right: -350px
    }

    .services-carousel .service-item .service-desc {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal
    }
}

@media (min-width: 1500px) {
    .cta-layout1 {
        margin-left:60px
    }

    .cta-layout1:after {
        left: -60px;
        width: calc(100% + 60px)
    }

    .cta-layout1>.container {
        max-width: 1340px;
        padding-right: 75px
    }

    .fancybox-layout3 .carousel-wrapper,.fancybox-layout4 .carousel-wrapper {
        margin-right: -400px
    }

    .fancybox-layout5 {
        margin-right: 60px;
        margin-left: 60px;
        border-radius: 20px;
        overflow: hidden
    }

    .fancybox-layout5 .heading-layout2 {
        padding: 0 70px
    }

    .fancybox-layout5 .fancybox-item:not(:nth-child(-n + 4)) {
        margin-top: -30px
    }

    .contact-layout2 {
        margin-right: 50px;
        margin-left: 50px
    }

    .services-carousel .carousel-wrapper {
        margin-right: -550px
    }

    .services-carousel .slick-arrow.slick-next,.services-carousel .slick-arrow.slick-prev {
        left: -100px
    }

    .work-process .carousel-container {
        margin-right: -200px
    }

    .work-process .process-item .process-title {
        padding-right: 40px
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .nav-item-link.active:before,.navbar .nav-item .nav-item-link:hover:before,.navbar .nav-item.has-dropdown .mega-dropdown-menu {
        width:100%
    }

    .navbar .dropdown-menu {
        width: auto;
        min-width: 235px;
        padding: 25px 0 23px;
        border-radius: 0 0 4px 4px
    }

    .navbar .nav-item.dropdown-submenu>.mega-menu,.navbar .nav-item.has-dropdown>.dropdown-menu,.navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu>.dropdown-menu,.navbar .nav-item.has-dropdown>.mega-menu {
        display: block;
        position: absolute;
        left: 0;
        right: auto;
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        transform: translateY(10px)
    }

    .navbar .nav-item.dropdown-submenu>.dropdown-menu>.nav-item.has-dropdown>.dropdown-menu,.navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%
    }

    .navbar .nav-item.dropdown-submenu:hover>.mega-menu,.navbar .nav-item.has-dropdown:hover>.dropdown-menu,.navbar .nav-item.has-dropdown:hover>.mega-menu,.navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .navbar .nav-item.has-dropdown.has-mega-dropdown {
        position: static
    }

    .navbar .nav-item.has-dropdown .mega-dropdown-menu .container {
        display: block;
        max-width: none;
        padding-left: calc((100% - 1320px)/ 2)
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav-item {
        padding: 0
    }

    .nav-item i[data-toggle=dropdown] {
        display: none
    }

    .banner-layout6 .banner-img {
        position: relative;
        z-index: 2;
        margin-top: -240px
    }

    .banner-layout6 .banner-img img {
        border-radius: 20px
    }

    .banner-layout6 .heading-layout2 .heading-title {
        font-size: 39px
    }

    .services-layout5 .service-item .service-desc,.services-layout6 .service-item .service-desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal
    }
}

@media (max-width: 991px) {
    .testimonials-layout1 .testimonial-item {
        padding:27px
    }

    .testimonials-layout1 .testimonials-wrapper>[class*=col-]:nth-of-type(odd) .testimonial-item:before {
        left: 27px
    }

    .testimonials-layout3 .testimonial-title {
        font-size: 20px
    }

    .testimonials-layout3 .testimonial-thmb {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        padding: 5px
    }

    .testimonials-layout3 .testimonial-thmb:before {
        top: 5px;
        right: 5px;
        left: 5px;
        bottom: 5px
    }

    .service-item .service-title {
        font-size: 18px
    }

    .service-item .service-desc {
        font-size: 14px
    }

    .service-item .service-category {
        margin-bottom: 15px
    }

    .services-layout1 .service-item .service-body {
        padding: 0 0 20px 20px;
        margin: -20px 20px 0 0
    }

    .services-layout2 .service-item .service-body {
        padding: 30px 30px 30px 0
    }

    .services-carousel .slick-arrow {
        top: 50%!important
    }

    .services-carousel .slick-arrow.slick-prev {
        left: 0
    }

    .services-carousel .slick-arrow.slick-next {
        left: auto;
        right: 0
    }

    .list-filter li {
        margin-right: 15px
    }
}

@media (max-width: 767px) {
    .banner-layout1,.banner-layout2 {
        padding-right:0
    }

    .banner-layout3,.banner-layout4 {
        padding-left: 0
    }

    .banner-layout2 .banner-content {
        padding: 110px 120px 110px 40px
    }

    .services-layout3 .service-item .service-body,.services-layout4 .service-item .service-body,.services-layout5 .service-item .service-body,.services-layout6 .service-item .service-body {
        padding: 20px 20px 0
    }

    .services-layout3 .service-item .service-img,.services-layout4 .service-item .service-img,.services-layout5 .service-item .service-img,.services-layout6 .service-item .service-img {
        padding: 0 20px
    }

    .services-layout3 .service-item .icon-item:nth-child(2),.services-layout4 .service-item .icon-item:nth-child(2),.services-layout5 .service-item .icon-item:nth-child(2),.services-layout6 .service-item .icon-item:nth-child(2) {
        top: -90px;
        right: -110px
    }
}

@media (max-width: 450px) {
    .services-layout2 .service-item {
        flex-direction:column
    }

    .services-layout2 .service-item .service-body,.services-layout2 .service-item .service-img {
        flex: 0 0 100%;
        max-width: 100%
    }

    .services-layout2 .service-item .service-img {
        min-height: 250px
    }

    .services-layout2 .service-item .service-body {
        padding: 20px
    }
}

.gallery .slick-list {
    margin: 0;
    overflow: hidden;
    border-radius: 12px
}

.gallery .slick-arrow.slick-next {
    right: -50px
}

.gallery .slick-arrow.slick-prev {
    left: -50px
}

.product-item {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    transition: .3s linear
}

.product-item .product-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: .6s
}

.product-item .product-info {
    padding: 28px 0
}

.product-item:hover .product-action {
    opacity: 1;
    bottom: 30px
}

.product-title {
    font-size: 21px;
    margin-bottom: 8px
}

.product-price {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    color: #c00
}

.product-item-single .product-title {
    font-size: 29px;
    margin-bottom: 15px
}

.product-item-single .product-rating {
    margin-right: 37px
}

.product-item-single .product-price {
    font-size: 22px
}

.product-item-single .social-icons li a {
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px
}

.product-details li {
    line-height: 2
}

.product-details li strong {
    font-size: 16px;
    font-weight: 700;
    color: #252775;
    min-width: 120px;
    display: inline-block
}

.product-meta-review a {
    position: relative;
    color: #848e9f;
    padding-left: 10px
}

.product-meta-review a:before {
    content: "/";
    position: absolute;
    top: 0;
    left: 0
}

.product-meta-details li {
    display: flex;
    font-size: 15px;
    margin-bottom: 13px
}

.product-meta-details li span:first-of-type {
    font-family: "Titillium Web",sans-serif;
    color: #2e3192;
    font-weight: 700;
    font-size: 16px;
    min-width: 120px
}

.product-quantity-title {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 10px
}

.quantity-input-wrap {
    display: inline-flex;
    position: relative;
    width: 80px;
    max-height: 50px;
    border-radius: 3px;
    border: 2px solid #e6e8eb
}

.quantity-input-wrap i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #252775;
    cursor: pointer;
    position: absolute;
    right: 0;
    font-style: normal;
    font-size: 9px;
    border-left: 2px solid #e6e8eb;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

.quantity-input-wrap .decrease-qty {
    bottom: 0;
    border-top: 2px solid #e6e8eb
}

.quantity-input-wrap .qty-input {
    background-color: transparent;
    text-align: center;
    color: #252775;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    border: 0;
    outline: 0;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.quantity-input-wrap .qty-input::-webkit-inner-spin-button,.quantity-input-wrap .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none
}

.product-quantity .btn {
    height: 50px;
    -webkit-clip-path: none;
    clip-path: none
}

.product-details .nav-tabs {
    border-bottom: 2px solid #e6e6e6
}

.product-details .nav-tabs .nav-link {
    margin-bottom: -2px
}

.product-details .reviews-form .form-control,.work-process .cta .btn:not(.btn-link) {
    height: 50px
}

.magnifier {
    z-index: 3000!important
}

.sorting-options .nice-select {
    width: auto;
    min-width: 230px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 0
}

.cart-table {
    margin-bottom: 50px
}

.cart-table .table {
    border-radius: 4px;
    margin-bottom: 0
}

.cart-table thead tr th {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #252775;
    border-bottom-width: 0!important;
    border-color: #e9e9e9;
    padding: 15px 0
}

.cart-table tbody tr td {
    padding: 15px;
    border-color: #e9e9e9;
    vertical-align: middle
}

.cart-table .cart-product-price,.cart-table .cart-product-total {
    font-size: 16px;
    font-weight: 700;
    color: #c00;
    text-align: center
}

.cart-table .cart-product-img {
    width: 50px;
    margin-right: 20px
}

.cart-table .cart-product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    font-size: 9px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    color: #fff;
    background-color: #222
}

.cart-table .cart-product-action td {
    padding: 30px 20px 20px
}

.cart-table .cart-product-action td .form-control {
    font-size: 12px;
    font-weight: 400;
    width: 250px;
    height: 42px;
    border-radius: 4px;
    border: 1px solid #dbdbdb
}

.cart-table .cart-product-action td .btn {
    height: 42px;
    min-width: 134px;
    -webkit-clip-path: none;
    clip-path: none;
    margin-left: 10px
}

.cart-total-amount ul li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9
}

.cart-total-amount ul li span:first-of-type {
    font-weight: 700;
    color: #252775
}

@media (min-width: 320px) and (max-width:575px) {
    .search-popup .search-popup-form {
        width:90%
    }

    .search-popup .search-popup-form-input {
        font-size: 20px;
        font-weight: 400;
        height: 40px;
        padding: 0 0 0 30px
    }

    .search-popup .search-popup-btn {
        font-size: 20px;
        line-height: 40px
    }

    .search-popup .search-popup-close {
        font-size: 14px;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
        line-height: 30px
    }

    .slider .slide-title {
        font-size: 27px;
        margin-bottom: 10px
    }

    .slider .btn {
        margin-bottom: 10px
    }

    .slider .slick-arrow {
        display: none
    }

    .slider .slide-item {
        padding: 30px 10px
    }

    .blog-author {
        flex-direction: column;
        padding: 20px
    }

    .blog-author:after {
        top: 20px;
        bottom: 20px
    }

    .blog-author .blog-author-avatar,.blog-author .blog-author-content {
        flex: 100%;
        max-width: 100%
    }

    .gallery .slick-arrow.slick-next {
        right: 0
    }

    .gallery .slick-arrow.slick-prev {
        left: 0
    }

    .cart-table tbody tr td {
        padding: 5px
    }

    .cart-table .cart-product-img {
        width: 40px;
        margin-right: 5px
    }

    .cart-table .cart-product-title {
        font-size: 12px;
        font-weight: 400
    }

    .cart-table .cart-product-action-content {
        display: block!important
    }

    .cart-table .cart-product-price,.cart-table .cart-product-total {
        font-size: 10px;
        font-weight: 400;
        padding: 0
    }

    .cart-table thead tr th {
        font-size: 10px
    }
}

.process-item {
    position: relative;
    padding: 48px 30px 40px 38px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 30px;
    background-color: #fff;
    border-bottom: 8px solid #dfdfea;
    box-shadow: 0 5px 83px 0 rgba(13,14,67,.08);
    transition: .3s
}

.process-item .process-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: "Titillium Web",sans-serif;
    font-size: 34px;
    font-style: italic;
    color: #eaedf5
}

.process-item .process-icon {
    position: relative;
    color: #252775;
    font-size: 55px;
    margin-bottom: 16px;
    transition: color .4s linear
}

.process-item .process-title {
    font-size: 19px;
    margin-bottom: 18px
}

.process-item .process-desc {
    font-size: 14px;
    margin-bottom: 20px
}

.process-item:hover {
    border-bottom-color: #c00
}

.work-process .slick-slide {
    margin: 15px;
    transition: .3s
}

.work-process .slick-slide.slick-active {
    opacity: 1;
    visibility: visible
}

.work-process .cta {
    padding-top: 140px;
    padding-bottom: 70px;
    margin-top: -70px
}

.work-process .cta .cta-title {
    color: #fff;
    font-size: 27px
}

.work-process .cta .cta-desc {
    font-size: 16px;
    color: #fff
}

@media (min-width: 1200px) {
    .work-process .carousel-container {
        margin-right:-140px
    }

    .work-process .cta .cta-title {
        padding: 0 30px
    }

    .work-process .cta .cta-desc {
        padding: 0 30px;
        margin-bottom: 0
    }
}

@media (min-width: 320px) and (max-width:767px) {
    .fancybox-layout3 .fancybox-item,.fancybox-layout4 .fancybox-item,.feature-item .feature-content,.process-item {
        padding:20px
    }

    .feature-item .feature-title {
        font-size: 16px!important;
        margin-bottom: 5px
    }

    .feature-item .feature-desc {
        font-size: 13px;
        margin-bottom: 10px
    }

    .fancybox-item .fancybox-icon {
        font-size: 40px;
        margin-bottom: 5px
    }

    .fancybox-item .fancybox-title {
        font-size: 15px!important;
        margin-bottom: 5px
    }

    .member {
        max-width: 450px;
        margin: 0 auto 30px
    }

    .member .member-info .member-name {
        font-size: 15px;
        margin-bottom: 0
    }

    .team-layout1 .member .member-info:after {
        height: 90px
    }

    .post-item {
        margin-bottom: 15px
    }

    .post-item .post-title {
        font-size: 17px;
        margin-bottom: 10px
    }

    .post-item .post-body {
        padding: 17px 20px
    }

    .post-item .post-img .post-meta-date {
        top: 20px;
        left: 20px;
        height: 29px
    }

    .post-item .post-img .post-meta-date .day {
        padding: 0 7px;
        font-size: 20px
    }

    .post-item .post-img .post-meta-date .month {
        padding: 0 7px
    }

    .comments-list .comment-item .comment-avatar {
        width: 40px;
        height: 40px
    }

    .comments-list .comment-item .comment-content {
        padding-left: 50px
    }

    .comments-list .comment-item .comment-content .comment-desc {
        font-size: 13px;
        padding: 10px
    }

    .widget-nav .nav-icon {
        max-width: 40px;
        flex: 0 0 40px;
        height: 40px
    }

    .widget-nav .nav-next .nav-icon {
        margin-right: 10px
    }

    .widget-nav .nav-prev .nav-icon {
        margin-left: 10px
    }

    .widget-nav .nav-ttile {
        flex: 0 0 calc(100% - 50px);
        max-width: calc(100% - 50px)
    }

    .comments-list .comment-item .nested-comment {
        padding: 20px 0 0;
        margin: 20px 0 0 40px
    }

    .bordered-box .blog-share,.bordered-box .blog-tags {
        padding: 10px
    }

    .blog-carousel .heading-wrapper {
        margin-bottom: 60px!important
    }

    .blog-carousel .btn-explore {
        position: relative;
        right: 0
    }

    .blog-carousel .heading-title {
        font-size: 18px
    }

    .blog-carousel .slick-arrow {
        top: -30px
    }

    .contact-info .boxes-wrapper {
        margin-top: -20px
    }

    .contact-info .boxes-wrapper .contact-box,.widget {
        padding: 15px
    }

    .contact-info .boxes-wrapper .contact-box .contact-icon {
        font-size: 40px;
        flex: 0 0 50px;
        max-width: 50px
    }

    .contact-info .boxes-wrapper .contact-box .contact-title {
        font-size: 16px;
        margin-bottom: 10px
    }

    .locations-panel ul li {
        flex-basis: 50%
    }

    .widget:after {
        top: 15px;
        bottom: 15px
    }

    .widget .widget-title {
        margin-bottom: 14px
    }

    .widget-categories ul {
        padding: 0
    }

    .widget-categories ul li a {
        font-size: 13px
    }

    .process-item:before {
        top: 20px;
        bottom: 20px
    }

    .process-item .process-number {
        top: 20px;
        right: 20px;
        font-size: 50px
    }
}

.email-icon-header {
    font-size: 37px
}

.text-justify {
    text-align: justify
}

.whatsapp {
    position: fixed;
    bottom: 24px;
    left: 33px;
    z-index: 500
}

.tooltip,.tooltip::after {
    left: 50%;
    transform: translateX(-50%);
    position: absolute
}

.whatsapp img {
    width: 72px;
    padding: 8px;
    background: linear-gradient(135deg,#25d366,#00c851);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37,211,102,.6),0 0 10px rgba(37,211,102,.4);
    transition: transform .4s,box-shadow .3s;
    animation: 3s ease-in-out infinite float;
    position: relative
}

.whatsapp img:hover {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 0 25px rgba(37,211,102,.8),0 0 15px rgba(37,211,102,.5)
}

.tooltip {
    display: none;
    bottom: 90px;
    background-color: rgba(37,211,102,.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,.2)
}

.tooltip::after {
    content: "";
    bottom: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(37,211,102,.9) transparent transparent
}

.tooltip-icon {
    width: 16px;
    margin-right: 5px
}

.whatsapp:hover .tooltip {
    display: block;
    animation: .3s fadeIn
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes bubble {
    0% {
        opacity: .4;
        transform: translate(0,0) scale(.9)
    }

    50% {
        opacity: .8;
        transform: translate(-10px,-20px) scale(1)
    }

    100% {
        opacity: 0;
        transform: translate(10px,-30px) scale(1.1)
    }
}

.whatsapp::after,.whatsapp::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(37,211,102,.3);
    animation: 4s ease-in-out infinite bubble
}

.whatsapp::before {
    width: 18px;
    height: 18px;
    left: -15px;
    bottom: 10px;
    animation-duration: 4s;
    animation-delay: 0s
}

.whatsapp::after {
    width: 12px;
    height: 12px;
    right: -15px;
    bottom: 5px;
    animation-duration: 3s;
    animation-delay: 2s
}

@media only screen and (max-width: 767px) {
    .whatsapp img {
        width:66px
    }

    .tooltip {
        font-size: 10px;
        bottom: 80px
    }
}

.bg3 {
    background: url("https://www.nxapharma.com/assets/images/sliders/1.jpg") 0 0/cover no-repeat;
    position: relative;
    color: #3a3a3a
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffffb3
}

.text3 {
    font-size: 18px!important
}

.nxa {
    height: 100%
}

.texth {
    font-size: 25px
}

.banner-logo {
    height: 300px
}

.call {
    bottom: 103px!important
}

.call img {
    width: 67px!important;
    background: #0d81e7!important;
    box-shadow: 0 0 20px rgb(0 131 245 / 53%),0 0 10px rgb(13 129 231 / 48%)!important
}

.widget-categories ul li.active a {
    background: #c00;
    -webkit-clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 15px) 0,100% 15px,100% 100%,0 100%,0 0)
}

.bg-6:before {
    background-color: #08093d!important
}

.border-blue {
    border: 3px solid #282b80
}

.slider .services-banner {
    min-height: 340px!important;
    height: 100px!important;
    padding: 30px
}
.svg-pathes {
    position: absolute;
}