@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* HEADINGS */

h1,
p {
    line-height: 1.4;
    font-size: 16px;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    color: #000;
    font-size: 1.3rem;
}

img {
    width: 100%;
}

body {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 1170px;
    margin: auto;
}

section {
    width: 100%;
    float: left;
}

.btn {
    display: table;
    margin: auto;
    background-color: gray;
    color: #fff;
    width: 150px;
    height: 50px;
}

.colo {
    color: #fe7600 !important;
}

.back-color {
    background: #fe7600 !important;
}


/*********************************top-link-button-start******************************************/

#top-link-block {
    position: absolute;
    bottom: -82px;
    right: 10px;
}

#top-link-block.affix {
    position: fixed;
    bottom: 18px;
    right: 10px;
    z-index: 2;
}

#top-link-block a {
    font-size: 18px;
    padding: 10px 10px;
    border-radius: 0;
    border: none;
    color: #fff;
    background: #fe7600;
    display: block;
    transition: all ease .5s;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
}

#top-link-block a:hover {
    color: #fe7600;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    border-radius: 8px;
    /* opacity: 0.5; */
}

.show-error-msg{
    color:red;
}
.echron-loader {
    display: none;
    text-align: center;
    width: 100%;
}
.echron-loader img {
    width: 50px;
}
/* BASIC SETUP */

header {
    width: 100%;
    height: 80px;
    float: left;
    z-index: 999;
    box-shadow: 0 3px 4px #e7e7e7;
}

.grad-bar {
    width: 100%;
    height: 5px;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: gradbar 15s ease infinite;
    -moz-animation: gradbar 15s ease infinite;
    animation: gradbar 15s ease infinite;
}


/* fixed header */

header.fixed {
    width: 100%;
    height: 87px;
    background-color: #fff;
    position: fixed;
}


/* NAVIGATION */

.navbar {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.navbar img {
    width: 150px;
    justify-self: start;
}

.navbar ul {
    float: right;
    margin-top: 6px;
}

.navbar ul li {
    float: left;
    list-style: none;
}

.navbar ul li:first-child {
    display: none;
}

.nav-item a {
    color: #392f2f;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-out;
    padding: 10px 6px 0;
    /* position: relative; */
}

.nav-item a::before {
    position: absolute;
    content: '';
    top: 12px;
    left: -1px;
    background: #1a1818c4;
    width: 2px;
    height: 15px;
    display: none;
}

.nav-item:last-child a::before,
.nav-item:nth-child(2) a::before {
    content: none;
}

.nav-item a:hover {
    color: #fe7600;
}

header ul li:last-child a:last-child {
    background: #fe7600;
    border-radius: 24px;
    width: 176px;
    display: inline-block;
    height: 29px;
    text-align: center;
    line-height: 9px;
    color: #fff;
    margin-top: -4px;
    transition: .3s;
}

header ul li:last-child a:last-child:hover {
    background: #3f3f3f;
}


/* SECTIONS */

.headline {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/jPLiQ-9/mountains-background-for-titles-intro-projects-and-etc_ew22rur3l__F0000.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    display: flex;
    padding: 50px 20px;
    justify-content: space-around;
}

.feature-container {
    flex-basis: 30%;
    margin-top: 10px;
}

.feature-container p {
    color: #000;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}

.feature-container img {
    width: 100%;
    margin-bottom: 15px;
}


/* SEARCH FUNCTION */

#search-icon {
    font-size: 0.9rem;
    margin-top: 3px;
    margin-left: 15px;
    transition: color 0.3s ease-out;
}

#search-icon:hover {
    color: #3498db;
    cursor: pointer;
}

.search {
    transform: translate(-35%);
    -webkit-transform: translate(-35%);
    transition: transform 0.7s ease-in-out;
    color: #3498db;
}

.no-search {
    transform: translate(0);
    transition: transform 0.7s ease-in-out;
}

.search-input {
    position: absolute;
    top: -4px;
    right: -125px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.search-active {
    opacity: 1;
    z-index: 0;
}

input {
    border: 0;
    border-left: 1px solid #ccc;
    border-radius: 0;
    /* FOR SAFARI */
    outline: 0;
    padding: 5px;
}


/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #3f3f3f;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-toggle {
    justify-self: end;
    margin-right: 25px;
    display: none;
}

.menu-toggle:hover {
    cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}


/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}


/* fixed header end */

.top_banner {
    width: 100%;
    float: left;
    position: relative;
    background: url(../images/banner2.jpg);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    padding-bottom: 20px;
}

.top_banner::before {
    position: absolute;
    content: '';
    bottom: -36px;
    left: 0;
    width: 100%;
    height: 65px;
    background: #fff;
    z-index: 1;
    transform: rotate(178deg);
}
/* ------------------banner marquee css start --------------- */

