/* common */
body {
   font-size: 15px;
   color: #242627;
   letter-spacing: .5px;}

::-moz-selection { background: #2c89c5; color: #fff; }
::selection { background: #2c89c5; color: #fff;}


/* placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
     color: #6d6a6a;
     font-weight: normal;}
::-moz-placeholder { /* Firefox 19+ */
     color: #6d6a6a;
     font-weight: normal;}
:-ms-input-placeholder { /* IE 10+ */
     color: #6d6a6a;
     font-weight: normal;}
:-moz-placeholder { /* Firefox 18- */
     color: #6d6a6a;
     font-weight: normal;} 

/* number icon remove */	 
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;}	
	
/* autofill */
@-webkit-keyframes autofill {
    to {
        color: #00051b;
        background: transparent;}
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;}
    
  
/* source_serif_regular */
.source_serif_regular {
   font-family: source_serif_regular,"-apple-system,BlinkMacSystemFont",Segoe UI,"Roboto, Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";} 
/* source_serif_extralight */
.source_serif_extralight {
   font-family: source_serif_extralight,"-apple-system,BlinkMacSystemFont",Segoe UI,"Roboto, Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}
/* source_serif_black */
.source_serif_black {
  font-family: source_serif_black,"-apple-system,BlinkMacSystemFont",Segoe UI,"Roboto, Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}
/* nexa_boldregular */
.nexa_boldregular {
  font-family: nexa_boldregular,"-apple-system,BlinkMacSystemFont",Segoe UI,"Roboto, Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}


/* radio-checkbox-btn */
.radio-checkbox-btn label {
  line-height: normal;
  margin-bottom: 5px;}
.radio-checkbox-btn label input[type="radio"],
.radio-checkbox-btn label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;}
.radio-checkbox-btn label span {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  position: relative;
  display: inline-block;
  padding: 3px 7px 10px 27px;
  height: 20px;
  line-height: 13px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;}
.radio-checkbox-btn label:not(:last-of-type) span {
  margin-right: 5px;}
.radio-checkbox-btn label span::before,
.radio-checkbox-btn label span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.3em;
  height: 1.3em;}
.radio-checkbox-btn label span::before {
  content: " ";
  border-width: 2px;
  border-style: solid;
  border-radius: 20%;}
  
/* radio, check-radio-btn */
.radio-checkbox-btn:not(.check-radio-btn) label input[type="radio"] + span::before {
  border-radius: 50%;}
.radio-checkbox-btn:not(.check-radio-btn) label input[type="radio"] + span::after {
  content: " ";
  top: .17em;
  left: .17em;
  width: 1em;
  height: 1em;
  border-width: .2em;
  border-style: solid;
  border-radius: 50%;}
/* checkbox, check-radio-btn */
.radio-checkbox-btn label input[type="checkbox"] + span::after,
.radio-checkbox-btn.check-radio-btn label input[type="radio"] + span::after {
  content: "\2714";
  line-height: 1.5;
  text-align: center;}
/* :checked */
/*
.radio-checkbox-btn label input[type="radio"]:checked ~ *,
.radio-checkbox-btn label input[type="checkbox"]:checked ~ * { 
    background:#ccc;}*/
.radio-checkbox-btn label input[type="radio"] + span::after,
.radio-checkbox-btn label input[type="checkbox"] + span::after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);}
.radio-checkbox-btn label input[type="radio"]:checked + span::after,
.radio-checkbox-btn label input[type="checkbox"]:checked + span::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);}
/* transition */
.radio-checkbox-btn label span::before,
.radio-checkbox-btn label span::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;}

