@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #163db9;

    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #163db9;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-family: "Poppins", Sans-Serif;
    font-weight: 400;
}

/***** Font Files *****/

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Jost", serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Jost", serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Jost", serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Jost", serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Jost", serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Poppins", Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*header css start */

.menuSec {
    padding: 18px 0 0px;
}


.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 13px;
    font-size: 14px;
}

.menuSec ul li a:after {
    content: "";
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #1968a7;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

a.btn-1 {
    background-color: #1676bc;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    font-family: "Poppins";
    border-radius: 4px;
    text-decoration: unset;
}

/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

/*banner css start */

.banner_text i {
    display: block;
    color: #fff;
    font-size: 40px;
    position: absolute;
    bottom: -129px;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {
    margin: 0;
    margin-left: 66%;
    bottom: 41px;
    display: flex;
    align-items: center;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 36px;
    height: 6px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    /* border-radius: 20px; */
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: #edebeb; */
}

.container {
    z-index: 9999;
    position: relative;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #1676bc;
    width: 36px;
    height: 5px;
}

.carousel-item {
    height: 709px;
}

section.main_slider {
    position: relative;
}

.banner_img {
    position: absolute;
    right: 0;
    width: 60%;
    z-index: 999;
    top: -20%;
    text-align: center;
}

.banner_img img {
    width: 80%;
    height: 420px;
    object-fit: cover;
}

.banner_text h3 {
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
}

.banner_text h3 {
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* section.main_slider::before {
  position: absolute;
  top: 11%;
  left: 50px;
  width: 78%;
  height: 718px;
  background-image: url(../images/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  z-index: 1;
} */

.banner_text {
    position: relative;
    z-index: 9;
    text-align: center;
}

.banner_text h1 {
    font-size: 68px;
    line-height: 80px;
    font-weight: 700;
}

.banner_text h5 {
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 30px;
}

.banner_text h5 span {
    display: block;
}

/* section.main_slider::after {
  position: absolute;
  top: 11%;
  right: 0;
  width: 26%;
  background-color: #000;
  content: "";
  height: 86%;
  clip-path: polygon(49% 0, 100% 0, 66% 100%, 0% 100%);
} */

/*banner css end*/

/*about start*/
section.about {
    padding: 100px 0px;
}

.abt-txt h2 {
    color: #000000;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 10px;
}

.abt-txt h5 {
    font-size: 24px;
    line-height: 30px;
    color: #22365f;
    font-weight: 600;
}

.abt-txt h5 span {
    display: block;
}

.abt-txt p {
    font-size: 14px;
    color: #636363;
}

.abt-img img {
    border-left: 3px solid #ababab;
    border-right: 3px solid #ababab;
}

.accordion-button:not(.collapsed) {
    font-size: 16px;
    font-family: "Jost";
    color: #000;
    font-weight: 700;
    background-color: #eceaea;
    padding: 10px 10px;
}

.accordion-button {
    /* border: unset; */
    margin-bottom: 20px;
    padding: 0px 10px;
    font-size: 16px;
    font-family: "Jost";
    color: #000;
    font-weight: 700;
    margin: 0;
}

.accordion-item {
    margin-bottom: 21px;
    border: unset;
}

.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.faq {
    margin-bottom: 35px;
}

/*about end*/

/*service start*/
section.service {
    position: relative;
    margin: 100px 0px;
    z-index: 999;
}

section.service::before {
    position: absolute;
    content: "";
    width: 100%;
    background-size: cover;
    background-image: url(../images/ser-bg.jpg);
    background-repeat: no-repeat;
    top: -150px;
    left: 0;
    z-index: -1;
    height: 500px;
}

.ser-main-bx {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 0 3px #00000087;
    padding-bottom: 30px;
}

.ser-bot-txt h4 {
    font-size: 32px;
    font-weight: 700;
    color: #282a29;
}

.ser-bot-txt {
    margin-top: 20px;
}

.ser-img {
    margin-top: -40px;
}

.ser-img img {
    height: 317px;
}

.ser-bot-txt p {
    width: 80%;
    margin-bottom: 25px;
}

/*service end*/
/*bio start*/
.bio-txt h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.bio-txt p {
    font-size: 14px;
    color: #636363;
    margin-bottom: 20px;
}

.bio-img {
    position: relative;
}

.bio-img-2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 62%;
}

.bio-img img {
    width: 100%;
    /*   height: 614px; */
    /*   object-fit: cover; */
}

.bio-img-2 img {
    width: 100%;
    height: auto;
}

/*bio end*/
/*helping start*/
section.helping {
    padding: 50px 0px;
    background-image: url(../images/helping.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 250px 0px 100px;
    position: relative;
}

section.helping .row {
    align-items: center;
}

.help-txt h3 {
    font-size: 52px;
    line-height: 62px;
    color: #fff;
    font-weight: 700;
}

.help-txt h3 span {
    display: block;
}

.help-img {
    position: absolute;
    left: -22px;
    bottom: 0px;
    width: 52%;
}

.help-img img {
    width: 100%;
    height: 345px;
    object-fit: cover;
}

.help-txt {
    margin-bottom: 40px;
}

.help-img::before {
    position: absolute;
    top: 0;
    right: 15%;
    background-color: #c3c2bebd;
    content: "";
    width: 19%;
    height: 239px;
    z-index: 99;
    clip-path: polygon(0 27%, 0 0, 100% 69%, 85% 90%);
    z-index: 999;
}

/*helping end*/
/*footer start*/
footer:not(.entry-footer) {
    background-image: url(../images/footer-bg.jpg);
    background-repeat: repeat;
    background-size: cover;
    padding: 80px 0px 0px;
}

.footer-botom {
    background-color: #1676bc;
    text-align: center;
    padding: 20px 0px;
    margin: 50px 0px 0px 0px;
}

.footer-botom p {
    color: #fff;
    margin-bottom: 0;
}

.footer-logo p {
    font-size: 16px;
    color: #fff;
}

.qiuck-links h5 {
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    font-family: "Jost";
    font-weight: 700;
}

.qiuck-links {
    padding-left: 20%;
}

.qiuck-links ul li a i {
    color: #fff;
}

.qiuck-links ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 31px;
}

.qiuck-links.tw ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 11px;
}

.qiuck-links.tw ul li i {
    color: #fff;
    font-size: 15px;
}

.qiuck-links.tw ul li p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.qiuck-links.tw ul li p span {
    display: block;
}

footer a i {
    color: #000;
}

/*footer end*/
/*Review Start*/

.review-img {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 3px 0 #00000080;
    position: relative;
    padding: 29px 0 60px 0;
}

.prof-img img {
    border-radius: 50%;
    width: 24%;
    margin: 0 auto;
}

.prof-img {
    position: relative;
}

span.rev-img2 {
    position: absolute;
    bottom: -7px;
    right: 40%;
}

.review-img p {
    text-align: left;
    color: #777777;
    font-size: 16px;
    padding: 15px 10px;
    font-family: "Poppins";
    letter-spacing: 2px;
    line-height: 29px;
    /* height: 227px; */
    /* overflow-y: scroll; */
    margin-bottom: 20px;
}

.review-txt h6 {
    padding: 16px 15px 0px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 93%;
    position: relative;
    font-size: 22px;
    font-family: "Jost";
    color: #fff;
    clip-path: polygon(0 0, 81% 0, 100% 100%, 0 100%);
    background-image: -moz-linear-gradient(179deg,
            rgb(182, 206, 66) 0%,
            rgb(92, 159, 68) 100%);
    background-color: #1676bc;
    text-transform: uppercase;
    text-align: left;
    height: 84px;
}

.review-txt {
    position: absolute;
    width: 100%;
    bottom: -10%;
}

.review-txt h6 span {
    display: block;
    font-size: 12px;
    width: 92%;
    text-align: left;
    /* margin: 0 auto; */
    /* line-height: 56px; */
    height: 50px;
    margin-top: 10px;
    font-weight: 700;
}

.review-txt:before {
    content: "";
    position: absolute;
    width: 16%;
    height: 42%;
    right: 4%;
    bottom: 21%;
    z-index: -1;
    background-image: -moz-linear-gradient(179deg,
            rgb(182, 206, 66) 0%,
            rgb(92, 159, 68) 100%);
    background-color: #000;
}

.review-head h3 {
    color: #000;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 55px;
    font-weight: 700;
}

.slick-active {
    opacity: 1;
}

.slick-track {
    margin-bottom: 60px;
    margin-top: 20px;
}

span.rev-img2 img {
    width: 100%;
}

section.review-sec {
    padding: 0px 0 100px;
    background-image: url(../images/review-back.png);
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.review-head h5 {
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    font-size: 24px;
    text-transform: uppercase;
    color: #1676bc;
    margin-bottom: 10px;
}

section.review-sec .slick-dots li.slick-active button:before {
    opacity: 1;
    width: 19px;
    height: 16px;
    background: #000;
}

section.review-sec .slick-dots li button:before {
    font-family: "slick";
    font-size: 7px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 15px;
    content: "" !important;
    text-align: center;
    background: #4d98bf;
    opacity: 1;
    color: #01b7f2;
}

.review-head {
    margin-bottom: 15px;
}

.review-txt h6:after {
    position: absolute;
    content: "";
    width: 20%;
    height: 3px;
    background: #fff;
    left: 10%;
    display: none;
}

section.review-sec .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.review-head h3 span {
    display: block;
}

/*Review End*/
a.btn-1:hover {
    transition: 1s;
    box-shadow: inset 170px 0 0 #354567;
}

/*inner-banner start*/
section.main_slider.in .carousel-item {
    height: 620px;
    width: 100%;
    display: block;
}

section.main_slider.in::after {
    position: absolute;
    top: 13%;
    height: 84%;
}

section.main_slider.in::before {
    height: 510px;
    top: 13%;
}

section.main_slider.in h1 {
    font-size: 70px;
    text-align: center;
    height: 130px;
}

section.main_slider.in .banner_img img {
    height: 400px;
    width: 75%;
    margin: 0 auto;
}

section.main_slider.in .banner_img {
    top: -67%;
}

section.bio.inn {
    padding: 100px 0px 90px;
}

section.bio.inn .bio-img-2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 62%;
}

.bio-txt.bot {
    margin-top: 72px;
}

section.philosophy {
    padding: 100px 0px;
}

.philosophy-txt-inn {
    text-align: left;
}

.philosophy-txt-inn h3 {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

section.philosophy .accordion-body {
    text-align: left;
}

/*contact page start*/
/*CONTACT START*/
.contact_page_sidbar h6 {
    font-size: 14px;
    color: #dad7d7;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
}

.fa-color {
    color: #e51921;
    font-size: 80px;
}

.contact_page_sidbar h4 {
    color: #000;
    font-weight: 400;
    margin: 0;
    font-family: "Poppins";
    margin-bottom: 0px;
    font-size: 20px;
}

.contact_page_sidbar i {
    font-size: 35px;
    margin: 0 20px 0 0;
    width: 35px;
}

.contact_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e51921;
    color: #ffffff;
    border-radius: 0;
    margin: 0 10px 0 0;
    font-size: 22px;
}

.contact_social a:hover {
    background-color: #e51921;
    color: #fff;
}

.contact_map iframe {
    width: 100%;
    height: 600px;
}

.contact-left img {
    width: 100%;
}

ul.contact_page_sidbar li i {
    color: #000;
}

ul.contact_page_sidbar a {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 14px;
    color: #5a5959;
    text-decoration: none;
}

ul.contact_page_sidbar h6 {
    line-height: 26px;
    font-family: "Poppins";
    font-size: 14px;
    color: #5a5959;
    font-weight: 500;
}

.contact-form {
    border-radius: 15px;
    /* padding: 40px 20px 40px 20px; */
    /* border: 2px solid #dcdcdc; */
}

.contact-form-title h4 {
    color: #000;
    font-size: 36px;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid #dcdcdc;
    border-radius: 5px;
}

.contact-form input::placeholder {
    color: #000;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 18px 80px;
    border-radius: 5px;
    border: 2px solid #dcdcdc;
    resize: none;
}

.contact-submit button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 17px;
    background: none;
}

.contact-form input::placeholder {
    font-size: 14px;
    line-height: 14px;
    color: #000;
    border-radius: 5px;
    margin-bottom: 0px;
}

.contact-form textarea::placeholder {
    font-size: 14px;
    line-height: 14px;
    border-radius: 5px;
    color: #000;
    margin-bottom: 0px;
}

section.contact_page_main.pt-8.pb-8 {
    padding: 100px 0;
    background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
    margin: 0 !important;
    margin-bottom: 30px !important;
}

.contact_page_sidbar p {
    margin-bottom: 0;
}

.cont-1 h3 {
    color: #000;
}

.cont-1 p {
    color: #8b8a8a;
    font-size: 16px;
}

.icons i {
    background: #21386c;
    color: #fff;
    padding: 6px;
    margin: 0px 5px;
}

.con-form {
    padding: 20px 50px;
}

section.contact-us {
    padding: 100px;
}

.btn-contact a {
    background: #194376;
    padding: 10px 80px;
    border: none;
    border-radius: 5px;
    color: #fff;
}

section.contact-us.inner h3 {
    font-size: 48px;
    line-height: 48px;
    color: #000;
    font-weight: 700;
    font-family: "Jost";
    text-transform: uppercase;
}

.map-col {
    padding: 0;
}

.btn-contact button {
    width: 20%;
    padding: 0;
    height: 53px;
    background-color: #1676bc;
    color: #fff;
    border: none;
    /* border-radius: 8px; */
}

section.contact-us .row {
    align-items: baseline;
}

section.contact-us i.fas.fa-phone-alt.fa-color.fa-2x {
    transform: rotate(90deg);
}

/*/*contact inner page sec end*/
section.publications-pg {
    padding: 100px 0px;
}

.publication-txt h3 {
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 700;
}

.publication-txt p {
    font-size: 16px;
    color: #5e5e5e;
}

.publication-txt p span {
    color: #163db9;
    text-decoration: underline;
}

section.main_slider.in h1 span {
    display: block;
}

section.main_slider.in.pub h1 {
    font-size: 58px;
    line-height: 65px;
}

button.accordion-button.collapsed {
    background-color: #edebeb;
}

section.issue {
    padding: 100px 0px;
}

.issue-txt {
    text-align: left;
    margin-bottom: 40px;
}

.issue-txt h4 {
    color: #000;
    font-size: 48px;
    font-family: "Jost";
    font-weight: 700;
    line-height: 55px;
}

.faq a {
    /* display: block; */
    /* width: fit-content; */
    /* margin: 0 auto; */
    text-decoration: underline;
    color: #1676bc;
}

.strategic-txt h3 {
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    color: #fff;
    transform: rotate(270deg);
    writing-mode: lr-tb;
    left: -26px;
    bottom: 140px;
    margin: 0;
    /* display: flex; */
    /* align-items: center; */
    /* display: flex; */
    line-height: 2;
}

.strategic-txt {
    background-color: #155183;
    height: 410px;
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: end; */
    width: 100%;
}

.strategic-txt.tw {
    background-color: #2a3e67;
    position: relative;
}

section.strategic {
    display: none;
}

div#cookiemodal {
    z-index: 99999;
    bottom: 10px;
    left: 10px;
    top: auto;
    width: auto;
    height: auto;
}