.top_banner .marq-bx{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
}
.top_banner .marq-bx .upcoming{
    background-color: black;
    color: #fff;
    flex-shrink: 0;
    padding-left: 5px;
    padding-right: 5px;
    z-index: 1;
}
.marq .marq-track{
    display: flex;
    animation: scroll 65s linear infinite;
}
.marq .marq-track:hover{
    animation-play-state: paused;
}
@keyframes scroll {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-11500px + 1263px));
    }
}
.marq .marq-track >*,
.marq .marq-track >*>*{
    display: inline;
}
.marq .marq-track .m-item:nth-child(5n+1){
    background-color: #e50b59;
}
.marq .marq-track .m-item:nth-child(5n+2){
    background-color: #fa6807;
}
.marq .marq-track .m-item:nth-child(5n+3){
    background-color: #4ece05;
}
.marq .marq-track .m-item:nth-child(5n+4){
    background-color: #188cfd;
}
.marq .marq-track .m-item:nth-child(5n+5){
    background-color: #b906d3;
}
.marq .marq-track .m-item .one{
    display: inline;
    margin: 0 10px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.marq .marq-track .m-item .one i{
    color:inherit;
    margin-right: 5px;
}
.marq .marq-track .m-item,
.top_banner .marq-bx .upcoming{
    padding-top: 5px;
    padding-bottom: 5px;
}

/* ------------------banner marquee css end --------------- */


.bann_txt {
    width: 66%;
    float: left;
    margin-top: 250px;
}

.bann_txt h1 {
    font-size: 10px;
    position: absolute;
    top: 0px;
    color: rgba(0, 0, 0, 0);
}

.bann_txt h2 {
    font-size: 40px;
    color: #fff;
    line-height: 47px;
    text-transform: uppercase;
    font-weight: 800;
}

.bann_txt h2 span {
    display: block;
    font-size: 65px;
    margin-bottom: 10px;
}

.bann_txt p {
    font-size: 22px;
    line-height: 34px;
    color: #fff;
    font-weight: 300;
}

.bann_form {
    width: 31%;
    float: left;
    background: #fff;
    padding: 30px 20px;
    margin-top: 61px;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 6px #b7b7b7;
}

.bann_form select,
.bann_form input {
    width: 100%;
    float: left;
    margin: 3% 0;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #bdbdbd;
    background-color: #f2f2f2;
}

.bann_form select,
.bann_form input:-moz-placeholder {
    color: #00000085;
}

.bann_form h3 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #b3b0b0;
}

.bann_form .btn {
    background-color: rgb(14, 14, 14);
    color: #fff;
    width: 324px;
    border: 1px solid rgb(14, 14, 14);
    margin-top: 9px;
    display: unset;
    height: 41px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
}

.bann_form .btn:hover {
    background: #fe7600;
    border: none;
}

.testing {
    padding: 35px 0;
    overflow: hidden;
}

.testing .img_lft {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 30px;
}

.testing .main-toef {
    justify-content: space-between;
    text-align: center;
}

.testing .main-toef p {
    font-size: 16px;
    padding-left: 20px;
    margin-top: 10px;
    color: #444;
    width: 100%;
    float: left;
}

.testing .img_lft::before {
    position: absolute;
    content: '';
    background: url(../images/line.png) no-repeat;
    top: 0;
}

.testing .img_lft img {
    width: 100%;
}

.testing .ryt_txt {
    width: 50%;
    float: left;
    animation-name: fadeInRight;
    transition-delay: .8s;
}

.testing .ryt_txt small {
    color: #fe7600;
    font-weight: 500;
    font-size: 15px;
}

.testing .ryt_txt h2 {
    font-size: 25px;
    /* margin: 15px 0; */
    color: #404040;
    margin-bottom: 6px;
}

.testing .ryt_txt p {
    font-size: 16px;
    color: #444;
}

.testing .ryt_txt ul li {
    list-style: none;
    margin: 2% 0;
    color: #444;
    position: relative;
    padding-left: 22px;
    line-height: 24px;
}

.testing .ryt_txt ul li:before {
    position: absolute;
    content: "\f058";
    font: normal normal normal 16px/1 FontAwesome;
    left: 0;
    top: 5px;
    color: #fe7600;
}

.elts_typ {
    padding: 35px 0;
    background: #f3f8fd;
}

.main_head {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #404040;
}

.elts_typ p {
    color: #444;
    text-align: center;
    font-size: 16px;
}

.elts_typ ul {
    margin: 20px 0;
    display: flex;
}

.elts_typ ul li {
    list-style: none;
    width: 23%;
    float: left;
    margin: 1%;
    border: 1px solid #f2f2f2;
    padding: 20px 15px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 1px 2px 2px #e8e8e8;
}

.elts_typ ul li h3 {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
    text-transform: uppercase;
}

.elts_typ ul li p {
    text-align: justify;
    line-height: 22px;
    font-size: 13px;
}

.elts_typ ul li img {
    width: 55px;
}

.elts_typ ul li figure {
    height: 67px;
}

.elts_typ ul li:nth-child(2) figure img {
    width: 65px;
}

.common_cont {
    width: 100%;
    float: left;
    text-align: center;
}

.common_cont h2 {
    font-size: 15px;
    margin: 15px 0;
    font-weight: 700;
}

.common_cont a {
    text-decoration: none;
    background: #fe7600;
    color: #fff;
    border-radius: 32px;
    width: 285px;
    height: 40px;
    line-height: 40px;
    transition: .3s;
}

.common_cont a:hover {
    background: #3f3f3f;
}

.elts_acdmic {
    padding: 35px 0;
    background: rgb(255, 255, 255);
    background: #d3f3ff;
}

.elts_acdmic .acdmic_lft {
    width: 50%;
    float: left;
    margin: 0;
    padding-right: 71px;
}

.elts_acdmic .acdmic_lft p {
    font-size: 15px;
    line-height: 22px;
    color: #444;
    text-align: justify;
    margin: 10px 0;
}

.elts_acdmic .acdmic_lft ul {
    margin-left: 30px;
}

.elts_acdmic .acdmic_lft p:first-child {
    color: #fe7600;
}

.elts_acdmic .acdmic_lft h3 {
    font-size: 30px;
}

.elts_acdmic .acdmic_lft h2 {
    font-size: 25px;
    color: #404040;
    margin-bottom: 21px;
}

.elts_acdmic .acdmic_ryt {
    width: 40%;
    float: left;
}

