@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    width: 1200px;
  }
}
/* @media only screen and (max-width: 1366px) {
  .container {
    max-width: 1200px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
  }
} */

.owl-theme .owl-dots .owl-dot span {
  display: none;
}

.cTextBlue {
  color: #005CFF;
}

.cRed {
  color: #FF0000;
}

.cGray {
  color: #606060;
}

.bGrdLightBlue {
  background: #d8edff;
  background: -moz-linear-gradient(360deg, #d8edff 0%, #f9fdfe 50%, white 100%);
  background: -webkit-linear-gradient(360deg, #d8edff 0%, #f9fdfe 50%, white 100%);
  background: linear-gradient(360deg, #d8edff 0%, #f9fdfe 50%, white 100%);
}

.bGrdBlue {
  background: white;
  background: -moz-linear-gradient(180deg, white 0%, #36a5ff 38%, #0063ff 74%, #1076ff 100%);
  background: -webkit-linear-gradient(180deg, white 0%, #36a5ff 38%, #0063ff 74%, #1076ff 100%);
  background: linear-gradient(180deg, white 0%, #36a5ff 38%, #0063ff 74%, #1076ff 100%);
}

.btn.btnOutline {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #F7040D;
  border-radius: 999px;
  height: 36px;
  padding: 0 24px;
  display: flex;
  width: 100%;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  color: #F7040D;
}
.btn.btnOutline:hover {
  background: #F7040D;
  color: #FFFFFF;
}
.btn.btnGradient {
  display: flex;
  border: none;
  background: #01b7ff;
  background: -moz-linear-gradient(75deg, #01b7ff 0%, #2a38e1 50%, #7f1ac2 100%);
  background: -webkit-linear-gradient(75deg, #01b7ff 0%, #2a38e1 50%, #7f1ac2 100%);
  background: linear-gradient(75deg, #01b7ff 0%, #2a38e1 50%, #7f1ac2 100%);
  border-radius: 99px;
  height: 42px;
  font-size: 20px;
  padding: 0 18px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.btn.btnGradient:hover {
  background: #0d66d3;
  background: -moz-linear-gradient(180deg, #0d66d3 0%, #0d66d3 100%);
  background: -webkit-linear-gradient(180deg, #0d66d3 0%, #0d66d3 100%);
  background: linear-gradient(180deg, #0d66d3 0%, #0d66d3 100%);
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .btn.btnOutline, .btn.btnGradient {
    font-size: 16px;
  }
}