@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --ff-pop: 'Inter', sans-serif;
    --ff-sg: 'Space Grotesk', sans-serif;
}

ul,
ol {
    margin: 0px;
    padding: 0;
    list-style: none;
}

*,
*:before,
*:after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

a,
img {
    border: 0px;
    outline: 0px;
    color: #e96007;
    text-decoration: none;
    vertical-align: top;
}

a:hover,
img:hover {
    outline: 0px;
    text-decoration: none;
}

body {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
    font-family: var(--ff-pop);
    background: #fff;
    color: #282828;
}

input,
select,
textarea,
button {
    font-family: var(--ff-pop);
    font-size: 15px;
}

input[type=file]:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

p {
    margin-bottom: 10px;
    display: block;
}

.scrollup {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #e96007;
    border: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 99;
    display: none;
    border-radius: 100%;
    transition: all .5s;
}

.scrollup:hover {
    border: 1px solid #111;
    color: #111
}

.wrapper {
    width: 100%;
    float: left;
    position: relative;
}

.wrapper_inner {
    position: relative;
    max-width: 1300px;
    padding: 0 15px;
    min-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 15px 0;
    background: #fff;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.header.fix {
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.logo {
    float: left;
    position: relative;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.logo img {
    height: 50px;
    float: left;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.menu {
    float: right;
    position: relative;
}

.menu .menuicon {
    width: 40px;
    height: 40px;
    margin-top: 3px;
    background: #eee;
    line-height: 40px;
    color: #fff;
    background: #E96007;
    border-radius: 3px;
    text-align: center;
    font-size: 24px;
    display: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.menu ul {
    float: left;
}

.menu ul li {
    float: left;
    margin-right: 30px;
    padding: 6px 0;
    position: relative
}

.menu ul li a {
    float: left;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: all ease-in-out .5s;
}


.menu ul li.last {
    margin-right: 20px;
}

.menu ul li:last-child {
    margin-right: 0;
}

.menu ul li.last a {
    background: #e96007;
    border: 1px solid #e96007;
    padding: 8px 15px;
    color: #fff;
    border-radius: 5px;
}

.menu ul li.last a:hover {
    background: #fff;
    color: #e96007;
    border: 1px solid #e96007;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #e96007
}


.menu .dropDown {
    position: absolute;
    top: 90%;
    left: -60px;
    width: 200px;
    height: auto;
    padding: 10px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: none;
    transition: all ease-in-out .5s;
}



.menu ul li:hover .dropDown {
    top: 100%;
    display: block;
}

.menu .dropDown li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.menu .dropDown li a {
    width: 100%;
    margin: 0;
    padding: 12px 10px;
    line-height: 1.4;
    color: #000;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu .dropDown li a:hover,
.header.fix .menu .dropDown li a:hover {
    border-bottom: 1px solid #f59635;
}
















/* ---- banner ---- */
.banner {
    background: #fff;
    overflow: hidden;
    margin-top: 80px;
    /* min-height: 100vh; */
}

.banner .bannerImg {
    width: 100%;
    height: 100vh;
    max-height: 750px;
    object-fit: cover;
    object-position: center;
}

.bannerTxt {
    position: absolute;
    top: 45%;
    left: 50%;
    max-width: 800px;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 99;
}

.bannerTxt .p {
    font-size: 20px;
    font-weight: 300;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: .5;
}

.bannerTxt h2 {
    color: #fff;
    font-size: 60px;
    letter-spacing: 1px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--ff-sg);
    position: relative;
    display: inline-block;
    z-index: 1
}

.carousel-control-next, .carousel-control-prev {
    display: block;
    position: absolute;
    top: auto;
    bottom: 100px;
    left: calc(50% - 40px);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 24px;
    opacity: 1;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    background: #fff;
    color: #333
}

.carousel-control-next {
    left: calc(50% + 15px);
}

/* about_section */
.about_section {
    padding: 60px 0;
    background: #fff;
}

.about_section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .5;
    background-image: url(../images/serv.png);
    background-position: bottom center;
    background-size: cover;
}

.home_h1 {
    font-size: 42px;
    font-weight: 400;
    color: #111;
    line-height: 1.6;
    margin-bottom: 30px;
}

.as_logo {
    float: left;
    width: 28%;
    margin-top: 10px;
}

.as_logo img {
    width: 100%;
    margin-top: 40px;
    height: 260px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
}

.home_h5 {
    text-transform: uppercase;
    color: #b5b5b5;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.home_h5 span {
    position: relative;
}

.home_h5 span:after {
    position: absolute;
    top: 50%;
    left: calc(100% + 30px);
    width: 80px;
    height: 2px;
    content: "";
    transform: translateY(-50%);
    background: #e96007;
}

.as_txt .buttonA {
    color: #e96007;
}

.as_txt {
    float: right;
    width: 67%;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.8;
    color: #545151
}

.as_txt p {
    margin-bottom: 25px;
}

.buttonA {
    font-size: 16px;
    color: #e96007;
    font-weight: 400;
}

.buttonA .fa {
    margin-left: 10px;
    transition: all ease-in-out .5s;
}

.buttonA:hover {
    color: #e96007;
}

.buttonA:hover .fa {
    margin-left: 20px;
}

/* number_section */
.number_section {
    padding-bottom: 60px;
}

.number_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number_grid li {
    background: #F7F7F7;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 50px 30px;
    color: #111;
}

.number_grid li:before {
    position: absolute;
    top: 0;
    left: -20px;
    width: 30px;
    height: 30px;
    content: "";
    background: #E96007;
    transform: skew(-40deg);
}

.number_grid li .number {
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
}

.number_grid li .p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 20px;
    text-transform: uppercase;
}

/* students_pros_section */
.students_pros_section li {
    background: #efefef;
    font-size: 18px;
    line-height: 1.8;
    color: #545151
}

.students_pros_section li .img {
    float: right;
    width: 50%;
    height: 500px;
}

.students_pros_section li:nth-child(even) .img {
    float: left;
}

.students_pros_section li .img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.students_pros_section li h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    line-height: 1;
    margin-bottom: 30px;
    border-left: 3px solid #e96007;
    padding-left: 20px;
}

.students_pros_section li .txt {
    float: left;
    width: 45%;
    padding: 50px 0;
}

.students_pros_section li:nth-child(even) .txt {
    float: right;
}

.students_pros_section li a {
    float: left;
    font-size: 16px;
    background: #fff;
    border: 1px solid #e96007;
    color: #e96007;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 20px;
    transition: all ease-in-out .5s;
}

.students_pros_section li a:hover {
    background: #e96007;
    border: 1px solid #e96007;
    color: #fff;
}

/* news_section */
.news_section {
    padding: 50px 0;
    background-color: #fff;
}

.news_section h2, .clients_section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #111;
    line-height: 1;
    margin-bottom: 50px;
}