.elts_acdmic .acdmic_ryt ul li {
    list-style: none;
    margin: 0;
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

.elts_acdmic .acdmic_ryt ul li h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 25px;
    margin: 0;
}

.elts_acdmic .acdmic_ryt ul li p {
    font-size: 15px;
    color: #444;
    padding-left: 25px;
    line-height: 24px;
}

.elts_acdmicl {
    padding: 35px 0;
    background: #fff;
}

.elts_acdmicl .acdmic_lft {
    width: 40%;
    float: left;
    margin: 0;
    padding-right: 40px;
    margin-bottom: 30px;
}

.elts_acdmicl .acdmic_lft p {
    font-size: 15px;
    line-height: 22px;
    color: #444;
    /*  padding: 10px 0; */
    text-align: justify;
}

.elts_acdmicl .acdmic_lft ul {
    margin-left: 20px;
}

.elts_acdmicl .acdmic_lft p:first-child {
    color: #fe7600;
}

.elts_acdmicl h2 {
    font-size: 30px;
    text-align: center;
    /* margin: 10px 0; */
    margin-bottom: 40px;
}

.elts_acdmicl .acdmic_ryt {
    width: 40%;
    float: left;
    /*  margin: 30px 0; */
}

.elts_acdmicl.sub-3 .acdmic_ryt {
    margin: 50px 0;
}

.elts_acdmicl .acdmic_ryt h3 {
    font-size: 30px;
}

.elts_acdmicl .acdmic_ryt ul li {
    list-style: none;
    margin: 0;
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

.elts_acdmicl .acdmic_ryt ul li h2 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
    margin: 0;
    color: #404040;
    text-align: left;
}

.elts_acdmicl .acdmic_ryt ul li p {
    font-size: 15px;
    color: #444;
    line-height: 24px;
}

.countries {
    padding: 35px 0;
    background-color: #f3f8fd;
}

.countries ul li {
    width: 25%;
    float: left;
    text-align: center;
    list-style: none;
}

.countries ul {
    margin: 40px 0;
}

.countries ul li strong {
    font-size: 24px;
    display: block;
    margin-top: 10px;
    font-weight: 800;
}

.countries .country-accpt li img {
    width: 60px;
}

.countries .country-accpt li:nth-child(1) figure img {
    width: 50px;
}

.countries ul.ul_second_list {
    width: 100%;
    float: left;
    margin-top: 80px;
}

.countries ul.ul_second_list img {
    width: 100%;
}

.countries ul.ul_second_list li {
    text-align: left;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 33.33%;
}

.countries ul.ul_second_list li h3 {
    position: absolute;
    left: 22px;
    bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}

.countries ul.ul_second_list li h3::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 3px;
    height: 32px;
    background: red;
}

.countries ul.ul_second_list li img {
    margin-bottom: -4px;
}

.countries ul.ul_second_list li .cuontry_inn_txt {
    position: absolute;
    bottom: -392px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 19, 55, 0.74);
    transition: .8s;
    padding: 8px 0;
}

.countries ul.ul_second_list li .cuontry_inn_txt span {
    color: #fff;
    display: block;
    padding-left: 20px;
    text-transform: uppercase;
    margin: 15px 0;
}

.countries ul.ul_second_list li:hover h3 {
    display: none;
}

.countries ul.ul_second_list li:hover .cuontry_inn_txt {
    bottom: 0;
}

.countries ul.ul_second_list li .cuontry_inn_txt p {
    padding: 10px 0 0 20px;
    color: #fff;
    font-size: 15px;
    position: relative;
}

.countries ul.ul_second_list li .cuontry_inn_txt small {
    color: #fff;
    font-size: 15px;
    padding: 55px 25px 0;
    float: left;
}

.countries ul.ul_second_list li .cuontry_inn_txt p::before {
    position: absolute;
    content: "\f00c";
    font: normal normal normal 12px/1 FontAwesome;
    left: 5px;
    top: 16px;
}

.countries ul.ul_second_list li .cuontry_inn_txt a.btn {
    text-decoration: none;
    height: 36px;
    width: 193px;
    border-radius: 20px;
    background: #1a1818;
    color: #fff;
    text-align: center;
    line-height: 34px;
    margin: 92px 23px;
    font-size: 14px;
    text-transform: uppercase;
}

.countries .common_cont a {
    width: 333px;
    margin-top: 20px;
}

.price_sec {
    padding: 35px 0;
    background: url(../images/price-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.price_sec .slick-slide {
    opacity: 1;
}

.price_sec .main_head {
    color: #fff;
}

.price_sec span {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: #1a1818;
    font-weight: 700;
    display: block;
}

.price_sec strong {
    color: #fff;
}

.price_sec p {
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    padding: 17px 280px;
}

.price_sec .Pattern p {
    color: #000000;
    padding: 0 15px 0 10px;
    text-align: left;
    font-size: 14px;
}

.price_sec .price_tab {
    width: 48%;
    float: left;
    background: #fff;
    border-radius: 13px;
    padding: 20px 10px;
    margin: 1%;
    position: relative;
    transition: .5s;
}

.price_sec .Pattern {
    display: flex;
    flex-wrap: wrap;
}

.price_sec i.fa-angle-left,
.price_sec i.fa-angle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 30px;
    z-index: 2;
    text-align: center;
    line-height: 26px;
    color: #fff;
}

.price_sec i.fa-angle-left {
    left: -21px;
}

.price_sec i.fa-angle-right {
    right: -21px;
}

.price_sec .price_tab h2 {
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    margin: 20px 0 5px;
}


/* .price_sec .price_tab h3.active {
    background: #c60a1b;
    color: #fff;
} */

.price_sec .price_tab h3 {
    background: #e9e9e9;
    padding: 13px 35px;
    width: 219px;
    text-transform: uppercase;
    border-top-right-radius: 26px;
    border-bottom-right-radius: 26px;
    transition-duration: .5s;
    position: relative;
    z-index: 1;
}

.price_sec .price_tab h3::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c60a1b;
    border-top-right-radius: 26px;
    border-bottom-right-radius: 26px;
    z-index: -1;
    transition-duration: .5s;
}

