:root {
  --primary-color: #81cd55;
  --secondary-color: #4378c8;
  --tertiary-color: #323e4d;
  --white-color: #fff;
  --black-color: #000;
  --transparent: transparent;
}
/*=================================================== INIT ===================================================*/
html,
body {
  height: 100%;
  border-top: 0px solid transparent;
  scroll-behavior: smooth;
  transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

body:after {
}

body:hover:after {
  opacity: 0.6;
}
body.navOpen {
  overflow: hidden;
}
/*=================================================== TYPOGRAPHY ===================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
}

h1 {
  font-size: 3em;
}

h2 {
}

h3 {
  font-size: 1.9em;
}

.customContainer {
  max-width: 90%;
}

p {
  font-size: 1em;
  color: #666;
  font-weight: 100;
}

p strong {
  color: #666;
}
p span {
  color: #003b16;
}
ul {
  color: #666;
  font-weight: 100;
}
hr {
  background-color: #dedede;
}
.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6em;
  border-radius: 0.4em;
  border: none;
  text-transform: capitalize;
  padding: 0.5em 1.5em;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--transparent);
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 2px solid var(--transparent);
  transition: all 0.3s ease-in-out;
}
.btn::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: inherit;

  background-image: url(../img/loader.svg);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
}

.btn.loading:after {
  opacity: 1;
}

.btn-clear {
  border: 1px solid #ccc;
  color: #ccc;
}

a {
  outline: none !important;
}

a:hover {
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--transparent);
  border-bottom: 5px solid var(--transparent);
  z-index: 1000;
  /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); */
  transition: all 0.4s ease-in-out;
}
.scrolled header {
  background-color: var(--tertiary-color);
  color: var(--white-color);
  border-bottom-color: var(--primary-color);
}
header .logoImg {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
}
header .hamBurger {
  display: none;
  position: relative;
  padding: 1em 0.3em;
  /* right: 1em; */
}