/* radio-checkbox-btn */
.radio-checkbox-btn label span::before {
  border-color: #595f61;}
/* radio */
/* checkbox */
.radio-checkbox-btn label input[type="checkbox"] + span::after {
  color: #37464a;}
/* :checked */
.radio-checkbox-btn label input[type="radio"]:checked + span,
.radio-checkbox-btn label input[type="checkbox"]:checked + span { 
  border-color: #cecece;}
.radio-checkbox-btn label input[type="radio"]:checked + span::before,
.radio-checkbox-btn label input[type="checkbox"]:checked + span::before {
  background: #157994;
  border-color: #ffffff;}





/* custom */
.m-t-25 {
  margin-top: 25px !important;}
.m-t-40 {
  margin-top: 40px !important;}
.p-b-0 {
  padding-bottom: 0 !important;}
.p-t-0 {
  padding-top: 0 !important;}
/* pre-line */
.pre-line {
  white-space: pre-line;}
.text-capitalize {
  text-transform: capitalize;}



/* pre-loader */
.pre-loader {
	position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #1314143d;}
.pre-loader div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px; 
	margin-left: -50px;
  animation: rotation 1s infinite linear;
  border: 5px solid #175d94;
  border-radius: 50%;
  border-top-color: #ffffff;}
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}



/* button */
button,
.a-btn {
  border: none;
  letter-spacing: 2px;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  padding: 12px 25px;
  white-space: nowrap;
  line-height: normal;
  background: #0171bc;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;}
button:hover,
button:focus,
.a-btn:hover,
.a-btn:focus {
    outline: none;
    background: #00558e;
    color: #fff;}
.a-btn {
    display: inline-block;}
.a-btn:hover,
.a-btn:focus {
    text-decoration: none;}
/* border-btn */
.border-btn {
  background: transparent;
  color: #2b3940;
  font-weight: bold;
  border: 2px solid #2b3940;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;}
.border-btn:hover,
.border-btn:focus {
  background: #2b3940;
  color: #fff;}


/* back-btn, close-btn */
.back-btn,
a.back-btn,
.close-btn {
  background: #d6d7d8;
  color: #000000;}

.back-btn:hover,
a.back-btn:hover,
.close-btn:hover {
  color: #2d2929;
  background: #b3b5b7;
}



/* wrapper */   
.wrapper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;}
@media (min-width: 1200px) {
.wrapper {
    max-width: 2500px;
	  padding: 0 100px;}
}
@media (max-width: 1199px) {
.wrapper {
	padding: 0 70px;}
}  
@media (max-width: 991px) {
.wrapper {
	padding: 0 50px;}
} 
@media (max-width: 767px) {
.wrapper {
	padding: 0 25px;}
} 



/* header */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  padding-left: 50px;
  padding-right: 50px;
 /**/
  opacity: 1;
  transition: height 0ms 0ms, opacity 600ms 0ms;}
body.specific_scroll:not(.up_scroll) header {
  height: 0;
  z-index: 0;
  opacity: 0;
  transition: height 0ms 400ms, opacity 400ms 0ms;}
@media (max-width: 991px) {
header {
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;}
}
/* specific_scroll */
/* small-header */
@media (min-width: 992px) {
body.specific_scroll header,
.small-header header {
  height: 65px;}
}

/* a-logo */
header .a-logo {
  display: inline-block;
  padding-top: 17px;}
header .a-logo .logo {
  max-width: 100%;
  height: 65px;}
@media (max-width: 991px) {
header .a-logo {
  padding-top: 8px;}
header .a-logo .logo {
  height: 45px;}
}
/* specific_scroll */
/* small-header */
@media (min-width: 992px) {
header .a-logo .logo {
  -webkit-transition: height 1s; 
  -moz-transition: height 1s; 
  -ms-transition: height 1s; 
  -o-transition: height 1s; 
  transition: height 1s;}
body.specific_scroll header .a-logo,
.small-header header .a-logo {
  padding-top: 8px;}
body.specific_scroll header .a-logo .logo,
.small-header header .a-logo .logo {
  height: 50px;
  -webkit-transition: height 1.s; 
  -moz-transition: height 1.s; 
  -ms-transition: height 1.s; 
  -o-transition: height 1.s; 
  transition: height 1.s;}
}



/* toggle-btn */
@media (min-width: 992px) {
.toggle-btn {
  display: none}
}
@media (max-width: 991px) {
.toggle-btn {
  background: transparent;
  min-width: auto;
  box-shadow: none;
  border-radius: 0;
  border: none;
  width: 35px;
  height: 25px;
  position: fixed;
  right: 25px;
  top: 18px;
  padding: 0;}
.toggle-btn:focus,
.toggle-btn:hover {
  outline: none;
  background: transparent;}
.toggle-btn span {
  background-color: #777373;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  transition: all .3s ease-in-out;}
.toggle-btn:not(.toggle_btn_on) span:first-child {
  transform: translate3d(0, -4px, 0);
  top: 5px;}
.toggle-btn:not(.toggle_btn_on) span:nth-child(2) {
  top: 11px;}
.toggle-btn:not(.toggle_btn_on) span:last-child {
  transform: translate3d(0, 4px, 0);
  top: 18px;}
/* toggle_btn_on */
.toggle_btn_on {
  z-index: 10;
  top: 20px;
  right: 20px;}
.toggle_btn_on span {
  top: 12px;
  background-color: #fff;}
.toggle_btn_on span:first-child {
  transform: rotate(135deg) translate3d(0, 0, 0);}
.toggle_btn_on span:last-child {
  transform: rotate(-135deg) translate3d(0, 0, 0);}
.toggle_btn_on span:nth-child(2) {
  opacity: 0;}
}



/* nav */
header nav ul {
  margin-bottom: 0;
  padding-left: 0;}
@media (min-width: 992px) {
header nav {
  float: right;
  margin-top: 57px;}
header nav ul li {
  padding-left: 28px;}
}
/* specific_scroll */
/* small-header */
@media (min-width: 992px) {
body.specific_scroll header nav,
.small-header header nav {
  margin-top: 22px;}
}


/* menu */
.menu {
  position: relative;}
.menu li {
  list-style: none;}
.menu li a {
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;}
.menu li a:hover,
.menu li a.active {
  color: #000;}
.menu li a.active {
  font-family: source_serif_black,"-apple-system,BlinkMacSystemFont",Segoe UI,"Roboto, Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}
@media (max-width: 1199px) {
 .menu li {
  padding-left: 20px;}
}
@media (min-width: 992px) {
 .menu li {
  float: left;}
.menu li a {
  font-size: 14.4px;
  color: #443431;}
}
@media (max-width: 991px) {
 .menu {
  position: fixed; 
  right: 0;
  top: 0;}
.menu:not(.expanded) {
  height: 0;
  right: -20px;}
 .menu.expanded {
  background: #0e75bc;
  width: 270px;
  height: 100vh;
  overflow-y: auto;
  z-index: 10;}
.menu.expanded ul {
    padding-top: 60px;}
.menu li {
  visibility: visible;
  opacity: 1;
  padding: 5px 25px;
  transition: .5s;
  transform: rotateY(0deg);}
.menu li.hidden {
    width: 0;
    visibility: hidden;
    opacity: 0;
    transform: rotateY(90deg);}
.menu li a {
  transition: .5s;
  padding-top: 20px;
  display: block;
  font-size: 15px;
  color: #fff;}
}




/* main-div */
.main-div {
  padding-top: 100px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;}
@media (max-width: 991px) {
.main-div {
  padding-top: 60px;}
}


/* section */
section {
  padding-top: 70px;
  padding-bottom: 70px;}
section:nth-of-type(odd) {
  background: #F4F5F8;}


  

/* transparent-header */
body .transparent-header {
  padding-top: 0;}
body:not(.specific_scroll) .transparent-header header {
  background: transparent;}
/* menu */
@media (min-width: 992px) {
body:not(.specific_scroll) .transparent-header .menu li a {
    color: #fff;}
}

/* small-header */
body .small-header {
  padding-top: 65px;}



/* carousel-fade */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;}
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);}



/* page-banner */
.page-banner {
  background: linear-gradient(90deg, #202c64, #824589);
  padding-top: 70px;
  padding-bottom: 80px;
  color: #fff;}
.page-banner h3 {
  font-size: 50px;
  margin-bottom: 15px;}
.page-banner h6 {
  font-size: 16px;
  color: #edc6f7;
  margin-bottom: 0;}
@media (max-width: 991px) {
.page-banner h3 {
  font-size: 40px;}
.page-banner h6 {
  font-size: 15px;}
}




/* chosen-container-single */
.chosen-container-single .chosen-single {
  box-shadow: none;}




/* pop-up and page-form */

/* col */
.pop-up .modal-body [class^="col-"],
.page-form .page-body [class^="col-"] {
  padding-bottom: 12px;}


/* input's */
.pop-up .modal-body input[type="text"],
.pop-up .modal-body input[type=""],
.pop-up .modal-body input[type="number"],
.pop-up .modal-body input[type="date"],
.pop-up .modal-body input[type="password"],
.pop-up .modal-body input[type="email"],
.pop-up .modal-body input[type="url"],
.pop-up .modal-body input[type="time"],
.pop-up .modal-body input[type="file"],
.pop-up .modal-body select,
.pop-up .modal-body textarea,
.page-form .page-body input[type="text"],
.page-form .page-body input[type=""],
.page-form .page-body input[type="number"],
.page-form .page-body input[type="date"],
.page-form .page-body input[type="password"],
.page-form .page-body input[type="email"],
.page-form .page-body input[type="url"],
.page-form .page-body input[type="time"],
.page-form .page-body input[type="file"],
.page-form .page-body select,
.page-form .page-body textarea {
  width: 100%;
  color: #000;
  padding-left: 15px;
  border: 1px solid #b2b9b9;
  border-radius: 5px;
  margin-top: 5px;
}

/* file */
.pop-up .modal-body input[type="file"],
.page-form .page-body input[type="file"] {
  padding-left: 0;
  border-color: transparent;}

.pop-up .modal-body textarea,
.page-form .page-body textarea {
  padding-top: 5px;
  height: 100px;
}

  .pop-up .modal-body input[type="text"],
  .pop-up .modal-body input[type=""],
  .pop-up .modal-body input[type="number"],
  .pop-up .modal-body input[type="date"],
  .pop-up .modal-body input[type="password"],
  .pop-up .modal-body input[type="email"],
  .pop-up .modal-body input[type="url"],
  .pop-up .modal-body input[type="time"],
  .pop-up .modal-body input[type="file"],
  .pop-up .modal-body select,
  .page-form .page-body input[type="text"],
  .page-form .page-body input[type=""],
  .page-form .page-body input[type="number"],
  .page-form .page-body input[type="date"],
  .page-form .page-body input[type="password"],
  .page-form .page-body input[type="email"],
  .page-form .page-body input[type="url"],
  .page-form .page-body input[type="time"],
  .page-form .page-body input[type="file"],
  .page-form .page-body select {
    height: 35px;}




/* chosen-container */
.pop-up .modal-body .chosen-container .chosen-single,
.page-form .page-body .chosen-container .chosen-single {
    padding-top: 8px;}
.pop-up .modal-body .chosen-container:not(.chosen-container-active) .chosen-single,
.page-form .page-body .chosen-container:not(.chosen-container-active) .chosen-single {
    padding-left: 15px;}



/* choose-img-show */
.pop-up .modal-body .choose-img-div,
.page-form .page-body .choose-img-div {
  position: relative;}
.pop-up .modal-body .choose-img-div .choose-img-show,
.page-form .page-body .choose-img-div .choose-img-show {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 40px;
  max-width: 100%;
  background: #ffff;}



/*/ pop-up Start /*/

/* pop-up-small */
@media (min-width: 768px) {
  .pop-up .body.pop-up-small {
    max-width: 700px;
    width: 80%;}
}



/* common */
.modal.pop-up {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pop-up .modal-content {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0;
  height: 100vh;
}

@media (min-width: 576px) {
  .pop-up .modal-dialog {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .pop-up .modal-dialog {
    max-width: 100%;
  }
}

/* body */
.pop-up .body {
  margin: 0 auto;
  background: #fff;
  border-radius: 23px;
}

@media (min-width: 768px) {
  .pop-up .body {
    width: 75%;
  }
}

@media (max-width: 767px) {
  .pop-up .body {
    width: 100%;
  }
}

/* modal-header */
.pop-up .modal-header {
  padding: 0;
}

.pop-up .modal-header h1,
.pop-up .modal-header h2 {
  margin: 0;
  color: #000;
}
.pop-up .modal-header h1 {
  padding-top: 9px;
}
.pop-up .modal-header .close-btn {
  color: #f12c4f;
  position: relative;
  min-width: auto;
  bottom: 17px;
  left: 32px;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

@media (min-width: 768px) {
  .pop-up .modal-header {
    padding: 15px 30px;
  }

  .pop-up .modal-header h1 {
    font-size: 20px;
  }

  .pop-up .modal-header h2 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-header {
    padding: 10px 25px;
  }

  .pop-up .modal-header h1 {
    font-size: 19px;
  }

  .pop-up .modal-header h2 {
    font-size: 17px;
  }
}

/* modal-body */
/* common */
.pop-up .modal-body label {
  margin: 10px 0 2px 0;
  width: 100%;
  font-size: 17px;
  color: #1b1b1b;
}

@media (min-width: 768px) {
  .pop-up .modal-body {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-body {
    padding: 10px 25px;
  }
}

/* modal-footer */
.pop-up .modal-footer {
  border-top: none;
  padding-top: 5px;
}
.pop-up .modal-footer button,
.pop-up .modal-footer .a-btn {
  min-width: 90px;}
.pop-up .modal-footer .delete-btn {
  margin-right: auto;
  padding-left: 0;
}
@media (min-width: 768px) {
  .pop-up .modal-footer {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-footer {
    padding: 10px 25px;
  }
}



/* radio-cbox-btn */
.pop-up .modal-body .radio-cbox-btn label {
  width: auto;
}




/* paginated */
.paginated {
  width: 100%;
  text-align: center;}
.paginated button {
  border-color: transparent;
  min-width: auto;
  color: #21383e;
  font-size: 13px;
  box-shadow: inherit;
  background: transparent;
  border-radius: 50%;
  padding: 4px 8px;
  margin-left: 5px;
  margin-right: 5px;}
.paginated button:hover {
  background: transparent;
  border-color: #b3b3b3;
  color: #000;}
.paginated .page-previous,
.paginated .page-next {
  background: #cfd1d2;}
.paginated .page-no {
  margin-left: 2px;
  margin-right: 2px;
  position: relative;
  top: 2px;
  font-weight: bold;
  padding: 8px 12px;
  color: #828282;
  font-size: 16px;}
.paginated .page-no.active {
  background: #51a0d6;
  color: #fff;}




/* vertical-carousel */
.vertical-carousel .carousel-item.carousel-item-next ,
.vertical-carousel .carousel-item.active.carousel-item-right{ 
  transform: translate3d(0, 100%, 0); 
  -webkit-transform: translate3d(0, 100%, 0); 
  -ms-transform: translate3d(0, 100%, 0); 
  -moz-transform: translate3d(0, 100%, 0); 
  -o-transform: translate3d(0, 100%, 0);  
  top: 0;}
.vertical-carousel .carousel-item.carousel-item-prev ,
.vertical-carousel .carousel-item.active.carousel-item-left{ 
  transform: translate3d(0,-100%, 0); 
  -webkit-transform: translate3d(0,-100%, 0);  
  -moz-transform: translate3d(0,-100%, 0);
  -ms-transform: translate3d(0,-100%, 0); 
  -o-transform: translate3d(0,-100%, 0); 
  top: 0;}
.vertical-carousel .carousel-item.next.carousel-item-left ,
.vertical-carousel .carousel-item.carousel-item-prev.carousel-item-right ,
.vertical-carousel .carousel-item.active{
  transform:translate3d(0,0,0); 
  -webkit-transform:translate3d(0,0,0);
  -ms-transform:translate3d(0,0,0);
  -moz-transform:translate3d(0,0,0); 
  -o-transform:translate3d(0,0,0); 
  top:0;}
/* carousel-indicators */
.vertical-carousel .carousel-indicators {
  position:absolute;
  top:0;
  bottom:0;
  margin:auto;
  height:20px;
  right:10px; 
  left:auto;
  width:auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);}
.vertical-carousel .carousel-indicators li{
  display: block;
  margin-bottom: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;}
.vertical-carousel .carousel-indicators li.active{
  margin-bottom:5px; 
  background:#fff;}


/* home */
section#home {
  padding-top: 0;
  padding-bottom: 0;}
#home .carousel-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}
#home .carousel-item img {
  height: 100vh;
  object-fit: cover;}
@media (max-width: 767px) {
#home .carousel-item img {
  height: auto;}
}
/* caption */
#home .caption {
  width: 100%;
  position: absolute;
  left: 100px;
  top: 62%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);}
#home .caption h3 {
  font-size: 85px;
  line-height: 85px;
  color: #fff;}
#home .caption h3 span {
  display: block;}
#home .caption h3 span:last-of-type {
  color: #fbb03d;}
#home .caption h3 span span {
  width: 67%;
  height: 2px;
  background: #fbb03d;}
@media (min-width: 992px) {
#home .caption h3 span span {
  position: absolute;
  right: 0;
  bottom: 45px;}
}
@media (max-width: 1299px) {
#home .caption h3 span span {
  width: 55%;}
}
@media (max-width: 991px) {
#home .caption {
  left: 50px;}
#home .caption h3 {
  font-size: 60px;
  line-height: 60px;}
#home .caption h3 span span {
  display: none;}
}
@media (max-width: 767px) {
#home .caption h3 {
  font-size: 45px;
  line-height: 45px;}
}
@media (max-width: 499px) {
#home .caption {
  left: 30px;}
#home .caption h3 {
  font-size: 30px;
  line-height: 30px;}
}




/* about */
section#about {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;}
#about .content {
  position: relative;
  z-index: 2;
  color: #fff;}
#about .content .img-fluid {
  border: 10px solid #fff;}
@media (max-width: 767px) {
#about .content .img-fluid {
  max-height: 400px;
  margin-bottom: 35px;}
}

/* about-bg */
#about .about-bg {
  content: '';
  height: 50%;
  width: 100%;
  background: #276ca0;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%,50%);
  -ms-transform: translate(50%,50%);
  transform: translate(50%,50%);}
@media (max-width: 1199px) {
#about .about-bg {
  height: 60%;}
}
@media (max-width: 991px) {
#about .about-bg {
  height: 100%;}
}




/* our_book */
#our_book .owl-carousel {
  padding-top: 40px;
  text-align: center;}
#our_book .item h3 {
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 18px;}
#our_book .item h4 {
  font-size: 15px;}



/* we_believe */
#we_believe {
  background: linear-gradient(135deg, #00040a7a 0, #00040a7a 100%), url('../images/we_believe/we_believe.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 150px;}
#we_believe h2 {
  font-size: 35px;}
#we_believe h1 {
  font-size: 85px;}
#we_believe .a-btn {
  border: none;
  color: #fff;
  margin-top: 30px;
  background: #fbb03d;
  border-radius: 30px;
  padding: 20px 50px;
  font-size: 20px;}
