/*------------------------------------------------------------------
Project:  Drive
Version:  1.0
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  #555555
# Primary Color   :  #FFCC29; 

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 15px/1.7 'Poppins', Arial, sans-serif;
Title           : 30px/1.6 'Roboto-Bold', Arial, sans-serif;
Paragrap        : 15px/1.7 'Poppins', Arial, sans-serif;
Input, textarea : 15px/1.7 'Poppins', Arial, sans-serif;
-------------------------------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf');
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Roboto/Poppins.ttf');
}

@font-face {
  font-family: Roboto-Bold;
  src: url('../fonts/roboto/Roboto-Bold.ttf');
}

@font-face {
  font-family: Roboto-Black;
  src: url('../fonts/roboto/Roboto-Black.ttf');
}

@font-face {
  font-family: SourceSansPro-Regular;
  src: url('../fonts/source-sans-pro/SourceSansPro-Regular.ttf');
}

@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf');
}

@font-face {
  font-family: OpenSans-Bold;
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf');
}

@font-face {
  font-family: DroidSerif-Bold;
  src: url('../fonts/droid-serif/DroidSerif-Bold.ttf');
}




/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/

/*------------------------------------------------------------------
[ Bootstrap ]*/
.container {
  max-width: 1200px;
}

/*------------------------------------------------------------------
[ Slick2 ]*/
.slick-slide {
  outline: none;
}



/*//////////////////////////////////////////////////////////////////
[ LOADDING ]*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  position: relative
}

.cp-skeleton {
  border-radius: 50%;
  border-top: solid 5px #233785;
  border-right: solid 5px transparent;
  border-bottom: solid 5px transparent;
  border-left: solid 5px transparent;
  animation: cp-skeleton-animate 1s linear infinite
}

.cp-skeleton:before {
  border-radius: 50%;
  content: " ";
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 5px transparent;
  border-right: solid 5px transparent;
  border-bottom: solid 5px transparent;
  border-left: solid 5px #233785;
  position: absolute;
  top: -5px;
  left: -5px;
  transform: rotateZ(-30deg)
}

.cp-skeleton:after {
  border-radius: 50%;
  content: " ";
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 5px transparent;
  border-right: solid 5px #233785;
  ;
  border-bottom: solid 5px transparent;
  border-left: solid 5px transparent;
  position: absolute;
  top: -5px;
  right: -5px;
  transform: rotateZ(30deg)
}

@keyframes cp-skeleton-animate {
  0% {
    transform: rotate(0);
    opacity: 1
  }

  50% {
    opacity: .7
  }

  100% {
    transform: rotate(360deg);
    opacity: 1
  }
}

/*//////////////////////////////////////////////////////////////////
[ BACK TO TOP ]*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1150;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Poppins;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------------------------------------------
[ rs alert validate ]*/
.rs1-alert-validate .alert-validate::before {
  right: 22px;
}

.rs1-alert-validate .alert-validate::after {
  right: 28px;
}


/*//////////////////////////////////////////////////////////////////
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
  height: 146px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
  position: relative;
}


/*==================================================================
[ Top bar ]*/
.top-bar {
  height: 55px;

}

.content-topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  justify-content: space-between;
  align-items: center;
}

.left-top-bar a {
  font-family: Poppins;
  font-size: 13px;
  color: white;
  vertical-align: middle;
  padding-left: 13px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.left-top-bar a:hover {
  color: white;
  text-decoration: underline;
}

.left-top-bar a:last-child {
  border: none;
}

.right-top-bar>span>i {
  font-size: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 25px;
}

.right-top-bar>span>span {
  font-family: Poppins;
  font-size: 13px;
  line-height: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 5px;
}

.topbar-mobile .left-top-bar a {
  font-family: Poppins;
  font-size: 13px;
  color: #555555;
  vertical-align: middle;
  padding-left: 13px;
  padding-right: 15px;
  border-right: 1px solid #ececec;
}

.topbar-mobile .right-top-bar>span>i {
  font-size: 15px;
  color: #555555;
  vertical-align: middle;
  margin-left: 20px;
}

.topbar-mobile .right-top-bar>span>span {
  font-family: Poppins;
  font-size: 13px;
  line-height: 15px;
  color: #555555;
  vertical-align: middle;
  margin-left: 5px;
}


/*==================================================================
[ Menu ]*/
.wrap-menu-desktop {
  position: absolute;
  z-index: 1100;
  background-color: white;
  width: 100%;
  height: 101px;
  top: 45px;
  left: 0;

  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

.limiter-menu-desktop {
  max-width: 1200px;
  padding: 0 15px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  align-items: center;
}


/*------------------------------------------------------------------
[ Logo ]*/
.logo {
  display: block;
  position: relative;
  height: 69%;
  flex-grow: 1;
}

.logo img {
  max-width: calc(100% - 20px);
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}


/*------------------------------------------------------------------
[ Menu ]*/

.menu-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
  list-style-type: none;
  margin: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.main-menu>li {
  display: block;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 13px;
  padding-right: 13px;
}

.main-menu>li>a {
  font-family: Roboto-Bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #808080;
  padding: 5px;
}

.conect {
  font-family: Roboto-Bold;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  padding: 5px 15px;
  background-color: transparent;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.conect:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

/*---------------------------------------------*/
.sub-menu {
  list-style-type: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 225px;
  background-color: transparent;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;

  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);

  visibility: hidden;
  opacity: 0;
}

.sub-menu li {
  position: relative;
  background-color: rgba(35, 55, 133, 0.9);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.main-menu>li>.sub-menu {
  top: 100%;
  left: 0;
}

.sub-menu a {
  font-family: Poppins;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  display: block;
  padding: 10px;
  width: 100%;
}

/*---------------------------------------------*/
.main-menu>li:hover>.link {
  color: #15025E;
  text-decoration: none;
}

.main-menu>.active>.link {
  color: #15025E;
}

.main-menu>li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover {
  background-color: #F61900;
}

.sub-menu>li:hover>a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .main-menu>.respon-sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }

  .main-menu>.respon-sub-menu>.sub-menu {
    right: 0px;
    left: auto;
  }
}

/*---------------------------------------------*/
.main-menu>li .link::before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: 0;
  background-color: #DE2614;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu>li .link:hover:before {
  width: calc(100% - 36px);
}

.main-menu>.active .link:before {
  width: calc(100% - 36px);
}

/*------------------------------------------------------------------
[ Social ]*/
.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 4px;
}

.social a {
  font-size: 24px;
  color: #808080;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.social a:hover {
  color: #FFCC29;
}


/*==================================================================
[ Fixed menu desktop ]*/

.fix-menu-desktop {
  height: 110px;
}

.fix-menu-desktop .wrap-menu-desktop {
  top: 0;
  height: 65px;
  position: fixed;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
}



/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  background-color: white;
  padding: 15px;
  display: none;

  box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -moz-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -webkit-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -o-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -ms-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
}