header .hamBurger span:after,
header .hamBurger span:before,
header .hamBurger span {
  width: 35px;
  height: 4px;
  background-color: var(--white-color);
  display: block;
  position: relative;
  border-radius: 0.6em;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navOpen header .hamBurger span {
  background-color: var(--transparent);
}
header .hamBurger span:before {
  content: '';
  position: absolute;
  top: -9px;
}

.navOpen header .hamBurger span:before {
  top: 0px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

header .hamBurger span:after {
  content: '';
  position: absolute;
  top: 9px;
}

.navOpen header .hamBurger span:after {
  top: 0px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

header .navLinks {
  display: flex;
  align-items: center;
}

header .navLinks .menuItem {
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.3rem;
}

header .navLinks .menuItem:not(:last-child) {
  margin-right: 20px;
}

main {
}

.mainBannerSec {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.mainBannerSec .bannerText {
  max-width: 500px;
}

.mainBannerSec .bannerText h2 {
  font-size: 2.5rem;
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.mainBannerSec .bannerText p {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.mainBannerSec .bannerText .btn {
}

.missionVisionSec {
  padding-top: 80px;
  padding-bottom: 80px;
}
.missionVisionSec .image-section {
  background-image: url(speak-mission.jpg);
  height: 100%;
  width: 100%;
  display: block;
  min-height: 650px;
  position: relative;
  top: 0;
  background-size: cover;
  animation-name: missionimage;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  /* margin-left: -15px; */
}
.missionVisionSec .missionVisionBox {
  overflow: hidden;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1);
}

.missionVisionBox .missionVisionDescription {
  padding: 40px 30px;
}

.missionVisionBox .missionVisionDescription h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.missionVisionBox .missionVisionDescription .offerService {
  margin-top: 60px;
}

.missionVisionDescription .offerService h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.missionVisionDescription .offerService .offerSlider {
  margin-bottom: 15px;
}

.offerService .serviceItem {
  /* text-align: center; */
}

.offerService .serviceItem .icon {
  background-color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.offerService .serviceItem .icon i {
  color: var(--white-color);
}
.offerService .serviceItem h4 {
  font-weight: 700;
  font-size: 1rem;
}

.offerService .serviceItem p {
}
.secTitle {
  text-align: center;
  margin-bottom: 60px;
}

.secTitle h2 {
  font-weight: 700;
  color: var(--tertiary-color);
  margin-bottom: 15px;
}

.secTitle h2 small {
  display: block;
  color: var(--tertiary-color);
  font-size: 1rem;
  font-weight: 100;
}

.packagesSec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--tertiary-color);
}

.packagesSec .secTitle {
  text-align: center;
  margin-bottom: 60px;
}
.packagesSec .secTitle h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.packagesSec .secTitle h2 small {
  display: block;
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 100;
}

.packagesSec .packageItem {
  border: 2px solid var(--primary-color);
  background-color: var(--transparent);
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.packagesSec .packageItem.active {
  transform: scale(1.08);
}

.packagesSec .packageWrapper:hover .packageItem.active {
  transform: scale(1);
}

.packagesSec .packageWrapper:hover .packageItem:hover {
  transform: scale(1.08);
}
.packageItem .card-header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0;
}

.packageItem .card-header h4 {
  font-size: 1.3rem;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.packageItem .card-body {
  color: var(--white-color);
}

.packageItem .card-body .priceWrapper {
  margin-bottom: 10px;
}
.packageItem .card-body .priceWrapper .priceItem {
  padding-bottom: 10px;
}

.packageItem .card-body .priceWrapper .priceItem:not(:last-child) {
  /* margin-bottom: 10px; */
}
.packageItem .card-body .packageList {
  padding-left: 15px;
}
.packageItem .card-body h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.packageItem .card-body p {
  color: var(--white-color);
  margin-bottom: 0;
}
.packageItem .card-body .packageList li {
  position: relative;
  color: var(--white-color);
}

.packageItem .card-body .packageList li::marker {
  color: var(--primary-color);
}

.packageItem .card-body .packageList li:not(:last-child) {
  margin-bottom: 5px;
}
.packageItem .card-footer {
  border-top-color: var(--primary-color);
}

.packageItem .card-footer .btn {
  display: block;
}

.sessionSec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--white-color);
}

.sessionWrapper {
  margin-bottom: 130px;
}

.sessionWrapper .sessionItem {
  display: flex;
  align-items: stretch;
  background-color: var(--white-color);
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.sessionWrapper .sessionItem .sessionHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  width: 30%;
}

.sessionWrapper .sessionItem .sessionHeader h4 {
  position: relative;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
}

.sessionWrapper .sessionItem .sessionHeader h4::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 4px;
  background-color: var(--white-color);
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.sessionWrapper .sessionItem .sessionText {
  flex-grow: 1;

  padding: 30px;
}

.sessionWrapper .sessionItem .sessionText h5 {
  font-weight: 600;
}

.sessionWrapper .sessionItem .sessionText p {
}

.sessionWrapper .sessionItem .sessionText ul {
  padding-left: 0px;
  margin-bottom: 15px;
  list-style-type: none;
}

.sessionWrapper .sessionItem .sessionText ul li {
  font-weight: 400;
}
.sessionWrapper .sessionItem .sessionText ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sessionWrapper .sessionItem .sessionText ul li .fas {
  color: var(--secondary-color);
}

.testimoni{
  color: var(--primary-color);
  font-weight: bolder;
}

.testimonialsWrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--tertiary-color);
}

.testimonialsWrapper .testimonialItem {
  display: flex;
  align-items: stretch;
  background-color: var(--white-color);
  overflow: hidden;
  border-radius: 6px;
  border-bottom: 3px solid var(--primary-color);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.testimonialItem .testimonialText {
  text-align: center;
}
.testimonialItem .testimonialAuthor {
  text-align: center;
}
.testimonialSlider {
  position: relative;
  margin-bottom: 60px;
}
.swiperControls {
  margin: auto;
  text-align: center;
}
.swiperControls .btn {
  border-radius: 60%;
  width: 40px;
  height: 40px;
  padding: 5px;
}
.swiperControls .btn:not(:last-child) {
  margin-right: 15px;
}

.conatactSec {
  padding-top: 90px;
  padding-bottom: 60px;
}
.contactItem {
  text-align: center;
  padding-bottom: 30px;
  height: 100%;
  border-bottom: 5px solid var(--secondary-color);
}
.contactItem a {
  text-decoration: none;
  color: inherit;
}
.contactItem i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.contactItem:hover,
.socialIcons:hover {
  border-color: var(--primary-color);
}
.contactItem:hover i {
  color: var(--primary-color);
}
.socialIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  height: 100%;
  border-bottom: 5px solid var(--secondary-color);
}
.socialIcons .socialItem {
  display: inline-flex;
  border-radius: 60%;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.socialIcons .socialItem:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.socialIcons .socialItem:not(:last-child) {
  margin-right: 10px;
}
.form-group {
  position: relative;
}
.form-control {
  border-radius: 0;
}
label {
  margin-bottom: 5px;
}
.help-block.form-error {
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  font-size: 0.7em;
  background: #ea0001;
  color: #fff;
  padding: 0.1em 0.3em;
  border-radius: 2px;
  transform: translateY(59%);
}
[class*='col-'].form-group.has-error .help-block.form-error {
  right: 5px;
}
footer {
  background-color: var(--tertiary-color);
  padding-top: 60px;
  padding-bottom: 30px;
  color: var(--white-color);
  border-top: 6px solid var(--primary-color);
}

footer .logoWrapper {
  text-align: center;
  margin-bottom: 20px;
}

footer .logoWrapper h3 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
footer .logoWrapper p {
  color: var(--white-color);
  font-weight: 400;
}

footer .copyRight {
  text-align: center;
  color: var(--white-color);
}
footer .copyRight p {
  color: inherit;
}
@keyframes missionimage {
  0% {
    background-image: url('../img/sytgroupf.jpg'); /*background-size: cover;/*width:100%; height: 100%; object-fit: cover;*/
  }
  25% {
    background-image: url('../img/syt10.jpg'); /*width:100%; /*height: 100%; object-fit: cover;*/
  }
  50% {
    background-image: url('../img/zoom.jpg'); /*width:100%; height: 100%; object-fit: cover;*/
  }
  75% {
    background-image: url('../img/speak-mission.jpg'); /*width:100%; height: 100%; object-fit: cover;*/
  }
  100% {
    background-image: url('../img/0speak-mission.jpg'); /*width:100%; height: 100%; object-fit: cover;*/
  }
}