@media (max-width: 991px) {
#we_believe {
  padding-top: 100px;
  padding-bottom: 100px;}
#we_believe h2 {
  font-size: 30px;}
#we_believe h1 {
  font-size: 65px;}
#we_believe .a-btn {
  padding: 15px 40px;
  font-size: 18px;}
}
@media (max-width: 767px) {
#we_believe {
  padding-top: 90px;
  padding-bottom: 90px;}
#we_believe h2 {
  font-size: 25px;}
#we_believe h1 {
  font-size: 50px;}
#we_believe .a-btn {
  padding: 15px 35px;
  margin-top: 25px;
  font-size: 16px;}
}



/* our_event */
section#our_event {
  padding-bottom: 0;
  overflow-x: hidden;}
#our_event .container-fluid {
  padding-left: 0;
  padding-right: 0;}
/* owl */
#our_event .owl-carousel .owl-stage-outer {
  padding-top: 50px;
  padding-bottom: 80px;}
#our_event .item {
  box-shadow: 20px 25px 44px 2px #dbd5e0;
  background: #fff;
  padding: 30px 25px;
  text-align: center;
  border-radius: 10px;}
#our_event .item img {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;}
#our_event .item h3 {
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 18px;}
#our_event .item h4 {
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-bottom: 0;}
#our_event .item h4 .fa {
  font-size: 15px;}
