.main-bg{background: #243C5C;}
.main-color{ color: #243C5C;}
.primary-bg{background: #1874D2;}
.primary-color{color: #1874D2;}
.black-text{color: #000000;}
.card-bg{background: #DEE7F0;}
.card-text{color: #262626;}
.gray-bg{background: #F3F3F3;}
.font-type36{
font-size: 36px;
font-weight: 700;
line-height: 65px;
}
.font-type18{
font-size: 18px;
line-height: 85px;
}
.font-type22{
 
font-size: 22px;
line-height: 49px;
}
.font-type34{
font-size: 34px;
line-height: 1.3;
}
.font-type14{ 
 font-size: 14px;
line-height: 20px;
}
.font-type24{

font-size: 24px;
line-height: 28.13px;
}
.font-type18_line{

font-size: 18px;
line-height: 20px;
}
.font-type16{

font-size: 16px;
line-height: 25px;
}
.font-type20{

font-size: 20px;
line-height: 28.5px;
}
.f-w-400{
    font-weight: 400;
}
.f-w-500{
    font-weight: 500;
}
.f-w-600{
    font-weight: 600;
}
.f-w-700{
    font-weight: 700;
}

/* =============================== Select dropdown css start ================================== */
/** Custom Select **/
select{display: none;}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    width: 100%;
}
.custom-select-trigger {
    position: relative;
    display: block;
    font-size: 16px;
    color: #595c5f;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    padding: 1rem;
    box-shadow: 0px 4px 14px 0px #0000001A;
    border: 1px solid #fff;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px; height: 10px;
    top: 50%; right: 25px;
    margin-top: -3px;
    border-bottom: 1px solid #595c5f;
    border-right: 1px solid #595c5f;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
   position: absolute;
   display: block;
   top: 100%;
   left: 0;
   right: 0;
   min-width: 100%;
   margin: 11px 0;
   border: 1px solid #b5b5b5b8;
   border-radius: 8px;
   box-sizing: border-box;
   box-shadow: 0 2px 1px rgba(0,0,0,.07);
   background: #fff;
   transition: all .4s ease-in-out;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translateY(-15px);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  padding: 10px 0px;
  box-shadow: 0px 4px 14px 0px #0000001A;
  z-index: 1;
}
.custom-options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%; right: 25px;
  width: 7px; height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all .4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 20px;
  font-size: 16px;
  color: #595c5f;
  line-height: 36px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  font-family: revert-layer;
  z-index: 1;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
  background: aliceblue;
}
/* =============================== Select dropdown css end ================================== */

/* ====================================== CAPTCHABOX CSS START ========================================= */
.captchaBox .logo img {
  height: 2em;
  width: 2em;
}
.captchaBox .captcha{
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 15px 10px;
  user-select: none;
  background: #fff;
}
.captchaBox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.captchaBox .logo p {
  color: #7b7a7c;
  margin: 0;
  font-size: 0.75em;
  font-weight: 600;
  margin: 0.2em 0 0em 0;
}
.captchaBox .logo small {
  color: #9d9ba7;
  margin: 0;
  font-size: .8em;
}
.captchaBox input[type="checkbox"]+.checkmark {
  width: 2em;
  height: 2em;
  background-color: #fcfcfc;
  border: 2.5px solid #c3c3c3;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.captchaBox input[type="checkbox"]+.checkmark span {
  content: '';
  position: relative;
  margin-top: -3px;
  transform: rotate(45deg);
  width: 0.75em;
  height: 1.2em;
  opacity: 0;
}
.captchaBox input[type="checkbox"]+.checkmark>span:before {
  content: '';
  position: absolute;
  display: block;
  width: 3px;
  bottom: 0;
  right: 0;
  background-color: #029f56;
}
.captchaBox input[type="checkbox"]+.checkmark>span:after {
  content: '';
  position: absolute;
  display: block;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #029f56;
}
.captchaBox input[type="checkbox"]:checked+.checkmark>span { 
animation:1s fadein 1.9s forwards;
}
.captchaBox input[type="checkbox"]:checked+.checkmark>span:after {animation:.3s bottomslide 2s forwards;}
.captchaBox input[type="checkbox"]:checked+.checkmark>span:before {animation:.5s rightslide 2.2s forwards;}
.captchaBox input[type="checkbox"]:checked+.checkmark { 
animation:2s spin forwards;
  background-color: aliceblue;
}
@keyframes fadein {
0% {opacity:0;}
100% {opacity:1;}
}
@keyframes bottomslide {
0% {width:0;}
100% {width:100%;}
}
@keyframes rightslide {
0% {height:0;}
100% {height:100%;}
}

@keyframes spin {
10% {
  width:0;
  height:0;
  border-width:6px;
}
30% {
  width:0;
  height:0;
  border-radius:50%;
  border-width:1em;
  transform: rotate(0deg);
  border-color:rgb(199,218,245);
}
50% {
  width:2em;
  height:2em;
  border-radius:50%;
  border-width:4px;
  border-color:rgb(199,218,245);
  border-right-color:rgb(89,152,239);
}
70% {
  border-width:4px;
  border-color:rgb(199,218,245);
  border-right-color:rgb(89,152,239);
}
90% {
  border-width:4px;
}
100% {
  width:2em;
  height:2em;
  border-radius:50%;
  transform: rotate(720deg);
  border-color:transparent;
}
}
/* ====================================== CAPTCHABOX CSS END ========================================= */
/* =============================== owl-testimonials slider start ( common css ) =============================== */
.client-testimonials .owl-testimonials .card{
  box-shadow: 0px 4px 10px 0px #17171733;
  background: #DEE7F0; 
  border: none;
}
.client-testimonials .owl-carousel{
  max-width: 994px;
  width: 100%;
}
.client-testimonials .owl-item {
  padding: 0px 10px;
}
.client-testimonials .owl-nav button {
  position: absolute;
  top: 115px;
  width: 41px;
  height: 41px;
  box-shadow: 0px 4px 4px 0px #00000040;
  background: #fff!important;
  color: #000000 !important;
  border-radius: 50%;
}
.client-testimonials .owl-nav .owl-prev {left: -90px;}
.client-testimonials .owl-nav .owl-next {right: -90px;}
.client-testimonials .owl-carousel span {
  font-size: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: -webkit-fill-available;
  margin-top: -11px;
  color: #181818;
}
.client-testimonials .owl-testimonials .card-body{padding: 1% 5%;display: grid;}
.client-testimonials .owl-testimonials .card{padding: 2%;}
.client-testimonials .owl-nav button:hover{
  background: #DEE7F0!important;
  color: #0092FF !important; 
}
.client-testimonials .owl-stage-outer , .client-testimonials .owl-stage {display: flex;}
.client-testimonials .item, .client-testimonials .card  {
  height: 100%;
}
/* =============================== owl-testimonials slider end =============================== */
 /*------------------- send msg sec start-----------------------  */
.send-msg .msg-bg{
    background: url(../img/img/sendmsg-bg.png)no-repeat;
    padding: 5% 0%;
    background-position: center;
    background-size: contain;
}
.send-msg img{
    transition: transform .5s, filter 1.5s ease-in-out;
}
.send-msg img:hover{
    transform: scale(1.1);
}
.send-msg input, .send-msg textarea{
    font-size: 16px;
    box-shadow: 0px 4px 14px 0px #0000001A;
    border: 1px solid #fff;
    border-radius: 8px;
}
.form-control:focus{
    border-color: #1874D2;
    box-shadow: none;
}
.send-msg .btn{
    background: #243C5C;
    border: 2px solid #243C5C;
    color: #fff;
    border-radius: 8px;
}
.send-msg .btn:hover{
    background: transparent;
    border: 2px solid #243C5C;
    color: #243C5C;
    border-radius: 8px;
}
 /* ------------------------send msg sec end---------------------------  */