div#cookiemodal .modal-dialog {
    margin: 0;
}

div#cookiemodal .btn-secondary {
    color: #1676bc;
    background-color: #fff;
    border-color: #1676bc;
    border-width: 2px;
    padding: 6px 20px;
}

div#cookiemodal .btn-primary {
    color: #fff;
    background-color: #1676bc;
    border-color: #1676bc;
    padding: 6px 20px;
}

div#cookiemodal .modal-title i {
    margin-right: 10px;
}

div#cookiemodal .modal-title {
    color: #1676bc;
    font-size: 27px;
}

div#cookiemodal p {
    color: #000;
    font-size: 14px;
}

.modal-backdrop {
    z-index: 9999;
    background-color: #000;
}

section.cookies_page {
    padding: 80px 0;
}

section.cookies_page h4 {
    color: #000;
}

section.cookies_page h3 {
    font-size: 34px;
    margin: 30px 0;
}

section.cookies_page ul {
    color: #000;
    list-style: disc;
    padding-left: 20px;
}

section.cookies_page ul li {
    font-size: 14px;
}

section.cookies_page ul li:not(:last-child) {
    margin-bottom: 10px;
}

section.cookies_page ul li span {
    display: block;
    margin: 10px 0;
}

section.cookies_page p {
    color: #000;
}