/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
  display: block;
  padding-right: 25px;
}

.logo-mobile img {
  max-width: 100%;
  max-height: 60px;
}


/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
}

.hamburger:hover {
  opacity: 1;
}

.mobile-vision {
  display: none;
}

.mobile-vision .content-topbar span {
  color: #fff;
  display: block !important;
  font-size: 3.5vw;
  text-align: center;
}

/*---------------------------------------------*/
@media (max-width: 992px) {
  .wrap-header-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .container-menu-desktop {
    display: none;
  }

  .mobile-vision {
    display: block;
  }
}

/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
  width: 100%;
  display: none;
  border-top: 2px solid #F02715;
}

.main-menu-m>li>a {
  font-family: Poppins;
  font-size: 14px;
  color: white;
  line-height: 2.86;
  text-transform: uppercase;
  padding-left: 20px;
}

.main-menu-m>li {
  color: white;
  padding: 5px 0;
  background-color: #222;
  position: relative;
  transition: all 0.3s;
}

.main-menu-m>li:hover {
  background-color: #F02715;
  transition: all 0.3s;
}

.arrow-main-menu-m {
  font-size: 14px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 2px;
  padding: 10px;
  cursor: pointer;
}

.arrow-main-menu-m i {
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.turn-arrow-main-menu-m i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*---------------------------------------------*/
.sub-menu-m {
  background-color: #fff;
  padding: 10px 15px 10px 32px;
  display: none;
}

.sub-menu-m a {
  font-family: Poppins;
  font-size: 14px;
  color: #808080;
  line-height: 2.5;
  font-weight: 600;
  transition: all 0.3s;
}

.sub-menu-m a:hover {
  text-decoration: none;
  color: #333;
  letter-spacing: 2px;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .menu-mobile {
    display: none;
  }
}



/*//////////////////////////////////////////////////////////////////
[ Footer ]*/

/*------------------------------------------------------------------
[ Link ]*/
.wrap-link-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.wrap-link-footer .col-left {
  width: 45%;
}

.wrap-link-footer li {
  margin-bottom: 6px;
}

.wrap-link-footer li a {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.8;
  color: #e5e5e5;
}

.wrap-link-footer li a:hover {
  color: white;
}

.wrap-link-footer li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #5c5c5c;
  margin-right: 8px;
  margin-bottom: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-link-footer li:hover:before {
  background-color: white;
}


/*------------------------------------------------------------------
[ Contact ]*/
.contact-footer li {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.8;
  color: #aaaaaa;
  margin-bottom: 6px;
}

.contact-footer li i {
  margin-right: 10px;
}


/*------------------------------------------------------------------
[ Gallery ]*/
.wrap-gallery-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.item-gallery-footer {
  display: block;
  width: calc((100% - 30px) / 3);
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.item-gallery-footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  background-color: #FFCC29;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-footer:hover:after {
  cursor: pointer;
  height: 100%;
}



/*//////////////////////////////////////////////////////////////////
[ RS Revo Slide ]*/

/*------------------------------------------------------------------
[ arrow ]*/
.persephone.tparrows {
  cursor: pointer;
  background: #aaa;
  background: rgba(200, 200, 200, 0.1);
  width: 35px;
  height: 35px;
  position: absolute;
  display: block;
  z-index: 100;
  border: 3px solid #8d8c8b;
}

.persephone.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #cccccc;
  display: block;
  line-height: 29px;
  text-align: center;
}

.persephone.tparrows:hover {
  cursor: pointer;
  background: #FFCC29;
  border: 3px solid #FFCC29;
}

/*------------------------------------------------------------------
[ Slider ]*/
.rs1-revo .tp-caption {
  white-space: normal !important;
}

.rs1-revo .txt-center {
  text-align: center !important;
}

.rs1-revo .m-txt1,
.rs1-revo .m-txt2 {
  font-size: 16px !important;
}

.rs1-revo .trans-03 {
  -webkit-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.rs1-revo .wrap-btn-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .rs1-revo .wrap-btn-slide {
    flex-direction: column;
    align-items: center;
  }
}

/*//////////////////////////////////////////////////////////////////
[ RS sweet alert ]*/
.swal-overlay {
  overflow-y: auto;
}

.swal-button:focus {
  outline: none;
  box-shadow: none;
}

.swal-button {
  background-color: #FFCC29;
  font-family: Poppins;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-weight: unset;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.swal-button:hover {
  background-color: #07185a;
}

.swal-button:active {
  background-color: #07185a;
}

.swal-title {
  font-family: Roboto-Bold;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 15px;
  text-transform: uppercase;
}

.swal-text {
  font-family: Poppins;
  color: #555555;
  font-size: 16px;
  line-height: 1.666667;
  text-align: center;
}

.swal-footer {
  margin-top: 0;
}


/*//////////////////////////////////////////////////////////////////
[ Slick 1 ]*/

.wrap-slide-slick-6,
.wrap-slide-slick-1 {
  position: relative;
  max-width: 1333px;
  margin: 0 auto;
}

.para-slide-slick-1 {
  visibility: hidden;
}

.wrap-person {
  max-width: 340px;
  visibility: hidden;
}

.wrap-pic-person {
  width: 80px;
  height: 80px;
  border: 3px solid white;
  border-radius: 50%;
  overflow: hidden;
}

.wrap-pic-person img {
  width: 100%;
}

.arrow-slide-slick-6,
.arrow-slide-slick-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 30px;
  padding-bottom: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrow-slide-slick-6:hover,
.arrow-slide-slick-1:hover {
  cursor: pointer;
  background-color: #233785;
}

.next-slide-6,
.next-slide-1 {
  right: 0;
  z-index: 1000;
}

.prev-slide-6,
.prev-slide-1 {
  left: 0;
  z-index: 1000;
}

/*//////////////////////////////////////////////////////////////////
[ Slick 2 ]*/
.container-slick-5,
.container-slick-4,
.container-slick-2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}


.arrow-slick-5,
.arrow-slick-4,
.arrow-slick-2 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 3px solid #e5e5e5;
  color: #999999;
  font-size: 30px;
  padding-bottom: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  top: 23%;
}

.arrow-slick-5:hover,
.arrow-slick-4:hover,
.arrow-slick-2:hover {
  cursor: pointer;
  background-color: #FFCC29;
  color: white;
}

.next-slide-2 {
  right: -65px;
  z-index: 1000;
}

.prev-slide-2 {
  left: -65px;
  z-index: 1000;
}

@media (max-width: 1330px) {
  .next-slide-2 {
    right: -20px;
  }

  .prev-slide-2 {
    left: -20px;
  }
}