#our_event .item h4 span {
  font-size: 15px;}
#our_event .item .reg-btn {
  width: 90%;
  margin-top: 25px;}
@media (min-width: 1200px) {
#our_event .owl-carousel .owl-stage-outer {
    padding-left: 100px;
    padding-right: 100px;}
}
@media (max-width: 1199px) {
#our_event .owl-carousel .owl-stage-outer {
    padding-left: 70px;
    padding-right: 70px;}
}  
@media (max-width: 991px) {
#our_event .owl-carousel .owl-stage-outer {
    padding-left: 50px;
    padding-right: 50px;}
} 
@media (max-width: 767px) {
#our_event .owl-carousel .owl-stage-outer {
    padding-left: 25px;
    padding-right: 25px;}
} 


/* gallery */
section#events {
  background: #fff;
  padding-top: 0;}

/* carousel */
#events .carousel-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}
#events .carousel-item img {
  height: 52vh;
  object-fit: cover;}
@media (max-width: 767px) {
#events .carousel-item img {
  height: 200px;}
}
/* carousel-caption */
#events .carousel-caption {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);}
#events .carousel-caption h3 {
  font-size: 75px;
  margin-bottom: 25px;}
#events .carousel-caption h6 {
  font-size: 17px;}
@media (max-width: 991px) {
#events .carousel-caption h3 {
  font-size: 60px;}