section.cookies_page p a {
    color: #1676bc;
}

section.cookies_page ul li a {
    color: #1676bc;
}

/* ======================= */

section.main_slider .carousel-inner {
    position: relative;
}

section.main_slider .carousel-inner::before {
    position: absolute;
    top: 3%;
    left: 50px;
    width: 78%;
    height: 685px;
    background-image: url(../images/banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    /* z-index: 1; */
}

section.main_slider .carousel-inner::after {
    position: absolute;
    top: 3%;
    right: 44px;
    width: 45%;
    background-color: #000;
    content: "";
    height: 96.7%;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

/* ======================= */

li.linkdin-icon-ft i {
    font-size: 26px !important;
}

li.linkdin-icon-ft {
    justify-content: center;
    width: 87%;
}

.faq a.btn-1 {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    text-decoration: unset;
}

li.linkdin-icon-ft a i {
    font-size: 43px !important;
    padding: 10px 0px;
}

.issue-txt a {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-decoration: underline;
}

.roud--lat-orange h5 {
    color: #f16724;
}

.roud--lat-orange p {
    font-weight: 700;
    color: #000;
}

/* section.main_slider.in {
    padding-top: 26px;
} */
.bio-txt a {
    color: #0a58ca;
    text-decoration: underline;
}

ul.fr-bld li {
    font-weight: 400;
    line-height: 2;
    list-style: disc;
    margin-bottom: 10px;
    margin-left: 20px;
}

.bio-txt a.btn-1 {
    color: #fff;
    text-decoration: unset;
}

ul.strategic-list-faq li {
    list-style: decimal;
    padding-left: 6px;
}

ul.dor-dics-circle li {
    list-style: disc;
    margin-bottom: 10px;
    margin-left: 10px;
}

.help-txt a.btn-1 {
    text-transform: uppercase;
}

ul.stratic-last-accordion li {
    font-weight: 400;
    line-height: 2;
    list-style: disc;
    margin-bottom: 10px;
    margin-left: 20px;
}

div#gform_fields_1 input {
    width: 100% !important;
    margin-bottom: 4px !important;
    padding: 15px 20px !important;
    border: 2px solid #dcdcdc !important;
    border-radius: 5px !important;
}

input#gform_submit_button_1 {
    width: 20%;
    padding: 0;
    height: 53px;
    background-color: #1676bc;
    color: #fff;
    border: none;
}