@media (max-width: 1240px) {
  .arrow-slick-2 {
    width: 15px;
    height: 35px;
    border: none;
    color: #999999;
    font-size: 30px;
    padding-bottom: 3px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    top: 25%;
  }

  .next-slide-2 {
    right: 0px;
  }

  .prev-slide-2 {
    left: 0px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Slick 3 ]*/

.wrap-slide-slick-3 {
  position: relative;
  max-width: 1333px;
  margin: 0 auto;
}

.para-slide-slick-3 {
  visibility: hidden;
}

.wrap-person-slick-3 {
  visibility: hidden;
}

.arrow-slide-slick-3:hover {
  cursor: pointer;
  background-color: #FFCC29;
}

.arrow-slide-slick-3 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 3px solid #e6e6e6;
  color: #cccccc;
  font-size: 30px;
  padding-bottom: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.next-slide-3 {
  top: 0px;
  right: 0px;
  left: auto;
  z-index: 1000;
}

.prev-slide-3 {
  top: 0px;
  right: 40px;
  left: auto;
  z-index: 1000;
}

.item-slick-3 {
  position: relative;
}

.slick3-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.slick3-dots li {
  margin-right: 15px;
  margin-top: 5px;
  display: block;
  width: 50px;
  height: 50px;
  border: 3px solid #e6e6e6;
  overflow: hidden;
  cursor: pointer;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.slick3-dots li img {
  width: 100%;
}

.slick3-dots li:hover {
  border-color: #b3b3b3;
}

.slick3-dots li.slick-active {
  border-color: #b3b3b3;
}

/*//////////////////////////////////////////////////////////////////
[ Slick 4 ]*/

.next-slide-5,
.next-slide-4 {
  top: 4px;
  right: 15px;
  left: auto;
  z-index: 1000;
}

.prev-slide-5,
.prev-slide-4 {
  top: 4px;
  right: 55px;
  left: auto;
  z-index: 1000;
}


/*//////////////////////////////////////////////////////////////////
[ Slick 6 ]*/
.content-item-slick-6 {
  max-width: 950px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.arrow-slide-slick-6 {
  border-color: #e6e6e6;
  color: #cccccc;
}

.wrap-person-slick-6,
.para-slide-slick-6 {
  visibility: hidden;
}

/*---------------------------------------------*/
.slick6-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.slick6-dots li {
  margin-right: 7px;
  margin-left: 7px;
  margin-top: 10px;
  display: block;
  width: 50px;
  height: 50px;
  border: 3px solid #e6e6e6;
  overflow: hidden;
  cursor: pointer;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.slick6-dots li img {
  width: 100%;
}

.slick6-dots li:hover {
  border-color: #FFCC29;
}

.slick6-dots li.slick-active {
  border-color: #FFCC29;
}


/*//////////////////////////////////////////////////////////////////
[ Modal video 01 ]*/
.modal-backdrop {
  background-color: transparent;
}

#modal-video-01 {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1250;

}

#modal-video-01 .modal-dialog {
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}



/*//////////////////////////////////////////////////////////////////
[ Block 1 ]*/
.block-1 {
  position: relative;
  overflow: hidden;
}

.wrap-text-b1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  top: calc(100% - 60px);
  left: 0;
  padding-left: 25px;
  padding-right: 25px;
}

/*---------------------------------------------*/
.wrap-title-b1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
}

/*---------------------------------------------*/
.wrap-para-b1 {
  width: 100%;
}

.wrap-para-b1 p {
  max-height: 105px;
  overflow: hidden;
}

/*---------------------------------------------*/
.wrap-more-b1 {
  width: 100%;
  height: 28%;
}

.wrap-more-b1 a {
  display: block;
  align-items: center;
  height: 25px;
  position: relative;
}

.wrap-more-b1 a i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  left: 0;
}

.wrap-more-b1 a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  height: 100%;
  width: 80px;
  left: 14px;
}

.wrap-more-b1 a:hover i {
  left: 82px;
}

.wrap-more-b1 a:hover span {
  left: 0;
}

.wrap-more-b1 a:hover {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.block-1:hover .wrap-text-b1 {
  top: 0;
  padding-top: 6%;
}

@media (max-width: 480px) {
  .block-1:hover .wrap-text-b1 {
    top: 0;
    padding-top: 2%;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Block 2 ]*/
.block-2 {
  width: 100%;
  position: relative;
  background-color: white;
  border: 1px solid #e6e6e6;
  align-self: stretch;
}

.wrap-symbol-b2 {
  position: absolute;
  width: 52px;
  height: 52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -26px;
}



/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/

/*==================================================================
[ Color ]*/
.color-main {
  color: #FFCC29;
}

.color1 {
  color: #ffb636;
}

.color2 {
  color: #333333;
}

.color3 {
  color: #c5c5c5;
}

.color4 {
  color: #c8c8c8;
}

.color5 {
  color: #999999;
}

.color6 {
  color: #555555;
}

.color7 {
  color: #808080;
}

/*---------------------------------------------*/
.cl-ph-1::-webkit-input-placeholder {
  color: #888888;
}

.cl-ph-1:-moz-placeholder {
  color: #888888;
}

.cl-ph-1::-moz-placeholder {
  color: #888888;
}

.cl-ph-1:-ms-input-placeholder {
  color: #888888;
}


/*//////////////////////////////////////////////////////////////////
[ Text ]*/
.txt1 {
  font-family: Roboto-Bold;
  color: white;
  text-transform: uppercase;
}

.txt2 {
  font-family: Poppins;
  color: white;
}


/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.s-txt1 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}

.s-txt2 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

.s-txt3 {
  font-family: Roboto-Bold;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

.s-txt4 {
  font-family: Poppins;
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
}

.s-txt5 {
  font-family: SourceSansPro-Regular;
  font-size: 15px;
  line-height: 1.4;
  color: #999999;
}

.s-txt6 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

.s-txt7 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.7;
  color: #999999;
}

.s-txt8 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.7;
  color: #FFCC29;
}

.s-txt9 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.6;
  color: #aaaaaa;
}

.s-txt10 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #999999;
}

.s-txt11 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
}

.s-txt12 {
  font-family: Roboto-Bold;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.s-txt13 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.8;
  color: #999999;
}

.s-txt14 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

.s-txt15 {
  font-family: OpenSans-Bold;
  font-size: 14px;
  line-height: 1.4;
  color: #999999;
  text-transform: uppercase;
}

.s-txt16 {
  font-family: Roboto-Bold;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}

.s-txt17 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.6666667;
  color: #555555;
}