#events .carousel-caption h6 {
  font-size: 16px;}
}
@media (max-width: 767px) {
#events .carousel-caption h3 {
  font-size: 45px;}
#events .carousel-caption h6 {
  font-size: 15px;}
}


/* events */

#events .border-b-2 {
  border-bottom: 2px solid #ced0d2;}
#events hr {
  margin-top: 40px;
  margin-bottom: 40px;}
#events hr:last-of-type {
  display: none;}
/* head */
#events .head {
  padding-top: 50px;
  padding-bottom: 50px;}
#events .head .chosen-container {
  max-width: 250px;}
#events .head select {
  width: 200px;
  border: 1px solid #d4cbcb;
  background: #fff;
  padding: 7px 10px;
  border-radius: 5px;}
@media (min-width: 768px) {
#events .head .chosen-container {
  float: right;}
}
@media (max-width: 767px) {
#books_page .head .chosen-select,
#books_page .head select {
  margin-top: 25px;}
}

/* body */
/* table */
#events .body table {
  font-size: 16px;
  color: #3e3e3e;}
#events .body table tr th,
#events .body table tr td {
  padding-top: 10px;}
#events .body table tr th {
  width: .3%;}
#events .body table tr th .fa {
  color: #5a5b5d;}
#events .body table tr th .fa-calendar {
  font-size: 20px;}