.news_section h2:after, .clients_section h2:after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 50px;
    height: 3px;
    content: "";
    background: #e96007;
    transform: translateX(-50%);
}

.is_scroll li {
    float: left;
    width: 100%;
    border: 1px solid #ddd;
    background: #f9f9f9;
    transition: all ease-in-out .5s;
}

.is_scroll li:hover {
    border: 1px solid #e96007;
}

.is_scroll li .img {
    height: 200px;
}

.is_scroll li .img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.is_scroll li .txt {
    padding: 15px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.is_scroll li .txt .date {
    font-size: 14px;
    color: #e96007;
    margin-bottom: 10px;
    opacity: .6;
}

.is_scroll li .txt .p {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.is_scroll li .txt a {
    float: left;
    margin-top: 10px;
    font-size: 14px;
}

.is_scroll li .txt h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    font-family: var(--ff-sg);
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.is_scroll .owl-nav button,
.ts_scroll .owl-nav button {
    float: left;
    margin: 0 5px;
}

.is_scroll .owl-nav .fa,
.ts_scroll .owl-nav .fa {
    float: left;
    font-size: 20px;
    line-height: 32px;
    width: 36px;
    height: 36px;
    text-align: center;
    border: 1px solid #111;
    background: #fff;
    border-radius: 50%;
    transition: all ease-in-out .5s;
}

.is_scroll .owl-nav .fa:hover,
.ts_scroll .owl-nav .fa:hover {
    background: #111;
    color: #fff;
}

.is_scroll .owl-nav,
.ts_scroll .owl-nav {
    position: relative;
    display: flex;
    margin: 0 auto;
    margin-top: 40px;
    justify-content: center;
    align-items: center
}

/* .blogs_section {} */
.blogs_section {
    padding: 50px 0;
    background: #f7f7f7;
}

.blogs_section .is_scroll li {
    background: #fff;
}

.is_scroll li .txt h5 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    font-family: var(--ff-sg);
    margin-bottom: 15px;
}

/* testimonials_section */
.testimonials_section {
    background-image: url(../images/banner1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
}

.testimonials_section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #000;
    opacity: .88;
}

.testimonials_section .carousel-item:before {
    display: none;
}

.testsContent {
    padding: 0 15%;
}

.testsContent h4 {
    font-size: 54px;
    font-family: var(--ff-sg);
    margin-bottom: 30px;
}

.testsContent h4:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '"';
    font-size: 230px;
    opacity: .1;
    transform: translate(-50%, -50%);
}

