@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Bold.woff2') format('woff2'),
        url('../fonts/PTSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.woff2') format('woff2'),
        url('../fonts/PTSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Regular.woff2') format('woff2'),
        url('../fonts/PTSerif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Bold.woff2') format('woff2'),
        url('../fonts/PTSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
a, a:hover{
  transition: all 0.3s;
}
:root{
  --primary-color:#1C76BB;
  --secondary-color: #8bc441;
  --text-dark:#6c625c;
  --gray: #BAB6B6;
  --light-primary: #effbff;
}
html{
  overflow-x: hidden;
}
body{
font-family: 'PT Sans';
  color: var(--text-dark);
    transition: all 0.3s;
    font-size: 18px;
}
h1, h2, h3, h4, h5, h6{
 font-family: 'PT Serif'; 
}
h1{
  font-size: 42px; 
}
h2{
  font-size: 36px;
}
h3{
  font-size: 32px;
}
h4{
  font-size: 25px;
}
h5{
  font-size: 20px;
}
h6{
  font-size: 18px;
}
p{
  margin-bottom: 30px;
}
.btn{
  background-color: var(--secondary-color);
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
}
.btn:hover{
  background-color: var(--secondary-color);
  color: #fff;
    box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.3);
}
.btn.btn_outline_primary{
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0px;
  font-size: 20px;
}
.btn.btn_outline_primary:hover{
  box-shadow: 0px 0px 0px transparent;
  background-color: var(--primary-color);
  color: #fff;
}
.btn.btn_success{
  border: 1px solid darkgreen;
  background-color: #109C73;
  border-color: #109C73;
  line-height: 30px;
  padding: 10px;
  min-width: 200px;
  font-size: 14px;
}
.btn.btn-primary{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 0px;
    min-width: 150px;
    border-right-color: #fff;
    border-left-color: #fff;
    margin-right: 5px;
}
.btn.btn-primary:hover{
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.font_pt_sans{
  font-family: 'PT Sans';
}
.font_22{
  font-size: 22px;
}
.font_18{
  font-size: 18px;
}
.font_16{
  font-size: 16px;
}
.font_14{
  font-size: 14px;
}
.font_12{
  font-size: 12px !important;
}
.br_20{
  border-radius: 20px;
}
.br_10{
  border-radius: 20px;
}
.br_t_20{
  border-radius: 20px 20px 0px 0px;
}
.box_shadow{
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.form-control{
  height: 45px;
}
.fw_600{
  font-weight: 600;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.text_dark{
  color: var(--text-dark);
}
.text_black{
color: #000;
}
.bg_primary{
  background-color: var(--primary-color);
}
.bg_secondary{
  background-color: var(--secondary-color);
}
.bg_light_primary{
  background-color: var(--light-primary);
}
ul{
    padding: 0px;
}
ul li{
    list-style: none;
}
a{
  text-decoration: none;
  color: var(--secondary-color);
}
:focus{
  border: none;
  box-shadow: none !important;
}
label {
  font-weight: 600;
  font-size: 18px;
}

header li{
  font-weight: 600;
  font-size: 14px;
  margin: 0px 7px;
}
.header_search{
  border-right: 0px;
  height: 50px;
  background-color: #f1f2f3;
}
header li{
  border-bottom: 3px solid transparent;
}
header li:hover{
  border-color: var(--secondary-color);
}
header li:hover a.nav-link{
   color: var(--secondary-color); 
}
header li ul.dropdown-menu{
  padding: 0px;
      box-shadow: 0px 5px 15px #d8d8d8;
      border: 0px;
}
header li ul li{
  border: 0px;
  font-weight: 600;
  margin: 0px;
}
header li ul li a.dropdown-item{
   padding: 12px 15px; 
   font-weight: 600;
   color: var(--text-dark);
}
header li ul li:hover a.dropdown-item{
  background-color: #3f444b ;
  color: #fff;
}
header li:hover ul{
  display: block;
  margin-top: 3px;
  padding: 0px;
}
header .dropdown-toggle{
  margin-right: 20px;
}
header .dropdown-toggle::after{
border: 0px;
    content: "\f107";
    font-family: 'FontAwesome';
    top: 8px;
    position: absolute;
    margin-left: 5px;
}
.save_the_date_section{
  border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
}
.bordered_heading::before, .bordered_heading::after{
  content: "";
  height: 2px;
  background-color: var(--secondary-color);
  width: 300px;
  display: block;
  margin-left: -330px;
  position: absolute;
  top: 45%;
}
.bordered_heading::after{
  margin-left: auto;
  margin-right: -330px;
  right: 0;
}
.accordion-header button, .accordion-button {
  color: var(--primary-color);
  font-family: 'PT Sans';
  font-size: 18px;
  font-weight: bold;
}
.accordion-header button:hover {
  color: var(--secondary-color);
}
.accordion-button::before, .accordion-button::after{
display: none;
}
.accordion-item{
  border: 1px solid var(--primary-color) !important;
  margin-bottom: 5px;
}
.accordion-button:not(.collapsed){
  background-color: transparent;
  box-shadow: 0px 0px 0px transparent ;
  color: var(--secondary-color);
}
.accordion-item .accordion-collapse{
    border-top: 1px solid var(--primary-color);
}
.bullet_listing li, .accordion-body ul li{
  list-style: disc;
  font-size: 16px;
}
.accordion-body ul{
  padding-left: 20px;
}
.accordion-body ul li a, .accordion-body a{
  color: var(--primary-color);
}
.custom_link:hover, .accordion-body ul li a:hover, .accordion-body a:hover{
  color: var(--secondary-color) !important;
}
.accordion-button[aria-expanded="true"] i::before{
  content: "\f068";
}
.social_links a{
  height: 35px;
  width: 35px;
  background-color: #fff;
  border-radius: 100%;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.newsletter_form .btn{
  height: 45px;
}
footer p{
  line-height: 20px;
}
footer ul li a {
  color: #fff;
  margin: 8px 0px;
  display: inline-block;
}
footer ul li a:hover{
  color: var(--secondary-color);
}
/*rotating style text*/
.text-wrapper {
  height: 40px;
  overflow: hidden;
  position: relative;
}
.text {
  position: absolute;
  width: 100%;
}
.box{
  border-top: 40px solid #00567E;
  height: 400px;
  width: 300px;
}
.box h3{
  font-size: 120px;
}
.sec_py{
  padding: 80px 0px;
}
.registration_section{
  background-image: url("../images/registration-bg.webp");
  background-size: cover;
  background-position: center;
}
.register_box{
  border: 2pX solid #fff;
  border-radius: 10px;
}
.registration_section::after{
  position: absolute;
  content: "";
  background: rgba(28, 118, 187, 0.78);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.rounded_icon{
  height: 70px;
  width: 70px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--primary-color);
  position: absolute;
  right: 0;
  left: 0;
  margin: 0px auto auto auto;
  top: -40px;
}
.register_box .btn{
  min-width: 160px;
}
.register_box:hover{
  background-color: var(--primary-color);
}
.table_div{
  border: 2px solid var(--primary-color);
  border-radius: 5px;
}
.table-wrapper td, .table-wrapper th{
  vertical-align: middle;
  border: 4px solid #eef2e6;
}
.table-wrapper  thead th {
    background: #eef2e6 !important;
  }
.table-wrapper .left-head {
    background: #a9c77c !important;
  }
.sub-head span {
    display: block;
    font-weight: normal;
    margin-top: 5px;
  }
.table-wrapper tbody td:first-child {
    text-align: left;
    font-weight: 500;
}
.table-wrapper thead tr th:first-child{
  width: 30%;
}
.table-wrapper tbody td:nth-child(2), .table-wrapper tbody td:nth-child(3), .table-wrapper tbody td:nth-child(4){
  text-align: center;
}
.table_div .rounded_icon{
    background-color: var(--primary-color);
    color: #fff;
    border: 5px solid #fff;
    height: 90px;
    width: 90px;
    top: -50px;
}
#faqs .accordion-body p:last-child{
  margin-bottom: 0px;
}
.ordered_listing li{
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  margin-top: 20px;
  font-size: 20px;
}
.ordered_listing li::marker{
  color: var(--secondary-color);
  font-weight: bold;
margin-right: 10px;
}
.green_box{
  border: 3px solid var(--secondary-color);
  background-color: #c3d9a7;
}
.blue_box{
  border: 3px solid var(--primary-color);
}
.accordion_section p{
  font-size: 16px;
}
.sponsors_section img{
  max-width: 250px;
  max-height: 130px;
      width: auto;
    height: auto;
        margin: 10px 10px;
}
@media only screen and (max-width: 1200px){
  .btn.btn_outline_primary{
    font-size: 16px;
  }
  .table-wrapper td, .table-wrapper th{
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px){
    .bordered_heading::before, .bordered_heading::after{
    width: 150px;
  }
  .bordered_heading::after {
    margin-right: -160px;
}
.bordered_heading::before{
  margin-left: -160px;
 } 
  .navbar-toggler{
background-color: transparent;
padding: 0px;
border: 0px;
  }
  .navbar-toggler-icon{
    background-image: none;
    background-color: rgba(0, 0, 0, .05);
        height: 40px;
        width: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
  }
 .container {
  width: 100%;
 }
.box{
  height: auto !important;
  width: 100%;
  position: relative !important;
}
.box br{
  display: none;
}
}
 @media only screen and (max-width: 768px){
  h3{
    font-size: 30px !important;
  }
    header form{
    width: 100%;
  }
}
  
@media only screen and (max-width: 576px){
  .bordered_heading::before, .bordered_heading::after{
    display: none;
  }
  .pages_tabs .btn{
    width: 45%;
    margin: 1.5% !important;
    border-color: var(--primary-color);
    min-width: inherit;
  }
  h1{
    font-size: 38px !important;
  }
  h2{
    font-size: 30px !important;
  }
  h3{
    font-size: 24px !important;
  }
  h4{
    font-size: 20px !important;
  }
  .box h3{
    font-size: 80px !important;
  }
  .table-wrapper table{
    table-layout: fixed;
    width: 800px;
  }
  .table-wrapper td, .table-wrapper  th{
    width: 200px;
  }
 .accordion-header button, .accordion-body{
  font-size: 15px;
 }
}

/* Muneeba */
li.nav-item.dropdown, li.nav-item {
    text-transform: uppercase;
}

.gc-full-width {
    width: 100% !important;
    display: block;
}
.gc-bullet-item {
    margin-bottom: 10px;
}