#events .body table tr th .fa-clock-o {
  font-size: 23px;}
#events .body table tr th .fa-map-marker {
  font-size: 27px;}
#events .body table tr td {
  width: 10%;}
#events .body table tr td .dd {
  font-size: 45px;
  color: #000;
  font-weight: bold;
  display: initial;}
#events .body table tr td .mm-yy {
  text-transform: capitalize;
  color: #000;
  display: initial;}
#events .body table tr td .reg-btn {
  margin-top: 25px;
  border-radius: 25px;
  padding: 13px 45px;}
@media (min-width: 768px) {
#events .body .primary-img {
  float: right;
  margin-top: 80px;}
}
@media (max-width: 767px) {
#events .body table tr td .reg-btn {
  margin-bottom: 45px;}
}




/* about_page */
section#about_page {
  background: #fff;
  padding-top: 0;}
/* carousel */
#about_page .carousel-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}
#about_page .carousel-item img {
  height: 100vh;
  object-fit: cover;}
@media (max-width: 767px) {
#about_page .carousel-item img {
  height: 600px;}
}
/* carousel-caption */
#about_page .carousel-caption {
  top: 55%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100px;
  left: initial;
  text-align: right;
  min-width: 830px;}
#about_page .carousel-caption h4 {
  font-size: 38px;
  margin-bottom: 0;}
#about_page .carousel-caption h3 {
  color: #fbb03d;
  font-size: 80px;}
#about_page .carousel-caption hr {
  border-width: 2px;
  width: 100%;
  border-color:#fbb03d;}
#about_page .carousel-caption h6 {
  max-width: 600px;
  margin-top: 10px;
  font-size: 16px;
  float: right;}
@media (max-width: 991px) {
#about_page .carousel-caption {
  right: 50px;
  min-width: auto;}
#about_page .carousel-caption h4 {
  font-size: 30px;}
#about_page .carousel-caption h3 {
  font-size: 60px;}
#about_page .carousel-caption h6 {
  font-size: 15px;}
}
@media (max-width: 767px) {
#about_page .carousel-caption {
  right: 30px;
  left: 30px;}
#about_page .carousel-caption h4 {
  font-size: 20px;}
#about_page .carousel-caption h3 {
  font-size: 45px;}
#about_page .carousel-caption h6 {
  font-size: 14px;}
}
/* mission-vision */
#about_page .mission-vision img {
  margin-top: 90px;
  margin-bottom: 110px;}
#about_page .mission-vision h2 {
  font-size: 34px;
  margin-bottom: 30px;}
#about_page .mission-vision p {
  color: #64696d;}
@media (max-width: 767px) {
#about_page .mission-vision img {
  margin-top: 70px;
  margin-bottom: 70px;}
#about_page .mission-vision h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 20px;}
}




/* books_page */
section#books_page {
  background: #fff;
  padding-top: 0;}
/* carousel */
#books_page .carousel-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}
#books_page .carousel-item img {
  height: 100vh;
  object-fit: cover;}
@media (max-width: 767px) {
#books_page .carousel-item img {
  height: 600px;}
}
/* carousel-caption */
#books_page .carousel-caption {
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);}
#books_page .carousel-caption h3 {
  font-size: 60px;}
#books_page .carousel-caption hr {
  border-width: 2px;
  border-color: #fbb03d;
  max-width: 500px;}
#books_page .carousel-caption h6 {
  margin-top: 25px;
  line-height: 22px;
  font-size: 17px;}
@media (max-width: 767px) {
#books_page .carousel-caption h3 {
  font-size: 40px;}
#books_page .carousel-caption h6 {
  font-size: 15px;}
}
/* head */
#books_page .head {
  padding-top: 50px;
  padding-bottom: 50px;}
#books_page .head .chosen-container {
  max-width: 250px;}
#books_page .head select {
  width: 200px;
  border: 1px solid #d4cbcb;
  background: #fff;
  padding: 7px 10px;
  border-radius: 5px;}
@media (min-width: 768px) {
#books_page .head .chosen-container {
  float: right;}
}
@media (max-width: 767px) {
#books_page .head .chosen-select,
#books_page .head select {
  margin-top: 25px;}
}
/* item-row */
#books_page .item-row {
  padding-top: 40px;
  text-align: center;}
#books_page .item-row .item {
  margin-bottom: 40px;
  position: relative;}
#books_page .item-row .item h3 {
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 12px;
  font-size: 20px;}
#books_page .item-row .item h4 {
  font-size: 16px;}
#books_page .item-row .item .primary-url {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}




/* book_view */
section#book_view {
  background: #fff;}
#book_view h1 {
  font-size: 45px;}
