html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}
html,body{
    scroll-behavior: smooth;
}
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
body{
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 26px;
  max-width: 100vw;
  overflow-x: hidden;
}
ul{
  list-style: none;
}
a{
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: inline-block;
}
a:focus,
a:hover{
  outline: none;
  color: #ff6600;
}
img{
  display: block;
  max-width: 100%;
}
h1,.h1{
  font-size: 50px;
  line-height: 1.2;
  font-weight: bold;
}
h2{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}
h3{
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
}
h4{
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
h5{
  font-size: 16px;
  font-weight: 600;
}
h6{
  font-size: 15px;
  font-weight: 600;
}
.btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background: #ff6d00;
  color: #fff;
  cursor: pointer;
  border: 1px solid #ff6d00;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  line-height: 50px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-transform: capitalize;
}
.btn:hover{
  background: #983c14;
  border-color: #983c14;
  color: #fff;
}
.btn_white{
  background: #fff;
  border: 1px solid #fff;
  color: #ff6d00;
}
.btn_white:hover{
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn_merun{
  background: #983c14;
  border: 1px solid #983c14;
  color: #fff;
}
.btn_merun:hover{
  background: #ff6d00;
  border-color: #ff6d00;
  color: #fff;
}

.form_group {
  margin-bottom: 10px;
}
.form_control {
  width: 100%;
  display: block;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  height: 50px;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 44px;
  font-weight: 500;
  color: #000;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.form_group label{
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
  color: #000;
}
.form_control:focus{
  outline: none;
  border: 1px solid #f36f21;
}
.form_control.btn{
  min-width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  max-width: 110px;
  border-radius: 0;
}
.form_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.w_50{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
.w_100{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.form_btn{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b1b1b1;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #b1b1b1;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #b1b1b1;
  -ms-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
:-moz-placeholder { /* Firefox 18- */
  color: #b1b1b1;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.form_control:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: transparent;
}
.form_control:focus::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
}
.form_control:focus:-ms-input-placeholder { /* IE 10+ */
  color: transparent;
}
.form_control:focus:-moz-placeholder { /* Firefox 18- */
  color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number]{
    -moz-appearance: textfield;
}
label.error {
    display: none !important;
}
.form_control.error{
  border-color: red !important;
  color: red;
}
label.error{
  display: none !important;
}
.form_control.error::-webkit-input-placeholder{
  color: red;
}
.form_control.error::-moz-placeholder{
  color: red;
}
.form_control.error:-ms-input-placeholder{
  color: red;
}
.form_control.error::-ms-input-placeholder{
  color: red;
}
.form_control.error::placeholder{
  color: red;
}
textarea.form_control{
  height: 96px;
  line-height: 1.2;
  resize: none;
  padding: 20px;
}
.sm{
  margin: 20px 0 0;
}

/*menu toggle*/
.menu_toggle {
  position: relative;
  display:  inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0 0 20px;
  display: none;
}
.menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 15px;
}
.menu_toggle span:before, .menu_toggle span:after {
  position: absolute;
  content: '';
}
.menu_toggle span, .menu_toggle span:before, .menu_toggle span:after {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
}
.menu_toggle span:before {
  margin-top: 10px;
}
.menu_toggle span:after {
  margin-top: -10px;
}
/* --- btn --- */
.menu_toggle span {
  -webkit-transition-duration: 0s; transition-duration: 0s;
  -webkit-transition-delay: 0.2s; transition-delay: 0.2s;
}
.menu_toggle.active span {
  background-color: rgba(0,0,0,0.0);
  -webkit-transition-delay: 0.2s; transition-delay: 0.2s;
}


.menu_toggle span:before {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.menu_toggle span:after {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.slick-dots li button:before {
  font-size: 50px;
  opacity: 1;
  color: #fff;
}
.slick-dots li.slick-active button:before {
  font-size: 50px;
  opacity: 1;
  color: #0a238b;
}
.slick-arrow {
  width: 46px;
  height: 46px;
  left: 0;
  background: #fff;
  border:1px solid #c7ceed;
  border-radius: 50%;
  background: #fff url(../images/down-arrow.png) no-repeat center !important;
  z-index: 99;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.slick-arrow:hover{
  border-color: #e86208;
}
.slick-next {
  left: auto;
  right: 0;
  background-image: url(../images/down-arrow-2.png) !important;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.slick-prev:before, .slick-next:before{
  display: none;
}
.mobile_nav{
  display: none;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
}
.header_top{
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ht_in {
  position: relative;

}
.ht_in ul{
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
header a{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.ht_in li + li a{
  color: #ff6d00;
}
.ht_in a:hover{
  color: #ff6d00;
}
.ht_in li + li a:hover{
  color: #fff;
}
.trapezoid{
  position: absolute;
  left: 0;
  width: 330px;
  border-bottom: 100px solid #ff6d00;
  border-right: 50px solid transparent;
  height: 0;
}
.trapezoid:before{
  content: '';
  position: absolute;
  right: 100%;
  margin-right: -5px;
  top: 0;
  bottom: 0;
  width: 100000000px;
  height: 50px;
  background: #ff6d00;
}
.hb_in{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
.ht_btm{
  background: #ff6d00;
  position: relative;
}
.hb_in .trapezoid{
  width: 375px;
  border-bottom-color: #fff;
}
.logo{
  position: relative;
  z-index: 1;
}

nav ul li a{
  line-height: 100px;
  padding: 0 25px;
}
nav ul li a.active,
nav ul li a:hover{
  background: #983c14;
  color: #fff;
}
nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav ul li {
  position: relative;
}
header nav ul a.dropdown_btn {
  padding-right: 50px;
  position: relative;
}
.dropdown_btn:after {
  content: "";
  width: 20px;
  height: 12px;
  background: url(../images/arrow_down.png) no-repeat center / contain;
  margin-left: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s all 
ease-in-out;
  transition: 0.4s all 
ease-in-out;
}
.dropdown_menu {
  z-index: 999;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  max-width: none;
  padding: 20px;
  background: #983c14;
  border-radius: 0 0 10px 10px;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.dropdown:hover .dropdown_menu{
  visibility: visible; 
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.dropdown_menu li {
  padding: 0 !important;
}
.dropdown_menu li a {
  padding: 0;
  line-height: 28px;
  height: auto;
  color: #fff;
  text-align: left;
  display: block;
  position: relative;
  font-weight: 400;
  border-radius: 0;
  background: none !important;
  border: none;
}
.dropdown:hover a{
  background: #983c14;
}
.dropdown_menu li a:hover {
  color: #faa21b;
}
.hb_shape{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.hb_shape .container{
  position: relative;
  height: 100%;
}
.hb_shape .trapezoid{
  border-bottom-color: #fff;
  width: 370px;
}

.hb_in .trapezoid:before{
  background: #fff;
  height: 120px;
}
.hb_shape .trapezoid:before{
  height: 100px;
  background: #fff;
  margin-right: -5px;
}
.banner_cnt{
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding: 100px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
.banner{
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.banner:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.4;
}
h1 span, h2 span{
  color: #ff6d00;
}
.sec_title{
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
}
.about_us{
  padding: 50px 0;
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.abu_in{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.abu_lft{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38%;
          flex: 0 0 38%;
  max-width: 38%;
}
.abu_lft h2{
  margin-bottom: 10px;
}
.abu_lft p{
  margin-bottom: 20px;
  color: #3c3c3c;
}

.abu_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  max-width: 55%;
}
.programs_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.programs_list li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.pi_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  max-width: 40px;
}
.programs_list li:nth-child(n+3){
  border-top: 1px solid #bebebe;
}
.programs_list li p{
  color: #585858;
}
.services_wrapper{
  background-color: #241e4e;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.sw_in{
  position: relative;
  z-index: 1;
}
.services_wrapper:after{
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #241e4e;
  opacity: 0.5;
}
.sec_head{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.sec_head h2{
  margin-bottom: 10px;
}
.sw_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.sw_card{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 15px);
          flex: 0 0 calc(25% - 15px);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.sw_card a{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  position: relative;
  height: 492px;
  color: #fff;
}
.sw_card img{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swc_txt {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: left;
  color: #fff;
  padding: 40px 30px;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.swct_in{
  height: 58px;
  overflow: hidden;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.swct_in h4{
  height: 26px;
  margin-bottom: 10px;
  overflow: hidden;
}
.swct_in p{
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
  max-height: 44px;
  overflow: hidden;
}
.sw_card a:hover .swc_txt{
  background: rgba(0, 0, 0, 0.6);
}
.sw_card a:hover .swct_in{
  height: 126px;
}
.gallery_wrapper{
  padding: 70px 0 100px;
}
.gw_head{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.gw_lft{
  max-width: 50%;
}
.gallery_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.gallery_item{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
.gi_25{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 10px);
          flex: 0 0 calc(25% - 10px);
  max-width: calc(25% - 10px);
}
.gallery_item a{
  display: block;
  height: 366px;
  background: #000;
  overflow: hidden;
  position: relative;

}
.gallery_item a img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.gallery_item a:hover img{
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.gallery_item a:after,
.gallery_item a:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f36f21;
    opacity: 0;
    -webkit-transition: 0.4s allease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    z-index: 1;
}
.gallery_item a:hover:before{
  opacity: 0.5;
}
.gallery_item a:after {
  background: transparent;
  background: url(../images/play-button.svg) no-repeat center / 60px 60px;
}
.sm ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sm li{
  margin: 0 10px 0 0;
}
.sm a{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border:2px solid #ff6600;
  border-radius: 50%;
}
.sm a svg{
  width: 20px;
  height: 20px;
  fill: #ff6600;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.sm a:hover{
  background: #ff6600;
}
.sm a:hover svg{
  fill: #fff;
}
footer{
  padding: 50px 0 70px;
  background: url(../images/img_12.jpg) no-repeat center / cover;
  color: #fff;
  position: relative;
}
footer:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
}
footer a{
  color: #fff;
}
footer *{
  position: relative;
  z-index: 1;
}
.footer_in{
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ft_lft{
  max-width: 40%;
}
.ft_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.quick_links li{
  margin-bottom: 10px;
}
.footer_in h3 {
  margin-bottom: 10px;
}
.footer_in p{
  margin-bottom: 20px;
  font-size: 16px;
}
footer .callus span,
.footer_in h3 span{
  color: #ff6600;
}
.ft_address p a,
footer .callus a{
  display: inline-block;
  font-weight: 600;
}
footer h5{
  font-weight: 600;
  margin-bottom: 10px;
}
.backdrop {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.6;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s all 
ease-in-out;
  transition: 0.4s all 
ease-in-out;
  display: none;
}
.backdrop.open {
    visibility: visible;
    opacity: 1;
}
.banner2 .banner_cnt{
  min-height: 486px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_about_us{
  padding: 100px 0;
}
.paus_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.pau_rht{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  max-width: 50%;
  padding-top: 80px;
}
.pau_rht img{
  display: block;
  width: 100%;
}
.experince{
  background: #ff6600;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 70%;
}
b,strong{
  font-weight: bold;
}
.experince b{
  font-size: 30px;
  line-height: 1.3;
  display: block;
  color: #fff;
}
.experince span{
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.paul_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.pic_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 414px;
          flex: 0 0 414px;
  max-width: 414px;
  height: 464px;
}
.pic_img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ab_tabs{
  margin-top: 40px;
  border-top: 1px solid #b7b7b7;
  padding-top: 40px;
}
.pi_cnt{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ab_tabs ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ab_tabs ul li{
  width: 100%;
}
.ab_tabs ul li a{
  background: #f9f6f1;
  display: block;
  line-height: 42px;
  text-align: center;
  font-weight: 600;
}
.ab_tabs ul li a.active,
.ab_tabs ul li a:hover{
  background: #ff6600;
  color: #fff;
}
.pa_tabContent{
  padding-top: 40px;
}
.ourValues{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}
.ourValues li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-align: center;
  padding: 15px;
}
.ourValues li span{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.ourValues li small{
  font-size: 15px;
  font-weight: 500;
}
.tab_content{
  display: none;
}
.tab_content:first-child{
  display: block;
}
.sw2{
  background: none;
}
.sw2 .sec_head{
  color: #000;
}
.page_service,
.sw2{
  border-bottom: 1px solid #b7b7b7;
}
.page_service{
  padding: 70px 0;
  overflow: hidden;
}
.ps_in{
  max-width: 80%;
  margin: auto;
}
.ps_in h2{
  margin-bottom: 15px;
}
.ps_in h3{
  margin-bottom: 5px;
}
.ps_in p{
  margin-bottom: 30px;
}
.featured_img{
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.spc_img{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.spac_lft{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  max-width: 45%;
  border-radius: 10px;
  overflow: hidden;
}
.spac_lft img{
  width: 100%;
  display: block;
}
.spac_rht{
  width: 100%;
}
.spac_rht ul li{
  padding-left: 35px;
  position: relative;
  margin-bottom: 10px;
}
.spac_rht ul li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: url(../images/check-circle.svg) no-repeat left top / contain;
}
.spc_img{
  margin-bottom: 30px;
}
.gw_tabs {
  margin-bottom: 30px;
  border-top: 1px solid #b7b7b7;
}
.gw_tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  padding: 10px 0;
}
.gw_tabs a {
  font-size: 16px;
  padding: 10px;
  color: #000;
  text-transform: capitalizea;
  font-weight: 600;
  border-bottom: 3px solid transparent;
}
.gw_tabs a.active {
  color: #f36f21;
  border-color: #f36f21;
}
.gwtab{
  display: none;
}
.gwtab:first-child{
  display: block;
}
.VideoList .gallery_item a:hover:after{
  opacity: 1;
}
#galleryVideos .gallery_item{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 10px);
          flex: 0 0 calc(100% / 3 - 10px);
  max-width: calc(100% / 3 - 10px);
}
.fancybox__container {
  background: rgba(255,255,255,0.1);
}
.cta{
  background: #ff6600;
  border-radius: 12px;
  padding: 50px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
}
.pcl_icon{
  width: 50px;
  height: 50px;
  background: #fdf0e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}
.pcl_icon svg{
  width: 30px;
  height: 30px;
}
.page_contact{
  padding: 70px 0;
}
.pc_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pcl_item{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  padding: 0 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 10px;
}
.pcl_item + .pcl_item{
  border-left: 1px solid #b7b7b7;
}
.contact_blk{
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.cb_lft{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.cb_rht{
  max-height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
.cb_rht img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form_row{
  margin-top: 30px;
}
.form_submit{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.map{
  margin-top: 50px;
}
.map iframe{
  width: 100%;
  height: 500px;
}
.donation_cnt{
  max-width: 70%;
  margin: auto;
  padding: 50px;
  background: #f5f5f5;
}
.dc_img {
  margin-bottom: 30px;
}
.dc_img img{
  display: block;
  width: 100%;
}
.donation_cnt .form_group{
/*  margin-bottom: 20px;*/
}
.donation_cnt .btn{
  display: block;
  width: 100%;
  margin-top: 20px;
}
.donation_cnt .form_row{
  margin: 0;
}
.donation_cnt label{
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}
.PaymentMethod{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.PaymentMethod li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.PaymentMethod li input{
/*  display: none;*/
}
.PaymentMethod li label{
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding-left: 10px;
  cursor: pointer;
}
.PaymentMethod input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #b7b7b7;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.PaymentMethod input[type="radio"]:checked{
  border-color: #ff6d00;
}
.PaymentMethod input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #ff6d00;
}
.SelectAmount{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.Custom_radio{
  position: relative;
  min-width: 150px;
}
.Custom_radio input{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
.Custom_radio label{
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  background-color: #fdf0e7;
  text-align: center;
  line-height: 50px;
  display: block;
  padding: 0 20px;
  cursor: pointer;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  border-radius: 6px;
  margin: 0;
  font-weight: 400;
}
.Custom_radio label:hover,
.Custom_radio input:checked + label{
  background-color: #ff6d00;
  color: #fff;
}
.amount_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.amount_list .Custom_radio{
  min-width: auto;
  width: 100%;
}
.amount_list .Custom_radio label{
  padding: 0 10px;
}
.secure p{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
}
.secure p span{
  display: block;
  line-height: 1;
}
.secure svg{
  max-width: 26px;
  height: 26px;
}
.testimonials_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
  margin: 0 -15px;
  text-align: left;
}
.testimonials_card{
  border:1px solid #b7b7b7;
  border-radius: 12px;
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  max-width: calc(100% / 3 - 30px);
  margin: 0 15px 30px;
}
.testmonials_header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.t_avtar{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  max-width: 60px;
}
.st2{
  color: #fff;
}
.menu_close {
  position: absolute;
  top: 15px;
  right: 20px;
  max-width: 30px;
  display: none;
}
.menu_close svg {
  width: 100%;
  height: 100%;
}
.sw3{
  background: none;
}
.sw3:after{
  display: none;
}
.banner_slider .slick-dots{
  display: none !important;
}
.sec_head .btn{
  margin-top: 20px;
}
.banner_slider .banner{
  display: none;
}
.banner_slider .banner:first-child{
  display: block;
}
.banner.slick-slide{
  display: block;
}
.psi2 .spc_img{
  align-items: center;
}
.psi2 .spc_img:nth-child(2n){
  flex-direction: row-reverse;
}
.psi2 .spac_lft,
.psi2 .spac_rht{
  flex: 0 0 48%;
  max-width: 48%;
}
.psi2 .spc_img h3{
  margin-bottom: 0;
}
.psi2 .spc_img h4{
  margin-bottom: 10px;
}
.psi2 .spc_img p b{
  display: block;
  margin-bottom: 10px;
}
.psi2 .spc_img p b i{
  color: #ff6d00;
  font-style: italic;
  font-size: 18px;
  display: block;
}