textarea#input_1_5 {
    width: 100%;
    padding: 20px 18px 80px;
    border-radius: 5px;
    border: 2px solid #dcdcdc;
    resize: none;
    min-height: 110px !important;
    height: 130px !important;
}

section.main_slider.in h1 {
    text-transform: uppercase;
}


/*Responsive Start*/
@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    section.main_slider .carousel-inner::before {
        display: none;
    }

    .banner_text h3 {
        font-size: 23px;
        line-height: 35px;
    }

    .banner_text h1 {
        font-size: 49px;
        line-height: 52px;
        margin-bottom: 16px;
    }

    .banner_img img {
        width: 100%;
        height: 354px;
    }

    .banner_text h5 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .banner_img {
        position: unset;
        width: 100%;
    }

    .banner_text {
        margin-bottom: 30px;
    }

    section.main_slider .carousel-inner::after {
        width: 36%;
        height: 100%;
        clip-path: polygon(55% 0, 100% 0, 100% 100%, 0% 100%);
        top: 0;
        right: 0px;
    }

    section.main_slider {
        background-image: url(../images/banner-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 94%;
        height: 100%;
        margin: 0 auto;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 4%;
    }

    header {
        position: unset;
        padding-bottom: 20px;
        text-align: center;
        padding-top: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 100%;
    }

    .carousel-item {
        height: 496px;
    }

    .abt-txt h2 {
        font-size: 28px;
        line-height: 37px;
        margin-top: 20px;
    }

    .abt-txt h5 {
        font-size: 13px;
        line-height: 13px;
    }

    .abt-txt p {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 16px;
        line-height: 24px;
        padding: 14px 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .accordion-body {
        padding: 15px 11px;
    }

    section.about {
        padding: 50px 0px;
    }

    .bio-txt p {
        font-size: 13px;
    }

    .bio-img img {
        height: 468px;
    }

    .bio-img-2 img {
        height: 279px;
    }

    .bio-img {
        margin-top: 40px;
    }

    .help-txt h3 {
        font-size: 24px;
        line-height: 37px;
        margin-top: 20px;
    }

    section.helping {
        margin: 150px 0px 50px;
        padding: 24px 0px 20px;
    }


    .help-img {
        position: unset;
        width: 100%;
    }

    .help-img img {
        width: 100%;
        height: 216px;
    }

    .review-head h3 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    header a.btn-1 {
        font-size: 13px;
        padding: 14px 29px;
    }

    .review-img {
        padding: 0px 0 51px 0;
        margin-bottom: 50px;
    }

    .menuSec ul li a {
        padding: 10px 6px;
        font-size: 16px;
    }

    .review-img p {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        line-height: 23px;
    }

    .review-txt h6 {
        font-size: 18px;
        width: 86%;
        /* clip-path: unset; */
        height: 92px;
        margin-bottom: 0px;
    }

    section.review-sec .row.mt-5 {
        margin-top: 10px !important;
    }

    .bio-img-2 {
        right: -10px;
        width: 50%;
    }

    .help-img::before {
        display: none;
    }

    .review-txt:before {
        right: 10%;
        bottom: 0%;
    }

    .review-txt h6 span {
        margin-top: 0px;
    }

    .footer-logo p {
        font-size: 12px;
        margin: 18px 0px;
    }

    .qiuck-links {
        padding-left: 13%;
    }

    .qiuck-links ul li a {
        font-size: 12px;
        line-height: 41px;
    }

    .footer-botom p {
        font-size: 13px;
    }

    .footer-botom {
        margin: 0px 0px 0px 0px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    footer {
        padding: 50px 0px 0px;
    }

    section.main_slider.in .banner_img img {
        height: 226px;
        width: 100%;
    }

    section.main_slider.in h1 {
        font-size: 40px;
        height: 92px;
        text-align: center;
    }

    section.main_slider.in .carousel-item {
        height: 340px;
    }

    .banner_text i {
        position: unset;
        margin-top: 33px;
    }

    section.main_slider.in .banner_text {
        margin-bottom: 7px;
        text-align: center;
    }

    section.main_slider.in .banner_text i {
        position: unset;
        margin-top: unset;
    }

    .philosophy-txt-inn h3 {
        font-size: 35px;
    }

    .vc_section {
        margin-left: -15px;
        margin-right: -15px;
    }

    section.philosophy {
        padding: 50px 10px 40px;
    }

    p {
        font-size: 13px;
    }

    section.main_slider.in {
        padding-top: 0px;
    }

    section.issue {
        padding: 60px 10px;
    }

    .publication-txt h3 {
        font-size: 35px;
        line-height: 43px;
    }

    .publication-txt p {
        font-size: 13px;
    }

    section.bio.inn .bio-img-2 {
        left: -11px;
    }

    section.bio.inn {
        padding: 30px 0px 69px;
    }

    section.contact-us {
        padding: 60px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 42px;
    }

    .cont-1 p {
        font-size: 13px;
    }

    ul.contact_page_sidbar h6 {
        font-size: 13px;
    }

    ul.contact_page_sidbar a {
        font-size: 13px;
    }

    input#gform_submit_button_1 {
        width: 50%;
    }

    .entry-content h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .help-txt h3 span {
        display: unset;
    }

    .qiuck-links.tw ul li p span {
        display: unset;
    }

    section.bio .col-lg-6.col-md-6.col-12 {
        /* width: 100%; */
    }

    section.about .col-lg-6.col-md-6.col-12 {
        /* width: 100%; */
    }

    .qiuck-links h5 {
        font-size: 23px;
    }

    .qiuck-links.tw ul li p {
        font-size: 13px;
    }

    .con-form1 .row .col-lg-12.col-md-6.col-sm-6 {
        width: 100%;
    }

    ul.strategic-list-faq li {
        margin-bottom: 10px;
    }

    ul.dor-dics-circle li {
        font-size: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    section.main_slider .carousel-inner::before {
        display: none;
    }

    .banner_text h3 {
        font-size: 23px;
        line-height: 35px;
    }

    .banner_text h1 {
        font-size: 40px;
        line-height: 39px;
        margin-bottom: 7px;
    }

    .banner_img img {
        width: 100%;
        height: 303px;
    }

    .banner_text h5 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .banner_img {
        position: unset;
        width: 100%;
    }

    .banner_text {
        margin-bottom: 30px;
    }

    section.main_slider .carousel-inner::after {
        width: 36%;
        height: 100%;
        clip-path: polygon(55% 0, 100% 0, 100% 100%, 0% 100%);
        top: 0;
        right: 17px;
    }

    section.main_slider {
        background-image: url(../images/banner-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
        margin-left: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 6%;
    }

    header {
        position: unset;
        padding-bottom: 20px;
        text-align: center;
        padding-top: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 100%;
    }

    section.bio.inn .col-lg-6.col-md-6.col-12 {
        width: 100%;
    }

    section.bio.inn .bio-img-2 img {
        height: 235px;
        width: 50%;
    }

    section.bio.inn .bio-txt {
        margin-top: 80px;
    }

    .carousel-item {
        height: 459px;
    }

    .abt-txt h2 {
        font-size: 20px;
        line-height: 32px;
        margin-top: 20px;
    }

    .abt-txt h5 {
        font-size: 13px;
        line-height: 13px;
    }

    .abt-txt p {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 13px;
        line-height: 24px;
        padding: 14px 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .accordion-body {
        padding: 15px 11px;
    }

    section.about {
        padding: 50px 0px;
    }

    .bio-txt p {
        font-size: 13px;
    }

    .bio-img img {
        height: 468px;
    }

    .bio-img-2 img {
        height: 185px;
    }

    .bio-img {
        margin-top: 40px;
    }

    .help-txt h3 {
        font-size: 24px;
        line-height: 37px;
        margin-top: 20px;
    }

    section.helping {
        margin: 150px 0px 50px;
        padding: 50px 0px 50px;
    }


    .help-img {
        position: unset;
        width: 100%;
    }

    .help-img img {
        width: 100%;
        height: 216px;
    }

    .review-head h3 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    header a.btn-1 {
        font-size: 13px;
        padding: 10px 13px;
    }

    .review-img {
        padding: 0px 0 51px 0;
        margin-bottom: 50px;
    }

    .menuSec ul li a {
        padding: 10px 6px;
        font-size: 13px;
    }

    .review-img p {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        line-height: 23px;
    }

    .review-txt h6 {
        font-size: 13px;
        width: 90%;
        /* clip-path: unset; */
        height: 74px;
    }

    section.review-sec .row.mt-5 {
        margin-top: 10px !important;
    }

    .bio-img-2 {
        right: -10px;
        width: 50%;
    }

    .help-img::before {
        display: none;
    }

    .review-txt:before {
        bottom: 23%;
    }

    .review-txt {
        bottom: -16%;
    }

    .review-txt h6 span {
        margin-top: 0px;
    }

    .footer-logo p {
        font-size: 12px;
        margin: 18px 0px;
    }

    .qiuck-links {
        padding-left: 0%;
    }

    .qiuck-links ul li a {
        font-size: 12px;
        line-height: 41px;
    }

    .footer-botom p {
        font-size: 13px;
    }

    .footer-botom {
        margin: 0px 0px 0px 0px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    footer {
        padding: 50px 0px 0px;
    }

    section.main_slider.in .banner_img img {
        height: 196px;
        width: 100%;
    }

    section.main_slider.in h1 {
        font-size: 40px;
        height: 92px;
        text-align: center;
    }

    section.main_slider.in .carousel-item {
        height: 290px;
    }

    .banner_text i {
        position: unset;
        margin-top: 33px;
    }

    section.main_slider.in .banner_text {
        margin-bottom: 7px;
        text-align: center;
    }

    section.main_slider.in .banner_text i {
        position: unset;
        margin-top: unset;
    }

    .philosophy-txt-inn h3 {
        font-size: 35px;
    }

    .vc_section {
        margin-left: -15px;
        margin-right: -15px;
    }

    section.philosophy {
        padding: 50px 10px 40px;
    }

    p {
        font-size: 13px;
    }

    section.main_slider.in {
        padding-top: 0px;
    }

    section.issue {
        padding: 60px 10px;
    }

    .publication-txt h3 {
        font-size: 35px;
        line-height: 43px;
    }

    .publication-txt p {
        font-size: 13px;
    }

    section.bio.inn .bio-img-2 {
        left: -11px;
    }

    section.bio.inn {
        padding: 30px 0px 69px;
    }

    section.contact-us {
        padding: 60px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 29px;
    }

    .cont-1 p {
        font-size: 13px;
    }

    ul.contact_page_sidbar h6 {
        font-size: 13px;
    }

    ul.contact_page_sidbar a {
        font-size: 13px;
    }

    input#gform_submit_button_1 {
        width: 50%;
    }

    .entry-content h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .help-txt h3 span {
        display: unset;
    }

    .qiuck-links.tw ul li p span {
        display: unset;
    }

    section.bio .col-lg-6.col-md-6.col-12 {
        /* width: 100%; */
    }

    section.about .col-lg-6.col-md-6.col-12 {
        /* width: 100%; */
    }

    .qiuck-links h5 {
        font-size: 23px;
    }

    .qiuck-links.tw ul li p {
        font-size: 13px;
    }

    .con-form1 .row .col-lg-12.col-md-6.col-sm-6 {
        width: 100%;
    }

    ul.strategic-list-faq li {
        margin-bottom: 10px;
    }

    ul.dor-dics-circle li {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    section.main_slider .carousel-inner::before {
        display: none;
    }

    .banner_text h3 {
        font-size: 23px;
        line-height: 35px;
    }

    .banner_text h1 {
        font-size: 28px;
        line-height: 39px;
        margin-bottom: 7px;
    }

    .banner_img img {
        width: 100%;
        height: 261px;
    }

    .banner_text h5 {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .banner_img {
        position: unset;
        width: 100%;
    }

    .banner_text {
        margin-bottom: 30px;
    }

    section.main_slider .carousel-inner::after {
        width: 36%;
        height: 100%;
        clip-path: polygon(55% 0, 100% 0, 100% 100%, 0% 100%);
        top: 0;
        right: 0;
    }

    section.main_slider {
        background-image: url(../images/banner-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;

    }

    section.bio.inn .bio-img-2 img {
        width: 80%;
    }

    section.bio.inn .bio-txt {
        margin-top: 70px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 4%;
    }

    header {
        position: unset;
        padding-bottom: 20px;
        text-align: center;
        padding-top: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 100%;
    }

    .carousel-item {
        height: 459px;
    }

    .abt-txt h2 {
        font-size: 20px;
        line-height: 32px;
        margin-top: 20px;
    }

    .abt-txt h5 {
        font-size: 13px;
        line-height: 13px;
    }

    .abt-txt p {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 13px;
        line-height: 24px;
        padding: 14px 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .accordion-body {
        padding: 15px 11px;
    }

    section.about {
        padding: 50px 0px;
    }

    .bio-txt p {
        font-size: 13px;
    }

    .bio-img img {
        height: 468px;
    }

    .bio-img-2 img {
        height: 279px;
    }

    .bio-img {
        margin-top: 40px;
    }

    .help-txt h3 {
        font-size: 24px;
        line-height: 37px;
        margin-top: 20px;
    }

    section.helping {
        margin: 150px 0px 50px;
        padding: 45px 0px 45px;
    }


    .help-img {
        position: unset;
        width: 100%;
    }

    .help-img img {
        width: 100%;
        height: 216px;
    }

    .review-head h3 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    header a.btn-1 {
        font-size: 13px;
        padding: 10px 13px;
    }

    .review-img {
        padding: 0px 0 51px 0;
        margin-bottom: 50px;
    }

    .menuSec ul li a {
        padding: 10px 3px;
        font-size: 10px;
    }

    .review-img p {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        line-height: 23px;
    }

    .review-txt h6 {
        font-size: 13px;
        width: 100%;
        clip-path: unset;
        height: 92px;
    }

    section.review-sec .row.mt-5 {
        margin-top: 10px !important;
    }

    .bio-img-2 {
        right: -10px;
        width: 50%;
    }

    .help-img::before {
        display: none;
    }

    .review-txt:before {
        display: none;
    }

    .review-txt h6 span {
        margin-top: 0px;
    }

    .footer-logo p {
        font-size: 12px;
        margin: 18px 0px;
    }

    .qiuck-links {
        padding-left: 0%;
    }

    .qiuck-links ul li a {
        font-size: 12px;
        line-height: 41px;
    }

    .footer-botom p {
        font-size: 13px;
    }

    .footer-botom {
        margin: 0px 0px 0px 0px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    footer {
        padding: 50px 0px 0px;
    }

    section.main_slider.in .banner_img img {
        height: 202px;
        width: 100%;
    }

    section.main_slider.in h1 {
        font-size: 40px;
        height: 92px;
        text-align: unset;
    }

    section.main_slider.in .carousel-item {
        height: 290px;
    }

    .banner_text i {
        position: unset;
        margin-top: 33px;
    }

    section.main_slider.in .banner_text {
        margin-bottom: 7px;
        text-align: unset;
    }

    section.main_slider.in .banner_text i {
        position: unset;
        margin-top: unset;
    }

    .philosophy-txt-inn h3 {
        font-size: 35px;
    }

    .vc_section {
        margin-left: -15px;
        margin-right: -15px;
    }

    section.philosophy {
        padding: 50px 10px 40px;
    }

    p {
        font-size: 13px;
    }

    section.main_slider.in {
        padding-top: 0px;
    }

    section.issue {
        padding: 60px 10px;
    }

    .publication-txt h3 {
        font-size: 35px;
        line-height: 43px;
    }

    .publication-txt p {
        font-size: 13px;
    }

    section.bio.inn .bio-img-2 {
        left: -11px;
    }

    section.bio.inn {
        padding: 30px 0px 69px;
    }

    section.contact-us {
        padding: 60px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 29px;
    }

    .cont-1 p {
        font-size: 13px;
    }

    ul.contact_page_sidbar h6 {
        font-size: 13px;
    }

    ul.contact_page_sidbar a {
        font-size: 13px;
    }

    input#gform_submit_button_1 {
        width: 50%;
    }

    .entry-content h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .help-txt h3 span {
        display: unset;
    }

    .qiuck-links.tw ul li p span {
        display: unset;
    }

    section.bio .col-lg-6.col-md-6.col-12 {
        width: 100%;
    }

    section.about .col-lg-6.col-md-6.col-12 {
        width: 100%;
    }

    .qiuck-links h5 {
        font-size: 23px;
    }

    .qiuck-links.tw ul li p {
        font-size: 13px;
    }

    .con-form1 .row .col-lg-12.col-md-6.col-sm-6 {
        width: 100%;
    }

    ul.strategic-list-faq li {
        margin-bottom: 10px;
    }

    ul.dor-dics-circle li {
        font-size: 13px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {

    header {
        margin-top: 40px;
    }

    section.main_slider .carousel-inner::before {
        display: none;
    }

    .banner_text h3 {
        font-size: 23px;
        line-height: 35px;
    }

    .banner_text h1 {
        font-size: 33px;
        line-height: 39px;
        margin-bottom: 7px;
    }

    .banner_img img {
        width: 100%;
        height: 261px;
    }

    .banner_text h5 {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .banner_img {
        position: unset;
        width: 100%;
    }

    .banner_text {
        margin-bottom: 52px;
        position: unset;
    }

    section.main_slider .carousel-inner::after {
        display: none;
    }

    section.main_slider {
        background-image: url(../images/banner-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;

    }

    header {
        position: unset;
        padding-bottom: 20px;
        text-align: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 78%;
    }

    .carousel-item {
        height: 670px;
    }

    .abt-txt h2 {
        font-size: 23px;
        line-height: 32px;
        margin-top: 20px;
    }

    .abt-txt h5 {
        font-size: 13px;
        line-height: 13px;
    }

    .abt-txt p {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 13px;
        line-height: 24px;
        padding: 14px 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .accordion-body {
        padding: 15px 11px;
    }

    section.about {
        padding: 50px 0px;
    }

    .bio-txt p {
        font-size: 13px;
    }

    .bio-img img {
        height: 340px;
    }

    .bio-img-2 img {
        height: 249px;
    }

    .bio-img {
        margin-top: 40px;
    }

    .help-txt h3 {
        font-size: 24px;
        line-height: 37px;
        margin-top: 20px;
    }

    section.helping {
        margin: 150px 0px 50px;
        padding: 50px 0px 20px;
    }


    .help-img {
        position: unset;
        width: 100%;
    }

    .help-img img {
        width: 100%;
        height: 146px;
    }

    .review-head h3 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    .review-img {
        padding: 0px 0 51px 0;
        margin-bottom: 50px;
    }

    .review-img p {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        line-height: 23px;
    }

    .review-txt h6 {
        font-size: 13px;
        width: 100%;
        clip-path: unset;
        height: 92px;
    }

    section.review-sec .row.mt-5 {
        margin-top: 10px !important;
    }

    .bio-img-2 {
        right: -10px;
    }

    .help-img::before {
        display: none;
    }

    .review-txt:before {
        display: none;
    }

    .review-txt h6 span {
        margin-top: 0px;
    }

    .footer-logo p {
        font-size: 12px;
        margin: 18px 0px;
    }

    .qiuck-links {
        padding-left: 0%;
    }

    .qiuck-links ul li a {
        font-size: 14px;
        line-height: 41px;
    }

    .footer-botom p {
        font-size: 13px;
    }

    .footer-botom {
        margin: 0px 0px 0px 0px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    footer {
        padding: 50px 0px 0px;
    }

    section.main_slider.in .banner_img img {
        height: 202px;
        width: 100%;
    }

    section.main_slider.in h1 {
        font-size: 40px;
        height: 62px;
    }

    section.main_slider.in .carousel-item {
        height: 460px;
    }

    .banner_text i {
        position: absolute;
        margin-top: 50px;
        bottom: -70px;
    }

    section.main_slider.in .banner_text {
        margin-bottom: 39px;
    }

    section.main_slider.in .banner_text i {
        position: unset;
        margin-top: unset;
    }

    .philosophy-txt-inn h3 {
        font-size: 35px;
    }

    .vc_section {
        margin-left: -15px;
        margin-right: -15px;
    }

    section.philosophy {
        padding: 50px 10px 40px;
    }

    p {
        font-size: 13px;
    }

    section.issue {
        padding: 60px 10px;
    }

    .publication-txt h3 {
        font-size: 35px;
        line-height: 43px;
    }

    .publication-txt p {
        font-size: 13px;
    }

    section.bio.inn .bio-img-2 {
        left: -11px;
    }

    section.bio.inn {
        padding: 30px 0px 69px;
    }

    section.contact-us {
        padding: 60px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 34px;
    }

    .cont-1 p {
        font-size: 13px;
    }

    ul.contact_page_sidbar h6 {
        font-size: 13px;
    }

    ul.contact_page_sidbar a {
        font-size: 13px;
    }

    input#gform_submit_button_1 {
        width: 50%;
    }

    .entry-content h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .help-txt h3 span {
        display: unset;
    }

    .qiuck-links.tw ul li p span {
        display: unset;
    }

    ul.strategic-list-faq li {
        margin-bottom: 10px;
    }

    ul.dor-dics-circle li {
        font-size: 13px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {

    header {
        margin-top: 40px;
    }

    section.main_slider .carousel-inner::before {
        display: none;
    }

    ul.dor-dics-circle li {
        font-size: 13px;
    }

    .banner_text h3 {
        font-size: 23px;
        line-height: 35px;
    }

    .banner_text h1 {
        font-size: 33px;
        line-height: 39px;
        margin-bottom: 7px;
    }

    .banner_img img {
        width: 100%;
        height: 190px;
    }

    .banner_text h5 {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .banner_img {
        position: unset;
        width: 100%;
    }

    .banner_text {
        margin-bottom: 70px;
        position: unset;
    }

    section.main_slider .carousel-inner::after {
        display: none;
    }

    section.main_slider {
        background-image: url(../images/banner-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;

    }

    header {
        position: unset;
        padding-bottom: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 100%;
    }

    .carousel-item {
        height: 670px;
    }

    .abt-txt h2 {
        font-size: 23px;
        line-height: 32px;
        margin-top: 20px;
    }

    .abt-txt h5 {
        font-size: 13px;
        line-height: 13px;
    }

    .abt-txt p {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 13px;
        line-height: 24px;
        padding: 14px 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .accordion-body {
        padding: 15px 11px;
    }

    section.about {
        padding: 50px 0px;
    }

    .bio-txt p {
        font-size: 13px;
    }

    .bio-img img {
        height: 300px;
        object-fit: cover;
    }

    .bio-img-2 img {
        height: 132px;
        width: 100%;
    }

    section.bio.inn .bio-txt {
        margin-top: 80px;
    }


    .bio-img {
        margin-top: 40px;
    }

    .help-txt h3 {
        font-size: 22px;
        line-height: 37px;
        margin-top: 20px;
    }

    section.helping {
        margin: 150px 0px 50px !important;
        padding: 50px 0px 20px;
    }


    .help-img {
        position: unset;
        width: 100%;
    }

    .help-img img {
        width: 100%;
        height: 146px;
    }

    .review-head h3 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    .review-img {
        padding: 0px 0 39px 0;
        margin-bottom: 90px;
    }

    .review-img p {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        line-height: 23px;
        margin-bottom: 6px;
    }

    .review-txt h6 {
        font-size: 13px;
        width: 100%;
        clip-path: unset;
        height: 92px;
        height: unset;
        padding: 16px 15px 16px;
    }

    section.review-sec .row.mt-5 {
        margin-top: 10px !important;
    }

    .bio-img-2 {
        right: -10px;
    }

    .help-img::before {
        display: none;
    }

    .review-txt:before {
        display: none;
    }

    .review-txt h6 span {
        margin-top: 0px;
        height: unset;
    }

    .footer-logo p {
        font-size: 12px;
        margin: 18px 0px;
    }

    .qiuck-links {
        padding-left: 0%;
    }

    .qiuck-links ul li a {
        font-size: 14px;
        line-height: 41px;
    }

    .footer-botom p {
        font-size: 13px;
    }

    .footer-botom {
        margin: 0px 0px 0px 0px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    footer {
        padding: 50px 0px 0px;
    }

    section.main_slider.in .banner_img img {
        height: 210px;
        width: 100%;
    }

    section.main_slider.in h1 {
        font-size: 40px;
        height: 42px;
    }

    section.main_slider.in .carousel-item {
        height: 390px;
    }

    .banner_text i {
        position: absolute;
        /* margin-top: 50px; */
        bottom: -65px;
    }

    section.main_slider.in .banner_text {
        margin-bottom: 20px;
    }

    section.main_slider.in .banner_text i {
        position: unset;
        margin-top: unset;
    }

    .philosophy-txt-inn h3 {
        font-size: 35px;
    }

    .vc_section {
        margin-left: -15px;
        margin-right: -15px;
    }

    section.philosophy {
        padding: 50px 10px 40px;
    }

    p {
        font-size: 13px;
    }

    section.issue {
        padding: 60px 10px;
    }

    .publication-txt h3 {
        font-size: 35px;
        line-height: 43px;
    }

    .publication-txt p {
        font-size: 13px;
    }

    section.bio.inn .bio-img-2 {
        left: -11px;
    }

    section.bio.inn {
        padding: 30px 0px 69px;
    }

    section.contact-us {
        padding: 60px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 34px;
    }

    .cont-1 p {
        font-size: 13px;
    }

    ul.contact_page_sidbar h6 {
        font-size: 13px;
    }

    ul.contact_page_sidbar a {
        font-size: 13px;
    }

    input#gform_submit_button_1 {
        width: 50%;
    }

    .entry-content h2 {
        font-size: 30px;
        line-height: 34px;
    }

    ul.strategic-list-faq li {
        margin-bottom: 10px;
    }

    .review-txt {
        bottom: -24%;
    }

    .issue-txt h4 {
        font-size: 35px;
    }

    .bio-img-2 {
        bottom: -40px;
    }

    section.publications-pg {
        padding: 40px 0px;
    }

    section.publications-pg a {
        display: block;
    }

    section.cookies_page {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 299px) {}

/*Responsive End*/

html {
    overflow-x: hidden;
}

header {
    position: relative !important;
    z-index: 9999;
}