#book_view h2 {
  font-size: 28px;
  color: #626669;
  margin-top: 15px;
  margin-bottom: 25px;}
#book_view ul {
  padding-left: 25px;}
#book_view ul li {
  color: #626669;
  font-size: 16px;
  margin-top: 15px;}
@media (min-width: 768px) {
#book_view .primary-img {
  margin-top: 40px;}
}
@media (max-width: 767px) {
#book_view .primary-img {
  margin-bottom: 20px;}
#book_view h1 {
  font-size: 35px;}
#book_view h2 {
  font-size: 20px;
  margin-bottom: 20px;}
#book_view h3 {
  font-size: 24px;}
#book_view ul li {
  font-size: 15px;}
}





/* gallery */
section#gallery {
  background: #fff;
  padding-top: 0;}

/* carousel */
#gallery .carousel-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;}
#gallery .carousel-item img {
  height: 52vh;
  object-fit: cover;}
@media (max-width: 767px) {
#gallery .carousel-item img {
  height: 200px;}
}
/* carousel-caption */
#gallery .carousel-caption {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);}
#gallery .carousel-caption h3 {
  font-size: 75px;
  margin-bottom: 25px;}
#gallery .carousel-caption h6 {
  font-size: 17px;}
@media (max-width: 991px) {
#gallery .carousel-caption h3 {
  font-size: 60px;}
#gallery .carousel-caption h6 {
  font-size: 16px;}
}
@media (max-width: 767px) {
#gallery .carousel-caption h3 {
  font-size: 45px;}
#gallery .carousel-caption h6 {
  font-size: 15px;}
}
/* head */
#gallery .head {
  padding-top: 50px;
  padding-bottom: 50px;}
#gallery .head .chosen-container {
  max-width: 250px;}
#gallery .head select {
  width: 200px;
  border: 1px solid #d4cbcb;
  background: #fff;
  padding: 7px 10px;
  border-radius: 5px;}
@media (min-width: 768px) {
#gallery .head .chosen-container {
  float: right;}
}
@media (max-width: 767px) {
#gallery .head .chosen-select,
#gallery .head select {
  margin-top: 25px;}
}
/* item-row */
#gallery .item-row [class^="col-"] {
  padding-bottom: 30px;}
#gallery .item-row .item {
  box-shadow: 20px 25px 44px 2px #dbd5e0;
  background: #fff;
  height: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;}
#gallery .item-row .item img {
  object-fit: cover;
  border-radius: 10px;
  height: 240px;
  width: 100%;}
#gallery .item-row .item h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 20px;}
#gallery .item-row .item h6 {
  font-size: 15px;
  color: #797979;}




/* contact */
section#contact {
  background: #fff;
  padding-bottom: 0;}
/* h2 */
#contact h2 {
  color: #38393a;
  margin-bottom: 25px;}
/* table */
#contact table,
#contact table a {
  color: #38393a;}
#contact table th,
#contact table td {
  padding-top: 8px;
  font-size: 16px;
  padding-right: 15px;}
#contact table th {
  vertical-align: top;
  padding-right: 15px;}
#contact table th .fa-map-marker {
  font-size: 26px;}
#contact table th .fa-envelope {
  font-size: 20px;}
#contact table th .fa-phone {
  font-size: 28px;}
@media (max-width: 991px) {
#contact table {
  margin-bottom: 70px;}
}
/* form */
#contact form input,
#contact form textarea {
  border: 1px solid #0e75bc;
  margin-bottom: 15px;
  padding: 6px 15px;
  width: 100%;
  border-radius: 7px;}
#contact form textarea {
  height: 80px;}
/* placeholder */
#contact form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4a99d0;}
#contact form ::-moz-placeholder { /* Firefox 19+ */
  color: #4a99d0;}
#contact form :-ms-input-placeholder { /* IE 10+ */
  color: #4a99d0;}
#contact form :-moz-placeholder { /* Firefox 18- */
  color: #4a99d0;}
#contact form .primary-btn {
  padding: 10px 50px;
  font-size: 15px;}
/* iframe */
#contact iframe {
  margin-top: 70px;
  width: 100%;
  height: 400px;
  display: block;
  border: none;}
@media (max-width: 991px) {
#contact iframe {
  height: 300px;}
}




