/**
 * Created by Sushant Gauchan
 * Email : sushant.gauchan11@gmail.com
*/
/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap");
.ex-flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.ex-flex-wrap {
  flex-wrap: wrap;
  flex-flow: row wrap;
}

.ex-vertical {
  top: 50%;
  transform: translateY(-50%);
}

.ex-transition {
  transition: all 0.6s ease;
}

.ex-transition-medium {
  transition: all 1.2s ease;
}

.ex-transition-large {
  transition: all 1.8s ease;
}

/*--------------------------------------- Mixins Ends -------------------------------------*/
html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #474747;
  display: block;
  padding: 0px;
  margin: 0px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:link, a:visited {
  text-decoration: none;
}
a:focus {
  outline: none;
}

::-moz-selection { /* Code for Firefox */
  color: #474747;
  background: #E8F6FF;
}

::selection {
  color: #474747;
  background: #E8F6FF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  line-height: 1.5em;
  padding: 0;
  margin: 0;
  font-weight: 400;
  color: #212121;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.common-team-container .name h5, .common-team-container .name h6 {
  font-size: 20px;
}

p {
  margin-bottom: 18px;
}
p:last-of-type {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

input:focus, input:active, input:hover, button:focus, button:active, button:hover, textarea:focus, textarea:active, textarea:hover {
  outline: none;
}

#wrapper {
  min-height: 100%;
  position: relative;
}

.slick-slider .slick-slide {
  outline: none;
}

.custom-container {
  padding: 150px 240px;
  max-width: 1920px;
  margin: auto;
}
.custom-container.big-right-padding {
  padding-right: 380px;
}
.custom-container.small-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.custom-container.header {
  padding-left: 80px;
  padding-right: 80px;
}
.custom-container.small-width-container {
  max-width: 1200px;
}
.custom-container.full-width {
  padding-left: 0;
  padding-right: 0;
}
.custom-container.remove-top-padding {
  padding-top: 0 !important;
}
.custom-container.remove-bottom-padding {
  padding-bottom: 0 !important;
}
.custom-container.remove-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-title {
  margin-bottom: 65px;
}
.section-title h2 {
  font-weight: 400;
}
.section-title h2, .section-title h3 {
  color: #20AAF8;
}
.section-title h6 {
  font-weight: 500;
  color: #FF9264;
  margin-bottom: 2px;
}
.section-title .content {
  margin-top: 20px;
}
.section-title.small-width {
  max-width: 720px;
  width: 100%;
}
.section-title.type-centre {
  text-align: center;
}
.section-title.bold-blue-center {
  text-align: center;
}
.section-title.bold-blue-center h2 {
  color: #20AAF8;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
.section-title.type-chapter {
  display: flex;
  align-items: center;
}
.section-title.type-chapter img {
  margin-right: 40px;
  width: 190px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-title.no-bottom-margin {
  margin-bottom: 0px;
}

.co-btn {
  min-width: 140px;
  display: inline-block;
  width: auto;
  outline: none;
  border: 0;
  padding: 22px 34px;
  text-align: center;
  font-size: 16px;
  line-height: 1em;
  color: #fff;
  cursor: pointer;
  background-color: #20AAF8;
  transition: all 0.5s ease;
}
.co-btn:hover, .co-btn:focus, .co-btn:active {
  color: #fff;
  background-color: #0D8ECF;
  transition: all 0.5s ease;
}
.co-btn.type-text {
  display: inline-block !important;
  min-width: 20px;
  padding: 0;
  color: #20AAF8;
  background-color: transparent;
  transition: all 0.5s ease;
}
.co-btn.type-text:hover, .co-btn.type-text:focus, .co-btn.type-text:active {
  color: #0D8ECF;
  background-color: transparent;
  transition: all 0.5s ease;
}
.co-btn.type-text.type-arrow {
  position: relative;
  font-family: "DM Sans", sans-serif;
  padding-right: 50px;
}
.co-btn.type-text.type-arrow:after {
  content: "";
  height: 12px;
  width: 34px;
  background-image: url("../img/icons/icon_right_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.co-btn.type-text.type-arrow:hover {
  background-color: transparent;
}
.co-btn.type-text.type-arrow.white {
  color: #fff;
}
.co-btn.type-text.type-arrow.white:after {
  filter: brightness(0) invert(1) !important;
}
.co-btn.contact-btn {
  min-width: 220px;
  background-color: #FF9264;
  text-transform: uppercase;
}
.co-btn.contact-btn.primary-color {
  background-color: #20AAF8;
}

#ccm-panel-dashboard .ccm-panel-content ul li {
  width: 100%;
}/*# sourceMappingURL=global.css.map */