.s-txt18 {
  font-family: Poppins;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

.s-txt19 {
  font-family: Poppins;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}

.s-txt20 {
  font-family: Roboto-Bold;
  font-size: 15px;
  line-height: 1.4;
  color: #e5e5e5;
}

.s-txt21 {
  font-family: Poppins;
  font-size: 13px;
  line-height: 1.6;
  color: #999999;
}

.s-txt22 {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 1.6666667;
  color: #808080;
}

.s-txt23 {
  font-family: OpenSans-Regular;
  font-size: 13px;
  line-height: 1.6666667;
  color: #808080;
  text-transform: uppercase;
}

.s-txt24 {
  font-family: Roboto-Bold;
  font-size: 15px;
  color: #808080;
}

.s-txt25 {
  font-family: Roboto-Bold;
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

.s-txt26 {
  font-family: Poppins;
  font-size: 15px;
  color: #808080;
  text-transform: uppercase;
}

.s-txt27 {
  font-family: Roboto-Bold;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;
}

.s-txt28 {
  font-family: Poppins;
  font-size: 13px;
  line-height: 1.4;
  color: #808080;
}

.s-txt29 {
  font-family: Poppins;
  font-size: 15px;
  color: #808080;
  line-height: 1.5;
}

.s-txt30 {
  font-family: Poppins;
  font-size: 13px;
  line-height: 1.4;
  color: #555555;
}

.s-txt31 {
  font-family: Poppins;
  font-size: 15px;
  color: #555555;
  line-height: 1.6666667;
}

.s-txt32 {
  font-family: Poppins;
  font-size: 15px;
  color: #0E013F;
  line-height: 1.6666667;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 30 ]*/
.m-txt1 {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.m-txt2 {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.2;
  color: #FFCC29;
}

.m-txt3 {
  font-family: Roboto-Black;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
}

.m-txt4 {
  font-family: Roboto-Bold;
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
  text-transform: uppercase;
}

.m-txt5 {
  font-family: Roboto-Black;
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
}

.m-txt6 {
  font-family: Roboto-Bold;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.m-txt7 {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

.m-txt8 {
  font-family: Roboto-Bold;
  font-size: 18px;
  line-height: 1.2;
  color: #333333;
}

.m-txt9 {
  font-family: Roboto-Bold;
  font-size: 20px;
  line-height: 1.2;
  color: #666666;
}

.m-txt10 {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.2;
  color: #555555;
}

.m-txt11 {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.7;
  color: #f6f6f6;
  letter-spacing: 1px;
}


.m-txt12 {
  font-family: Roboto-Bold;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.m-txt13 {
  font-family: Roboto-Black;
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
}

.m-txt14 {
  font-family: Poppins;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
}

.m-txt15 {
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.m-txt16 {
  font-family: OpenSans-Bold;
  font-size: 18px;
  line-height: 1.2;
  color: #333333;
}

.m-txt17 {
  font-family: Poppins;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}

.m-txt18 {
  font-family: SourceSansPro-Regular;
  font-size: 16px;
  line-height: 1.2;
  color: #FFCC29;
  text-transform: uppercase;
}

.m-txt19 {
  font-family: OpenSans-Regular;
  font-size: 18px;
  line-height: 1.2;
  color: #333333;
}

.m-txt20 {
  font-family: Roboto-Bold;
  font-size: 24px;
  line-height: 1.2;
  color: #e5e5e5;
  text-transform: uppercase;
}

.m-txt21 {
  font-family: Roboto-Bold;
  font-size: 30px;
  line-height: 1.2;
  color: #222222;
}

.m-txt22 {
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.6666667;
  color: #555555;
}

.m-txt23 {
  font-family: SourceSansPro-Regular;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.m-txt24 {
  font-family: Roboto-Bold;
  font-size: 24px;
  line-height: 1.2;
  color: #333333;
  text-transform: uppercase;
}

.m-txt25 {
  font-family: Roboto-Bold;
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
}

.m-txt26 {
  font-family: Roboto-Bold;
  font-size: 30px;
  line-height: 1.2;
  color: #666666;
}

.m-txt27 {
  font-family: Roboto-Bold;
  font-size: 20px;
  line-height: 1.2;
  color: #333333;
  text-transform: uppercase;
}

.m-txt28 {
  font-family: Roboto-Bold;
  font-size: 24px;
  line-height: 1.2;
  color: #333;
  text-transform: uppercase;
}

.m-txt28 span {
  color: #EC1909;
}

/*//////////////////////////////////////////////////////////////////
[ L-Text 31 - 50 ]*/
.l-txt1 {
  font-family: Roboto-Black;
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.l-txt2 {
  font-family: Roboto-Bold;
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}



/*//////////////////////////////////////////////////////////////////
[ XL-Text >= 51 ]*/
.xl-txt1 {
  font-family: DroidSerif-Bold;
  font-size: 60px;
  line-height: 1;
  color: #cccccc;
}




/*==================================================================
   SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE
==================================================================*/


/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size0 {
  width: 180px;
  height: 40px;
  margin-right: 5px;
  border-radius: 30px 0 0 30px;
  transition: all 0.3s;
}

.size0:focus {
  width: 220px;
  height: 40px;
  margin-right: 5px;
  transition: all 0.3s;
}

.size1 {
  height: 45px;
  min-width: 164px;
}

.size2 {
  height: 5px;
  width: 50px;
}

.size3 {
  height: 40px;
  min-width: 115px;
}

.size4 {
  height: 40px;
  min-width: 87px;
}

.size5 {
  height: 45px;
  min-width: 188px;
}

.size6 {
  width: 100%;
  height: 50px;
}

.size7 {
  height: 45px;
  min-width: 112px;
}

.size8 {
  height: 40px;
  min-width: 185px;
}

.size9 {
  height: 45px;
  min-width: 145px;
}

.size10 {
  min-height: 95px;
  width: 100%;
}

.size11 {
  height: 40px;
  min-width: 134px;
}

.size12 {
  width: 50px;
  height: 50px;
}

.size13 {
  min-height: 150px;
  width: 100%;
}

.size14 {
  width: 36px;
  height: 36px;
}

.size15 {
  width: 260px;
  height: 45px;
  max-width: 100%;
}

.size16 {
  width: 45px;
  height: 45px;
}

.size17 {
  width: 30px;
  height: 30px;
}

.size18 {
  height: 40px;
  width: 100%;
}

.size19 {
  height: 40px;
  min-width: 143px;
}

.size20 {
  width: 100%;
  height: 50px;
}

.size21 {
  width: 48px;
  height: 48px;
}

.size22 {
  width: 100%;
  min-height: 150px;
}

.size23 {
  width: calc((100% - 20px) / 3);
  height: 50px;
}

.size24 {
  height: 50px;
  min-width: 179px;
}

.size25 {
  width: calc((100% - 40px) / 3);
  height: 50px;
}

.size26 {
  height: 45px;
  min-width: 150px;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.w-size1 {
  max-width: 960px;
}

.w-size2 {
  max-width: 510px;
}

.w-size3 {
  max-width: 555px;
}

.w-size4 {
  max-width: 500px;
}

.w-size5 {
  width: calc(100% - 68px);
}

.w-size6 {
  width: 390px;
}

.w-size7 {
  width: calc(100% - 390px);
}

.w-size8 {
  max-width: 100%;
}

.w-size9 {
  width: 25px;
}

.w-size10 {
  width: calc(100% - 25px);
}

.w-size11 {
  width: 70px;
}

.w-size12 {
  width: calc(100% - 87px);
}

.w-size13 {
  width: 21px;
}

.w-size14 {
  width: calc(100% - 21px);
}

.w-size15 {
  width: 80px;
}

.w-size16 {
  width: calc(100% - 110px);
}

.w-size17 {
  max-width: 620px;
}

.w-size18 {
  width: calc(100% - 100px);
}


/*//////////////////////////////////////////////////////////////////
[ Height ]*/
.h-size1 {
  height: 390px;
}

.h-size2 {
  height: 30px;
}

.h-size3 {
  min-height: 276px;
}

.h-size4 {
  height: 75px;
}

.h-size5 {
  height: 162px;
}


/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg-main {
  background-color: #233785;
}

.bg1 {
  background-color: #f2f2f2;
}

.bg2 {
  background-color: #808080;
}

.bg3 {
  background-image: linear-gradient(to bottom, #0D0033, #000);
}

.bg4 {
  background-color: #333333;
}

.bg5 {
  background-color: #fafafa;
}

.bg6 {
  background-color: #1f3177;
}

.bg7 {
  background-color: #333333;
}

.bg8 {
  background-color: #F72610;
}

.bg9 {
  background-color: #020036;
}

/*------------------------------------------------------------------
[ BG Image ]*/
.bg-img-1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/*------------------------------------------------------------------
[ BG Overlay ]*/
.bg-overlay-1 {
  background-color: rgba(0, 0, 0, 0.35);
}

/*---------------------------------------------*/
.bg-overlay-2 {
  position: relative;
  z-index: 1;
}

.bg-overlay-2::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-overlay-2::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
}

/*---------------------------------------------*/
.bg-overlay-3 {
  position: relative;
  z-index: 1;
}

.bg-overlay-3::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-overlay-3::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  background: linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
}

/*---------------------------------------------*/
.bg-overlay-4 {
  position: relative;
  z-index: 1;
}

.bg-overlay-4::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-overlay-4::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  background: linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}


/*------------------------------------------------------------------
[ BG Pattern ]*/
.bg-pattern-1 {
  background-image: url(../images/icons/pattern1.webp);
  background-repeat: repeat;
}



/*//////////////////////////////////////////////////////////////////
[ Border ]*/
.bo1-b {
  border-bottom: 1px solid #ececec;
}

/*---------------------------------------------*/
.bo2 {
  border: 1px solid #e6e6e6;
}

.bo2-b {
  border-bottom: 1px solid #e6e6e6;
}

.bo2-t {
  border-top: 1px solid #e6e6e6;
}

.bo2-r {
  border-right: 1px solid #e6e6e6;
}

.bo2-tb {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

/*---------------------------------------------*/
.bo3 {
  border: 1px solid #e0e0e0;
}

/*---------------------------------------------*/
.bo4-t {
  border-top: 1px solid #e0e0e0;
}

/*---------------------------------------------*/
.bo5-l {
  border-left: 5px solid #e6e6e6;
}

/*---------------------------------------------*/
.bo6 {
  border: 1px solid #cccccc;
}


/*---------------------------------------------*/
.bo-rad-2 {
  border-radius: 2px;
}

.bo-rad-3 {
  border-radius: 3px;
}

.bo-rad-4 {
  border-radius: 4px;
}

.bo-rad-5 {
  border-radius: 5px;
}

.bo-rad-6 {
  border-radius: 6px;
}

.bo-rad-7 {
  border-radius: 7px;
}

.bo-rad-8 {
  border-radius: 8px;
}

.bo-rad-9 {
  border-radius: 9px;
}

.bo-rad-10 {
  border-radius: 10px;
}

.bo-t-rad-2 {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.bo-b-rad-2 {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}





/*==================================================================
      EFFECT EFFECT EFFECT EFFECT EFFECT EFFECT EFFECT EFFECT EFFECT
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ Where ]*/
.where1-parent {
  position: relative;
}

.where1 {
  position: absolute;
  top: 1px;
  right: 1px;
}


/*//////////////////////////////////////////////////////////////////
[ Shadow ]*/
.shadow1 {
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}



/*//////////////////////////////////////////////////////////////////
[ Gradient ]*/
.gradient1 {
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: -o-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}



/*//////////////////////////////////////////////////////////////////
[ Transform ]*/
.transform1 {
  -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
  -moz-transform: translate(-50%, -50%) rotateZ(90deg);
  -ms-transform: translate(-50%, -50%) rotateZ(90deg);
  -o-transform: translate(-50%, -50%) rotateZ(90deg);
  transform: translate(-50%, -50%) rotateZ(90deg);
}


/*//////////////////////////////////////////////////////////////////
[ Parallax ]*/
.parallax100 {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .parallax100 {
    background-attachment: inherit;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Pseudo ]*/
/*------------------------------------------------------------------
[ Focus ]*/
.input-focus-1:focus {
  border-color: #15025E;
}

/*------------------------------------------------------------------
[ Hover ]*/

.hov-bg-main:hover {
  background-color: #F31E0C;
}

.hov-color-main:hover {
  color: #F31E0C;
}

/*---------------------------------------------*/
.hov1:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

/*---------------------------------------------*/
.hov2:hover {
  color: #333333;
}

/*---------------------------------------------*/
.hov3:hover {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
}

/*---------------------------------------------*/
.hov4:hover {
  background-color: #FFCC29;
  color: #fff;
}

/*---------------------------------------------*/
.hov5 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hov5::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hov5:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Position ]*/
.pos1 {
  position: absolute;
  top: 0;
  left: 7px;
}


/*//////////////////////////////////////////////////////////////////
[ Effect ]*/

.vi-vi-slick {
  visibility: visible;
}

/*------------------------------------------------------------------
[ Active ]*/
.actived-1 {
  color: #333333;
}

.actived-2 {
  color: #FFCC29;
}

.act-pagi {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
}


/*---------------------------------------------*/
.btn-drive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 10px;
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
  transition: all 0.3s ease-out;
}

.btn-drive::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scaleY(0.1);
  -moz-transform: scaleY(0.1);
  -ms-transform: scaleY(0.1);
  -o-transform: scaleY(0.1);
  transform: scaleY(0.1);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-drive:hover {
  color: #fff;
  background-color: #ED2613;
  border: 2px solid #ED2613;
  transition: all 0.3s ease-out;
}

.btn-drive:hover:before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

.btn-contato {
  color: #fff;
  background-color: #333;
  transition: all 0.3s ease-out;
}

.btn-contato:hover {
  color: #fff;
  background-color: #15025E;
  transition: all 0.3s ease-out;
}

.btn-radius {
  border-radius: 30px;
}

.btn-cadastro {
  border-radius: 0 30px 30px 0;
  color: #fff;
  border: 2px solid #fff;
  padding: 7px 20px 7px 10px;
  letter-spacing: 2px;
  background-color: transparent;
  transition: all 0.3s;
}

.btn-cadastro:hover {
  background-color: #B20000;
  color: #fff;
  border-color: #B20000;
  transition: all 0.3s;
}

.btn-red {
  color: #fff;
  background-color: #ED2613;
  border: 2px solid #ED2613;
  transition: all 0.3s ease-out;
}

.btn-red:hover {
  color: #fff;
  background-color: #15025E;
  border: 2px solid #15025E;
  transition: all 0.3s ease-out;
}

.btn-primary {
  color: #fff;
  background-color: #1F114C;
  border: 2px solid #1F114C;
  transition: all 0.3s ease-out;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1F114C;
  border: 2px solid #1F114C;
  transform: scale(1.05);
  transition: all 0.3s ease-out;
}

/*---------------------------------------------*/
.list-01 li {
  text-indent: -11px;
  padding-left: 22px;
}

.list-01 li::before {
  content: "\f058";
  font-family: FontAwesome;
  font-size: 15px;
  color: #EC1909;

  display: inline-block;
  margin-right: 5px;
}

/*---------------------------------------------*/
.symbol-1 {
  font-size: 26px;
  color: white;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.symbol-1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: #233785;
}

.rotate-symbol-1.symbol-1::before {
  transform-origin: center;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

/*---------------------------------------------*/
.overlay1 {
  position: relative;
  cursor: pointer;
}

.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  background-color: #FFCC29;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.overlay1:hover:after {
  height: 100%;
}


/*---------------------------------------------*/
.show-dropdown-content .down-mark {
  display: block;
}

.show-dropdown-content .up-mark {
  display: none;
}

/*---------------------------------------------*/
.label1 {
  position: relative;
  overflow: hidden;
}

.label1::before {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #e57202;
  top: -31px;
  right: -31px;

  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.label1::after {
  content: "\f005";
  font-family: FontAwesome;
  font-size: 11px;
  color: #fff;

  display: block;
  position: absolute;
  top: 6px;
  right: 7px;
}


/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media (max-width: 1200px) {
  .m-0-xl {
    margin: 0;
  }

  .m-lr-0-xl {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-xl {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-xl {
    margin-left: 0;
  }

  .m-r-0-xl {
    margin-right: 0;
  }

  .m-l-15-xl {
    margin-left: 15px;
  }

  .m-r-15-xl {
    margin-right: 15px;
  }

  .p-0-xl {
    padding: 0;
  }

  .p-lr-0-xl {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-xl {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-xl {
    padding-left: 0;
  }

  .p-r-0-xl {
    padding-right: 0;
  }

  .p-l-15-xl {
    padding-left: 15px;
  }

  .p-r-15-xl {
    padding-right: 15px;
  }

  .w-full-xl {
    width: 100%;
  }

  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media (max-width: 992px) {
  .m-0-lg {
    margin: 0;
  }

  .m-lr-0-lg {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-lg {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-lg {
    margin-left: 0;
  }

  .m-r-0-lg {
    margin-right: 0;
  }

  .m-l-15-lg {
    margin-left: 15px;
  }

  .m-r-15-lg {
    margin-right: 15px;
  }

  .p-0-lg {
    padding: 0;
  }

  .p-lr-0-lg {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-lg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-lg {
    padding-left: 0;
  }

  .p-r-0-lg {
    padding-right: 0;
  }

  .p-l-15-lg {
    padding-left: 15px;
  }

  .p-r-15-lg {
    padding-right: 15px;
  }

  .w-full-lg {
    width: 100%;
  }

  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media (max-width: 768px) {
  .m-0-md {
    margin: 0;
  }

  .m-lr-0-md {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-md {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-md {
    margin-left: 0;
  }

  .m-r-0-md {
    margin-right: 0;
  }

  .m-l-15-md {
    margin-left: 15px;
  }

  .m-r-15-md {
    margin-right: 15px;
  }

  .p-0-md {
    padding: 0;
  }

  .p-lr-0-md {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-md {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-md {
    padding-left: 0;
  }

  .p-r-0-md {
    padding-right: 0;
  }

  .p-l-15-md {
    padding-left: 15px;
  }

  .p-r-15-md {
    padding-right: 15px;
  }

  .w-full-md {
    width: 100%;
  }

  /*---------------------------------------------*/

  .respon2 {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
  }

  .respon3 {
    height: auto;
    margin-bottom: 25px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media (max-width: 576px) {
  .m-0-sm {
    margin: 0;
  }

  .m-lr-0-sm {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-sm {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-sm {
    margin-left: 0;
  }

  .m-r-0-sm {
    margin-right: 0;
  }

  .m-l-15-sm {
    margin-left: 15px;
  }

  .m-r-15-sm {
    margin-right: 15px;
  }

  .p-0-sm {
    padding: 0;
  }

  .p-lr-0-sm {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-sm {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-sm {
    padding-left: 0;
  }

  .p-r-0-sm {
    padding-right: 0;
  }

  .p-l-15-sm {
    padding-left: 15px;
  }

  .p-r-15-sm {
    padding-right: 15px;
  }

  .w-full-sm {
    width: 100%;
  }

  /*---------------------------------------------*/

  .respon1 {
    font-size: 25px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media (max-width: 480px) {
  .m-0-ssm {
    margin: 0;
  }

  .m-lr-0-ssm {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-ssm {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-ssm {
    margin-left: 0;
  }

  .m-r-0-ssm {
    margin-right: 0;
  }

  .m-l-15-ssm {
    margin-left: 15px;
  }

  .m-r-15-ssm {
    margin-right: 15px;
  }

  .p-0-ssm {
    padding: 0;
  }

  .p-lr-0-ssm {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-ssm {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-ssm {
    padding-left: 0;
  }

  .p-r-0-ssm {
    padding-right: 0;
  }

  .p-l-15-ssm {
    padding-left: 15px;
  }

  .p-r-15-ssm {
    padding-right: 15px;
  }

  .w-full-ssm {
    width: 100%;
  }

  /*---------------------------------------------*/

}




/*//////////////////////////////////////////////////////////////////
[ Panel color setting ]*/

.color-setting {
  position: fixed;
  z-index: 1200;
  top: 20%;
  left: 0;
  background-color: #333333;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.btn-show-panel {
  width: 40px;
  padding: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-show-panel img {
  width: 100%;
}

.btn-show-panel-hide {
  opacity: 0;
}

/*---------------------------------------------*/
.panel-color {
  padding: 10px;
  position: relative;
  display: none;
}

.btn-hide-panel {
  font-size: 22px;
  color: #fff;
  cursor: pointer;

  position: absolute;
  top: -40px;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.title-panel {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
}

.color-blue,
.color-green,
.color-yellow,
.color-orange {
  width: 25px;
  height: 25px;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 3px;
}

.color-blue {
  background-color: #FFCC29;
}

.color-green {
  background-color: #00b26f;
}

.color-yellow {
  background-color: #ffe048;
}

.color-orange {
  background-color: #ff5f3d;
}

.show-hide-btn {
  opacity: 0;
}

.text-shadow {
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
}

/***************************************************************/
.social {
  position: fixed;
  right: 0px;
  top: 200px;
  z-index: 999;
}

.social-top {
  display: inline-block;
}

.social ul li {
  cursor: pointer;
  display: block;
  width: 150px;
  padding: 3px 8px;
  border-radius: 5px 0 0 5px;
  margin-right: -100px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  transition: all 0.3s;
}

.social ul li i {
  color: #fff;
  font-size: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
}

.social ul li span {
  color: #fff;
  font-size: 10px;
  margin-left: 7px;
  top: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  font-family: Arial, sans-serif;
  opacity: 0;
  transition: all 0.3s;
}

.social ul .wp:hover {
  background-color: #34BD49;
  transform: translate(-60%);
  transition: all 0.3s;
}

.social ul .you:hover {
  background-color: #333;
  transform: translate(-60%);
  transition: all 0.3s;
}

.social ul .you:hover span {
  opacity: 1;
  transition: all 0.3s;
}

.social ul .wp:hover span {
  opacity: 1;
  transition: all 0.3s;
}

@media only screen and (max-width: 600px) {
  .social {
    top: 128px;
  }
}

/******************************************************************************************/
.rede-social {
  margin-bottom: 10px;
}

.rede-social li {
  display: inline-block;
  margin-right: 5px;
}

.rede-social li a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}

.rede-social li a:hover {
  background-color: #fff;
  color: #333;
  transition: all 0.3s;
}

.rede-social li .facebook:hover {
  background-color: #1877F2;
  color: #fff;
  transition: all 0.3s;
}

.rede-social li .twitter:hover {
  background-color: #2AA9E0;
  color: #fff;
  transition: all 0.3s;
}

.rede-social li .instagram:hover {
  background-image: linear-gradient(to bottom, #5442D4, #E2225D, #FEC053);
  color: #fff;
  transition: all 0.3s;
}

.rede-social li a i {
  font-size: 25px;
}

/******************************************************************************************/
.modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
  width: 300px;
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 200px;
}

.modal-header {
  background-color: #17005A;
  color: #fff;
  letter-spacing: 2px;
}

.modal-header .close {
  color: #fff;
}

.modal-body {
  background-color: transparent;
  border: none;
}

.modal-body div {
  margin-bottom: 5px;
}

.modal-body input {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  border-radius: 0px;
  border: 1px solid #ccc;
  transition: all 0.3s;
}

.modal-body input:focus {
  border: 1px solid #F31E0C;
  transition: all 0.3s;
}

.modal-footer .btn-primary {
  width: 150px;
  padding: 10px 0;
  display: block;
  position: relative;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #222;
  border-color: #222;
}

.modal-footer .btn-primary:hover {
  width: 200px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  background-color: #F31E0C;
  border-color: #F31E0C;
}

.modal-footer .btn-primary::before {
  outline: 0 !important;
}

#resposta {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
}

#user {
  display: inline-block;
  position: relative;
  padding-top: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  float: right;
  font-weight: 600;
  margin-right: 0px;
}

.tipo-conta {
  font-size: 12px;
  margin-bottom: 0;
  margin-left: 0px;
  text-transform: uppercase;
}

.modal-title {
  font-weight: 500;
}

.btn_line {
  width: 100px;
  margin-top: -50px;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #fff;
}

.border-img {
  box-shadow: 5px 8px 5px rgba(0, 0, 0, 0.7);
}

.map {
  border-top: 2px solid #999;
}

.map iframe {
  width: 100%;
  height: 250px;
}

.select {
  cursor: pointer;
  -webkit-appearance: none;
}

.parcela {
  font-size: 12px !important;
}

.cursos .modal-dialog {
  width: 100%;
}

.text-header {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.btn-continuar {
  margin-top: 20px;
  float: left;
  cursor: pointer;
  padding: 10px 25px;
  text-transform: uppercase;
  background-color: #333;
  color: #fff;
  transition: 0.3s;
}

.btn-continuar:hover {
  background-color: #1F114C;
  transition: 0.3s;
}

.btn-right {
  float: right;
  margin-top: 30px;
  letter-spacing: 1px;
  color: #111;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.3s;
}

.btn-right:hover {
  letter-spacing: 2px;
  color: #111;
  transition: 0.3s;
}

.type-2 input {
  margin-bottom: 5px;
}

.type-2 input:last-child {
  margin-bottom: 0;
}

.whatsapp {
  display: inline-block;
  transition: 0.3s ease;
  text-align: center;
  line-height: 70px;
  width: 70px;
  height: 70px;
  opacity: 0.7;
  padding-bottom: 7px;
  border-radius: 50%;
  background-color: #25D366;
  border: 2px solid #fff;
  position: fixed;
  bottom: 130px;
  right: 20px;
  cursor: pointer;
  animation: shadow-pulse 1s infinite;
  z-index: 9999999;
}

.whatsapp-top {
  display: inline-block;
  transition: 0.3s ease;
  text-align: center;
  line-height: 25px;
  width: 150px;
  height: 30px;
  opacity: 1;
  background-color: #25D366;
  border: 2px solid #fff;
  position: relative;
  cursor: pointer;
  z-index: 9999;
  width: 170px;
  background-color: #1DA550;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #fff;
}

.whatsapp-top img {
  width: 20px;
  display: inline-block;
}

.whatsapp-top span {
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.5s;
  font-size: 12px;

}


.whatsapp img {
  width: 50px;
  margin-top: -5px;
}

.whatsapp span {
  display: none;
  opacity: 0;
  transition: all 0.5s;
}

.whatsapp:hover {
  opacity: 1;
  transition: 0.3s ease;
  width: 250px;
  background-color: #1DA550;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  animation: none;
}

.whatsapp:hover img {
  display: none;
}

.whatsapp:hover span {
  display: block;
  font-size: 12px;
  animation-name: fadein;
  opacity: 1;
  animation-duration: 1s;
  text-shadow: 0 2px 3pa rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  margin-top: 0px;
  color: #fff;
  animation: clarear 1.5s;
}

.instagram-top {
  display: inline-block;
  transition: 0.3s ease;
  text-align: center;
  line-height: 25px;
  width: 30px;
  height: 30px;
  opacity: 1;
  border-radius: 50%;
  background-color: #d325b0;
  border: 2px solid #fff;
  position: relative;
  cursor: pointer;
  animation: shadow-pulse-instagram 1s infinite;
  z-index: 9999;
}

.instagram-top img {
  width: 25px;
}

.instagram-top span {
  display: none;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.5s;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 140, 35, 0.9);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 140, 35, 0);
  }
}

@keyframes shadow-pulse-instagram {
  0% {
    box-shadow: 0 0 0 0px rgba(211, 37, 176, 0.9);
    ;
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 140, 35, 0);
  }
}

@keyframes clarear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen only and (max-width: 401px) {
  .endereco {
    font-size: 10px;
  }
}

.span-instagram {
  color: #F27E57;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.dep-img {
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.compra {
  padding: 10px;
  width: 100%;
}

.contrato {
  margin: 10px;
  padding: 30px;
  width: 97%;
  border: 1px solid #eaeaea;
  background-color: #fefefe;
  margin-top: 40px;
  max-height: 450px;
  overflow-y: scroll;
}

.compra {
  margin-top: -20px;
}

.compra input {
  width: 250px;
  display: block;
  margin-bottom: 10px;
  border: 1px solid #eaeaea;
  outline: none;
  padding: 10px;
  border-radius: 5px;
}

@media only screen and (max-width: 772px) {
  .compra {
    text-align: center;
  }

  .compra input {
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .compra label p {
    margin-top: 20px;
  }

  .btn-continuar {
    margin-top: 30px;
    width: 100%;
    border-radius: 5px;
    letter-spacing: 2px;
  }

  .sm-right {
    text-align: center !important;
  }
}

.compra input[type=checkbox] {
  height: 0;
  width: 0;
  display: inline-block;
  visibility: hidden;
}

.compra label {
  cursor: pointer;
  display: block;
}

.compra label p {
  display: inline-block;
  top: -5px !important;
}

.compra label>span {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  display: inline-block;
  border: 2px solid #9e9e9e;
  margin-right: 15px;
  border-radius: 3px;
  transition: all .3s;
}

.compra input:checked+label>span {
  border: 10px solid #00468C;
  animation: bounce 250ms;
}



@keyframes checked-box {
  0% {
    width: 0;
    height: 0;
    border-color: #00468C;
    transform: translate(0, 0) rotate(45deg);
  }

  33% {
    width: 4px;
    height: 0;
    border-color: #00468C;
    transform: translate(0, 0) rotate(45deg);
  }

  100% {
    width: 4px;
    height: 8px;
    border-color: #00468C;
    transform: translate(0, -8px) rotate(45deg);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(.7);
  }

  100% {
    transform: scale(1);
  }
}

.block-1 .wrap-pic-b1 {
  padding: 5px;
}

.block-1 .wrap-pic-b1 video {
  border: 5px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.header-blue {
  padding: 20px 10px;
  background-color: #233785;
  margin-bottom: 30px;
}

.header-blue h1 {
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.header-blue small {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.text-custom {
  text-align: center;
  border: 1px solid #eaeaea;
  min-height: 320px;
  border-bottom: 5px solid #E91000;
}

.text-custom p {
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding: 10px;
}

.video iframe {
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.btn-success {
  background-color: #1DA550;
  border-color: #1DA550;
  transition: all 0.3s;
}

.btn-success:hover {
  background-color: #1DA550;
  border-color: #1DA550;
  transform: scale(1.05);
  transition: all 0.3s;
}

.cart-link i {
  font-size: 20px;
  color: #111;
}

.cart-link span {
  font-size: 9px;
  display: block;
  position: absolute;
  background-color: #DE2614;
  border-radius: 50%;
  color: #fff;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  bottom: 30px;
  right: -10px;
  transition: all 0.3s;
}

.cart-link:hover span {
  transform: scale(1.1);
  transition: all 0.3s;
}

#itens_2 {
  float: right;
  margin-right: 15px;
  font-weight: 600;
}

.bg-sistema {
  background-color: #243784;
}

.quantidade {
  text-align: center;
}

.quantidade p {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.quantidade a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #111;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s;
}

.quantidade a:hover {
  background-color: #DE2614;
  transition: all 0.3s;
}

.btn-trash {
  color: #DE2614;
  font-size: 20px;
}

.btn-trash:hover {
  color: #DE2614;
}

.total {
  width: 280px;
  padding: 15px;
  float: right;
  margin-top: 20px;
}

.total h3 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: right;
  letter-spacing: 2px;
}

.total h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: right;
}

.total label {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: right;
  margin-bottom: 10px;
}

.total select {
  cursor: pointer;
  float: right;
  width: 200px;
  margin-bottom: 20px;
}

.total button {
  float: right;
  width: 200px;
}

@media only screen and (max-width: 772px) {
  .w-180 {
    width: 180px;
    height: 90px;
    display: block;

  }

  .btn-trash {
    font-size: 20px;
  }

  .quantidade {
    width: 180px;
    height: 60px;
    display: block;
    line-height: 50px;
  }

  .total {
    width: 100%;
    float: none;
    text-align: center;
  }

  .total h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
  }

  .total h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
  }

  .total label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
  }

  .total select {
    cursor: pointer;
    float: none;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .total button {
    float: none;
    margin: 0 auto;
    width: 200px;
  }
}

.box-style {
  padding: 20px;
  padding-top: 40px;
  border: 1px solid #eaeaea;
  background-color: #fefefe;
}

.box-style label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.box-style input {
  padding: 15px !important;
  font-size: 14px;
}

.box-style select {
  padding: 15px !important;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
}

.text-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.font-18 {
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #233785;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/****************** login modal ***********************/

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media screen and (prefers-reduced-motion:reduce) {
  .form-control {
    transition: none;
  }
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

@media (min-width:576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}

.bg-light {
  background-color: #f8f9fa !important;
}

.text-center {
  text-align: center !important;
}

/*! CSS Used from: https://digitalmaxweb.com/css/main.css */
/*! @import https://digitalmaxweb.com/css/font-awesome.css */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

/*! end @import */
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #4835ce;
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h5 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
  font-family: 'Poppins', sans-serif;
}

h5 {
  font-size: 20px;
}

.close {
  font-weight: 200;
  color: #333;
  font-size: 40px;
  outline: none;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: all 0.3s;
}

.close:hover {
  outline: none;
  color: #111;
  transition: all 0.3s;
}

#login .modal-body .modal-title {
  color: #333;
  width: 100%;
  font-weight: 700;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.form-login {
  padding: 20px 50px;
}

.form-login input {
  transition: all 0.3s;
}

.form-login input:focus {
  border: 1px solid #233785;
  background-color: #233785;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.3s;
}

.form-login label {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.form-login .btn_login {
  width: 100%;
  padding: 12px 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
  background-color: #303133;
  border: none;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}

.form-login .btn_login:hover {
  transform: scale(1.1);
  background-color: #233785;
  transition: all 0.3s;
}

.form-login a {
  font-weight: 500;
  color: #111;
  transition: all 0.3s;
}

.form-login a:hover {
  text-decoration: underline !important;
  color: #333;
  transition: all 0.3s;
}

#recuperar {
  display: none;
}

#cadastro {
  display: none;
}

/*! CSS Used fontfaces */

/****************** end login modal ***********************/

.pedidos_itens {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  background-color: #07185a;
  border-radius: 3px;
  margin-bottom: 5px;
  font-weight: 600;
}

.modal.show {
  z-index: 9999;
}
.swal2-container {
  z-index: 99999!important;
}