/* login */
.login {
  margin: 0 auto;
  text-align: center;
  width: 95%;
  max-width: 350px;
  background: #ffffff;
  box-shadow: 0 15px 10px #ccd3d6;}
/* body */
.login .body {
  padding: 15px 30px 30px;}
.login .body h2 {
  margin-bottom: 55px;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 25px;}	
.login .body .div-col {
  position: relative;}
.login .body .div-col img {
  height: 24px;
  position: absolute;
  left: 18px;
  top: 8px;}
.login .body .div-col input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  padding-left: 55px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  background: #dcf8fd;}
/* placeholder */
.login .body .div-col ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #5ec5ea;}
.login .body .div-col ::-moz-placeholder { /* Firefox 19+ */
  color: #5ec5ea;}
.login .body .div-col :-ms-input-placeholder { /* IE 10+ */
  color: #5ec5ea;}
.login .body .div-col :-moz-placeholder { /* Firefox 18- */
  color: #5ec5ea;}
.login .body .primary-btn {
  padding: 10px 50px;
  font-size: 15px;
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
  background: #29abe2;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;}
.login .body .clone_copyright_t {
  font-size: 11px;
  margin-top: 50px;
  color: #575858;}
.login .body .clone_copyright_t a {
  color: #292b2b;}


/* lucky-draw */

.lucky-draw{
  background-image: url(../images/lucky-draw/bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

/* form-lucky-draw  */
.form-lucky-draw{
  border-radius: 25px;}
.form-lucky-draw  .form-small-head {
  padding-top: 25px;}
.form-lucky-draw  .form-small-head {
  position: relative;
  color: #fff;
  width: 100%;
  min-height: 60px;
  border-radius: 15px 15px 0 0;
  padding: 30px 45px 0;
}
.form-lucky-draw .form-small-head:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 25%;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #7B4DCE, #AC6BD6) !important;
  left: 0;
  bottom: -28px;
}
.form-lucky-draw .form-small-head .inner {
  position: relative;
  z-index: 2;
}
.form-lucky-draw .form-small-body {
  padding: 35px 45px 10px;}

.form-lucky-draw .form-default .form-body .form-label {
  font-size: 11px;
  color: #565659;
  font-family: nexa_boldregular;}
.form-lucky-draw .form-default .form-body .form-control{
  font-size: 11px;
  padding: 7px 15px;
  background-color: #f2f2f2;
  border: 0;}
.form-lucky-draw .form-small-footer {
  padding: 0 45px 15px;
}
.form-lucky-draw .form-small-footer .btn {
  font-size: 11px;
  padding: 8px 20px;
  min-width: 110px;
  color: #fff;}

.gradient-purple {
  background: linear-gradient(-45deg, #7B4DCE, #AC6BD6) !important;
}
.bg-black-m {
  background: #383838 !important;
}
.h-70-px{height: 70px;}
.mt-25{margin-top: 25px;}
.mb-25{margin-bottom: 25px;}


/* choice-field-wrapper */
.choice-field-wrapper .btn-remove-choice,
.choice-field-wrapper .btn-add-choice {
    font-size: 12px;
    border: 1px solid;
    padding: 2px 8px;
    line-height: 14px;}
.choice-field-wrapper .btn-remove-choice .fa,
.choice-field-wrapper .btn-add-choice .fa {
    font-size: 20px;}
.choice-field-wrapper .btn-remove-choice {
    color: #f19999;}
.choice-field-wrapper .btn-add-choice {
    color: #22ab52;}
.choice-field-wrapper .choice-field .choice-fields:last-of-type .btn-remove-choice,
.choice-field-wrapper .choice-field .choice-fields:not(:last-of-type) .btn-add-choice {
    display: none;}


/* font-size */
.fs-13{font-size: 13px;}











/* footer */
/* top-footer */
footer .top-footer {
  background: #0e75bc;
  padding-top: 70px;
  padding-bottom: 70px;}
@media (max-width: 991px) {
footer .top-footer [class^="col-"]:not(:last-of-type) {
  padding-bottom: 30px;}
}
/* a-logo */
footer .top-footer .a-logo img {
  max-height: 100px;
  margin-bottom: 35px;}
/* h5 */
footer .top-footer h5 {
  font-weight: bold;
  font-size: 24px;
  color: #fff;}
/* h6 */
footer .top-footer h6 {
  font-size: 15px;
  color: #86c7e3;}
/* h3 */
footer .top-footer h3 {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 12px;}
@media (max-width: 991px) {
footer .top-footer h3 {
  font-size: 20px;}
}
@media (max-width: 767px) {
footer .top-footer h3 {
  padding-top: 25px;}
}
/* a */
footer .top-footer a,
footer .top-footer a:not([href]):not([tabindex]) {
  color: #86c7e3;
  display: inline-block;
  text-decoration: none;
  padding-right: 10px;
  font-size: 16px;}
footer .top-footer a.active {
  font-weight: bold;
  color: #fff;}
@media (max-width: 991px) {
footer .top-footer a,
footer .top-footer a:not([href]):not([tabindex]) {
  font-size: 14px;}
}
/* ul */
footer .top-footer ul {
  padding-left: 0;}
footer .top-footer ul li {
  list-style: none;
  padding-top: 10px;}
/* table */
footer .top-footer table {
  color: #86c7e3;}
footer .top-footer table th,
footer .top-footer table td {
  padding-top: 8px;
  font-size: 16px;
  padding-right: 15px;}
footer .top-footer table th {
  vertical-align: top;
  padding-right: 15px;}
footer .top-footer table th .fa-map-marker {
  font-size: 26px;}
footer .top-footer table th .fa-envelope {
  font-size: 20px;}
footer .top-footer table th .fa-phone {
  font-size: 28px;}
/* social-media */
footer .top-footer .social-media {
  margin-top: 15px;
  margin-bottom: 0;}
footer .top-footer .social-media li {
  display: inline-block;}
footer .top-footer .social-media li a {
  padding-right: 10px;
  font-size: 20px;}

/* bottom-footer */
footer .bottom-footer {
  background: #055d84;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;}
footer .bottom-footer p {
  color: #93bacc;
  font-size: 12px;
  margin-bottom: 0;}
footer .bottom-footer p span {
  display: inline-block;}
footer .bottom-footer p a {
  color: #93bacc;}
@media (max-width: 991px) {
footer .bottom-footer {
  padding-top: 15px;
  padding-bottom: 15px;}
}