.testsContent h4 span {
    position: relative;
    z-index: 2;
}

.testsContent h5 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 70px;
}

.testsContent h5 span {
    opacity: .5;
    font-weight: 300;
}

.testsContent .carousel-control {
    bottom: -20px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    transition: all ease-in-out .5s;
}

.testsContent .carousel-control:hover {
    color: #fff;
    background: #e96007
}

/* clients_section */
.clients_section {
    padding: 50px 0;
}

.clients_section .wrapper_inner {
    max-width: 1400px;
    padding: 0 15px;
}

.ts_scroll li {
    float: left;
    width: 100%;
}

.ts_scroll .span img {
    height: 135px;
    width: auto !important;
}

.ts_scroll .span {
    background: #fff;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd
}

/* footer */
.footer {
    background: #242424;
}

.fcnt {
    padding: 70px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.fcnt .box {
    float: left;
    max-width: 350px;
    width: 100%;
}

.fcnt .box a {
    color: #fff;
    font-size: 16px;
}

.fcnt .box h5 i {
    margin-right: 10px;
}

.fcnt .box h5 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    font-family: var(--ff-sg);
}

.fcnt .socail {
    float: right;
    padding-top: 20px;
}

.fcnt .socail a {
    font-size: 30px;
    margin-left: 50px;
    color: #fff
}

.fcnt a:hover {
    color: #e96007
}

.copyrights {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .5)
}

.copyrights span {
    color: #fff;
    opacity: .5;
}

/* page_banner */
.page_banner {
    margin-top: 80px;
}

.page_banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.page_banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #111;
    opacity: .7;
}

.page_banner_txt {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    color: #fff;
    transform: translateY(-50%);
}

.page_banner_txt h1 {
    font-size: 50px;
    font-family: var(--ff-sg);
}

/* page  */
.page {
    padding: 50px 0;
    font-size: 18px;
    line-height: 1.8;
}

.page_img {
    float: right;
    width: 50%;
}

.page_img img {
    width: 100%;
}

.page_txt {
    float: left;
    width: 45%;
}

.page_txt h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: var(--ff-sg);
}

/* page_vision */
.page_vision {
    background: #E96007;
    padding: 30px 0;
}

.page_vision:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    background-position: center;
    opacity: .15;
}

.page_vision li {
    padding: 30px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.page_vision li:last-child {
    border-bottom: 0px
}

.page_vision li .img {
    float: right;
    width: 330px;
    padding: 15px;
    border-radius: 100%;
    border: 3px dotted #fff;
}

.page_vision li .img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
}

.page_vision li:nth-child(even) .img {
    float: left;
}

.page_vision li .txt {
    float: left;
    width: calc(100% - 400px);
}

.page_vision li .txt h3 {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 700;
    font-family: var(--ff-sg);
}

.page_vision li:nth-child(even) .txt {
    float: right;
}

/* page_values  */

/* page_our_values */
.page_our_values {
    background: #F7FBFE;
    padding: 60px 0;
}

.page_our_values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--ff-sg);
}

.aboutLinks {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 2;
}

.aboutLinks li {
    background: #fff;
    padding: 40px 25px;
    color: #666;
    border-radius: 20px;
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.16);
}

.aboutLinks li h4 {
    color: #111;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: var(--ff-sg);
}