.price_sec .price_tab:hover h3:before {
    width: 100%;
}

.price_sec .price_tab:hover h3 {
    color: #fff;
}

.price_sec .price_tab ul li {
    list-style: none;
    padding-left: 35px;
    margin: 10px 0;
    position: relative;
    font-size: 15px;
}

.price_sec .price_tab ul li::before {
    position: absolute;
    content: '\f00c';
    font: normal normal normal 13px/1 FontAwesome;
    top: 5px;
    left: 14px;
}

.price_sec .price_tab ul li:first-child::before {
    display: none;
}

.price_sec .price_tab ul {
    padding: 6px 0;
    width: 95%;
    float: left;
}

.price_sec .price_tab ul li h4 {
    text-transform: uppercase;
    margin-top: 19px;
    font-size: 16px;
}

.price_sec .price_tab ul li .fa-check {
    font-size: 13px;
}

.price_sec .common_cont h2 {
    color: #fff;
}

.price_sec .common_cont .btn {
    background: #fe7600;
    color: #fff;
    height: 20px;
    line-height: 35px;
    border: 1px solid #ffffff;
}

.price_sec .common_cont .btn:hover {
    background: #fe7600;
    border: 1px solid #ffffff;
}


/************************thanks-page-start****************************/

.thanks_main {
    width: 100%;
    float: left;
}

.thankyou {
    width: 700px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    text-align: center;
    padding-bottom: 25px;
}

.thankyou h1 {
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    color: #37c1fd;
    background: none;
}

.thankyou p {
    margin-top: 10px;
    padding-top: 10px;
}

.thankarea {
    width: 100%;
    float: left;
    background: #ffdb4c;
    padding: 50px 0;
    margin-bottom: 50px;
}

.thankarea .fa {
    background: #fff;
    width: 150px;
    font-size: 90px;
    color: #37c1fd;
    border-radius: 100%;
    line-height: 150px;
}

.thankyou .para {
    color: red;
    font-size: 16px;
    line-height: 22px;
}

.thankyou ul {
    margin-top: 20px;
    list-style: none;
}

.thankyou ul li {
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

.thankyou ul li:first-child {
    border-top: 1px solid #ccc;
}

.thankyou .mail {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    font-weight: 400;
    text-transform: none;
    border-top: 1px dotted #ccc;
}

.thankyou .mail strong {
    font-weight: 700;
}


/*************************** (echron-ielts-score) start *****************************/

.echron-ielts-score.score {
    background: #d3f3ff;
}

.echron-ielts-score {
    padding: 35px 0;
    position: relative;
}

.echron-ielts-score h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    color: #404040;
}

.echron-ielts-score p {
    text-align: center;
    padding: 0 90px 0 90px;
    margin-top: 16px;
    font-size: 16px;
}

.echron-ielts-score h4 {
    margin-top: 40px;
    font-weight: 500;
}

.echron-ielts-score table {
    width: 100%;
    margin-top: 15px;
}

.echron-ielts-score table,
th,
td {
    border: 1px solid #0000001f;
    border-collapse: collapse;
}

.echron-ielts-score table tr:nth-child(odd) {
    background: #f6f6f6;
}

.echron-ielts-score table tr td {
    font-size: 15px;
    padding: 15px;
}

.echron-ielts-score table tr td:nth-child(2) {
    padding-left: 20px;
}

.echron-ielts-score table th {
    width: 15%;
    padding: 10px;
    font-size: 15px;
    background: #fe7600;
    color: #ffffff;
    text-transform: uppercase;
}

.echron-ielts-score table th:nth-child(2) {
    padding-left: 20px;
    width: 85%;
}


/* .echron-ielts-score::after {
    position: absolute;
    content: '';
    background: #0000001f;
    width: 72%;
    height: 1px;
    bottom: 0;
    left: 273px;
} */


/*************************** (echron-ielts-score) end *****************************/


/*************************** (echron-score-comparison) start *****************************/

.echron-score-comparison {
    padding: 35px 0;
}

.echron-score-comparison h2 {
    text-align: center;
    font-size: 30px;
}

.echron-score-comparison p {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
}

.echron-score-comparison table {
    width: 100%;
    margin-top: 20px;
}

.echron-score-comparison table tr th {
    width: 25%;
    padding: 10px;
    color: #ffffff;
    background: #fe7600;
}

.echron-score-comparison table tr td {
    text-align: center;
    padding: 10px;
}

.echron-score-comparison table tr:nth-child(2n+1) {
    background: #f6f6f6;
}


/*************************** (echron-score-comparison) end *****************************/


/*************************** WASHIM SECTION 8 CSS END *****************************/


/*************************** WASHIM SECTION 9 CSS START *****************************/


/*************************** (echron-ielts-tip) start *****************************/

.echron-ielts-tip {
    padding: 35px 0;
    background-image: url(../images/landing-bg-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.echron-ielts-tip .list-1 {
    width: 23%;
    float: left;
    height: 320px;
    padding: 15px 0;
    margin: 1%;
    border-radius: 10px;
    border: 1px solid #cccc;
    box-shadow: 1px 2px 1px #ccc;
    transition: .5s;
    background: #fff;
}

.echron-ielts-tip .list-1:hover {
    background: #fe7600;
    color: #fff;
}

.echron-ielts-tip .list-1 h4 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 17px;
    margin: 10px;
}

.echron-ielts-tip .list-1 ul {
    width: 100%;
    padding: 0px 25px;
}

.echron-ielts-tip .list-1 ul li {
    width: 100%;
    float: left;
    list-style: disc;
    padding: 5px;
    text-transform: capitalize;
}

.echron-ielts-tip h3 {
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    color: #000;
    margin-top: 50px;
    padding-bottom: 20px;
}

.echron-ielts-tip .common_cont {
    width: 100%;
    float: left;
}

.echron-ielts-tip .common_cont h2 {
    margin: 10px 0;
    font-size: 15px;
}

.echron-ielts-tip .common_cont a {
    text-decoration: none;
    background: #fe7600;
    color: #fff;
    border-radius: 32px;
    width: 235px;
    height: 40px;
    line-height: 38px;
    font-size: 15px;
}

.echron-ielts-tip .common_cont a:hover {
    background: #3f3f3f;
}


/*************************** (echron-ielts-tip) end *****************************/


/*************************** WASHIM SECTION 9 CSS START *****************************/

.testing.five_mits .img_lft figure {
    position: relative;
}

.testing.five_mits .img_lft figure::before {
    position: absolute;
    content: '';
    top: 24px;
    right: 115px;
    width: 48px;
    height: 296px;
    background-color: #fe7600;
    z-index: -1;
}

.testing.five_mits .ryt_txt ul li {
    list-style: disc !important;
    padding-left: 0;
    margin-left: 15px;
    font-size: 15px;
}

.testing.five_mits .ryt_txt ul li::before {
    display: none;
}

.testing.five_mits .ryt_txt .common_cont h2 {
    text-align: left;
    font-size: 15px;
    padding-left: 8px;
}

.testing.five_mits .ryt_txt .common_cont .btn {
    margin-left: 0;
    width: 235px;
}

.testing.five_mits.exam .img_lft figure::before {
    display: none;
}

.testing.five_mits.exam {
    position: relative;
}

.testing.five_mits.exam .img_lft ul li {
    list-style: none;
    position: relative;
    z-index: 1;
    padding-bottom: 168px;
}

.testing.five_mits.exam .img_lft ul li:nth-child(2) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    padding-bottom: 0;
}

.testing.five_mits.exam .img_lft ul li:last-child {
    z-index: -1;
    padding-bottom: 0;
}


/*******************vinod how work start********************************/

.how-req {
    width: 100%;
    float: left;
    padding: 100px 0;
    background: url(../images/hw-wrk-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.how-req .how-req-left {
    float: left;
    width: 50%;
}

.how-req .how-req-left h2 {
    font-size: 15px;
    color: #000000;
    text-transform: uppercase;
}

.how-req .how-req-left h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #1f2e3d;
    padding-bottom: 15px;
}

.how-req .how-req-left p {
    color: #1f2e3d;
    font-size: 16px;
    line-height: 27px;
}

.how-req .how-req-left ul.how-req-lft {
    width: 100%;
    float: left;
    padding-bottom: 10px 0;
}

.how-req .how-req-left ul.how-req-lft li {
    color: #1f2e3d;
    margin-left: 13px;
    font-size: 15px;
}

.how-req .how-req-left span.how-req-txt {
    color: #000000;
    padding: 20px 0;
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 15px;
}

.how-req .how-req-left .common_cont a.btn {
    text-decoration: none;
    background: #2c3941;
    color: #fff;
    border-radius: 32px;
    height: 40px;
    line-height: 37px;
    float: left;
    transition: .3s;
}

.how-req .how-req-left .common_cont a.btn:hover {
    background: #fe7600;
}


/*******************vinod understanding start********************************/

.undrstnd {
    width: 100%;
    float: left;
    padding: 35px 0;
}

.undrstnd .undrstnd-left {
    float: left;
    width: 50%;
}

.undrstnd .undrstnd-left h2 {
    font-size: 15px;
    color: #e31837;
    text-transform: uppercase;
}

.undrstnd .undrstnd-left h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: #1f2e3d;
    padding-bottom: 15px;
}

.undrstnd .undrstnd-left p {
    color: #1f2e3d;
    font-size: 16px;
    line-height: 27px;
    padding-bottom: 10px;
}

.undrstnd .undrstnd-left ul.undrstnd-lft {
    width: 100%;
    float: left;
    padding-bottom: 10px 0;
}

.undrstnd .undrstnd-left ul.undrstnd-lft li {
    color: #1f2e3d;
    margin: 1% 0 0 13px;
    font-size: 15px;
}

.undrstnd .undrstnd-left span.undrstnd-txt {
    color: #000000;
    padding: 20px 0;
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 15px;
}

.undrstnd .undrstnd-left .common_cont a.btn {
    text-decoration: none;
    background: #fe7600;
    color: #fff;
    border-radius: 32px;
    height: 40px;
    line-height: 37px;
    float: left;
    transition: .3s;
}

.undrstnd .undrstnd-left .common_cont a.btn:hover {
    background: #2c3941;
}

.undrstnd .undrstnd-right {
    float: left;
    width: 48%;
    position: relative;
    margin-left: 2%;
}

.undrstnd .undrstnd-right ul li {
    position: absolute;
    list-style: none;
    right: 0;
}