.aboutLinks li img {
    height: 60px;
    float: left;
    margin-bottom: 30px;
}

.aboutLinks li .p:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    opacity: .36;
    background: #707070;
    content: "";
}

.aboutLinks li .p {
    padding-top: 20px;
}

/* team_section */
.team_section {
    padding: 50px 0;
    background: #fff;
}

.team_section h2 {
    text-align: center;
    font-size: 36px;
    font-family: var(--ff-sg);
    margin-bottom: 30px;
    font-weight: 700;
    color: #404041
}

.team_section ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team_section ul li {
    padding: 30px;
    text-align: center;
    background: linear-gradient(to left bottom, transparent 51%, #e96007 0) no-repeat 100% 0/3.2rem 3.2rem, linear-gradient(-135deg, transparent 2.25rem, #f5f5f5 0);
}

.team_section ul li .icon {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 150px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: inset 0 -30px 30px rgba(0, 0, 0, 0.1);
}

.team_section ul li .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team_section ul li h5 {
    font-size: 20px;
    margin: 15px 0;
}

/* page_form */
.page_form {
    background: rgb(242, 242, 242);
    padding: 50px 0;
}

.page_form_img {
    float: left;
    width: 47%;
    height: 500px;
    position: sticky;
    top: 140px;
    left: 0;
}

.page_form_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page_form_txt {
    float: right;
    width: 50%;
    background: #fff;
    padding: 40px;
}

.input_control {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: #f7f7f7;
    color: #111;
    border: 0px;
    margin: 10px 0;
}

textarea.input_control {
    height: 100px;
    padding: 10px;
}

.checkbox_group input {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 10px;
}

.checkbox_group label {
    line-height: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.button_control {
    float: left;
    line-height: 40px;
    padding: 0 20px;
    color: #fff;
    border: 2px solid #e96007;
    background: #e96007;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all ease-in-out .5s;
}

.button_control:hover {
    border: 2px solid #e96007;
    background: #fff;
    color: #e96007;
}

/* newspage */
.newspage {
    padding: 0;
}

.newspage ul li {
    float: left;
    margin: 10px 0;
    width: calc((100% - 30px) / 4);
    margin-right: 10px;
}

.newspage ul li:nth-child(4n+4) {
    margin-right: 0;
}

a.backbtn {
    position: absolute;
    right: 15px;
    top: 0px;
    padding: 10px 20px;
    background-color: #e96007;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.bloo span {
    color: #2d2110;
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.bloo h1 {
    color: #e96007;
    font-size: 46px;
    line-height: 55px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

ul.mgmnt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

ul.mgmnt li a {
    float: left;
    color: #fff;
    position: relative;
    width: 100%;
    background-color: #e96007;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

ul.mgmnt li a .mimg {
    width: 100%;
    float: left;
    position: relative;
}

ul.mgmnt li a .mimg span {
    position: absolute;
    left: 50%;
    top: 48%;
    padding: 5px 15px;
    background-color: #fff;
    border: 2px solid #e96007;
    color: #e96007;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-50%);
}

ul.mgmnt li a:hover .mimg span {
    opacity: 1
}

ul.mgmnt li a .mimg:before {
    position: absolute;
    left: 0px;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    content: "";
    transition: all 0.3s;
}

ul.mgmnt li a:hover .mimg:before {
    top: 0px;
}

ul.mgmnt li a:hover .mimg:after {
    opacity: 1;
}

ul.mgmnt li a img, ul.mgmnt li a iframe {
    width: 100%;
    float: left;
    height: 300px;
    object-fit: cover;
    object-position: center center;
}

ul.mgmnt li a h3 {
    font-size: 21px;
    color: #fff;
    padding: 15px 0;
    font-weight: 400;
}


.innerscroll img.fs-gal {
    border: 3px solid #e96007;
}

.homegallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.homegallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}


.contact-section {
    background-color: #f4f8f9;
}


.contact-section .info-column .icon-layer {
    position: absolute;
    left: 170px;
    top: 40px;
    width: 69px;
    height: 69px;
    background-repeat: no-repeat;
}

.contact-section .info-column .image {
    position: relative;
    margin-bottom: 35px;
}

.contact-section .info-column h5 {
    position: relative;
    width: 100%;
    text-align: left;
    color: #000;
    font-weight: 300;
    margin-top: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 32px;
}

.contact-section .info-column h5 span {
    font-weight: 600;
}

.contact-section .info-column h5:before {
    position: absolute;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: #f59635;
    content: "";
    bottom: 0px;
}

.contact-section .info-column p {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
    clear: both;
    font-style: normal;
    color: #000;
    margin-bottom: 30px;
}

.contact-section .info-column ul.contact-list li p {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    list-style: none;
    font-size: 18px;
    line-height: 32px;
    color: #3f3f3f;
    margin-top: 5px;
}

.default-form .form-group {
    display: table;
    outline: 0;
}

.contact-section .info-column .contact-list li {
    position: relative;
    margin-bottom: 10px;
}

.contact-section .info-column .contact-list li strong {
    position: relative;
    display: block;
    color: #c99f1e;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-section .info-column .contact-list li a {
    position: relative;
    color: #f60;
    font-size: 21px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.contact-section .info-column .contact-list li a:hover {
    color: #111111;
}

.contact-section .form-column {
    position: relative;
    margin-bottom: 40px;
}

.contact-section .form-column .inner-column {
    position: relative;
    padding: 60px 100px;
    z-index: 9;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

/* .contact-section .color-layer {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 465px;
    height: 465px;
    z-index: -1;
    border-radius: 50%;
    background-color: #00aead;
} */

.default-form .form-group {
    position: relative;
    margin-bottom: 0px;
}

.default-form .form-group:last-child {
    margin-bottom: 0px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 20px;
    color: #000;
    height: 60px;
    font-size: 18px;
    background: none;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid #dbdbdb;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    outline: 0;
    background-color: #fbfbfb;
    box-shadow: 0;

    margin-bottom: 20px;
}

/*.default-form .form-group input::-webkit-input-placeholder,*/
/*.default-form .form-group textarea::-webkit-input-placeholder {*/
/*	color: #000;*/
/*	background-color: #fbfbfb;*/
/*	border: 1px solid #dbdbdb;*/
/*	box-shadow: 0;*/
/*}*/

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group textarea:focus {}

.default-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px;
    color: #777777;
    height: 140px;
    border-radius: 0;
    border: 1px solid #dbdbdb;
    resize: none;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    box-shadow: 0;
    margin-bottom: 20px;

    color: #000;
    background-color: #fbfbfb;
    border: 1px solid #dbdbdb;
}

.default-form .form-group .theme-btn {
    cursor: pointer;
}

.sec-title h2 {
    position: relative;
    width: 100%;
    text-align: center;
    color: #000;
    font-weight: 300;
    margin-top: 0;
    padding-bottom: 20px;
    margin-bottom: 50px;
    font-size: 32px;
}

.sec-title h2 span {
    font-weight: 600;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    right: 0;
    width: 150px;
    height: 2px;
    background-color: #f59635;
    content: "";
    bottom: 0px;
    margin: auto;
    display: table;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    padding: 8px 40px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f59635;
    text-transform: uppercase;
    border: 0;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.btn-style-one:hover {
    background-color: #fff;
    color: #f59635;
    border: 1px solid #f59635;
}

.info-column {
    width: 30%;
    float: left;
}

.form-column {
    width: 65%;
    float: right;
}

.abtuspg {
    width: 100%;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}
.abtuspg h2 {
    color: #007c88;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    margin-top: 0px;
    font-size: 42px;
}
.attach_files {
    
}
.attach_files .wid35{padding: 0px 15px; float: left; display: inline-block; width: 75%; 
     height: 50px; line-height: 50px;}
.attach_files .wid45{padding: 0px 15px; float: left; display: inline-block; width: 45%;
     height: 50px; line-height: 50px;}
.attach_files .wid20{padding: 0px 15px; float: left; display: inline-block; width: 25%; 
    text-align: center; height: 50px; line-height: 50px; border-left: 1px solid #f2f2f2}

.attach_files .wid35 i{margin-right: 10px; font-size: 18px; color: #d34821;}
.attach_files ul {
    list-style-image: none;
    list-style-type: none;
}
.attach_files ul li {
    border-bottom: 1px solid #ddd;
    display: table;
    width: 100%;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);

    margin-bottom: 5px;
}
.attach_files ul li.bgcol1{
    color: #fff;
    background-color: #e7650f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}
.attach_files ul li a {
    background-color: #233039;
    border-radius: 3px;
    color: #fff;
    display: inline;
    font-size: 14px;
    position: relative;
    top: -2px;
    padding: 8px 25px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
    width: auto;
}
.attach_files ul li a:hover {
    background-color: #e7650f;
}

/*============================
	Responsive starts here
	============================*/

@media screen and (max-width : 1279px) {
    .menu .menuicon {
        display: block;
    }

    .fixedmenu {
        position: fixed;
        top: 80px;
        right: -100%;
        z-index: 999;
        background: #fff;
        padding: 5px 10px;
        border-radius: 0;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        transition: all ease-in-out .5s;
        -webkit-transition: all ease-in-out .5s;
    }

    .fixedmenu.open {
        right: 0;
        box-shadow: 0px 0px 14px 0x rgba(0, 0, 0, 0.5)
    }

    .menu ul li, .menu ul li a {
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
        color: #333
    }

    .menu ul li a {
        padding: 10px 10px;
        border-bottom: 1px solid #eee;
    }

    .menu ul li:hover::before {
        display: none;
        opacity: 0;
    }

    .menu ul li a span {
        float: right;
        margin-top: 15px;
        display: block;
    }

    .menu ul.submenu:before {
        display: none;
    }

    .menu ul li a:hover {
        background: #e96007
    }

    .menu ul li.last a {
        margin: 5px 0;
    }

    body.menuOpened {
        overflow: hidden;
    }

    .menuMasked {
        position: fixed;
        top: 80px;
        right: 0;
        width: 0px;
        height: 100vh;
        z-index: 9;
        background: rgba(0, 0, 0, 0.5);
        transition: all ease-in-out .5s;
    }

    .menuMasked.open {
        width: 100%;
    }

    .menu .top_socail {
        width: 100%;
        border-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }

    .banner .bannerImg {
        max-height: 600px;
    }

    .newspage ul li,
    .newspage ul li:nth-child(4n+4) {
        width: calc((100% - 30px) / 3);
        margin-right: 15px;
    }

    .newspage ul li:nth-child(3n+3) {
        margin-right: 0;
    }

}

@media screen and (max-width : 979px) {
    .wrapper_inner {
        max-width: 768px;
    }

    .bannerTxt h2 {
        font-size: 40px;
        line-height: 1.4;
    }

    .banner .bannerImg {
        max-height: 500px;
    }

    .home_h1 {
        font-size: 32px;
    }

    .number_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testsContent {
        padding: 0;
    }

    .students_pros_section li .img {
        width: 100%;
        height: 400px;
    }

    .students_pros_section li .txt {
        width: 100%;
    }

    .page_banner img {
        height: 300px;
    }

    .page_banner_txt h1 {
        font-size: 36px;
    }

    .aboutLinks {
        grid-template-columns: repeat(2, 1fr);
    }

    .team_section ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .newspage ul li,
    .newspage ul li:nth-child(3n+3),
    .newspage ul li:nth-child(4n+4) {
        width: 49%;
        margin-right: 0;
    }

    .newspage ul li:nth-child(even) {
        float: right;
    }

    .bloo h1 {
        font-size: 30px;
    }

    a.backbtn {
        position: static;
        margin-bottom: 10px;
    }

    .page_img {
        width: 100%;
        margin-bottom: 20px;
    }

    .page_txt {
        width: 100%;
    }

    .homegallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-column, .form-column {
        width: 100%;
    }

    .contact-section .form-column .inner-column {
        padding: 30px;
    }

    .contact-section .form-column {
        margin-bottom: 0;
    }

    .page_form_img {
        width: 100%;
        position: static;
        height: 300px;
    }

    .page_form_txt {
        width: 100%;
    }
    .menu .dropDown{
        left: 0px;
        width: 100%;
    }
    .attach_files ul {
        margin-left: -25px;
    }    
    .attach_files ul li.bgcol1{display: none;}
    .attach_files .wid35, .attach_files .wid20{height: auto; line-height: normal; 
        width: 100%;}
    .attach_files ul li{margin-bottom: 15px;border: 1px solid #ccc;}
    .attach_files .wid35{padding: 20px 15px; font-size: 14px; display: block;}
}

@media screen and (max-width : 767px) {
    .wrapper_inner {
        max-width: 550px;
    }

    .logo img {
        height: 40px;
    }

    .menu .menuicon {
        margin-top: 0;
        font-size: 20px;
    }

    .fixedmenu {
        max-width: 100%;
        top: 70px;
        height: calc(100% - 70px);
        border-top: 1px solid #eee;
    }

    .banner {
        margin-top: 70px;
    }

    .banner .bannerImg {
        height: 400px;
    }

    .bannerTxt h2 {
        font-size: 30px;
    }

    .bannerTxt .p {
        font-size: 16px;
    }

    .carousel-control-next, .carousel-control-prev {
        bottom: 10px
    }

    .about_section {
        padding: 30px 0;
    }

    .home_h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .as_logo {
        width: 100%;
        margin-top: 0;
    }

    .as_logo img {
        margin-top: 20px;
        height: 150px;
    }

    .as_txt {
        width: 100%;
        font-size: 18px;
    }

    .number_grid {
        grid-template-columns: 1fr;
    }

    .number_grid li {
        padding: 30px 15px;
    }

    .students_pros_section li .img {
        height: 230px
    }

    .students_pros_section li h2, .news_section h2, .clients_section h2, .testsContent h4 {
        font-size: 30px;
    }

    .students_pros_section li .txt {
        padding: 30px 0;
    }

    .students_pros_section li {
        font-size: 16px;
    }

    .news_section {
        padding: 30px 0;
    }

    .fcnt {
        padding-top: 30px;
    }

    .fcnt .box {
        width: 100%;
        margin-bottom: 20px;
    }

    .fcnt .box h5 {
        margin-bottom: 10px;
    }

    .fcnt .socail {
        width: 100%;
    }

    .fcnt .socail a {
        font-size: 30px;
        margin-left: 0;
        margin-right: 30px;
    }

    .page_banner {
        margin-top: 70px;
    }

    .page_banner img {
        height: 200px;
    }

    .page_banner_txt h1 {
        font-size: 30px;
    }

    .page {
        padding: 30px 0;
        font-size: 16px;
    }

    .page_txt h2 {
        font-size: 28px;
    }

    .aboutLinks {
        grid-template-columns: 1fr;
    }

    .team_section ul {
        grid-template-columns: 1fr;
    }

    .page_vision li {
        text-align: center;
    }

    .page_vision li .img, .page_vision li:nth-child(2n) .img {
        width: 280px;
        height: 280px;
        float: none;
        display: inline-block;
    }

    .page_vision li .img img {
        width: 100%;
        height: 100%;
    }

    .page_vision li .txt {
        width: 100%;
        text-align: left;
    }

    .page_vision li .txt h3 {
        font-size: 30px;
        margin-top: 30px;
    }

    .team_section h2, .page_our_values h2 {
        font-size: 30px;
    }

    .newspage {
        padding: 0;
    }

    .newspage ul li,
    .newspage ul li:nth-child(3n+3),
    .newspage ul li:nth-child(4n+4) {
        width: 100%;
    }

    .bloo h1 {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    ul.mgmnt {
        grid-template-columns: 1fr
    }

    ul.mgmnt li a img {
        height: 250px;
    }

    .homegallery {
        grid-template-columns: 1fr;
    }

    .contact-section .form-column .inner-column {
        padding: 15px;
    }

    .sec-title h2 {
        font-size: 28px;
    }

    .page_form_txt {
        padding: 10px;
    }

    .ts_scroll .span img {
        height: 80px;
    }
    .attach_files ul {
        margin-left: -25px;
    }    
    .attach_files ul li.bgcol1{display: none;}
    .attach_files .wid35, .attach_files .wid20{height: auto; line-height: normal; 
        width: 100%;}
    .attach_files ul li{margin-bottom: 15px;border: 1px solid #ccc;}
    .attach_files .wid35{padding: 20px 15px; font-size: 14px; display: block;}
}

@media screen and (max-width : 359px) {
    .wrapper_inner {
        max-width: 320px;
    }
}