.undrstnd .undrstnd-right ul li:nth-child(1) {
    position: absolute;
    width: 50%;
    top: 74px;
    z-index: 1;
    left: 100px;
}

.undrstnd .undrstnd-right ul li img {
    width: 370px;
}

.deal {
    padding: 35px 0;
    background: url(../images/landing-bg-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.deal .main_head {
    color: #fff;
}

.deal .deal_top_tx {
    text-align: center;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.deal ul li {
    list-style: none;
    width: 31.33%;
    float: left;
    height: 200px;
    background: #fff;
    padding: 44px 25px;
    margin: 1%;
}

.deal ul li h3 {
    font-size: 19px;
    color: #262626;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.deal ul li p {
    font-size: 14px;
    color: #3b3b3b;
    line-height: 24px;
}

.deal .common_cont h2 {
    color: #fff;
    margin: 5px 0;
}

.deal .common_cont .btn {
    background: #2c3941;
    height: 20px;
    line-height: 33px;
    border: 1px solid transparent;
    transition: .3s;
}

.deal .common_cont .btn:hover {
    background: #fe7600;
    border: 1px solid #ffffff;
}
/* online exam section starts */
/* online exam section starts */
/************************exam page section start****************************/

.price_sece {
    padding: 35px 0;
    background-color: rgb(255, 241, 241);
    background: url(../images/price-bg.jpg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.price_sece .price_table {
    width: 60%;
    background: #fff;
    border-radius: 13px;
    padding: 20px 10px;
    margin: auto;
    position: relative;
    transition: .5s;
}

.price_sece .price_table h2 {
    color: #404040;
    text-align: center;
    font-size: 25px;
}
.price_sece .price_table .time-date tr:nth-child(odd){
    background-color: #e3dede;
}
.price_sece .price_table table {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}
.price_sece .price_table table tr th{
    padding: 10px 0;
    font-size: 16px;
}
.price_sece .price_table th,
.price_sece .price_table td {
    border: 1px solid #0000001f;
}
.price_sece .price_table table tr td{
    padding: 10px 0;
}
.price_sece .price_table table tr.hide, 
.price_sece .price_table table tr.hide {
    display: none;
}
.price_sece .dtn {
    display: table;
    position: relative;
    margin: 10px auto;
    background-color: #fe7600;
    border: none;
    color: #fff;
    width: 150px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    line-height: 38px;
    border-radius: 20px;
    font-size: 15px;
    transition: all ease-in-out 0.3s;
}
.price_sece .dtn:hover{
    background-color: #2c3941;
    cursor: pointer;
}

/* online exam section ends */
/* online exam section ends */

footer {
    width: 100%;
    float: left;
    padding: 35px 0 0;
    background: #b85600;
}

footer .foot_spn {
    display: block;
    text-align: center;
    margin: 10px 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

footer .main_head {
    color: #fff;
}

footer .foot_p {
    text-align: center;
    padding: 0 280px;
    color: #e8e8ea;
    line-height: 31px;
}

footer .foot_p img {
    width: 80px;
    margin: 6px 12px 0;
}

footer .foot_p img:last-child {
    width: 60px;
}

footer .foot_inn {
    width: 23%;
    float: left;
    margin: 1%;
    padding: 30px 0;
    padding-bottom: 0;
}

footer .foot_inn ul {
    margin: 20px 0;
}

footer .foot_inn .my-cl-y {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

footer .foot_inn .my-cl-y li {
    width: 50%;
}

footer .foot_inn.sat {
    width: 73%;
    float: left;
    padding-left: 59px;
}

footer .foot_inn.sat .comm ul {
    margin-top: 6px;
}

footer .foot_inn.sat h3 {
    text-align: left;
}

footer .foot_inn.sat h4 {
    margin-top: 11px;
}

footer .foot_inn.sat .comm {
    width: 50%;
    float: left;
    height: 225px;
    color: #fff;
}

footer .foot_inn .my-cl-y li .ico {
    width: 130px;
}

footer .foot_inn .my-cl-y li .ico-2 {
    width: 100px;
}

footer .foot_inn ul li {
    list-style: none;
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
}

footer img {
    width: 110px;
    margin-bottom: 15px;
}

footer .foot_inn ul li a {
    color: #fff;
    text-decoration: none;
}

footer .foot_inn h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

footer .copyryt {
    width: 100%;
    float: left;
    background: #dd6700;
    padding: 12px 0;
    text-align: center;
}

footer .copyryt span {
    color: #ffffff;
}

footer .copyryt span a {
    color: #ffffff;
}


/*******************vinod understanding end********************************/


/* **************page_404***css start ***************** */

.page_404 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    width: 100%;
}

.page_404 img {
    width: 300px;
    height: 300px;
}


/* **************page_404***css end ***************** */


/* Media Queries */


/*******************************responsive-tab****************************/

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 740px;
    }
    .navbar img {
        width: 60px;
    }
    .navbar ul {
        width: 90%;
    }
    .nav-item a {
        padding: 10px 7px 0;
        font-size: 13px;
    }
    header ul li:last-child a:last-child {
        width: 109px;
        height: 32px;
        font-size: 10px;
        line-height: 13px;
    }
    .bann_txt {
        width: 55%;
        margin-top: 174px;
    }
    .bann_txt h2 span {
        font-size: 45px;
    }
    .bann_txt h2 {
        font-size: 28px;
    }
    .bann_txt p {
        font-size: 20px;
    }
    .bann_form {
        width: 45%;
    }
    .bann_form .btn {
        width: 294px;
        font-size: 17px;
    }
    .bann_form h3 {
        font-size: 23px;
    }
    .testing .ryt_txt h2 {
        font-size: 23px;
    }
    .testing .ryt_txt p {
        font-size: 14px;
    }
    .testing .ryt_txt ul li {
        font-size: 14px;
    }
    .testing .img_lft {
        text-align: left;
    }
    .main_head {
        font-size: 23px;
    }
    .elts_typ ul li {
        width: 48%;
    }
    .elts_acdmic .acdmic_lft {
        margin: 0;
        padding: 0;
    }
    .elts_acdmic .acdmic_lft p {
        font-size: 13px;
    }
    .elts_acdmic .acdmic_lft h3 {
        font-size: 23px;
    }
    .elts_acdmic .acdmic_ryt ul li h2 {
        padding: 10px 6px;
    }
    .elts_acdmic .acdmic_ryt ul li p {
        padding-left: 0;
        font-size: 13px;
    }
    .countries ul.ul_second_list {
        margin-top: 40px;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt span {
        padding-left: 9px;
        font-size: 13px;
        margin: 0;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt p {
        padding: 7px 0 0 20px;
        font-size: 11px;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt p::before {
        top: 11px;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt small {
        padding: 5px 23px 0;
        font-size: 12px;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt a.btn {
        margin: 50px 23px;
        height: 33px;
        width: 170px;
        border-radius: 18px;
        text-align: center;
        line-height: 34px;
        font-size: 11px;
    }
    .price_sec p {
        padding: 17px 0;
    }
    .echron-ielts-score h2 {
        font-size: 23px;
    }
    .echron-ielts-score p {
        padding: 0;
    }
    .echron-ielts-score::after {
        display: none;
    }
    .echron-ielts-tip .list-1 {
        width: 48%;
    }
    .testing.five_mits .ryt_txt .common_cont h2 {
        padding-left: 0;
    }
    .deal ul li {
        width: 48%;
    }
    .undrstnd .undrstnd-left h3 {
        font-size: 23px;
    }
    .how-req {
        padding: 0;
    }
    .undrstnd .undrstnd-right ul li:nth-child(1) {
        left: 35px;
    }
    .undrstnd .undrstnd-right ul li img {
        width: 270px;
    }
    .undrstnd .undrstnd-left p {
        font-size: 13px;
    }
    footer .foot_p {
        padding: 0;
    }
    footer .foot_inn h3 {
        height: 40px;
    }
    footer .foot_inn ul li {
        font-size: 12px;
    }
}


/* Mobile Devices - Phones/Tablets */

@media (max-width: 767px) {
    .container {
        width: 90%;
    }
    .mob_nav_scroll {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    /* MOBILE HEADINGS */
    h1 {
        font-size: 1.9rem;
    }
    h2 {
        font-size: 1rem;
    }
    p {
        font-size: 0.8rem;
    }
    /* MOBILE NAVIGATION */
    header.fixed {
        background: #fcfcfc;
        top: -2px;
    }
    .navbar img {
        float: left;
        width: 120px;
    }
    .navbar ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: start;
        top: 0;
        left: 0;
        background-color: #fff;
        width: 70%;
        height: 100vh;
        transform: translate(-101%);
        text-align: center;
        overflow: hidden;
        background: #fff;
        z-index: 2;
        margin-top: 0;
    }
    .navbar li {
        padding: 15px;
        border: 1px solid #eee;
    }
    .navbar ul li:first-child {
        display: block;
    }
    .navbar li a {
        font-size: 1rem;
        color: #fe7600;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
    }
    .bar {
        display: block;
    }
    .mobile-nav {
        transform: translate(0%)!important;
    }
    .nav-item a::before {
        content: none;
    }
    /* SECTIONS */
    .headline {
        height: 20vh;
    }
    .feature-container p {
        margin-bottom: 25px;
    }
    .feature-container {
        margin-top: 20px;
    }
    .feature-container:nth-child(2) {
        order: -1;
    }
    /* SEARCH DISABLED ON MOBILE */
    #search-icon {
        display: none;
    }
    .search-input {
        display: none;
    }
    .bann_form {
        width: 100%;
        margin-top: 24px;
    }
    .testing .img_lft {
        width: 100%;
    }
    .testing .ryt_txt {
        width: 100%;
        margin-top: 30px;
    }
    header ul li:last-child a:last-child {
        width: 210px;
        height: 38px;
        line-height: 18px;
    }
    .bann_form .btn {
        width: 100%;
    }
    .testing .img_lft img {
        width: 100%;
    }
    .elts_typ {
        padding: 25px 0;
        overflow: hidden;
    }
    .elts_typ ul li {
        width: 100%;
        margin: 1% 0;
        box-shadow: 1px 2px 5px #bdbdbd;
        border-radius: 8px;
        transition-delay: .5s;
        transition: .6s;
    }
    .elts_typ ul {
        margin: 20px 0 0 0;
    }
    .elts_acdmic {
        padding: 25px 0;
    }
    .elts_acdmic .acdmic_lft {
        width: 100%;
        padding-top: 0;
        margin: 0;
        padding-right: 0;
    }
    .elts_acdmic .acdmic_lft p {
        padding: 10px 0;
    }
    .elts_acdmic .acdmic_ryt {
        width: 100%;
        margin: 0;
    }
    .elts_acdmic .acdmic_ryt ul li {
        width: 100%;
        box-shadow: 0 0 5px #bdbdbd;
        padding: 10px;
        margin: 2% 0;
        border-bottom-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .elts_acdmic .acdmic_ryt ul li h2 {
        padding: 10px 0;
    }
    .elts_acdmic .acdmic_ryt ul li p {
        padding-left: 0;
    }
    .elts_acdmic .acdmic_lft h3 {
        font-size: 26px;
    }
    .countries {
        padding: 25px 0;
    }
    .countries ul li {
        width: 50%;
        height: 192px;
    }
    .countries ul li strong {
        margin-top: 0;
    }
    .countries ul li p {
        padding-bottom: 25px;
    }
    .countries ul li:nth-child(4) p {
        padding-bottom: 0;
    }
    .countries ul.ul_second_list {
        margin-top: 0;
        margin: 0;
    }
    .countries ul.ul_second_list li {
        width: 100%;
        height: auto;
    }
    .price_sec {
        background-size: cover;
        padding: 25px 0;
        overflow: hidden;
    }
    .price_sec p {
        padding: 20px 0;
    }
    .price_sec .price_tab {
        width: 100%;
        margin: 1% 0;
    }
    .price_sece .price_table {
        width: 100%;
    }
    .echron-ielts-score {
        padding: 25px 0;
    }
    .echron-ielts-score p {
        padding: 0;
        margin-top: 0;
    }
    .echron-ielts-score::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .echron-ielts-tip {
        padding: 25px 0;
        background-size: cover;
    }
    .echron-ielts-tip .list-1 {
        width: 100%;
        height: auto;
        margin: 1% 0;
    }
    .testing.five_mits .img_lft figure::before {
        top: -14px;
        right: -10px;
        width: 300px;
    }
    .deal ul li {
        width: 100%;
        height: auto;
        margin: 1% 0;
        border-bottom-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .deal {
        background-size: cover;
        padding: 25px 0;
        overflow: hidden;
    }
    .testing {
        padding: 25px 0;
    }
    .testing.five_mits.exam .img_lft ul li:nth-child(2) {
        position: static;
        transform: unset;
    }
    .testing.five_mits.exam .img_lft ul li {
        padding: 0;
    }
    .testing.five_mits.exam .img_lft ul li:first-child {
        display: none;
    }
    .testing.five_mits.exam .img_lft ul li:last-child {
        display: none;
    }
    .how-req .how-req-left {
        width: 100%;
    }
    .undrstnd {
        padding: 25px 0;
    }
    .undrstnd .undrstnd-left {
        width: 100%;
    }
    .undrstnd .undrstnd-right {
        width: 100%;
        margin: 0;
        margin-top: 20px;
    }
    .undrstnd .undrstnd-right ul li:nth-child(1) {
        position: static;
        width: 100%;
    }
    .undrstnd .undrstnd-right ul li img {
        width: 100%;
        display: none;
    }
    .undrstnd .undrstnd-right ul li {
        position: static;
    }
    footer {
        padding: 25px 0 0;
    }
    footer .foot_inn {
        width: 100%;
        padding: 10px 0;
    }
    footer .foot_p {
        font-size: 15px;
        padding: 10px 0;
        text-align: left;
    }
    footer .main_head {
        text-align: left;
        font-size: 23px;
    }
    footer .foot_inn ul {
        margin: 0;
    }
    .bann_txt {
        width: 100%;
        margin-top: 60px;
    }
    .bann_txt h2 {
        font-size: 35px;
    }
    .bann_txt h2 span {
        font-size: 50px;
    }
    .how-req {
        padding: 25px 0;
        background-size: cover;
        background: #fe7600;
    }
    .how-req .how-req-left p {
        color: #ffffff;
    }
    .how-req .how-req-left ul.how-req-lft li {
        color: #ffffff;
    }
    .echron-ielts-score h4 {
        margin-top: 10px;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt span {
        margin: 7px 0;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt small {
        padding: 20px 25px 0;
    }
    .countries .slick-slide p {
        margin-bottom: 0;
    }
    .countries ul.ul_second_list {
        position: relative;
    }
    .countries ul.ul_second_list i.fa-angle-left,
    .countries ul.ul_second_list i.fa-angle-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #000;
        z-index: 2;
    }
    .countries ul.ul_second_list i.fa-angle-left {
        left: -10px;
    }
    .countries ul.ul_second_list i.fa-angle-right {
        right: -10px;
    }
    .countries .slick-slide {
        opacity: 1;
    }
    .slick-slide .thankyou {
        width: 100%;
        padding: 20px 15px;
    }
    .thankyou {
        width: 100%;
    }
    .thanks_main {
        padding: 0 7px;
    }
    .elts_acdmicl .acdmic_lft {
        width: 100%;
        padding-right: 0;
    }
    .elts_acdmicl .acdmic_ryt {
        width: 100%;
    }
    .elts_typ ul {
        flex-wrap: wrap;
    }
    .elts_typ i.fa-angle-left,
    .elts_typ i.fa-angle-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        font-size: 30px;
        z-index: 2;
        text-align: center;
        line-height: 26px;
        color: #000;
    }
    .elts_typ i.fa-angle-left {
        left: -21px;
    }
    .elts_typ i.fa-angle-right {
        right: -21px;
    }
    .elts_typ ul li h3 {
        text-align: center;
    }
    .elts_typ ul li img {
        margin: auto;
    }
    footer .foot_inn .my-cl-y {
        flex-direction: column;
        justify-content: unset;
        align-items: baseline;
    }
    footer .foot_inn .oth {
        margin-top: 20px;
    }
    footer .foot_inn.sat {
        width: 100%;
        padding-left: 0;
    }
    footer .foot_inn.sat .comm.wid100 {
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .navbar ul {
        width: 70%;
    }
    .countries ul.ul_second_list li .cuontry_inn_txt a.btn {
        margin: 48px 23px 0;
    }
}