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

@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 24px;
    font-weight: 400;
}


/*---Typography---*/

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    color: #268508;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    padding: 0px;
    margin: 0px;
}

ol,
ul {
    margin-bottom: 0px;
}

a {
    text-decoration: none !important;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

img {
    max-width: 100%;
}

label {
    font-weight: normal;
        color: #074f81;
}

::-webkit-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}


/*-----------------------
	Page Loader
-----------------------*/

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99999;
    background: #fff;
}

#loading .element {
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    top: 50%;
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #004f81;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}


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


/* 02. header	*/


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

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    left: 0;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #fff;
    border-bottom: 2px solid #268508;
}

.header-middle {
    padding-top: 10px;
    padding-bottom: 10px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar-brand {
    padding-left: 15px;
}

header .navbar-brand img {
    max-width: 300px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;

}

header.header-small .navbar-brand img {
    max-width: 311px;
    position: relative;
    width: 100% !important;
}

.header-right-top {
    text-align: right;
    padding: 24px 20px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    float: right;
    width: 100%;
    max-width: 1015px;
}

.header-right-top .call_section {
    float: right;
    position: relative;
}

.header-right-top .call_section::before {
    position: absolute;
    left: -60px;
    top: -8px;
    height: 42px;
    width: 1px;
    background: #6a6a6a;
    content: "";
}

.header-right-top a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    display: unset;
}

.header-right-top a.tel-number {
    color: #0d68ff;
    margin-right: 20px;
    position: relative;
}

.header-right-top a.tel-number:hover {
    text-decoration: none;
}

.header-right-top a.tel-number .fa.fa-phone {
    font-size: 28px;
    position: absolute;
    left: -34px;
    top: 0px;
}

.header-right-top a.free-consultation_btn {
    color: #fff;
    text-transform: uppercase;
    background: #0d68ff;
    padding: 10px 24px;
    border-radius: 24px;
}

.header-right-top a.free-consultation_btn:hover {
    background: #fff;
    color: #0d68ff;
}


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


/* A. Header Small */


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

header.header-small,
.error_404 header {
    box-shadow: 1px 1px 10px #000;
}

header.header-small .header-middle {
    padding-top: 10px;
    padding-bottom: 6px;
}


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


/* 03. navigation */


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

.navbar {
    padding: 0;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar .menu {
    display: -ms-flexbox;
    display: flex;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.navbar-nav>li {
    padding-right: 14px!important;
    position: relative;
}

.navbar-nav li a {
    font-size: 16px;
    color: #2a2a2a;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.navbar-nav li a:hover,
.navbar-nav li.active>a {
    color: #268508;
}



.navbar-nav>li.has-submenu>a {
}

.navbar-nav>li.has-submenu span {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 2px solid #268508;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #268508;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.navbar-nav>li.has-submenu span:before {
    content: '';
    position: absolute;
    background: #268508;
    height: 2px;
    width: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navbar-nav>li.has-submenu span:after {
    content: '';
    position: absolute;
    background: #268508;
    height: 15px;
    width: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navbar-nav>li.has-submenu span.active:after {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}




nav.navbar #navbarNavDropdown {
    float: left;
    width: 100%;
    text-align: right;
}

nav.navbar #navbarNavDropdown ul.navbar-nav {
    flex-direction: unset;
    display: unset;
    padding-right: 30px;
    float: left;
    width: 100%;
}

nav.navbar #navbarNavDropdown .navbar-nav>li {
    display: inline-block;
    position: relative;
}

.call_section {
   width: 189px;
    text-align: center;
    background: #004f81;
    padding: 14px 13px 8px 11px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.call_section .free-consultation_btn {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.call_section .tel-number {
   font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 45px;
    display: block;
}

.call_section a:hover {
    text-decoration: underline!important;
}

.navbar .navbar-nav li ul li a:hover {
    color: #268508;
}


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


/* 04. home page sections */


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


/*-----------------------
	banner
-----------------------*/

.main-container {
    margin-top: 94px;
}

.banner-slider .container {
    display: table;
    height: 100%;
}

.banner-outer .slide1,
.banner-outer .slide2,
.banner-outer .slide3 {
    height: 696px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.banner-outer .slide1 {
    background: url(../images/banner-slider-1.jpg) no-repeat center top / cover;
}

.banner-outer .slide2 {
    background: url(../images/banner-slider-2.jpg) no-repeat center top / cover;
}

.banner-outer .slide3 {
    background: url(../images/banner-slider-3.jpg) no-repeat center top / cover;
}

.banner-image.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 52px;
    width: 52px;
    border: 1px solid #268508;
    border-radius: 50%;
    text-indent: -9999px;
    color: #268508;
    outline: none !important;
    background: url(../images/slider-prev.png) no-repeat center center;
}

.banner-image.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    height: 52px;
    width: 52px;
    border: 1px solid #268508;
    border-radius: 50%;
    text-indent: -9999px;
    color: #268508;
    outline: none !important;
    background: url(../images/slider-next.png) no-repeat center center;
}

.banner-outer .content {
    max-width: 675px;
}

.banner-outer .content h1 {
    display: block;
    font-size: 45px;
    font-family: 'Poppins', sans-serif;
    color: #004f81;
    line-height: 1.2;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.banner-outer .content h1:after {
    content: "";
    height: 6px;
    width: 125px;
    background: #004f81;
    left: 0;
    bottom: 0;
    position: absolute;
}

.banner-outer .content h1 span {
    display: block;
    font-size: 62px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.banner-outer .content h2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    font-size: 29px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #34b142;
}

.banner-outer .content p {
    display: block;
    padding: 20px 0 30px;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    color: #2a2a2a;
    font-weight: 500;
    -webkit-animation-delay: 0.34s;
    animation-delay: 0.34s;
}

.banner-outer .content a.btn {
    -webkit-animation-delay: 0.36s;
    animation-delay: 0.36s;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    /* border-radius: 30px; */
    background: #268508;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: 1px solid #195e04;
    text-transform: uppercase;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    box-shadow: 3px 2px 10px #000;}

.btn span {
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    content: "";
    opacity: 0.5;
}

.btn:hover,
.btn:focus {
    background: none;
    color: #268508;
    outline: 0;
}

.btn.white {
    background: #fff;
    color: #595545;
}

.btn.white:hover {
    background: #2c97ea;
    color: #fff;
}

.btn.blue {
    background: #2c97ea;
    color: #fff;
}

.btn.blue:hover {
    background: #17a43b;
}

.banner-outer .bx-wrapper .bx-pager {
    bottom: 60px;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.banner-outer .bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
}

.banner-outer .bx-wrapper .bx-pager a {
    background: #424242;
    border-radius: 100%;
    display: block;
    height: 20px;
    margin: 0 5px;
    outline: 0 none;
    text-indent: -9999px;
    width: 20px;
    opacity: 1;
}

.banner-outer .bx-wrapper .bx-pager a:hover,
.banner-outer .bx-wrapper .bx-pager a.active {
    background: #0d68ff;
    opacity: 1;
}

.counter_sec .box {
    position: relative;
}

.counter_sec ul {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
    background: url(../images/mid-border.png) center center no-repeat;
    background-position: center -15px;
}

.counter_sec li {
    float: left;
    width: 50%;
    text-align: center;
    margin: 0 0 120px;
}

.counter_sec .box .icon {
    float: left;
    width: 100%;
    margin: 0 0 8px;
}

.counter_sec .box .icon img {
    display: inline-block;
}

.counter_sec .box .content {
    float: left;
    width: 100%;
}

.counter_sec .box .counter {
    font-size: 39px;
    line-height: 45px;
    color: #004f81;
}

.counter_sec .box .title {
    font-size: 13px;
    color: #2a2a2a;
    text-transform: uppercase;
    font-weight: 400;
}


/*-----------------------
	about
-----------------------*/

.about {
    display: block;
    position: relative;
    padding: 75px 0;
}

.about ul.our-links {
    margin: -320px 0 0 0;
    position: relative;
    z-index: 99;
    float: left;
    width: 100%;
}

.about ul.our-links li {
    display: block;
    position: relative;
}

.about ul.our-links li.apply-online {
    background: #ff9600;
}

.about ul.our-links li.prospects .detail a.more {
    border: 2px #ff9600 solid;
    color: #ff9600;
}

.about ul.our-links li.prospects {
    background: #2c97ea;
}

.about ul.our-links li.prospects .detail a.more {
    border: 2px #2c97ea solid;
    color: #2c97ea;
}

.about ul.our-links li.certification {
    background: #f0bc01;
}

.about ul.our-links li.certification .detail a.more {
    border: 2px #f0bc01 solid;
    color: #f0bc01;
}

.about ul.our-links li {
    display: block !important;
    opacity: 1 !important;
    text-align: center;
}

.about ul.our-links li .box {
    float: left;
    width: 100%;
    background: #025a8e;
    padding: 30px;
}

.about ul.our-links li p {
    padding-bottom: 0px;
}

.about ul.our-links li .icon {
    width: 100%;
    float: left;
    text-align: center;
}

.about ul.our-links li .icon img {
    display: inline-block;
}

.about ul.our-links li .detail {
    width: 100%;
    padding-left: 0;
    float: left;
    color: #fff;
    margin: 15px 0 0;
}

.about ul.our-links li .detail h3 {
    display: block;
    padding-bottom: 10px;
    font-size: 25px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.about ul.our-links li .detail h3 span {
    display: block;
    font-size: 12px;
}

.about ul.our-links li .detail p {
    display: block;
    font-size: 15px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
}

.about ul.our-links li .detail a.more {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 34px;
    position: absolute;
    bottom: -17px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: #fff;
    font-size: 20px;
    color: #ff9600;
    border-radius: 50%;
    text-align: center;
    border: 2px #ff9600 solid;
}

.about ul.our-links li .detail a.more:hover {
    color: #211d1e;
}

.about .sm-head {
    display: block;
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    color: #7d7c7c;
    line-height: 18px;
    text-transform: uppercase;
}

.about .left-block {
    display: block;
}

.video-block {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.video-block iframe,
.video-block object,
.video-block embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#thumbnail_container {
    overflow: hidden;
    width: 100%;
}

.about .video-block img {
    width: 100%;
}

.about .video-block a {
    width: 67px;
    display: block;
    position: absolute;
    margin: -34px auto 0;
    left: 0px;
    right: 0px;
    top: 50%;
    cursor: pointer;
}

.row.heading h2 {
    color: #268508;
    font-size: 42px;
    line-height: 57px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 45px;
    text-transform: none;
}

.about .row.heading h2 {
    padding: 0 0 10px 15px;
}

.heading.heading-icon {
    display: block;
}

.about h2 {
    padding-bottom: 20px;
    color: #353434;
}

.about p {
    display: block;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 24px;
    color: #2a2a2a;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.about i {
    font-style: italic;
    padding-bottom: 20px;
    color: #004f81;
    font-size: 15px;
    line-height: 29px;
    display: block;
    font-weight: 500;
}

.about.about-us {
    padding: 75px 0 0;
}

.about.about-us p:last-child {
    padding-bottom: 0;
}

.about .know-more-wrapper {
    display: block;
    position: relative;
}

a.know-more {
    display: inline-block;
    position: relative;
    z-index: 2;
    font-size: 15px;
    color: #268508;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #268508;
    border-radius: 25px;
    padding: 10px 30px;
    margin: 15px 0 0;
}

a.know-more:hover {
    color: #fff;
    background: #268508;
}


/*-----------------------
	We Are here
-----------------------*/

.we-are-here {
    background: url(../images/we-are-here-bg.jpg);
}

.we-are-here .left-block .details {
    padding: 63px 0;
    width: 100%;
    float: left;
    text-align: left;
}

.we-are-here .left-block .details h2 {
    color: #268508;
    font-size: 42px;
    line-height: 57px;
    font-weight: 600;
}

.we-are-here .left-block .details h4 {
    color: #004f81;
    font-size: 30px;
    font-weight: 400;
    line-height: 48px;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.we-are-here .left-block .details p {
    color: #3c3c3c;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.free-btn {
    color: #fff;
    text-transform: uppercase;
    background: #268508;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    margin-top: 45px;
    display: inline-block;
    border: 2px solid #268508;
}

.free-btn:hover {
    background: none;
    color: #268508;
    border-color: #268508;
}

.we-are-here .right-block.cases-box {
    padding: 100px 0 0 100px;
}

.we-are-here .right-block.cases-box .col-md-6 {
    float: left;
}

.we-are-here .right-block .box {
    float: left;
    width: 100%;
    background: rgba(7, 91, 141, 0.8);
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.we-are-here .right-block .box .counter {
    font-size: 39px;
    font-weight: 400;
    line-height: 45px;
}

.we-are-here .right-block .box .title {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}


/*-----------------------
	our services
-----------------------*/

.padding-lg {
    display: block;  
    padding-bottom: 31px;
}
}

.practice-area.padding-lg {
    padding-bottom: 60px;
    padding-top: 75px;
}

.practice-area .inner {
    border: 1px solid #999999;
  
    margin-bottom: 30px;
    padding: 14px 16px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
        font-size: 15px;
}
.practice-area .inner li
{
    padding: 8px 0
}

.practice-area .owl-carousel .inner {
    margin-bottom: 0;
}

.practice-area .inner:hover,
.our-attorneys .cnt-block:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.practice-area .inner h3 {
    color: #3c3c3c;
    font-size: 23px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 20px 0 0;
}

.practice-area .inner p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 20px 0;
}

.practice-area .inner img {
    display: inline-block;
}

.read-more {
    color: #268508;
    font-size: 16px;
    font-weight: 500;
    background: url(../images/read-more-arrow.png) no-repeat center right;
    padding: 0 27px 0 0;
    text-transform: uppercase;
    margin: 5px 0 0;
    display: inline-block;
}

.read-more:hover {
    color: #004f81!important;
}


/*-----------------------
	our core team
-----------------------*/

.inner-banner.attorney-detail-banner {
    background: url(../images/attorney-detail-banner-bg.jpg) no-repeat center top / cover;
}

.our-attorneys {
    background: #e5f5ff;
}

.our-attorneys .cnt-block {
    float: left;
    width: 100%;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #d5d5d5;
    margin-bottom: 30px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.our-attorneys .cnt-block figure {
    width: 148px;
    height: 148px;
    border-radius: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

.our-attorneys .cnt-block img {
    width: 148px;
    height: 148px;
    border-radius: 100%;
}

.our-attorneys .cnt-block h3 {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.our-attorneys .cnt-block h3 a {
    color: #2a2a2a;
}

.our-attorneys .cnt-block h3 a:hover {
    color: #004f81;
}

.our-attorneys .cnt-block p {
    color: #2a2a2a;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}

.our-attorneys .cnt-block .follow-us {
    margin: 20px 0 0;
}

.our-attorneys .cnt-block .follow-us li {
    display: inline-block;
    width: auto;
    margin: 0 5px;
}

.our-attorneys .cnt-block .follow-us li .fa {
    font-size: 24px;
    color: #767676;
}

.our-attorneys .cnt-block .follow-us li .fa:hover {
    color: #025a8e;
}


/*-----------------------
	testimonials
-----------------------*/

.testimonial {
    display: block;
    background: #fff;
    text-align: center;
    position: relative;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial h2 {
    font-family: 'Yeseva One', cursive;
    color: #fff;
}

.testimonial .wrapper {
    display: block;
    max-width: 100%;
    position: relative;
}

.testimonial .owl-stage-outer {
    padding-top: 80px;
}

.testimonial .item {
    max-width: 80%;
    width: 100%;
    margin: auto;
}

.testimonial .item:before,
.testimonial .item:after {
    display: block;
    position: absolute;
    font-family: 'icomoon';
    font-size: 48px;
    color: #8e8e8e;
}

.testimonial .item:before {
    left: 50%;
    top: -50px;
    content: "\e90d";
    margin-left: -20px;
}

.testimonial .item:after {
    right: 0;
    bottom: 0;
    content: "\e90c";
    display: none;
}

.testimonial ul {
    display: block;
    margin: 50px 0 0;
}

.testimonial ul li {
    display: block;
    padding: 0 60px;
}

.testimonial ul li p {
    display: block;
    padding-bottom: 10px;
    font-size: 16px;
    color: #2a2a2a;
    line-height: 24px;
}

.testimonial ul li p:last-child {
    padding-bottom: 0;
}

.testimonial ul li p a {
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    color: #fff;
}

.testimonial .item span {
    font-size: 17px;
    margin-top: 20px;
    color: #004f81;
    line-height: 24px;
    font-weight: 600;
    display: block;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial ul li span span {
    font-size: 14px;
    color: #7fadd2;
}

.testimonial #bx-pager a {
    display: inline-block;
    position: relative;
    margin: 0 6px;
}

.testimonial #bx-pager a img {
    border: 5px solid transparent;
}

.testimonial #bx-pager a:hover img,
.testimonial #bx-pager a.active img {
    border: 5px solid #ff8500;
}

.testimonial #bx-pager a:hover:after,
.testimonial #bx-pager a.active:after {
    width: 0;
    height: 0;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -7px;
    content: " ";
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid #ff8500;
}

.testimonial .owl-nav .owl-prev {
    left: 0;
    width: 24px;
    height: 43px;
    font-size: 0;
    display: block;
    background: url(../images/bx-prev-icon.png) no-repeat center center;
    z-index: 99;
}

.testimonial .owl-nav .owl-next {
    right: 0;
    width: 24px;
    height: 43px;
    font-size: 0;
    display: block;
    background: url(../images/bx-next-icon.png) no-repeat center center;
    z-index: 99;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    opacity: 0.5;
}

.owl-dots {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #bdbcbc;
    border-radius: 50px;
}

.owl-dots .owl-dot:not(:last-child) {
    margin-right: 10px;
}

.owl-dots .owl-dot.active {
    background: #39ba3e;
}

.our-cources h2,
.how-study h2,
.why-choose h2,
.news-events h2,
.campus-tour h2,
.testimonial h2,
.about h2,
.browse-teacher h2,
.how-apply h2,
.have-question h2 {
    display: block;
    padding-bottom: 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
}

.our-cources h2 span,
.how-study h2 span,
.why-choose h2 span,
.news-events h2 span,
.campus-tour h2 span,
.browse-teacher h2 span,
.how-apply h2 span {
    display: block;
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    opacity: 0.8;
}

.our-cources {
    display: block;
    background: #383838;
    position: relative;
}

.our-cources:after {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    z-index: 1;
    content: "";
    background: url(../images/cources-bg.jpg) no-repeat center top / cover;
    opacity: 0.2;
}

.our-cources .container {
    position: relative;
    z-index: 2;
}

.our-cources h2 {
    color: #fff;
}

.our-cources h2 span {
    color: #d5d4d3;
}

.our-cources ul.course-list {
    display: block;
    padding-top: 20px;
}

.our-cources ul.course-list li {
    display: block;
    background: url(../images/book-bg.png) no-repeat center top;
    position: relative;
}

.our-cources ul.course-list li:after {
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    background: #fff;
    content: " ";
    opacity: 0.3;
}

.our-cources ul.course-list li .inner {
    width: 198px;
    margin: 0 auto;
    height: 280px;
    padding: 54px 0 0 30px;
    position: relative;
}

.our-cources ul.course-list li .inner figure {
    position: absolute;
    left: 4px;
    top: 1px;
    opacity: 0.3;
}

.our-cources ul.course-list li h3 {
    display: block;
    padding-bottom: 10px;
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 22px;
    color: #fff;
    position: relative;
}

.our-cources ul.course-list li h3 span {
    display: block;
}

.our-cources ul.course-list li p {
    display: block;
    padding-bottom: 12px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    opacity: 0.8;
}

.our-cources ul.course-list li .fess-box {
    display: inline-block;
    padding: 0 12px;
    background: #ff9600;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.our-cources ul.course-list li .fess-box span {
    font-family: 'Yeseva One', cursive;
    font-size: 16px;
}

.our-cources ul.course-list li .bottom-txt {
    width: 100%;
    padding: 18px 30px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.our-cources ul.course-list li .duration {
    width: 81%;
    float: left;
}

.our-cources ul.course-list li .duration h4 {
    display: block;
    font-family: 'Yeseva One', cursive;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.our-cources ul.course-list li .duration span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 16px;
    text-transform: uppercase;
    opacity: 0.8;
}

.our-cources ul.course-list li a {
    display: block;
    position: absolute;
    right: 18px;
    top: 22px;
}

.our-cources ul.course-list li a .icon-more-icon {
    font-size: 23px;
    color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease 0s;
}

.our-cources ul.course-list li a:hover .icon-more-icon {
    opacity: 1;
}


/*-----------------------
	client logos
-----------------------*/

.logos {
    display: block;
    padding: 40px 0;
    background: #e5f5ff;
}

.logos ul {
    display: block;
}

.logos ul .owl-item img {
    max-width: 120px;
    width: 100%;
    margin: auto;
}

.our-impotance {
    background: #fff;
}

.our-impotance ul {
    display: block;
    text-align: center;
}

.our-impotance ul li {
    display: block;
    margin-bottom: 64px;
    border-right: 1px #e9e9e9 solid;
    position: relative;
}

.our-impotance ul li .inner {
    display: block;
    padding: 30px;
}

.our-impotance ul li .inner img {
    border-radius: 3px;
}

.our-impotance ul li:nth-child(3n) {
    border-right: none;
}

.our-impotance ul li:nth-child(n+4):after {
    display: none;
}

.our-impotance ul li:nth-child(n+4) {
    margin-bottom: 0px;
}

.our-impotance ul li:after {
    width: 80%;
    height: 1px;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    display: block;
    position: absolute;
    bottom: -35px;
    content: "";
    background: #e9e9e9;
}

.our-impotance ul li h3 {
    display: block;
    padding: 22px 0 12px 0;
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    color: #284962;
    text-transform: uppercase;
    line-height: 24px;
}

.our-impotance ul li h3 span {
    display: block;
}

.our-impotance ul li p {
    display: block;
    font-size: 12px;
    color: #969a9e;
    line-height: 20px;
}


/*-----------------------
	news & events
-----------------------*/

.news-events {
    background: #fff;
    padding-bottom: 25px;
}

.news-events h2 {
    color: #2a4356;
}

.news-events h2 span {
    color: #2d4256;
}

.news-events ul li .inner {
    display: block;
    background: #fff;
    box-shadow: 0px 0px 3px #c4c6c8;
    position: relative;
}

.news-events ul li .img-block {
    display: block;
}

.news-events ul li .img-block img {
    width: 100%;
}

.news-events ul li .cnt-block {
    display: block;
    padding: 40px 30px 30px 30px;
    background: #fff;
    position: relative;
}

.news-events ul li .cnt-block .plus-icon {
    display: block;
    width: 64px;
    height: 64px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: -32px;
    background: #2c97ea;
    border-radius: 50%;
    font-size: 34px;
    color: #fff;
    box-shadow: 0px 5px 5px #c0e0f9;
}

.news-events ul li .cnt-block .plus-icon:hover {
    background: #ff9600;
}

.news-events ul li .cnt-block h3 {
    display: block;
    padding-bottom: 36px;
    font-family: 'Yeseva One', cursive;
    font-size: 22px;
    color: #41484d;
    line-height: 32px;
    text-transform: none;
}

.news-events figure {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.news-events figcaption {
    position: absolute;
    top: 0;
    left: 0;
}


/* Caption Style 3 */

.cs-style-3 figure {
    overflow: hidden;
    padding-bottom: 104px;
}

.cs-style-3 figure img {
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}

.no-touch .cs-style-3 figure:hover img,
.cs-style-3 figure.cs-hover img {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.cs-style-3 figcaption {
    width: 100%;
    top: auto;
    bottom: 0px;
    -webkit-transform: translateY(40%);
    -moz-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
}

.no-touch .cs-style-3 figure:hover figcaption,
.cs-style-3 figure.cs-hover figcaption {
    bottom: 0px;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s;
}

.news-events ul li .bottom-block {
    display: block;
    padding: 30px 0 0 0;
    border-top: 1px #e8eef0 solid;
    font-size: 12px;
    color: #96adba;
}

.news-events ul li .date {
    display: block;
    float: left;
}

.news-events ul li .icon {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 2px;
}

.news-events ul li .icon span {
    font-size: 20px !important;
    color: #c5d4da !important;
}

.news-events ul li .comment {
    display: block;
    float: right;
}

.news-events ul li .date span,
.news-events ul li .comment span {
    font-weight: 700;
    color: #5c7e91;
}

.news-events .know-more-wrapper {
    display: block;
    text-align: center;
    position: relative;
}

.news-events .know-more-wrapper:after {
    width: 100%;
    height: 1px;
    background: #daddde;
    content: "";
    position: absolute;
    left: 0px;
    top: 14px;
    z-index: 1;
}

.news-events .know-more {
    display: inline-block;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #025a8e;
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    font-weight: 500;
}

.news-events a.know-more span {
    margin-left: 4px;
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block;
    color: #ff9600;
    transition: all 0.3s ease 0s;
}

.news-events a.know-more:hover span {
    color: #17a43b;
}

.news-events .news-box {
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}

.news-events .news-box h2 {
    color: #004f81;
    font-size: 23px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    padding: 20px 0;
    text-transform: none;
}

.news-events .news-box p {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    padding: 15px 0;
}

.news-events .news-box .date {
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    width: 90px;
    padding: 20px 10px 15px;
    text-align: center;
}

.news-events .news-box .date span {
    font-size: 40px;
    float: left;
    width: 100%;
    text-align: center;
    padding: 0 0 10px;
}

.meta {
    display: -ms-flexbox;
    display: flex;
    color: #787878;
    font-size: 13px;
    font-weight: 500;
}

.meta div:not(:last-child) {
    margin-right: 10px;
}

.meta .fa,
.meta .fa {
    font-size: 15px;
    color: #787878;
    margin-right: 5px;
}

.news-listes {
    list-style: none;
}

.news-listes>li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.news-listes figure {
    margin: 0;
    margin-right: 15px;
}

.news-listes h2 {
    color: #004f81;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 5px 0;
    text-align: left;
}


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


/* 05. footer */


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

.footer {
    display: block;
    background: #004f81;
}

.footer-top-section {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.footer-bottom {
    padding-top: 55px;
    padding-bottom: 55px;
}

.footer .row1 {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer .foot-nav {
    display: block;
    width: 25%;
    padding-right: 15px;
    float: left;
}

.footer .foot-nav ul li {
    display: block;
    line-height: 22px;
}

.footer h3 {
    display: block;
    padding-bottom: 20px;
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid #07629b;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.footer ul li a {
    font-size: 13px;
    color: #fff;
    line-height: 34px;
    font-weight: 400;
}

.footer ul li a:hover {
    color: #268508;
}

.footer .footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer .footer-logo img {
    display: inline-block;
}

.footer p {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    padding: 0 0 10px;
}

.contact-us a {
    display: block;
    padding: 0 0 10px;
    color: #fff;
}

.contact-us a:hover {
    color: #268508;
}

.contact-us .fa {
  color: #39ba3f;
    font-size: 24px;
    width: 30px;
    float: left;
    height: 21px;
}

.contact-us .fa.fa-phone {
    font-size: 25px;
}

.contact-us .fa.fa-envelope {
    font-size: 16px;
}

.practice-area .fa.fa-arrow-right {
    padding-right: 5px;
    color: #218ed4;
}

.footer p span {
    color: #fff;
    font-weight: 700;
}

.footer ul.terms {
    display: block;
}

.footer ul.terms li {
    display: block;
    float: left;
    font-size: 11px;
    font-weight: 700;
}

.footer ul.terms li:after {
    display: inline-block;
    padding: 0 4px;
    content: " I ";
}

.footer ul.terms li:last-child:after {
    display: none;
}

.footer ul.terms li:first-child {
    padding-left: 0px;
}

.footer ul.terms li a {
    color: #8eb6d6;
}

.footer ul.terms li a:hover {
    color: #fff;
}

.footer .bottom {
    display: block;
    padding: 40px 0;
    background: #2e5f85;
}

.footer .connect-us {
    display: block;
    padding: 14px 0 18px 0;
    width: 95%;
    border-right: 1px #537d9e solid;
}

.footer ul.follow-us {
    display: block;
}

.footer ul.follow-us li {
    display: inline-block;
    padding: 0 4px;
}

.footer ul.follow-us .fa {
      color: #fff;
    width: auto;
    font-size: 24px;
    margin-right: 16px;
    margin-top: 18px;
}

.footer ul.follow-us li:first-child {
    padding-left: 0px;
}

.footer ul.follow-us li a {
    display: block;
    border-radius: 0;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: #fff;
}

.footer ul.follow-us li a:hover {
    opacity: 0.6;
}

.footer .subscribe {
    display: block;
    padding: 14px 58px 18px 0;
    width: 95%;
    border-right: 1px #537d9e solid;
}

.footer .subscribe #mc_embed_signup {
    background: #fff;
    border-radius: 5px;
}

.footer .subscribe input[type='email'] {
    width: 82%;
    height: 44px;
    padding: 0 15px;
    border: none;
    background: none;
    font-size: 12px;
    color: #7da6c6;
}

.footer .subscribe input[type='email']::-webkit-input-placeholder {
    text-transform: none;
    color: #7da6c6;
}

.footer .subscribe input[type='email']:-moz-placeholder {
    /* Firefox 18- */
    text-transform: none;
    color: #7da6c6;
}

.footer .subscribe input[type='email']::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: none;
    color: #7da6c6;
}

.footer .subscribe input[type='email']:-ms-input-placeholder {
    text-transform: none;
    color: #7da6c6;
}

.footer .subscribe .clear {
    float: right;
    text-align: center;
    position: relative;
    background: #2c97ea;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease 0s;
}

.footer .subscribe .clear:before {
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    top: 9px;
    font-family: 'icomoon';
    font-size: 20px;
    content: "\e907";
    color: #fff;
    z-index: 1;
}

.footer .subscribe .clear:hover {
    background: #ff8500;
}

.footer .subscribe .clear .button {
    width: 46px;
    height: 44px;
    float: right;
    border: none;
    font-size: 20px;
    color: #fff;
    background: none;
    text-indent: -9999px;
    position: relative;
    z-index: 2;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease 0s;
}

.footer .instagram {
    display: block;
    padding: 14px 58px 18px 0;
}

.footer .instagram ul {
    display: block;
}

.footer .instagram ul li {
    width: 16.6%;
    padding: 0 2.5px;
    float: left;
}

.footer .instagram ul li a:hover {
    opacity: 0.7;
}

.copy-rights-section {
    display: block;
    text-align: center;
    background: #0067a8;
}

.copy-rights-section p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    display: block;
    margin: 0;
    padding: 20px 0;
}

a.scroll-top {
    width: 44px;
    height: 44px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    display: none;
    right: 20px;
    bottom: 50px;
    z-index: 99;
    background-color: #39ba3e;
}

a.scroll-top:hover {
    opacity: 0.7;
}


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


/* 06. about page */


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

.about-right {
    display: block;
}

.about-right img {
    width: 100%;
}

.why-choose.grey-bg {
    background: #f3f6f8;
}

.why-choose.grey-bg:after {
    display: none;
}

.why-choose.grey-bg h2 {
    color: #2a4356;
}

.why-choose.grey-bg h2 span {
    color: #808182;
}

ul.our-strength.opt2 li {
    border-color: #dde5e9;
}

ul.our-strength.opt2 li span {
    color: #3f5044;
}

ul.our-strength.opt2 li .icon span {
    color: #17a43b
}

ul.our-strength.opt2 li .title {
    color: #9099a0;
}

.about-video {
    width: 100%;
    background: #081d2d;
    text-align: center;
    position: relative;
    z-index: 99999;
}

.about-video:after {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    z-index: 1;
    content: "";
    background: url(../images/about-video-bg.jpg) no-repeat center top / cover;
    opacity: 0.4;
}

.about-video .container {
    display: table;
    height: 550px;
    position: relative;
    z-index: 2;
}

.about-video p {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Yeseva One', cursive;
    font-size: 60px;
    color: #d1d3d4;
}

.about-video p a {
    color: #fff;
}

.about-video p a span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.about-video p a:hover {
    color: #17a43b;
}

.browse-teacher.grey-bg {
    background: #f3f6f8;
}

.modal-content {
    border-radius: 0px;
}

.about .close,
.about-video .close {
    position: absolute;
    opacity: 1;
    top: 0;
    right: 0;
    z-index: 2;
}

.about .close span,
.about-video .close span {
    width: 36px;
    height: 36px;
    display: block;
    text-indent: -9999px;
    background: url(../images/popup-close-btn.jpg) no-repeat center top;
}

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 9999;
}


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


/*  Who we are page */


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

.inner-banner {
    padding: 60px 0;
    min-height: 282px;
    background: url(../images/inner-banner-bg.jpg) no-repeat center top / cover;
    text-align: center;
}

.inner-banner.about_banner {
    background: url(../images/about-banner-bg.jpg) no-repeat center top / cover;
}

.inner-banner .content {
    width: 100%;
    margin: auto;
    text-align: left;
    background: #ffffffb5;
    padding: 12px;
}

.inner-banner h1 {
    display: block;
    padding-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    color: #004f81;
    line-height: 65px;
    font-weight: 600;
}

.inner-banner h1 span {
        color: #004f81;
    text-shadow: 3px 2px 3px #3e83b3;
    font-size: 44px
}

.inner-banner p {
    display: block;
    line-height: 28px;
    color: #2a2a2a;
    font-weight: 400;
    font-size: 16px
}

.inner-banner a.apply-online {
    max-width: 246px;
    display: block;
    margin-top: 16px;
    margin-bottom: 26px;
    background: #ff9600;
    text-transform: uppercase;
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    color: #fff;
    position: relative;
}

.inner-banner a.apply-online:hover {
    background: #ff8800;
}

.inner-banner a.apply-online .left {
    width: 80%;
    float: left;
    padding: 20px 0 20px 24px;
}

.inner-banner a.apply-online .icon {
    display: block;
    padding-right: 15px;
    float: left;
}

.inner-banner a.apply-online .txt {
    width: 36%;
    float: left;
    line-height: 20px;
}

.inner-banner a.apply-online .arrow {
    width: 20%;
    height: 100%;
    line-height: 78px;
    position: absolute;
    right: 0px;
    background: #e38600;
    font-size: 24px;
    text-align: center;
    transition: all 0.3s ease 0s;
}

.inner-banner a.apply-online:hover .arrow {
    background: #df7600;
}

a.download-prospects {
    display: block;
    padding: 0 10px 10px 0;
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    color: #43647d;
    text-transform: uppercase;
}

a.download-prospects .icon-brochure-icon {
    display: block;
    margin-right: 15px;
    float: left;
    font-size: 29px;
    color: #389ceb;
}

a.download-prospects.brochure {
    background-position: left 4px;
    font-size: 18px;
    line-height: 18px;
    text-transform: none;
    color: #4f4a4a;
}

a.download-prospects .small {
    display: block;
    font-family: 'Yeseva One', cursive;
    font-size: 12px;
    color: #8f9ba1;
    line-height: 14px;
    text-transform: uppercase;
}

a.download-prospects:hover,
a.download-prospects:hover span {
    color: #2c97ea;
}

.about.inner {
    background: none;
}

.about.inner .video-block {
    margin-bottom: 12px;
}

.about.inner .modal-body .video-block {
    margin-bottom: 0px;
}

.about.inner p {
    padding-bottom: 20px;
}

.about .btn-wrapper {
    display: block;
}

a.download-pros,
a.download-cert {
    width: 50%;
    float: left;
    padding: 22px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
}

a.download-pros {
    background: #2c97ea;
    border-right: 1px #fff solid;
}

a.download-cert {
    background: #f0bc01;
    border-left: 1px #fff solid;
}

a.download-pros .ico-block,
a.download-cert .ico-block {
    display: block;
    padding-right: 15px;
    float: left;
}

a.download-pros .txt-block,
a.download-cert .txt-block {
    display: block;
    padding-top: 4px;
    float: left;
    text-transform: uppercase;
}

a.download-pros .sm-txt,
a.download-cert .sm-txt {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 18px;
    opacity: 0.7;
}

a.download-pros:hover,
a.download-cert:hover {
    background-color: #17a43b;
}

.select-course {
    display: block;
    float: right;
    padding-right: 34px;
}

.select-course .select2.select2-container {
    width: 254px !important;
}

.select-course .select2-container .select2-selection--single {
    height: 48px;
}

.select-course .select2-container--default .select2-selection--single {
    background: rgba(0, 0, 0, 0.4);
}

.select-course .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    line-height: 48px;
    font-family: 'Yeseva One', cursive;
    color: #fff;
    text-transform: uppercase;
}

.select-course .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 46px;
    height: 46px;
    border-left: 1px #aaa solid;
    background: rgba(255, 255, 255, 0.2);
}

.our-cources.sub:after {
    background: url(../images/cources-bg1.jpg) no-repeat center top / cover;
}

.our-cources.sub h2 {
    padding-left: 32px;
    text-align: left;
}

.our-cources ul.inner li {
    margin-bottom: 140px;
}

.our-cources ul.inner li:before {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: -70px;
    display: block;
    background: #fff;
    content: " ";
    opacity: 0.3;
}

.our-cources ul.course-list.inner li .inner {
    padding: 40px 0 0 30px;
}

.our-cources ul.inner li:nth-child(n+9) {
    margin-bottom: 80px;
}

.our-cources ul.inner li:nth-child(n+9):before,
.our-cources ul.inner li:nth-child(4n):after {
    display: none;
}

.pagination {
    margin: 20px 0 0;
    width: 100%;
    text-align: center;
    display: block;
}

.pagination>li {
    display: inline-block;
    padding: 0 6px;
}

.pagination>li>a,
.pagination>li>span {
    color: #004f81;
    border: none;
    border-radius: 0;
    line-height: 24px;
    font-size: 18px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover,
.pagination>li>a.active {
    background: none;
    color: #38ba3d;
    text-decoration: underline!important;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-radius: 0;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 24px;
}

.pagination li a i {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.pagination>li:first-child a i {
    margin-right: 10px;
}

.pagination>li:last-child a i {
    margin-left: 10px;
}


/*-----------------------
	07. Team page
-----------------------*/

.attorney-banner {
    background: url(../images/attorney-banner-bg.jpg) no-repeat center top / cover;
}

.our-attorneys.attorney-page {
    background: #fff;
}

.our-attorney-profile h2 {
    font-size: 24px;
    color: #004f81;
    text-transform: uppercase;
    padding: 0 0 15px;
}

.our-attorney-profile h2.title {
    font-size: 30px;
}

.our-attorney-profile h6 {
    color: #38ba3d;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 0 0 20px;
}

.our-attorney-profile p {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    padding: 0 0 18px;
}

.our-attorney-profile p strong {
    font-weight: 500;
    margin-right: 5px;
}

.our-attorney-profile .profile-details a {
    color: #2a2a2a;
}

.our-attorney-profile .profile-details a:hover {
    color: #004f81;
}

.our-attorney-profile .fa {
    font-size: 24px;
    color: #767676;
    width: 30px;
    text-align: center;
}

.our-attorney-profile .fa:hover {
    color: #004f81;
}

.row.padding-short-top {
    padding-top: 40px;
}

.padding-short-top.over-experience {
    padding-top: 60px;
}

ul.best-award {
    text-align: left;
    padding: 15px 0 0;
}

ul.best-award li {
    display: inline-block;
    padding: 0 20px;
}

ul.best-award li:first-child {
    padding-left: 0;
}

.certificate_lists p span {
    width: calc(100% - 135px);
    float: right;
}

.certificate_lists p {
    float: left;
    width: 100%;
}

.certificate_lists p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.practice-area .owl-carousel {
    margin: 30px 0 0;
}

.practice-area .owl-carousel .col-md-4 {
    width: auto;
    max-width: unset;
}

.practice-area .owl-carousel .col-md-4 .inner img {
    width: auto;
}

.practice-area .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
    top: 50%;
    width: 24px;
    height: 43px;
    font-size: 0;
    display: block;
    background: url(../images/bx-prev-icon.png) no-repeat center center;
    margin-top: -40px;
}

.practice-area .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -60px;
    top: 50%;
    width: 24px;
    height: 43px;
    font-size: 0;
    display: block;
    background: url(../images/bx-next-icon.png) no-repeat center center;
    margin-top: -40px;
}


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


/*  Team detail page */


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

.enquire-wrapper {
    max-width: 438px;
}

.enquire-now {
    max-width: 405px;
    margin: -90px auto 0;
    position: relative;
    color: #fff;
}

.enquire-now .inner {
    padding: 40px 26px 30px 26px;
    background: #2c97ea;
}

.enquire-now .inner h3 {
    display: block;
    padding-bottom: 26px;
    font-family: 'Yeseva One', cursive;
    font-size: 24px;
    color: #fff;
    text-transform: none;
}

.enquire-now .inner .row1 {
    display: block;
    margin-bottom: 14px;
}

.enquire-now .inner input::-webkit-input-placeholder {
    color: #fff;
}

.enquire-now .inner input:-moz-placeholder {
    color: #fff;
}

.enquire-now .inner input::-moz-placeholder {
    color: #fff;
}

.enquire-now .inner input:-ms-input-placeholder {
    color: #fff;
}

.enquire-now .inner .row1 input,
.enquire-now .inner .row2 input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    background: #60b1f0;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px #fff solid;
}

.enquire-now .inner .row2 {
    display: block;
    margin: 0 -5px 14px -5px;
}

.enquire-now .inner .row2 input {
    width: calc(50% - 10px);
    margin: 0 5px;
    float: left;
}

.enquire-now .enquire-btn {
    width: 100%;
    padding: 13px 15px;
    font-family: 'Yeseva One', cursive;
    font-size: 16px;
    text-transform: uppercase;
    background: #ff9600;
    border: none;
}

.enquire-now .enquire-btn span {
    margin-left: 4px;
    font-size: 14px;
    opacity: 0.5;
}

.enquire-now .enquire-btn:hover {
    background: #17a43b;
}

.cert-head {
    display: block;
    margin-top: 15px;
    padding-bottom: 10px;
    position: relative;
}

.cert-head:after {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 10px;
    left: 0px;
    background: #d8d8d8;
    content: "";
}

.cert-head h3 {
    display: inline-block;
    padding-right: 14px;
    background: #fff;
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    color: #211d1e;
    z-index: 1;
    position: relative;
}

ul.cert-list {
    display: block;
}

ul.cert-list li {
    width: calc(50% - 30px);
    float: left;
    padding: 14px 0 14px 28px;
    margin-right: 30px;
    font-weight: 700;
    border-bottom: 1px #c0c4c6 dashed;
    position: relative;
}

ul.cert-list li:before {
    display: block;
    position: absolute;
    left: 0px;
    top: 13px;
    font-family: 'icomoon';
    font-size: 15px;
    color: #2c97ea;
    content: "\e91f";
}

ul.cert-list li:nth-last-child(2),
ul.cert-list li:last-child {
    border-bottom: none;
}

ul.cert-list li span {
    display: inline-block;
    margin-right: 6px;
    color: #2c97ea;
}

.course-detail {
    display: block;
    padding: 25px 40px;
    margin-top: 50px;
    border: 1px #dfe9f1 solid;
}

.course-detail .duration {
    width: 25%;
    min-height: 85px;
    padding-right: 40px;
    float: left;
    border-right: 1px #dfe9f1 solid;
}

.course-detail .duration.eligible {
    width: 34%;
    padding: 0 40px;
}

.course-detail .duration.eligible .icon {
    font-size: 34px;
}

.course-detail .duration.fee {
    width: 22%;
    padding: 0 40px;
}

.course-detail .duration.fee .detail {
    font-size: 36px;
    color: #17a43b;
}

.course-detail .duration.fee .detail span {
    padding-bottom: 10px;
}

.course-detail .duration .icon {
    width: 67px;
    height: 67px;
    display: table;
    float: left;
    background: #edf1f4;
    border-radius: 50%;
    font-size: 38px;
    color: #79a2c2;
    text-align: center;
}

.course-detail .duration .icon span {
    display: table-cell;
    vertical-align: middle;
}

.course-detail .duration .detail {
    display: block;
    padding: 10px 0 0 16px;
    float: left;
    font-family: 'Yeseva One', cursive;
    font-size: 18px;
    color: #4f4a4a;
    line-height: 22px;
}

.course-detail .duration .detail span {
    display: block;
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    color: #8f9ba1;
    text-transform: uppercase;
}

.course-detail .btn {
    margin: 18px 0 0 40px;
}


/*-----------------------
  9. Case result page
-----------------------*/

.case-result-banner {
    background: url(../images/case_result-banner-bg.jpg) no-repeat center top / cover;
}

.image-center {
    margin-top: 30px;
    margin-bottom: 30px;
}

.container.case-result-detail.padding-lg {
    padding-bottom: 34px;
}

.tab-content h2 {
    color: #2a2a2a;
    font-size: 23px;
    padding: 15px 0;
}

.tab-content p {
    font-size: 14px;
    color: #2a2a2a;
    font-weight: 400;
    padding: 0 0 15px;
}

.tab-content ul {
    padding: 0 0 0 30px;
    margin: 15px 0;
}

.tab-content ul li {
    font-size: 14px;
    color: #2a2a2a;
    font-weight: 400;
    padding: 0 0 15px;
}

.tab-content ul li .fa {
    margin-right: 8px;
}

.red-double-border-bottom {
    padding-bottom: 20px;
    background: url(../images/red-double-border-bottom.png) no-repeat left bottom;
}

#myTabContent {
    padding-bottom: 50px;
}

.related-case {
    padding: 0 0 45px;
}

.related-case h2 {
    color: #0d68ff;
    font-size: 30px;
    padding: 30px 0 15px;
    position: relative;
    display: inline-block;
}

.related-case h2:before {
    content: "";
    background: url(../images/red-double-border-bottom.png) no-repeat center center;
    width: 155%;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
}

.details-tab {
    display: block;
    padding: 50px 0 90px 0;
    background: #ebeff3;
}

#myTabs {
    padding: 0 30px;
    text-align: center;
}

.course-tab {
    margin-bottom: 50px;
    border-bottom: 2px #dedede solid;
}

.course-tab>li {
    width: 33.333%;
}

.course-tab>li>a {
    padding: 0 0 26px 0;
    font-family: 'Yeseva One', cursive;
    font-size: 20px;
    color: #3c3c3c;
    border: none !important;
}

.course-tab>li>a span {
    display: block;
    padding-bottom: 18px;
    font-size: 50px;
    color: #a4b1bc;
}

.course-tab>li>a .block {
    display: inline;
}

.course-tab>li.active>a,
.course-tab>li.active>a:focus,
.course-tab>li.active>a:hover,
.course-tab>li>a:hover {
    background: none;
    border-bottom: 2px #0d68ff solid !important;
    color: #0267a2;
}

.course-tab>li.active>a span,
.course-tab>li.active>a:focus span,
.course-tab>li.active>a:hover span,
.course-tab>li>a:hover span {
    color: #17a43b;
}

.details-tab #curriculam,
.details-tab #schedule {
    background: #fff;
    box-shadow: 0 0 14px #d4d9de;
}

#curriculam .lecture-txt {
    display: block;
    padding-bottom: 2px;
    font-size: 12px;
    color: #a5b1a8;
    text-transform: uppercase;
}

#curriculam .lecture-txt span {
    color: #4f5c53;
}

#curriculam .lecture-txt a.preview {
    display: inline-block;
    padding: 0 12px;
    background: #2c97ea;
    font-size: 11px;
    color: #fff;
    border-radius: 2px;
}

#curriculam .lecture-txt a.preview:hover {
    background: #ff9600;
}

.details-tab .course-table {
    border: 1px #d8e0e7 solid;
    margin: 0px;
}

.details-tab .course-table>thead>tr>th {
    padding: 11px 30px;
    background: #e9f4fd;
    font-family: 'Yeseva One', cursive;
    text-transform: uppercase;
    font-size: 14px;
    color: #4e5d52;
    border-color: #c3e1f9;
}

.course-table>tbody>tr>td,
.course-table>tfoot>tr>td,
.course-table>thead>tr>td {
    padding: 28px 30px;
}

.course-table>thead>tr,
.course-table>thead>tr>td,
.course-table>thead>tr>th {
    border: 1px #c3e1f9 solid;
}

.course-table>tbody>tr>td,
.course-table>tbody>tr>th,
.course-table>tfoot>tr>td,
.course-table>tfoot>tr>th {
    border: 1px solid #eee;
    font-weight: 700;
    color: #707c82;
}

.table-col1 {
    display: block;
    padding-left: 20px;
    position: relative;
}

.table-col1:before {
    display: block;
    position: absolute;
    left: 0px;
    top: -4px;
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #ff9600;
    content: "\f105";
}

#schedule .course-table>thead>tr>th:first-child {
    width: 55%;
}

#schedule .fee-amt {
    font-family: 'Yeseva One', cursive;
    font-size: 24px;
    color: #585d60;
}

#schedule ul.fee-details {
    display: block;
    padding: 5px 0 0 22px;
}

#schedule ul.fee-details li {
    display: block;
    padding: 8px 0;
    border-bottom: 1px #c9cdce dashed;
    font-weight: normal;
    position: relative;
}

#schedule ul.fee-details li:last-child {
    border-bottom: none;
}

#schedule ul.fee-details li:before {
    display: block;
    position: absolute;
    left: -22px;
    top: 8px;
    font-family: 'icomoon';
    font-size: 14px;
    color: #2c97ea;
    content: "\e908";
}

#semester ul.content {
    display: block;
}

#semester ul.content>li {
    display: block;
    padding: 0 0 24px 24px;
    margin-bottom: 24px;
    border-bottom: 1px #c9cdce dashed;
    position: relative;
}

#semester ul.content>li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

#semester ul.content>li:before {
    display: block;
    position: absolute;
    left: 0px;
    top: -2px;
    font-family: 'icomoon';
    font-size: 16px;
    color: #2c97ea;
    content: "\e908";
}

#semester ul.content>li:last-child {
    border-bottom: none;
}

#semester ul.content>li h4 {
    display: block;
    padding-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #4c5357;
}

#semester ul.content>li p {
    display: block;
    line-height: 22px;
}

#semester ul.content>li>ul {
    max-width: 430px;
    padding: 10px 0 0 0;
}

#semester ul.content>li>ul>li {
    padding: 6px 0 6px 20px;
    font-size: 12px;
    line-height: 18px;
    position: relative;
}

#semester ul.content>li>ul>li:before {
    display: block;
    position: absolute;
    left: 0px;
    top: 8px;
    font-family: 'icomoon';
    font-size: 12px;
    color: #79a2c2;
    content: "\e917";
}

#teachers ul.browse-teachers-list>li {
    border-color: #dbdedf;
}

.rightSide h3 {
    color: #38ba3d;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 0 15px;
}

.rightSide .category h3 {
    border: 0;
}
.category h4{
        color: #268505!important;
    border: 1px #000 dotted;
    padding: 6px;
    width: 184px;
    margin-left: 57px;
    margin-top: 6px;
}

.category h4 del{
        color: #000!important;
}

.rightSide .category ul li a {
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 400;
}

.rightSide .category ul li a:hover {
    color: #004f81;
}

.rightSide .category ul li a .fa {
    margin-right: 8px;
}

.download-brochures a {
    float: left;
    width: 100%;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 15px;
}

.download-brochures a:hover {
    color: #004f81;
}

.download-brochures a .fa {
    margin-right: 8px;
}

.search-block.red-double-border-bottom {
    background: url(../images/red-double-border-bottom.png) no-repeat left bottom;
    padding-bottom: 45px;
    margin-bottom: 30px;
}

.category.red-double-border-bottom {
    margin-bottom: 35px;
    padding-bottom: 50px;
}


/*-----------------------
	comments section
-----------------------*/

.comments-wrapper {
    display: block;
    background: #f3f6f8;
}

.comments-wrapper h2 {
    display: block;
    padding-bottom: 22px;
    font-size: 24px;
    color: #2a2a2a;
    text-transform: uppercase;
    border-bottom: 1px #bbbbbb solid;
    position: relative;
}

.comments-wrapper h2:after {
    display: block;
    width: 166px;
    height: 1px;
    background: #004f81;
    position: absolute;
    bottom: -1px;
    content: "";
}

.comments-wrapper ul.comments {
    display: block;
    padding-top: 56px;
    padding-bottom: 40px;
}

.comments-wrapper ul.comments li {
    margin-bottom: 30px;
}

.comments-wrapper ul.comments li .com-img {
    width: 68px;
    height: 68px;
    float: left;
}

.comments-wrapper ul.comments li .com-img img {
    border-radius: 100%;
}

.comments-wrapper ul.comments li .com-txt {
    width: calc(100% - 92px);
    padding: 30px 60px 30px 30px;
    float: right;
    background: #fbfcfd;
    border: 1px #bbbbbb solid;
    position: relative;
}

.comments-wrapper ul.comments li .com-txt:after,
.comments-wrapper ul.comments li .com-txt:before {
    right: 100%;
    top: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
}

.comments-wrapper ul.comments li .com-txt:after {
    border-color: rgba(243, 246, 248, 0);
    border-right-color: #bbbbbb;
    border-width: 8px;
    margin-top: -8px;
}

.comments-wrapper ul.comments li .com-txt:before {
    border-color: rgba(209, 218, 223, 0);
    border-right-color: #bbbbbb;
    border-width: 9px;
    margin-top: -9px;
}

.comments-wrapper ul.comments li .com-txt h3 {
    display: block;
    padding-bottom: 10px;
    font-size: 18px;
    color: #004f81;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

.comments-wrapper ul.comments li .com-txt h3 span {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    line-height: 24px;
}

.comments-wrapper ul.comments li .com-txt p {
    padding-bottom: 10px;
    line-height: 20px;
}

.comments-wrapper ul.comments li .com-txt a {
    font-size: 14px;
    font-weight: 400;
    color: #38ba3d;
    text-transform: uppercase;
    line-height: 24px;
}

.comments-wrapper ul.comments li .com-txt a span {
    display: inline-block;
    vertical-align: middle;
    padding-right: 6px;
    font-size: 16px;
    opacity: 0.5;
    transition: all 0.3s ease 0s;
}

.comments-wrapper ul.comments li .com-txt a:hover {
    color: #004f81;
}

.comments-wrapper ul.comments li .com-txt a:hover span {
    opacity: 1;
}

.comments-wrapper hr {
    margin: 0px;
    border-color: #d5d7d9;
}

.leave-comment h4 {
    display: block;
    padding: 60px 0;
    font-size: 22px;
    line-height: 24px;
    color: #004f81;
    text-transform: uppercase;
}

.leave-comment .row1 {
    display: block;
    margin-bottom: 30px;
}

.leave-comment input {
    width: calc(50% - 25px);
    height: 46px;
    padding: 0 12px;
    float: left;
    background: none;
    border: none;
    border-bottom: 1px #bbbbbb solid;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #808080;
}

.leave-comment input:last-child {
    float: right;
}

.leave-comment textarea {
    width: 100%;
    height: 130px;
    margin-bottom: 40px;
    padding: 10px 12px;
    float: left;
    background: none;
    border: none;
    border-bottom: 1px #bbbbbb solid;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #808080;
    resize: none;
}


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


/* 11. contact page */


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

.contact-banner {
    background: url(../images/contact_us-banner-bg.jpg) no-repeat center top / cover;
}

.inner-banner.contact {
    min-height: 240px;
    padding: 60px 0;

}

.form-wrapper {
    display: block;
}

.contact-us.padding-lg {
    padding-top: 12px;
}

.form-wrapper h2 {
    color: #268508;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 0 35px;
    line-height: 30px;
    font-weight: 500;
}

.form-wrapper .row {
    margin-bottom: 32px;
}

.form-wrapper input {
        width: 100%;
    padding: 0 12px;
    height: 46px;
    border: none;
    border-bottom: 1px #c3c3c3 solid;
    border-left: #f1f1f1 1px solid;
    font-size: 14px;
    color: #808080;
    font-weight: 400;
    border-radius: 7px;
}

.form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px #c3c3c3 solid;
    font-size: 14px;
    color: #808080;
    font-weight: 400;
    resize: none;
    height: 75px;
}

.form-wrapper input[type="submit"] {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 10px 0 0;
    border-radius: 6px;
    border: 1px solid #268508;
    cursor: pointer;
}

.form-wrapper input[type="submit"]:hover {
    color: #268508;
}

.contact-info {
    padding-left: 125px;
    padding-top: 0;
}

.contact-info h2 {
    color: #268508;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 0 35px;
    line-height: 30px;
    font-weight: 500;
}

.contact-info p {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #3c3c3c;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 30px;
    float: left;
    width: 100%;
}

.contact-info p.number-info {
    line-height: 30px;
}

.contact-info span.numbers {
    float: right;
    width: calc(100% - 71px);
    margin: -6px 0 0;
}

.contact-info a {
    color: #3c3c3c;
    display: inline;
    padding: 0;
}

.contact-info p .fa {
    width: 50px;
    height: 50px;
    border: 2px #004f81 solid;
    border-radius: 100%;
    background: #004f81;
    color: #fff;
    text-align: center;
    padding: 10px 0 0;
    margin-right: 15px;
}

.connect-with-us {
    border-top: 1px solid #ccc;
    padding: 50px 0 0;
    float: left;
    width: 100%;
}

.connect-with-us li {
    margin: -5px 8px 0;
    float: left;
}

.contact-us .connect-with-us li .fa {
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    background: #3c5a9a;
    padding: 5px 0 0;
    font-size: 28px;
}

.contact-us .connect-with-us li .fa:hover {
    opacity: 0.5;
}

.contact-us .connect-with-us li .fa.fa-facebook {
    padding: 6px 0px 0 6px;
    font-size: 38px;
}

.contact-us .connect-with-us li .fa.fa-twitter {
    background: #28a9e2;
}

.contact-us .connect-with-us li .fa.fa-linkedin {
    background: #007bb7;
}

.google-map {
    display: block;
    position: relative;
}

.google-map .container {
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    top: 0px;
}

.google-map #map {
    height: 550px;
    z-index: 1;
}

.google-map #map .gmnoprint {
    display: none;
}

.contact-detail {
    max-width: 360px;
    margin: 96px 0;
    float: right;
    background: #17a43b;
    color: #fff;
    box-shadow: 0 0 30px #bfcdbf;
    position: relative;
    z-index: 2;
}

.contact-detail .address {
    display: block;
    padding: 18px 40px 12px 70px;
}

.contact-detail .inner {
    display: block;
    padding: 18px 0;
    border-bottom: 1px #45b662 solid;
    position: relative;
}

.contact-detail .inner:before {
    width: 16px;
    height: 23px;
    display: block;
    position: absolute;
    left: -30px;
    font-family: 'icomoon' !important;
    font-size: 22px;
    content: "\e918";
    color: #a4dbb2;
}

.contact-detail .inner:nth-child(2):before {
    width: 19px;
    height: 19px;
    display: block;
    position: absolute;
    left: -30px;
    font-size: 18px;
    content: "\e91a";
}

.contact-detail .inner:nth-child(3) {
    border-bottom: none;
}

.contact-detail .inner:nth-child(3):before {
    width: 21px;
    height: 15px;
    display: block;
    position: absolute;
    left: -30px;
    top: 20px;
    font-size: 16px;
    content: "\e919";
}

.contact-detail .inner h3 {
    padding-bottom: 6px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.contact-detail .inner p {
    color: #9be5ad;
    line-height: 20px;
}

.contact-detail .inner a {
    padding-bottom: 6px;
    font-size: 18px;
    font-family: 'Yeseva One', cursive;
    color: #fff;
}

.contact-bottom {
    display: block;
    padding: 27px 0 23px 0;
    background: #ff9600;
    text-align: center;
}

.contact-bottom ul.follow-us {
    display: block;
}

.contact-bottom ul.follow-us li {
    display: inline-block;
    padding: 0 20px;
    font-size: 24px;
}

.contact-bottom ul.follow-us li a {
    color: #fff;
    opacity: 0.7;
}

.contact-bottom ul.follow-us li a:hover {
    color: #fff;
    opacity: 1;
}

.have-question h2 {
    color: #2d4256;
}

.have-question ul li {
    margin-bottom: 0px;
}

.have-question ul li:after {
    display: none;
}

.error {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #cb0101;
}

.msg {
    display: none;
}

.msg-error {
    display: block;
    padding: 6px 20px;
    margin: 30px 0 0 0;
    font-size: 13px;
    color: #fff;
    background: #c70202;
    border-radius: 4px;
}

.msg-error:after {
    vertical-align: middle;
    font-family: 'FontAwesome';
    content: "\f071";
    float: right;
}

.msg-success {
    display: block;
    padding: 6px 20px;
    margin: 30px 0 0 0;
    font-size: 13px;
    color: #fff;
    background: #17a43b;
    border-radius: 4px;
}

.msg-success:after {
    vertical-align: middle;
    font-family: 'FontAwesome';
    content: "\f00c";
    float: right;
}


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


/* 09. News page */


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

.inner-banner.blog {
    min-height: 240px;
    padding: 60px 0;
}

.inner-banner.blog .content {
    margin: 0 auto;
    text-align: center;
}

.blog-wrapper {
    display: block;
    margin-top: 75px
}

.blog-left {
    display: block;
    position: relative;
}

ul.blog-listing {
    display: block;

}
.blog-listing i{
    color: #39ba3f;
    font-size: 15px
}
.blog-listing h5{
    color: #000;
    padding-bottom: 5px;
        font-size: 22px;
    font-weight: 600;
}
.blog-listing h2{
    color: #39ba3f!important;
   text-align: left;
   font-size:32px!important;
   padding-bottom:15px
}

ul.blog-listing>li {
    padding-bottom: 60px;
}

ul.blog-listing>li h2 {
    padding: 15px 0 10px 0;
    font-size: 23px;
    color: #2a2a2a;
    line-height: 36px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

ul.blog-listing>li p {
    padding-bottom: 26px;
    color: #2a2a2a;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: justify;
}

ul.blog-listing>li .read-more {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

ul.blog-listing>li .read-more span {
    vertical-align: middle;
    margin-right: 7px;
    font-size: 18px;
    color: #ff9600;
    transition: all 0.3s ease 0s;
}

ul.blog-listing>li .read-more:hover span {
    color: #17a43b;
}

ul.post-detail {
    display: block;
    padding-bottom: 17px;
}

ul.post-detail li {
    display: inline-block;
    padding-right: 20px;
    font-size: 13px;
    color: #787878;
}

ul.post-detail li .ico {
    display: inline-block;
    vertical-align: middle;
    padding-right: 6px;
    font-size: 15px;
    color: #787878;
}

ul.post-detail li .bold {
    font-weight: 600;
    color: #787878;
}

ul.post-detail li .label {
    display: inline-block;
    padding: 5px 10px;
    background: #787878 scroll;
    border-radius: 2px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
}

.search-block {
    display: block;
    margin-bottom: 40px;
    background: none;
    position: relative;
}

.search-block input {
    width: 100%;
    height: 50px;
    float: left;
    padding: 0 20px;
    border: 1px solid #a3a3a3;
    background: #fff;
    color: #9f9f9f;
    font-size: 16px;
    font-weight: 300;
}

.search-block .search {
    width: 40px;
    height: 42px;
    float: right;
    border: none;
    background: none;
    font-size: 21px;
    color: #1d77ac;
    transition: all 0.3s ease 0s;
    position: absolute;
    top: 5px;
    right: 10px;
}

.search-block .search .icon-search-icon {
    color: #1d77ac;
}

.search-block .search:hover {
    opacity: 0.5;
}

.blog-right h3 {
    padding-bottom: 0px;
    font-size: 29px;
    color: #268508;
    text-transform: uppercase;
    line-height: 27px;
}

.blog-right .rightBox {     
    top: 126px;
    background: #fff;
    z-index: 999;
    padding: 26px;
    box-shadow: 0 13px 31px -5px rgb(0 0 0 / 36%)
}
.blog-right .rightBox1 {     
    top: 126px;
    background: #fff;
    
    text-align: center;
    z-index: 999;
    padding: 26px;
    box-shadow: 0 13px 31px -5px rgb(0 0 0 / 36%)
}

.category {
        display: block;
    /* padding-bottom: 70px; */
    background: #ffff;
    padding: 10px;
    box-shadow: 1px 3px 11px -2px;
}
}

.category ul {
    display: block;
}

.category ul li {
    display: block;
}

.category ul li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #3c3c3c;
    font-weight: 400;
    background: url(../images/categories-right-icon.png) no-repeat center left;
    padding-left: 20px;
}

.category ul li a span {
    float: right;
    font-size: 16px;
    color: #3c3c3c;
    line-height: 24px;
    transition: all 0.3s ease 0s;
}

.category ul li a:hover {
    color: #004f81;
}

.category ul li a:hover span {
    color: #004f81;
}

.recent-post {
    display: block;
    padding-bottom: 60px;
}

.recent-post ul {
    display: block;
}

.recent-post ul li {
    display: block;
    padding: 15px 0;
}

.recent-post ul li:last-child {
    border: none;
}

.recent-post ul li .img-block {
    width: 22%;
    float: left;
}

.recent-post ul li .detail {
    width: 78%;
    padding-left: 15px;
    float: left;
}

.recent-post ul li .detail h4 {
    padding-bottom: 4px;
    font-size: 16px;
    color: #004f81;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.recent-post ul li .detail p {
    font-size: 13px;
    color: #787878;
}

.recent-post ul li .detail .ico {
    padding-right: 7px;
    font-size: 15px;
    color: #787878;
}

.recent-post ul li .detail p span {
    font-weight: 600;
    text-transform: uppercase;
    color: #787878;
}

.archives {
    display: block;
    padding-bottom: 60px;
}

.archives ul {
    display: block;
}

.archives ul li {
    display: block;
}

.archives ul li:last-child {
    border: none;
}

.archives ul li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #3c3c3c;
}

.archives ul li a:hover,
.archives ul li:hover span {
    color: #004f81;
}

.archives ul li span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    padding-right: 10px;
    vertical-align: middle;
    font-size: 20px;
    color: #3c3c3c;
}

.blog-right .tags {
    display: block;
    padding-bottom: 70px;
}

ul.tags-list {
    display: block;
    padding-top: 24px;
}

ul.tags-list li {
    display: block;
    margin-right: 15px;
    float: left;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

ul.tags-list li a {
    padding: 10px 20px;
    color: #004f81;
    border-radius: 5px;
    border: 1px solid #004f81;
}

ul.tags-list li a:hover {
    background: #004f81;
    color: #fff;
}


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


/*  news detail page */


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

.imp-quote {
    display: block;
    padding: 25px 20px 0 66px;
    margin-bottom: 30px;
    border-radius: 4px;
    background: #F6F6F6;
    position: relative;
}

.imp-quote:before {
    position: absolute;
    left: 26px;
    top: 30px;
    font-family: 'icomoon';
    font-size: 20px;
    content: "\e90d";
    color: #004f81;
}

.imp-quote>p {
    display: block;
    font-size: 14px;
    font-style: italic;
    color: #004f81!important;
    line-height: 24px;
}

ul.blog-listing.detail>li {
    margin-bottom: 0px;
    padding-bottom: 50px;
}

.blog-left ul.follow-us {
    display: inline-block;
    padding-right: 15px;
    margin-top: -17px;
    background: #fff;
}

.blog-left ul.follow-us li {
    display: block;
    padding: 0 4px;
    float: left;
}

.blog-left ul.follow-us li:first-child {
    padding-left: 0px;
}

.blog-left ul.follow-us li a {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    background: #0d68ff;
    font-size: 16px;
    line-height: 33px;
    text-align: center;
    color: #fff;
}

.blog-left ul.follow-us li a:hover {
    opacity: 0.5;
}

.blog-left .comments-wrapper {
    background: none;
    padding: 50px 0 0 0;
    border-bottom: 1px #bbbbbb solid;
}

.blog-left .comments-wrapper ul.comments li .com-txt {
    background: none;
}

.blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
    padding-left: 42px;
}

.blog-left .leave-comment h4 {
    padding: 50px 0;
}


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


/*  news & events page */


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

.news-banner {
    background: url(../images/news-banner-bg.jpg) no-repeat center top / cover;
}

.news-wrapper {
    background: #f1f4f6;
}

ul.news-listing>li {
    margin-bottom: 30px;
}

ul.news-listing>li .inner {
    display: block;
    padding-bottom: 15px;
    background: #fff;
    box-shadow: 0 0 8px #e4e7e9;
}

ul.news-listing>li img {
    width: 100%;
}

ul.news-listing>li .cnt-block {
    display: block;
    padding: 40px 30px;
}

ul.news-listing>li h2 {
    padding-bottom: 12px;
    font-family: 'Yeseva One', cursive;
    font-size: 20px;
    color: #4d5557;
    line-height: 30px;
    text-transform: none;
}

ul.news-listing>li p {
    padding-bottom: 26px;
    color: #8d8f8f;
}

ul.news-listing>li .read-more {
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    color: #606d87;
    text-transform: uppercase;
}

ul.news-listing>li .read-more span {
    vertical-align: middle;
    margin-right: 7px;
    font-size: 19px;
    color: #ff9600;
    transition: all 0.3s ease 0s;
}

ul.news-listing>li .read-more:hover span {
    color: #17a43b;
}

.news-wrapper ul.post-detail {
    padding-bottom: 10px;
}

.news-wrapper ul.post-detail li .ico {
    font-size: 17px;
}

.news-wrapper .text-center {
    margin-top: 50px;
}


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


/* 11. 404 page */


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

.error-banner {
    background: url(../images/404-banner-bg.jpg) no-repeat center bottom / cover;
    min-height: 600px;
}

.not-found-wrapper {
    max-width: 660px;
    margin: 0 auto;
    padding: 115px 0 0 0;
    text-align: center;
    width: 100%;
}

.not-found-wrapper h1 img {
    -webkit-animation: 2s ease 0s normal none infinite running bounce;
    animation: 2s ease 0s normal none infinite running bounce;
}

.not-found-wrapper h1 {
    font-size: 186px;
    color: #bcbfc1
}

.not-found-wrapper h2 {
    color: #2a2a2a;
    font-size: 30px;
    line-height: 90px;
    padding: 40px 0 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.not-found-wrapper p {
    padding-bottom: 60px;
    font-size: 18px;
    color: #2a2a2a;
    line-height: 26px;
    font-weight: 400;
}

.not-found-wrapper a {
    color: #38ba3d;
}


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


/* 12. privacy page */


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

.privacy-wrapper {
    background: #fff;
}

.privacy-wrapper h2 {
    display: block;
    padding-bottom: 25px;
    font-size: 30px;
    color: #343a3c;
    line-height: 32px;
    text-transform: none;
}

.privacy-wrapper p {
    padding-bottom: 25px;
    color: #7d8081;
}

ul.privacy-listing {
    padding: 10px 0;
}

ul.privacy-listing>li {
    border-bottom: 1px dashed #c9cdce;
    color: #707c82;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 0 15px 24px;
    position: relative;
}

ul.privacy-listing>li:last-child {
    border-bottom: none;
}

ul.privacy-listing>li:before {
    display: block;
    position: absolute;
    left: 0px;
    top: 4px;
    font-family: 'icomoon';
    font-size: 12px;
    color: #16b0e7;
    content: "\e917";
}

ul.privacy-listing>li>ul {
    padding: 4px 0;
}

ul.privacy-listing>li>ul>li {
    font-size: 12px;
    font-weight: normal;
}

ul.privacy-listing>li>ul>li:before {
    display: inline-block;
    vertical-align: middle;
    top: -2px;
    width: 5px;
    height: 5px;
    margin-right: 12px;
    border-radius: 50%;
    content: "";
    background: #98b4cb;
}

.privacy-wrapper hr {
    border-color: #daddde;
}

.privacy-wrapper h3 {
    display: block;
    padding-bottom: 25px;
    font-size: 24px;
    color: #343a3c;
    line-height: 32px;
    text-transform: none;
}

.privacy-wrapper .padding-top {
    padding-top: 30px;
}

.imp-note {
    display: block;
    margin: 10px 0 38px 0;
    box-shadow: 0 0 8px #e4e7e9;
    padding: 24px 40px 5px 22px;
    background: #fdfdfe;
}

.imp-note span {
    width: 72px;
    height: 72px;
    line-height: 52px;
    margin-right: 25px;
    display: block;
    float: left;
    border-radius: 50%;
    background: #16b0e7;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border: 12px #addef0 solid;
}

.imp-note p {
    padding-bottom: 25px;
    font-size: 13px;
    color: #004f81;
    line-height: 22px;
    overflow: hidden;
}

ol.ord-listing {
    padding-left: 68px;
    counter-reset: li;
    list-style: none;
    *list-style: decimal;
}

ol.ord-listing li {
    position: relative;
    min-height: 60px;
    margin-top: 15px;
    padding-bottom: 20px;
    color: #7d8081;
    border-bottom: 1px #daddde solid;
}

ol.ord-listing li:before {
    content: counter(li);
    counter-increment: li;
    color: #fff;
    background: #0d68ff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    position: absolute;
    top: 7px;
    left: -50px;
}

ol.ord-listing li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}


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


/* 14. terms page */


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

.generic-wrapper {
    display: block;
}

.generic-wrapper .head-block {
    display: block;
    padding-bottom: 50px;
}

.generic-wrapper .head-block h2 {
    padding-bottom: 10px;
}

.generic-wrapper .head-block p {
    color: #7d8081;
}

.generic-wrapper hr {
    margin: 0;
    border-color: #dde5e9;
}

.generic-wrapper .heading-group {
    display: block;
}

.heading-group h1,
.heading-group h2,
.heading-group h3,
.heading-group h4,
.heading-group h5,
.heading-group h6 {
    padding-bottom: 30px;
}

.heading-right {
    display: block;
}

.heading-right ul.privacy-listing,
.heading-right ul.privacy-listing li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.heading-right p {
    padding-bottom: 20px;
}

ul.our-spec {
    display: block;
}

ul.our-spec li {
    width: 33.3%;
    padding-bottom: 50px;
    float: left;
    font-weight: 700;
    color: #284962;
    text-align: center;
    line-height: 20px;
}

ul.our-spec li .icon {
    display: block;
    padding-bottom: 15px;
}

ul.our-spec li .icon img {
    border-radius: 3px;
}

ul.our-spec li:last-child,
ul.our-spec li:nth-last-child(2),
ul.our-spec li:nth-last-child(3) {
    padding-bottom: 0px;
}

.button-group {
    margin-bottom: 70px;
}

.button-group a {
    display: inline-block;
    vertical-align: middle;
}

a.btn-circle {
    width: 60px;
    height: 60px;
    margin: 0 8px;
    display: inline-block;
    line-height: 64px;
    border-radius: 50%;
    text-align: center;
    background: #ff9600;
    font-size: 22px;
    color: #fff;
}

a.btn-circle.more {
    background: #17a43b;
}

a.btn-circle.plus {
    background: #2c97ea;
}

a.btn-circle.plus:hover {
    background: #ff9600;
}

a.btn-circle:hover {
    background: #2c97ea;
}

.button-group a.btn {
    margin: 0 8px;
}

.generic-wrapper .imp-note {
    margin: 0px;
}

.button-group1 {
    margin: 0;
}

.button-group1 a.download-pros,
.button-group1 a.download-cert {
    width: calc(50% - 20px);
    margin: 0 10px;
}

.generic-wrapper ul.tags-list,
.generic-wrapper ul.teachers-follow {
    padding-top: 0px;
    margin-bottom: 40px;
}

.generic-wrapper .enquire-now {
    margin: inherit;
}


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


/*  service Detail Page */


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

.practice-area-banner {
    background: url(../images/practice-areas-banner-bg.jpg) no-repeat center top / cover;
}

.tab-content ul.half-width,
ul.half-width {
    padding: 0;
    float: left;
    width: 100%;
}

ul.half-width li {
    float: left;
    width: 50%;
}

.practice-areas-detail .tab-content h2.title {
    margin: 15px 0 10px;
}

.google-map #map iframe {
    width: 100%;
    height: 100%;
}


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


/* 15. Responsive Style */


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

@media only screen and (min-width: 992px) {
    .form-heading {
    border: 1px solid #000!important;
    text-align: center;
    width: 295px;
    font-size: 16px!important;
    margin-left: 22px;
    margin-top: 49px;
}
   .navbar .navbar-nav li ul {
    position: absolute;
    top: 74px;
    left: -10px;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 13px 31px -5px rgb(0 0 0 / 36%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    border: 1px #39ba3fa6 solid;
    }
    .navbar .navbar-nav li:hover ul {
        display: block !important;
        opacity: 1;
        visibility: visible;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .navbar-nav>li>a {
        padding: 24px 0;
    }
    .navbar-nav>li>ul li a {
        padding: 4px 12px;
        white-space: nowrap;
    }
    .box {
    margin: 0 auto;
    /* background: rgba(255,255,255,0.2); */
    /* padding: 19px; */
    /* border: 2px solid #fff; */
    /* border-radius: 20px/50px; */
    background-clip: padding-box;
    text-align: center;
}
}

@media only screen and (min-width: 1200px) {
    .navbar-nav>li>a {
        padding: 34px 0;
    }
    .navbar .navbar-nav li ul {
        top: 94px;
    }
}

@media only screen and (max-width: 1710px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: 12px;
        padding: 10px 8px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 1400px) {
    .header-right-bottom {
        width: calc(100% - 355px);
    }
    header .logo {
        width: 350px;
    }
    .header-right-top a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1199.98px) {
    /*===========================
        Header
    ===========================*/
    header .logo {
        width: 260px;
        padding: 10px 0 0 20px;
    }
    .header-right-bottom {
        width: calc(100% - 265px);
    }
    .navbar-nav>li {
        padding-right: 20px;
    }
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 4px;
        line-height: 51px;
    }
    .call_section {
        width: 200px;
        padding: 8px 0 10px;
    }
    .call_section .free-consultation_btn {
        font-size: 14px;
    }
    .call_section .tel-number {
        font-size: 16px;
        line-height: 30px;
    }
    .inner-banner {
        padding: 120px 0;
    }
    .dropdown-item {
        font-size: 14px;
    }
    .navbar-inverse .navbar-nav>li>a {
        font-size: 14px;
        padding: 12px 12px;
    }
    .header-right-top .call_section::before {
        left: -47px;
    }
    .header-right-top a,
    header.header-small .header-right-top a {
        font-size: 14px;
    }
    .header-right-top a.tel-number .fa.fa-phone {
        font-size: 18px;
        left: -21px;
        top: 2px;
    }
    .about.about-us {
        padding-bottom: 40px;
    }
    /*===========================
        Hero Slider
    ===========================*/
    .main-container {
        margin-top: 74px;
    }
    .banner-outer .content h1 {
        font-size: 40px;
        padding-bottom: 15px;
    }
    .banner-outer .content p {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 10px;
    }
    .banner-outer .slide1,
    .banner-outer .slide2,
    .banner-outer .slide3 {
        height: 450px;
    }
    .counter_sec .box::before {
        left: -25px;
    }
    .about ul.our-links li .detail h3 {
        font-size: 18px;
    }
    .about ul.our-links li .detail p {
        font-size: 14px;
        line-height: 22px;
    }
    .about ul.our-links li .icon img {
        max-width: 45px;
    }
    .row.heading h2 {
        font-size: 35px;
        line-height: 40px;
        padding-bottom: 40px;
    }
    .row.heading.heading-icon h2 {
        background-size: 260px;
    }
    .we-are-here .left-block .details h2 {
        font-size: 35px;
        line-height: 40px;
        padding-bottom: 5px;
    }
    .we-are-here .left-block .details h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .we-are-here .left-block .details p {
        font-size: 15px;
        line-height: 22px;
    }
    .free-btn {
        font-size: 18px;
    }
    .we-are-here .right-block .box .counter {
        font-size: 28px;
        line-height: 35px;
    }
    .we-are-here .right-block.cases-box {
        padding: 100px 0 0 35px;
    }
    .practice-area .inner h3 {
        font-size: 16px;
    }
    .practice-area .inner img {
        max-width: 50px;
    }
    .read-more {
        font-size: 14px;
    }
    .our-attorneys .cnt-block h3 {
        font-size: 16px;
    }
    .news-events .news-box h2 {
        font-size: 17px;
        line-height: 25px;
        padding: 15px 0 10px;
    }
    .news-events .news-box .date {
        font-size: 14px;
        width: 80px;
    }
    .news-events .news-box .date span {
        font-size: 28px;
        padding: 0 0 2px;
    }
    .news-listes h2 {
        font-size: 14px;
    }
    .footer h3 {
        font-size: 18px;
        padding-bottom: 15px;
    }
    .inner-banner .content {
        padding: 0 60px;
    }
    .inner-banner h1 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
    }
    .inner-banner p {
        font-size: 16px;
        line-height: 24px;
    }
    .rightSide h3 {
        font-size: 18px;
    }
    .rightSide .category ul li a,
    .category ul li a {
        font-size: 14px;
    }
    .tab-content h2 {
        font-size: 22px;
        padding: 10px 0;
    }
    .practice-areas-detail .tab-content h2.title {
        margin: 10px 0 5px;
    }
    .download-brochures a {
        font-size: 14px;
        margin: 5px 0;
    }
    ul.half-width li {
        width: 100%;
    }
    .related-case h2 {
        font-size: 22px;
    }
    .practice-area .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .practice-area .owl-carousel .owl-nav .owl-next {
        right: 0;
    }
    .our-attorney-profile h2.title,
    .our-attorney-profile h2 {
        font-size: 20px;
    }
    .profile-pic {
        text-align: center;
    }
    .profile-pic img {
        display: inline-block;
    }
    ul.blog-listing>li h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .blog-right h3 {
        font-size: 18px;
    }
    .contact-info {
        padding-left: 20px;
        padding-top: 15px;
    }
    .contact-info h2,
    .form-wrapper h2 {
        font-size: 20px;
    }
    .contact-info p .fa {
        width: 40px;
        height: 40px;
        padding: 6px 0 0;
    }
    .contact-info p {
        font-size: 14px;
        line-height: 25px;
    }
    .contact-info span.numbers {
        width: calc(100% - 60px);
        margin: -5px 0 0;
    }
    .google-map #map {
        height: 290px;
    }
    .banner-outer .content h2 {
        font-size: 30px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    .counter_sec .box .counter {
        font-size: 30px;
        line-height: 24px;
    }
    .btn {
        font-size: 15px;
    }
    .contact-us .fa {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991.98px) {
    .main-container {
        margin-top: 84px;
    }
    .navbar-brand {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .call_section {
        display: none;
    }
    .navbar-toggler {
        width: 35px;
        height: 25px;
        right: 15px;
        border: none;
        position: relative;
        border-radius: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
    }
    .navbar-toggler:focus {
        box-shadow: none;
        outline: 0;
    }
    .navbar-toggler span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #268508;
        opacity: 1;
        left: 0;
        top: 0;
        border-radius: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    .navbar-toggler span:nth-child(2) {
        top: 10px;
    }
    .navbar-toggler span:nth-child(3) {
        top: 20px;
    }
    .navbar-toggler.nav-active span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .navbar-toggler.nav-active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler.nav-active span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .navbar-nav>li.has-submenu>a:after {
        display: none;
    }
    .navbar-nav li {
        padding-right: 0;
        border-top: solid 2px #268508;
    }
    .navbar-nav>li ul li a {
        padding-left: 40px;
    }
    .navbar-nav>li a {
        padding: 12px 20px;
        line-height: 22px;
    }
    .navbar-nav>li.has-submenu ul {
        display: none;
    }
    .navbar-nav>li.has-submenu span {
        display: block;
    }
    .our-attorneys .cnt-block {
        margin-bottom: 28px;
    }
    .about,
    .we-are-here .left-block .details,
    .practice-area.padding-lg,
    .footer-bottom {
        padding: 45px 0 50px;
    }
    .practice-area.padding-lg {
        padding-bottom: 20px;
    }
    .inner-banner {
        padding: 100px 0;
    }
    .contact-us.padding-lg {
        padding-top: 45px;
        padding-bottom: 30px;
    }
    .privacy-wrapper h2 {
        font-size: 26px;
    }
    .privacy-wrapper h3 {
        font-size: 22px;
    }
    .padding-short-top.over-experience {
        padding-top: 40px;
    }
    .news-listes>li:last-child {
        margin-bottom: 0;
    }
    .banner-outer .content h1 {
        font-size: 30px;
    }
    .banner-outer .content h2 {
        font-size: 26px;
    }
    .footer-bottom .col-sm-6:nth-child(3),
    .footer-bottom .col-sm-6:nth-child(4) {
        margin-top: 30px;
    }
    .we-are-here .left-block .details h2 {
        font-size: 30px;
    }
    .blog-right .tags {
        padding-bottom: 0;
    }
    .row.padding-short-top {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .navbar-inverse .navbar-nav>li>a {
        padding: 12px 5px;
    }
    .form-heading {
    border: 1px solid #000!important;
    text-align: center;
    width: 300px;
    font-size: 16px!important;
    margin-top: 100px;
    text-align: center;
}
    .about ul.our-links li .box {
        padding: 30px 10px;
    }
    .we-are-here .right-block.cases-box {
        padding: 100px 0 0;
    }
    .practice-area .inner {
        padding: 30px 10px;
    }
    .news-events ul {
        margin-bottom: 0;
    }
    .testimonial ul li p {
        font-size: 14px;
        line-height: 21px;
    }
    .rightSide h3 {
        font-size: 17px;
    }
    ul.blog-listing>li .read-more {
        font-size: 14px;
    }
    .pagination>li:first-child>a,
    .pagination>li:first-child>span,
    .pagination>li:last-child>a,
    .pagination>li:last-child>span {
        font-size: 14px;
    }
    .recent-post ul li .detail h4 {
        font-size: 14px;
    }
    .comments-wrapper h2 {
        font-size: 18px;
        padding-bottom: 12px;
    }
    .connect-with-us li {
        margin: -8px 2px 0;
    }
    .dropdown-item {
        font-size: 11px;
        padding: 0 8px;
    }
    .container {
        max-width: 100%;
    }
    .header-right-top a.tel-number {
        margin-right: 15px;
    }
    .counter_sec .box .counter {
        font-size: 25px;
        line-height: 24px;
    }
    .counter_sec .box .title {
        font-size: 11px;
    }
}

@media (min-width: 1200px) and (max-width: 1366px) {
    .logos {
        padding: 40px 0;
    }
}


/* Portrait tablet to landscape and desktop */

@media (min-width: 992px) and (max-width: 1199px) {
    .nav>li>a {
        padding: 12px 14px;
    }
    .navbar-form {
        width: 24%;
        padding: 0 20px;
    }
    .news-events ul li .cnt-block h3 {
        font-size: 18px;
    }
    .campus-tour {
        padding: 60px 0 0 0;
        padding-bottom: 0px;
    }
    .campus-tour ul.gallery li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .campus-tour ul.gallery li h3 {
        font-size: 20px;
    }
    .campus-tour ul.gallery li a {
        margin: 0 2px;
    }
    .campus-tour ul.gallery li .overlay {
        margin-top: -55px;
    }
    .details-tab,
    .padding-lg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    a.download-pros,
    a.download-cert {
        padding: 20px 16px;
    }
    a.download-pros .txt-block,
    a.download-cert .txt-block {
        text-transform: none;
    }
    a.download-pros .ico-block,
    a.download-cert .ico-block {
        padding-right: 10px;
    }
    .logos {
        padding: 40px 0;
    }
    .footer ul.follow-us li a {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }
    .footer .connect-us {
        width: 100%;
    }
    .footer .subscribe {
        width: 100%;
        padding-right: 30px;
    }
    .footer .instagram {
        padding-right: 0px;
    }
    .about-video .container {
        height: 450px;
    }
    .about-video p {
        font-size: 55px;
    }
    .about {
        padding-bottom: 60px;
    }
    .about ul.our-links li {
        padding: 40px 0 40px 3%;
    }
    .course-detail {
        padding: 20px 30px;
        margin: 30px 0 0 0;
    }
    .course-detail .duration {
        width: 23%;
        padding-right: 20px;
    }
    .course-detail .duration.eligible {
        padding: 0 20px;
    }
    .course-detail .duration.fee {
        width: 21%;
        padding: 0 20px;
    }
    .course-detail .btn {
        margin: 10px 0 0 32px;
    }
    .how-apply ul li:nth-child(1):after,
    .how-apply ul li:nth-child(2):after {
        top: 54px;
    }
    .how-apply ul li p {
        padding: 34px 0 25px;
    }
    ul.blog-listing>li {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
        padding-left: 53px;
    }
    .not-found-wrapper {
        width: 60%;
        margin: 0 auto;
        padding: 100px 0 0 0;
    }
    .not-found-wrapper h1 {
        font-size: 186px;
    }
    .login-wrapper .login {
        max-width: 460px;
    }
    .login-wrapper .login-logo {
        margin-bottom: 40px;
        text-align: center;
    }
    .login-wrapper .login-logo a {
        width: 250px;
        display: inline-block;
    }
    .login-wrapper .head-block {
        padding: 22px 0;
    }
    .login-wrapper .head-block h1 {
        font-size: 30px;
    }
    .login-wrapper .cnt-block {
        padding: 30px;
    }
    .login-wrapper .or {
        width: 20%;
    }
    .login-wrapper .btn {
        padding: 10px 20px;
    }
    ul.testimonials li p {
        font-size: 16px;
        line-height: 30px;
    }
}


/* Portrait tablet */

@media (min-width: 768px) and (max-width: 991px) {
    .header-top ul.follow-us li {
        padding-right: 12px;
    }
    .header-middle .contact ul {
        padding-right: 28px;
    }
    .header-middle .contact ul li {
        padding: 0 20px;
        font-size: 16px;
    }
    .header-middle a.login {
        padding: 5px 14px;
    }
    .navbar-inverse .navbar-nav>li>a {
        font-size: 12px;
    }
    .navbar-inverse .container {
        padding: 0px;
    }
    .nav>li>a {
        padding: 18px 12px;
    }
    .navbar-form {
        width: 24%;
        padding: 0 15px;
    }
    .banner-outer .content h1 span {
        font-size: 50px;
    }
    .banner-outer .slide2 .content h1,
    .banner-outer .slide3 .content h1 {
        font-size: 46px;
    }
    .about {
        padding-bottom: 60px;
    }
    .about.about-us {
        padding: 45px 0px;
    }
    .about .video-block a {
        width: 50px;
        margin-top: -25px;
    }
    .about ul.our-links li {
        text-align: center;
    }
    .about ul.our-links li .icon {
        width: 26%;
        float: none;
        margin: 0 auto;
        padding-bottom: 15px;
    }
    .about ul.our-links li .detail {
        width: auto;
        padding-left: 0px;
    }
    .about .btn-wrapper {
        margin-bottom: 30px;
    }
    .our-impotance ul li .inner {
        padding: 30px 0;
    }
    .details-tab,
    .padding-lg {
        padding-top: 45px;
        padding-bottom: 50px;
    }
    .our-cources h2,
    .how-study h2,
    .why-choose h2,
    .news-events h2,
    .campus-tour h2,
    .testimonial h2,
    .about h2,
    .browse-teacher h2,
    .how-apply h2,
    .have-question h2 {
        font-size: 30px;
    }
    .news-listes h2 {
        font-size: 16px;
    }
    .our-cources ul.inner li:nth-child(9) {
        margin-bottom: 160px;
    }
    .our-cources ul.inner li:nth-child(3n):after,
    .our-cources ul.inner li:nth-child(n+10):before {
        display: none;
    }
    .our-cources ul.inner li:nth-child(9):before {
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0px;
        bottom: -70px;
        display: block;
        background: #fff;
        content: " ";
        opacity: 0.3;
    }
    ul.our-strength li span {
        font-size: 38px;
    }
    ul.our-strength li {
        width: 24%;
    }
    .news-events ul li .cnt-block {
        padding: 32px 20px 20px;
    }
    .news-events ul li .cnt-block h3 {
        padding-bottom: 26px;
        font-size: 18px;
        line-height: 24px;
    }
    .news-events ul li .bottom-block {
        padding: 20px 0 0;
    }
    .news-events ul li .icon {
        margin-right: 4px;
    }
    .news-events ul li .icon span {
        font-size: 14px !important;
    }
    .news-events ul li .cnt-block .plus-icon {
        width: 54px;
        height: 54px;
        line-height: 54px;
    }
    .news-events ul li .date span,
    .news-events ul li .comment span {
        font-size: 11px;
    }
    .how-study ul li .cnt-block {
        max-width: 152px;
    }
    .how-study ul li a.more {
        right: 10px;
    }
    .how-study ul li .cnt-block h3 {
        font-size: 18px;
        line-height: 20px;
    }
    .campus-tour {
        padding-bottom: 0px;
    }
    .campus-tour ul.gallery li h3 {
        font-size: 14px;
    }
    .campus-tour ul.gallery li a {
        width: 34px;
        height: 34px;
        margin: 0 2px;
        line-height: 34px;
        font-size: 14px;
    }
    .campus-tour ul.gallery li .overlay {
        margin-top: -58px;
    }
    .campus-tour ul.gallery li:hover .overlay {
        top: 60%;
    }
    .campus-tour ul.gallery li p {
        padding-bottom: 10px;
    }
    .logos {
        padding: 30px 0;
    }
    .testimonial ul li p {
        font-size: 14px;
        line-height: 21px;
    }
    .testimonial ul li span {
        font-size: 16px;
    }
    .testimonial .wrapper:before,
    .testimonial .wrapper:after {
        font-size: 38px;
    }
    .footer .footer-logo {
        padding-bottom: 20px;
    }
    .footer p {
        line-height: 20px;
    }
    .footer .bottom {
        padding: 20px 0;
    }
    .footer .connect-us {
        width: 100%;
    }
    .footer .subscribe {
        width: 100%;
        padding-right: 30px;
    }
    .footer .subscribe input[type='email'] {
        width: 75%;
    }
    .footer .subscribe .clear:before {
        font-size: 18px;
        top: 3px;
    }
    .footer .subscribe .clear .button {
        width: 40px;
        height: 34px;
    }
    .footer ul.follow-us li {
        padding: 0 2px;
    }
    .footer ul.follow-us li a {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 14px;
    }
    .footer .instagram {
        padding: 14px 15px 18px 0;
    }
    .footer .subscribe input[type='email'] {
        width: 78%;
        height: 34px;
    }
    ul.browse-teachers-list p {
        padding: 0 0 20px 0;
    }
    .about-video .container {
        height: 400px;
    }
    .about-video p {
        font-size: 50px;
    }
    .inner-banner a.apply-online {
        width: 100%;
    }
    .enquire-wrapper {
        max-width: none;
        margin-top: 30px;
    }
    .enquire-now {
        margin-top: 20px;
        max-width: none;
    }
    .course-detail {
        padding: 20px;
        margin: 30px 0 0 0;
    }
    .course-detail .duration {
        width: 33.3%;
        padding-right: 20px;
    }
    .course-detail .duration .icon {
        float: none;
        margin: 0 auto;
    }
    .course-detail .duration .detail {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }
    .course-detail .duration.eligible {
        width: 33.3%;
        padding: 0 20px;
    }
    .course-detail .duration.fee {
        width: 33.3%;
        border-right: none;
        padding: 0 20px;
    }
    .course-detail .btn {
        margin: 10px 0 0 32px;
    }
    .how-apply ul li .icon-block {
        width: 135px;
        height: 135px;
        line-height: 135px;
    }
    .how-apply ul li .icon-block img {
        width: 60px;
    }
    .how-apply ul li p {
        padding: 34px 0 25px;
    }
    .how-apply ul li .icon-block .num {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 16px;
        top: 20px;
        right: -8px;
    }
    .how-apply ul li:nth-child(1):after {
        top: 10px;
    }
    #myTabs {
        padding: 0px;
    }
    .course-tab>li>a {
        padding: 18px 0px;
        font-size: 16px;
    }
    .course-table>tbody>tr>td,
    .course-table>tfoot>tr>td,
    .course-table>thead>tr>td {
        padding: 18px 20px;
    }
    #schedule .fee-amt {
        font-size: 20px;
    }
    #semester ul.content>li h4 {
        font-size: 16px;
    }
    ul.blog-listing>li {
        padding-bottom: 30px;
        margin-bottom: 0px;
    }
    ul.blog-listing>li h2 {
        padding: 20px 0 10px;
        font-size: 20px;
        line-height: 1.2;
    }
    .blog-left:after {
        right: -20px;
    }
    ul.post-detail li {
        padding-right: 15px;
    }
    .category ul li a {
        font-size: 12px;
    }
    .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
        padding-left: 64px;
    }
    .not-found-wrapper {
        width: 60%;
        margin: 0 auto;
        padding: 100px 0 0 0;
    }
    .not-found-wrapper h1 {
        font-size: 166px;
    }
    .faq-wrapper .search-block input {
        height: 48px;
    }
    .faq-wrapper .search-block .search {
        width: 48px;
        height: 48px;
    }
    ul.faq-listing li .inner {
        padding: 20px 20px 20px 68px;
    }
    ul.faq-listing li .inner:before {
        top: 36px;
    }
    .faq-wrapper .text-center,
    .testimonial-outer .text-center {
        margin-top: 40px;
    }
    .login-wrapper .login {
        max-width: 460px;
    }
    .login-wrapper .login-logo {
        margin-bottom: 40px;
        text-align: center;
    }
    .login-wrapper .login-logo a {
        width: 250px;
        display: inline-block;
    }
    .login-wrapper .head-block {
        padding: 22px 0;
    }
    .login-wrapper .head-block h1 {
        font-size: 30px;
    }
    .login-wrapper .cnt-block {
        padding: 30px;
    }
    .login-wrapper .or {
        width: 20%;
    }
    .login-wrapper .btn {
        padding: 10px 20px;
    }
    ul.testimonials li p {
        font-size: 15px;
        line-height: 26px;
    }
    ul.testimonials li .quotblock {
        padding: 40px 10px;
    }
    ul.gallery-filter li {
        width: auto;
        font-size: 17px;
        padding: 0 16px;
    }
    ul.gallery-filter li a {
        padding-bottom: 20px;
    }
    .campus-tour .pagination {
        margin: 50px 0;
    }
    .news-wrapper .text-center {
        margin-top: 10px;
    }
    ul.news-listing>li h2 {
        font-size: 18px;
        line-height: 26px;
    }
    ul.news-listing>li p {
        line-height: 24px;
    }
    .news-wrapper ul.post-detail li {
        padding-right: 10px;
        padding-bottom: 2px;
    }
    ul.news-listing>li .cnt-block {
        padding: 20px;
    }
    .form-outer .cnt-block {
        padding: 50px 20px;
    }
    .form-outer ul.select-opt {
        padding-bottom: 30px;
    }
    .form-outer .col-left:first-child {
        padding-right: 0;
    }
    .col-left ul.select-opt li label {
        padding-right: 21px;
    }
    .generic-wrapper ul.our-spec {
        padding-bottom: 40px;
    }
    .generic-wrapper .button-group {
        text-align: center;
    }
}


/* Landscape phone to portrait tablet */

@media (max-width: 767.98px) {
    .header-middle {
        padding-bottom: 0;
        padding-top: 5px;
        overflow: hidden;
    }
    header .logo::before {
        display: none;
    }
    header .logo {
        float: left;
        width: 100%;
        padding: 0;
    }
    .logo {
        text-align: center;
    }
    header .logo img,
    header.header-small .logo img {
        display: inline-block;
        max-width: 270px;
        margin: 10px 0;
    }
    .header-right-bottom {
        width: 100%;
    }
    .header-right-top .call_section {
        margin-right: 0;
        float: left;
        width: 100%;
    }
    .col-xs-12.col-sm-7.header-right-bottom {
        padding: 0;
    }
    .header-right-top,
    header.header-small .header-right-top {
        text-align: center;
        margin: 20px 0 0;
        padding: 4px 0 10px;
        border: 0;
    }
    .header-right-top a,
    header.header-small .header-right-top a {
        font-size: 12px;
    }
    .inner-banner {
        padding: 70px 0;
    }
    .header-right-top a.tel-number {
        margin: 0 18px 10px 0;
    }
    .header-right-top a.tel-number .fa.fa-phone {
        left: -1px;
        top: 3px;
        position: relative;
    }
    .navbar-inverse .navbar-toggle {
        border: none;
    }
    .navbar-header {
        background-color: #0267a2;
    }
    .navbar-inverse .navbar-toggle:focus,
    .navbar-inverse .navbar-toggle:hover {
        background: none;
    }
    .navbar-dark .navbar-toggler {
        cursor: pointer;
        border: 0;
    }
    .navbar-form {
        background: none;
        border: none;
        box-shadow: none;
    }
    .navbar-form .search-btn {
        top: 4px;
    }
    .form-control {
        padding: 6px 30px;
    }
    .navbar-toggle .icon-bar {
        width: 26px;
        height: 3px;
    }
    .navbar-form {
        width: auto;
        margin: 0 -15px;
    }
    .nav>li>a {
        padding: 12px 20px;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #333;
    }
    .nav.navbar-nav {
        padding: 0 10px;
    }
    .navbar-nav .open .dropdown-menu {
        background: #fff;
        border-radius: 0px;
    }
    .navbar .dropdown-menu {
        padding: 10px 0;
    }
    .navbar .dropdown-menu:after {
        display: none;
    }
    .header-top ul.top-nav li {
        padding: 0 7px;
    }
    .header-top .right-block {
        float: none;
    }
    .header-top .lang-wrapper {
        margin-right: -15px;
    }
    .header-middle a.login {
        padding: 5px 14px;
    }
    .call_section {
        width: 100%;
        padding: 8px 5px;
        margin: 5px 0 0;
    }
    .call_section .free-consultation_btn {
        font-size: 12px;
        margin-right: 10px;
    }
    .call_section .tel-number {
        font-size: 14px;
        line-height: 30px;
    }
    .container {
        max-width: 100%;
    }
    .banner-outer .content h1 span {
        font-size: 60px;
    }
    .banner-outer .content h1 {
        font-size: 26px;
    }
    .banner-outer .content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .banner-outer .content p {
        font-size: 14px;
        line-height: 24px;
    }
    .banner-outer .bx-wrapper .bx-pager {
        bottom: 10px;
    }
    .banner-outer .slide1,
    .banner-outer .slide2,
    .banner-outer .slide3 {
        height: 400px;
    }
    .counter_sec ul {
        background-position: center -30px;
        margin: 0;
    }
    .counter_sec li {
        margin-bottom: 40px;
    }
    .our-attorneys .col-12.col-md-6.col-lg-3:nth-child(3) .cnt-block {
        margin-bottom: 28px;
    }
    .about,
    .about.about-us {
        padding: 40px 0 40px;
        text-align: center;
    }
    .about .video-block a {
        width: 50px;
        margin-top: -25px;
    }
    .modal-open .modal {
        padding-right: 0px !important;
    }
    .about ul.our-links {
        margin: -226px 0 30px 0;
    }
    .about ul.our-links li {
        padding: 20px 20px 15px 20px;
    }
    .about ul.our-links li .detail a.more {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 16px;
        position: relative;
    }
    .about .left-block {
        padding-bottom: 30px;
    }
    .we-are-here .left-block .details {
        padding: 40px 15px;
        text-align: center;
    }
    .we-are-here .left-block .details h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .we-are-here .left-block .details h4 {
        font-size: 18px;
        line-height: 25px;
    }
    .free-btn {
        font-size: 16px;
        display: inline-block;
        float: none;
        padding: 8px 20px;
    }
    .we-are-here .right-block.cases-box {
        padding: 0;
        float: left;
        width: 100%;
    }
    .row.heading h2 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 30px;
        text-align: center;
    }
    .row.heading.heading-icon h2 {
        background-size: 200px;
    }
    .testimonial ul li {
        padding: 0;
    }
    .bx-controls-direction {
        display: none;
    }
    .news-listes figure img {
        width: auto;
        display: inline-block;
        height: auto;
    }
    .news-listes .news-list-details {
        width: 100%;
    }
    .news-listes h2 {
        font-size: 16px !important;
        margin: 0;
        padding: 0 0 8px !important;
    }
    .details-tab,
    .padding-lg {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .our-cources h2,
    .how-study h2,
    .why-choose h2,
    .news-events h2,
    .campus-tour h2,
    .testimonial h2,
    .about h2,
    .browse-teacher h2,
    .how-apply h2,
    .have-question h2 {
        padding-bottom: 30px;
        font-size: 26px;
    }
    .our-impotance ul li .inner {
        padding: 10px 10px 30px 10px;
        border-bottom: 1px #e9e9e9 solid;
    }
    .our-impotance ul li:last-child {
        margin-bottom: 0px !important;
    }
    .our-impotance ul li:last-child .inner {
        border-bottom: none;
    }
    .our-impotance ul li {
        border-right: none;
        margin-bottom: 30px !important;
    }
    .our-impotance ul li:after {
        display: none;
    }
    .our-impotance ul li h3 span {
        display: inline;
    }
    .how-study ul li {
        margin-bottom: 20px;
    }
    .how-study ul li .cnt-block {
        left: 20px;
    }
    ul.our-strength li {
        width: 24%;
        border: none;
    }
    ul.our-strength li span {
        font-size: 26px;
    }
    ul.our-strength li .title {
        line-height: 20px;
    }
    .news-events ul {
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .news-events ul li {
        margin-bottom: 30px;
        border-top: 1px solid #bbb;
        padding: 15px 0 0;
    }
    .news-events ul li .cnt-block {
        padding: 40px 20px 20px;
    }
    .news-events ul li .cnt-block h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .news-events ul li .cnt-block .plus-icon {
        width: 54px;
        height: 54px;
        line-height: 54px;
        font-size: 30px;
        top: -27px;
    }
    .news-events ul li .bottom-block {
        padding-top: 20px;
    }
    .campus-tour {
        padding-bottom: 0px;
    }
    .campus-tour ul.gallery li {
        width: 50%;
    }
    .campus-tour ul.gallery li h3 {
        font-size: 18px;
    }
    .campus-tour ul.gallery li a {
        width: 44px;
        height: 44px;
        margin: 0 4px;
        line-height: 44px;
        font-size: 18px;
    }
    .campus-tour ul.gallery li:hover .overlay {
        top: 60%;
    }
    .campus-tour ul.gallery li p {
        padding-bottom: 10px;
    }
    .logos {
        padding: 30px 0;
    }
    .testimonial ul li p {
        font-size: 18px;
        line-height: 28px;
    }
    .testimonial ul li span {
        font-size: 16px;
    }
    .testimonial .wrapper:before,
    .testimonial .wrapper:after {
        font-size: 38px;
    }
    .footer .row1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer .row1 .col-sm-9 {
        padding-bottom: 15px;
    }
    .footer-bottom .col-sm-6.col-md-3 {
        margin-bottom: 20px;
    }
    .footer .foot-nav {
        width: 100%;
        border-bottom: 1px #2e5f85 solid;
        padding: 10px 0 12px 0;
    }
    .footer .foot-nav h3 {
        padding-bottom: 0px;
        cursor: pointer;
    }
    .footer .foot-nav h3:after {
        vertical-align: middle;
        margin-top: -4px;
        float: right;
        content: " + ";
    }
    .footer .foot-nav h3.open:after {
        content: " - ";
    }
    .footer .foot-nav ul {
        padding: 15px 0 10px 0;
    }
    .footer .bottom {
        padding: 20px 0px;
    }
    .footer .connect-us,
    .footer .subscribe,
    .footer .instagram {
        width: 100%;
        border-right: none;
        padding-right: 0px;
    }
    .footer .instagram ul li a img {
        width: 100%;
    }
    ul.browse-teachers-list>li {
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px #e5e5e5 solid;
    }
    ul.browse-teachers-list>li:nth-child(2n) {
        border-right: none;
    }
    ul.browse-teachers-list>li:nth-last-child(2) {
        border-bottom: none;
    }
    .about-video .container {
        height: 300px;
    }
    .about-video p {
        font-size: 36px;
    }
    .inner-banner {
        padding: 30px 0 20px;
        min-height: auto;
    }
    .inner-banner h1 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    .inner-banner p {
    /* font-size: 14px; */
    /* line-height: 15px; */
    margin: 10px;
}
.popup h2 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    font-family: Tahoma, Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.popup {
    margin: 170px auto !important;
    padding: 20px;
    background: #fff;
    /* border-radius: 5px; */
    width: 40%;
    position: relative;
    transition: all 5s ease-in-out;
}
    .inner-banner a.apply-online .left {
        padding: 12px 0 12px 24px;
    }
    .inner-banner a.apply-online .arrow {
        line-height: 64px;
    }
    .about .btn-wrapper {
        margin-bottom: 20px;
    }
    .select-course {
        float: left;
        margin-bottom: 30px;
    }
    .our-cources.sub h2 {
        padding-left: 0px;
    }
    .our-cources ul.inner li {
        margin-bottom: 70px;
    }
    .our-cources ul.inner li:before {
        bottom: -35px;
        display: none;
    }
    .our-cources ul.inner li:nth-child(2n):after {
        display: none;
    }
    ul.cert-list li {
        width: 100%;
        float: none;
    }
    ul.cert-list li:nth-last-child(2) {
        border-bottom: 1px dashed #c0c4c6;
    }
    .enquire-now {
        max-width: none;
        margin-top: 0;
    }
    .enquire-wrapper {
        max-width: none;
    }
    .course-detail {
        padding: 0 20px;
        margin: 20px 0 0 0;
    }
    .course-detail .duration {
        width: auto;
        padding: 20px 0;
        border: none;
        float: none;
        border-bottom: 1px solid #dfe9f1;
    }
    .course-detail .duration.eligible {
        width: auto;
        padding: 20px 0px;
    }
    .course-detail .duration.fee {
        width: auto;
        float: none;
        padding: 20px 0px;
        border: none;
    }
    .course-detail .duration.fee .detail {
        padding: 0px;
    }
    .course-detail .btn {
        position: absolute;
        right: 36px;
        bottom: 22px;
        float: none;
        margin: 10px 0 0 0;
    }
    .how-apply ul,
    .how-apply ul li {
        padding-bottom: 30px;
    }
    .how-apply ul li .icon-block {
        width: 135px;
        height: 135px;
        line-height: 135px;
    }
    .how-apply ul li .icon-block img {
        width: 60px;
    }
    .how-apply ul li .icon-block .num {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 16px;
        top: 20px;
        right: -8px;
    }
    .how-apply ul li:nth-child(1):after,
    .how-apply ul li:nth-child(2):after {
        display: none;
    }
    .comments-wrapper ul.comments {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .comments-wrapper ul.comments li .com-txt {
        padding: 20px;
    }
    .leave-comment {
        padding-bottom: 30px;
        border-bottom: 1px solid #e9e9e9;
    }
    .leave-comment h4 {
        padding: 30px 0;
    }
    .leave-comment textarea {
        height: 100px;
    }
    #myTabs {
        padding: 0px;
    }
    .course-tab {
        margin-bottom: 30px;
    }
    .course-tab>li>a {
        font-size: 14px;
        padding-bottom: 16px;
    }
    .course-tab>li>a span {
        font-size: 44px;
        padding-bottom: 14px;
    }
    .course-tab>li>a .block {
        display: block;
    }
    .course-table>tbody>tr>td,
    .course-table>tfoot>tr>td,
    .course-table>thead>tr>td {
        padding: 18px 20px;
    }
    #schedule .fee-amt {
        font-size: 18px;
    }
    #semester ul.content {
        border-bottom: 1px dashed #c9cdce;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    #semester .col-sm-6:last-child ul.content {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    #semester ul.content>li h4 {
        font-size: 16px;
    }
    .inner-banner.contact,
    .inner-banner.blog {
        padding: 30px 0 60px 0;
    }
    .inner-banner.contact p,
    .inner-banner.blog p {
        padding-bottom: 0px;
    }
    .form-wrapper .row .col-sm-6 {
        margin-bottom: 0;
        margin-top: 15px;
    }
    .form-wrapper .row {
        margin-bottom: 18px;
    }
    .contact-detail .address {
        padding: 18px 40px 12px 60px;
    }
    .contact-bottom {
        padding: 18px 0 14px 0;
    }
    .blog-left {/*
        padding-bottom: 30px;*/
    }
    .blog-left:after {
        display: none;
    }
    .blog-right {
        padding-left: 0px;
    top: 126px;
    }

    ul.blog-listing>li {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    ul.blog-listing>li h2 {
        padding: 20px 0 15px;
        font-size: 18px;
        line-height: 26px;
    }
    ul.post-detail li {
        padding-bottom: 4px;
        padding-right: 18px;
    }
    .inner-banner.blog {
        min-height: 160px;
    }
    .recent-post,
    .archives {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px #e9e9e9 solid;
    }
    .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
        padding-left: 64px;
    }
  .category {
    padding-bottom: 30px;
    /* margin-bottom: 30px; */
    /* border-bottom: 1px #e9e9e9 solid; */
}
    .not-found-wrapper {
        width: 100%;
        margin: 50px auto;
        padding-top: 40px;
    }
    .not-found-wrapper h1 {
        font-size: 116px;
    }
    .not-found-wrapper img {
        width: 100%;
    }
    .not-found-wrapper h2 {
        font-size: 20px;
        line-height: 24px
    }
    .not-found-wrapper p {
        font-size: 15px;
        padding-bottom: 40px;
    }
    .faq-wrapper .search-block input {
        height: 48px;
    }
    .faq-wrapper .search-block .search {
        width: 48px;
        height: 48px;
    }
    ul.faq-listing li .inner {
        padding: 10px 20px 30px 48px;
    }
    ul.faq-listing li .inner:before {
        top: 26px;
        font-size: 36px;
    }
    ul.faq-listing li:nth-last-child(2) .inner {
        border-bottom: 1px #e2e4e6 solid;
    }
    ul.faq-listing li:nth-child(2n) .inner {
        padding-left: 48px;
    }
    ul.faq-listing li .inner:before {
        left: 0px !important;
        top: 22px;
    }
    .faq-wrapper .text-center,
    .testimonial-outer .text-center {
        margin-top: 40px;
    }
    .login-wrapper .login {
        max-width: 360px;
    }
    .login-wrapper .login-logo {
        margin-bottom: 30px;
        text-align: center;
    }
    .login-wrapper .login-logo a {
        width: 220px;
        display: inline-block;
    }
    .login-wrapper .head-block {
        padding: 18px 15px;
    }
    .login-wrapper .head-block h1 {
        font-size: 26px;
    }
    .login-wrapper .cnt-block {
        padding: 30px;
    }
    .login-wrapper .btn {
        padding: 8px 14px;
    }
    .login-wrapper .login-footer {
        padding: 12px 15px;
    }
    .login-wrapper ul.follow-us li {
        padding: 0 12px;
    }
    ul.testimonials:after {
        display: none;
    }
    ul.testimonials li h3 {
        padding-top: 8px;
    }
    ul.testimonials li p {
        font-size: 15px;
        line-height: 28px;
    }
    ul.testimonials li .quotblock {
        padding: 30px 10px 15px 10px;
    }
    ul.testimonials li:nth-child(3) .quotblock {
        padding-top: 30px;
    }
    ul.testimonials li:nth-last-child(2),
    ul.testimonials li:nth-last-child(3) {
        border-bottom: 1px solid #dfe5e1 !important;
    }
    ul.testimonials li:nth-child(odd):before,
    ul.testimonials li:nth-child(even):after {
        display: none;
    }
    ul.testimonials li:nth-child(even) {
        border-right: none;
    }
    ul.testimonials li:nth-last-child(2):before,
    ul.testimonials li:nth-last-child(3):before,
    ul.testimonials li:nth-last-child(2):after,
    ul.testimonials li:nth-last-child(3):after {
        display: block !important;
    }
    ul.gallery-filter {
        padding: 0px;
    }
    ul.gallery-filter li {
        width: auto;
        float: none;
        display: inline-block;
        padding: 0 16px;
        font-size: 16px;
    }
    ul.gallery-filter li a {
        padding-bottom: 20px;
    }
    .campus-tour .pagination {
        margin: 40px 0;
    }
    .news-wrapper .text-center {
        margin-top: 10px;
    }
    ul.news-listing>li h2 {
        font-size: 18px;
        line-height: 26px;
    }
    ul.news-listing>li p {
        line-height: 24px;
    }
    .news-wrapper ul.post-detail li {
        padding-right: 10px;
        padding-bottom: 2px;
    }
    ul.news-listing>li .cnt-block {
        padding: 20px;
    }
    .privacy-wrapper h2 {
        font-size: 24px;
    }
    .privacy-wrapper h3 {
        font-size: 20px;
    }
    ul.privacy-listing {
        padding: 0px;
    }
    ul.privacy-listing>li {
        padding-bottom: 10px;
    }
    ul.privacy-listing>li:last-child {
        border-bottom: 1px dashed #c9cdce;
    }
    ul.privacy-listing>li.last {
        border-bottom: none;
    }
    .privacy-wrapper .padding-top {
        padding-top: 10px;
    }
    .imp-note {
        padding: 20px;
    }
    .imp-note span {
        float: none;
        margin: 0px auto 20px;
    }
    .imp-note p {
        text-align: center;
    }
    .form-outer ul.select-opt {
        padding-bottom: 20px;
    }
    .form-outer .cnt-block textarea {
        height: 100px;
    }
    .form-outer .col-left {
        float: none;
    }
    .form-outer .select2.select2-container {
        margin-bottom: 30px;
    }
    .modal-body {
        padding: 10px;
    }
    .generic-wrapper ul.our-spec {
        padding-bottom: 40px;
    }
    .generic-wrapper .button-group {
        margin-bottom: 40px;
        text-align: center;
    }
    .generic-wrapper .pagination {
        padding-bottom: 30px;
    }
    .generic-wrapper ul.privacy-listing>li:last-child {
        border-bottom: none;
    }
    .inner-banner .content {
        padding: 0;
    }
    .inner-banner h1 {
        font-size: 26px;
        padding-bottom: 0px;
        line-height: 30px;
    }
    .tab-content h2 {
        font-size: 18px;
        padding: 5px 0;
    }
    .tab-content ul li {
        padding: 0 0 10px;
    }
    .related-case h2 {
        font-size: 18px;
    }
    .footer ul.follow-us li a {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 14px;
    }
    .footer ul.follow-us .fa {
        margin-top: 5px;
    }
    .rightSide {
        margin: 20px 0 0;
    }
    .practice-area .owl-carousel .owl-nav {
        display: none;
    }
    .our-attorney-profile .profile-details {
        margin: 20px 0 0;
    }
    ul.best-award li {
        padding: 0 8px 10px;
    }
    .blog-right h3 {
        font-size: 34px;
  
    }
    .blog-right p b {
        display: none;
    }
   .blog-right .rightBox {
    /* display: none; */
       top: 110px;
    background: #fff;
    z-index: 999;
    left: 251px;
    padding: 10px;
    box-shadow: 0 13px 31px -5px rgb(0 0 0 / 36%);
}
    .connect-with-us {
        text-align: center;
    }
    .contact-info .connect-with-us h2 {
        width: 100%;
    }
    .connect-with-us .follow-us {
        max-width: 134px;
        margin: 0 auto;
    }
    .banner-outer .content h2 {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 10px;
    }
    .banner-outer .content {
        max-width: 100%;
        text-align: center;
        width: 100%;
        float: left;
    }
    .btn {
        font-size: 14px;
    }
    .counter_sec {
        text-align: center;
        padding: 10px 0;
        margin: 10px 0 0;
    }
    .counter_sec .box .icon {
        width: 100%;
    }
    .counter_sec .box .content {
        width: 100%;
        margin: 5px 0 0;
    }
    .counter_sec .box {
        width: 100%;
        float: left;
        margin: 15px 0;
    }
    .counter_sec .box::before {
        top: 10px;
        height: 90px;
    }
    .news-events {
        padding-bottom: 0;
    }
    .news-events ul {
        margin-top: 0;
    }
    .about .heading {
        -ms-flex-pack: center;
        justify-content: center;
    }

}


/* Landscape phones and down */

@media (max-width: 640px) {
    .banner-outer .content h1 span {
        font-size: 50px;
    }
    .why-choose ul li {
        width: 48%;
        padding-bottom: 30px;
    }
    .why-choose ul li:nth-child(n+3) {
        padding-bottom: 0px;
    }
    ul.our-strength.opt2 li {
        border-right: none;
    }
    ul.testimonials li {
        width: 100%;
    }
    ul.testimonials li:before,
    ul.testimonials li:nth-last-child(2):before,
    ul.testimonials li:nth-last-child(3):before,
    ul.testimonials li:after,
    ul.testimonials li:nth-last-child(2):after,
    ul.testimonials li:nth-last-child(3):after {
        display: none !important;
    }
    ul.testimonials li:nth-last-child(2),
    ul.testimonials li:nth-last-child(3) {
        border-bottom: 1px solid #dfe5e1;
    }
    ul.testimonials li:first-child .quotblock {
        padding-top: 0px;
    }
    ul.testimonials li:nth-child(2) .quotblock {
        padding-top: 30px;
    }
    ul.gallery-filter li {
        margin-bottom: 10px;
        font-size: 15px;
        padding: 0 6px;
    }
    ul.gallery-filter li a {
        padding-bottom: 8px;
    }
    ul.news-listing>li {
        width: 100%;
    }
    ul.select-opt li {
        width: 100%;
        margin-bottom: 8px;
        float: none;
    }
    .generic-wrapper ul.our-spec li {
        width: 50%;
        min-height: 142px;
    }
    .generic-wrapper a.btn-circle {
        margin-bottom: 20px;
    }
    .button-group1 a.download-pros,
    .button-group1 a.download-cert {
        width: 100%;
        margin: 0 0 2px 0;
    }

    .contact-info p .fa {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 35px;
        height: 35px;
        padding: 4px 0 0;
        margin-right: 15px;
    }
    .footer-bottom .col-sm-6:nth-child(2) {
        margin-top: 30px;
    }
    .blog-right .rightBox1 {
    top: 126px;
    /* background: #fff; */
    text-align: center;
    z-index: 999;
    /* padding: 20px; */
    box-shadow: 0 13px 31px -5px rgb(0 0 0 / 36%);
}
}


/* Landscape phones and down */

@media (max-width: 480px) {
    header .navbar-brand img {
        max-width: 250px;
    }
    header.header-small .navbar-brand img {
        max-width: 200px;
    }
    .main-container {
        margin-top: 75px;
    }
    .about {
        padding-bottom: 0;
    }
    .about.about-us {
        padding: 40px 0 0;
    }
    .not-found-wrapper {
        padding-top: 80px;
    }
    .banner-outer .content h1 span {
        font-size: 50px;
    }
    .our-impotance ul li {
        width: 100%;
    }
    .our-impotance ul li:after {
        width: 94%;
    }
    .our-impotance ul li .inner {
        padding: 10px 10px 30px 10px;
    }
    .our-impotance ul li h3 span {
        display: inline;
    }
    .testimonial ul li p {
        font-size: 16px;
        line-height: 26px;
    }
    .testimonial .wrapper:before,
    .testimonial .wrapper:after {
        font-size: 28px;
    }
    .about-video .container {
        height: 300px;
    }
    .about-video p {
        font-size: 32px;
    }
    a.download-pros {
        margin-bottom: 1px;
    }
    a.download-pros,
    a.download-cert {
        width: 100%;
        border: none;
    }
    .our-cources ul.inner li {
        width: 100%;
        margin-bottom: 40px;
    }
    .our-cources ul.inner li:nth-child(n+9) {
        margin-bottom: 40px;
    }
    .our-cources ul.course-list li:after {
        display: none;
    }
    .enquire-now .inner .row2 input {
        width: 100%;
        margin: 0 0 14px 0;
    }
    ul.browse-teachers-list>li {
        width: 100%;
        border: none;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .leave-comment input {
        width: 100%;
    }
    .leave-comment input:first-child {
        margin-bottom: 30px;
    }
    .course-detail .duration .icon {
        width: 57px;
        height: 57px;
        font-size: 34px;
    }
    .form-outer input {
        height: 40px;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    .login-wrapper .remember {
        margin-top: 20px;
    }
    .register .cnt-block textarea {
        margin-bottom: 20px;
    }
    .form-outer input.country-code {
        width: 20%;
    }
    .form-outer input.phone-no {
        width: calc(80% - 18px);
    }
}


/* iPhone 6 Plus and down */

@media (max-width: 414px) {
    .about-video p {
        font-size: 26px;
    }
    .pagination>li>a,
    .pagination>li>span {
        margin: 0 2px;
        padding: 4px 10px;
        font-size: 13px;
    }
    .pagination>li:first-child>a,
    .pagination>li:first-child>span,
    .pagination>li:last-child>a,
    .pagination>li:last-child>span {
        padding: 5px 14px;
    }
    .pagination>li:first-child a i {
        margin-right: 4px;
    }
    .pagination>li:last-child a i {
        margin-left: 4px;
    }
    .course-tab>li>a {
        font-size: 13px;
    }
    .not-found-wrapper h1 {
        font-size: 96px;
    }
    .not-found-wrapper p {
        padding-bottom: 30px;
    }
}


/* iPhone 6 and down */

@media (max-width: 375px) {
    .header-middle a.login {
        padding: 2px 8px;
    }
    .banner-outer .content h1 {
        font-size: 22px;
    }
    .banner-outer .content h2 {
        font-size: 18px;
    }
    .btn {
        padding: 8px 16px;
    }
    .testimonial #bx-pager a {
        margin: 0 2px;
    }
    .testimonial .wrapper:before {
        top: 44px;
    }
    .testimonial .wrapper:after {
        bottom: -26px;
    }
    .testimonial ul li p {
        padding-top: 30px;
    }
    .course-tab>li>a span {
        font-size: 40px;
    }
    .course-tab>li>a {
        font-size: 12px;
    }
    .not-found-wrapper h1 {
        font-size: 86px;
    }
    .login-wrapper .head-block h1 {
        font-size: 20px;
    }
    .login-wrapper .login {
        max-width: 320px;
    }
    .login-wrapper .cnt-block {
        padding: 20px 15px;
    }
    .login-wrapper .btn {
        padding: 6px 12px;
    }
    .privacy-wrapper h2 {
        font-size: 22px;
    }
}


/* iPhone 4 */

@media (max-width: 320px) {
    .about-video p {
        font-size: 24px;
    }
    .course-detail .btn {
        position: inherit;
        margin: 10px 0 20px 0;
        right: auto;
    }
    .not-found-wrapper h1 {
        font-size: 66px;
    }
    .not-found-wrapper p {
        font-size: 18px;
    }
    ul.faq-listing li h2 {
        font-size: 16px;
    }
    .login-wrapper .login {
        max-width: 300px;
    }
    .login-wrapper .cnt-block {
        padding: 20px 15px;
    }
    .login-wrapper .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}



/*/////////////////////////Login Popup//////////////////////*/

#modal-login .modal-content {
    border-radius: 2px;
}

#modal-login .modal-header {
    text-align: center
}

#modal-login .modal-title {
    font-size: 20px;
    display: inline-block
}

#modal-login .modal-footer {
    text-align: left;
    background: #895b2d;
    color: #fff;
    border: none;
}

#modal-login .modal-footer .loginpage_register {
    float: right;
    background-color: #895b2d;
    color: #fff;
}

#modal-login .loginpage_placeholder {
    position: absolute;
    top: -12px;
    font-size: 12px;
    left: 0;
    pointer-events: none;
    font-weight: 400;
    color: #999;
    transition: all .3s ease
}

#login-page-1-inp-password:focus~.loginpage_placeholder,
#login-page-1-inp-phone:focus~.loginpage_placeholder,
#login-page-2-inp-name:focus~.loginpage_placeholder,
#login-page-2-inp-password:focus~.loginpage_placeholder,
#login-page-2-inp-phone:focus~.loginpage_placeholder,
#login-page-3-inp-phone:focus~.loginpage_placeholder,
#login-page-4-inp-otp:focus~.loginpage_placeholder,
#login-page-5-inp-phone:focus~.loginpage_placeholder,
#login-page-6-inp-otp:focus~.loginpage_placeholder,
#login-page-7-inp-password:focus~.loginpage_placeholder,
#login-page-7-inp-phone:focus~.loginpage_placeholder,
#login-page-8-inp-otp:focus~.loginpage_placeholder {
    top: -18px;
    left: 0;
    font-size: 12px;
    color: #473384
}

.input-field {
    border: 0!important;
    outline: 0!important;
    box-shadow: none!important;
    border-bottom: 1px solid #999!important;
    border-radius: 0;
    padding-left: 0
}

.input-field:focus {
    border-bottom: 1px solid #473384!important
}

#modal-login #login-page-1-inp-phone {
    margin-top: 10px
}

#modal-login #login-page-1-inp-password {
    margin-top: 22px
}

.has-value {
    top: -18px!important;
    left: 0!important;
    font-size: 12px!important
}

#modal-login .form-group {
    position: relative
}

#modal-login-blur,#login-blur,
#or:before {
    position: absolute;
    top: 0
}

#modal-login #new-user {
    display: inline-block;
    margin: 6px 0
}

#or:before {
    content: 'OR';
    width: 28px;
    height: 28px;
    border-radius: 15px;
    background: #000;
    color: #fff;
    padding-top: 7px;
    display: inline-block;
    margin: 10px;
    font-size: 12px;
    left: calc(50% - 24px)
}

.login-facebook,
.login-google {
    display: block;
    cursor: pointer
}

#or::after {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, #e6e6e6, #000, #e6e6e6);
    display: inline-block;
    margin: 25px
}

.login-google-facebook {
    margin-top: 15px
}

.login-google-facebook img {
    width: 24px
}

.login-google {
    padding: 5px;
    border: 1px solid #da1201;
    border-radius: 3px
}

.login-google span {
    color: #da1201;
    font-size: 12px
}

.login-facebook {
    margin-top: 5px;
    padding: 5px;
    border: 1px solid #241cbd;
    border-radius: 3px
}

.login-facebook span {
    font-size: 12px;
    color: #241cbd
}

.user-image-placeholder {
    width: 100px;
    height: 100px;
    border: 3px solid #eee;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    box-sizing: content-box;
}

.back-btn {
    margin-top: 12px;
    margin-bottom: 0
}

.back-btn p {
    margin: 0;
    cursor: pointer;
    display: inline
}

#login-page-1,
#modal-login-blur-img,#login-blur-img {
    display: block
}

.back-btn p:hover {
    text-decoration: underline
}

#modal-login-blur,#login-blur {
    display: none;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .6);
    z-index: 9999
}

#modal-login-blur-img {
    width: 100px;
    margin: auto;
    margin-top: calc(50% - 50px);
}
#login-blur-img {
    width: 100px;
    margin: auto;
    margin-top: calc(25% - 50px);
}

#login-page-4-resend,
#login-page-6-resend,
#login-page-8-resend,
div[id^=login-page-] {
    display: none
}

#password_error,
#phone_error {
    color: red;
    display: none
}

.login-err {
    color: #eb4d4b;
    display: none;
}

#login-page-4-resend {
    cursor: pointer;
    color: #176690
}

#modal-login .modal-header .close {
    margin-top: -2px;
    color: #333;
    opacity: 1;
    font-size: 30px;
}

#modal-login .btn-success,
#modal-login .btn-primary {
    color: #fff;
    background-color: #e59837;
    border-color: #e59837;
    border-radius: 2px;
}


/*/////////////////////////Login Popup End//////////////////////*/

 .box {
     margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 19px;
    border: 2px solid #fff;
    /* border-radius: 20px/50px; */
    background-clip: padding-box;
    text-align: center;
}

.button {
  font-size: 1em;
  padding: 5px 8px;
  color: #080808;
  border: 2px solid #06D85F;
  /*border-radius: 20px/50px;*/
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
      position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 62%);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
 margin: 132px auto;
    padding: 20px;
    background: #fff;
    /* border-radius: 5px; */
    width: 40%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 35px;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
     top: 20px;
    right: 14px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #db0202;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box {
     padding: 0px !important; 
    /* border: 2px solid #fff; */
    /* border-radius: 20px/50px; */
    background-clip: padding-box;
    text-align: center;
}
  .popup{
    width: 80%;
    margin-top: 130px!important
  }
}


div#app {
    margin:10% auto;
    max-width:1280px;
}

.container__main {
    display:block;
    margin:auto;
    background-color: #ffffff;
    box-shadow: 0 0.5px 7.5px 0 rgba(69, 65, 78, 0.32);
    padding:12px 0 0 0;
  }

  .span__status {
      white-space: nowrap;
  }


  /*@!__Progress Bar__*/
.div__status-bar {
    border-bottom: 2px solid #f2f3f4;
}

#ul__progress-bar {
    display: inline-flex;
    margin: 20px 0;
    width: auto;
    padding: 0;
}

#ul__progress-bar > li {
    padding: 0;
    margin-left: -40px;
}

li#pendant__1 {
    margin: 5px 10em 20px 2em;
}

li#pendant__2, li#pendant__3 {
    margin: 5px 10em 20px 10em;
}

#ul__progress-bar > li.complete {
    width: 12px;
    height: 12px;
    border-radius: 25px;
    text-align: center;
    list-style-type: none;
    line-height:1.2em;
    background-color: #2c3e50;
    border: solid 5px #dbe3eb;
} 

#ul__progress-bar > li.active {
    width: 12px;
    height: 12px;
    border-radius: 25px;
    text-align: center;
    list-style-type: none;
    line-height:1.2em;
    background-color: #1cbacf;
    border: solid 5px #dbe3eb;
}

#ul__progress-bar > li.inactive {
    width: 12px;
    height: 12px;
    border-radius: 25px;
    text-align: center;
    list-style-type: none;
    line-height:1.2em;
    background-color: #fff;
    border: solid 5px #dbe3eb;
}

  #ul__progress-bar >  li > div {
      text-align: center;
      margin : 22px 0px 0px -11px;
      line-height: 2em;
      width:max-content;
  }

  span#line_1 {
    background-color: #e5e7e9;
    width: 311px;
    height: 1.5px;
    position: absolute;
    margin-top: 15px;
    margin-left: 58px;
  }

  span#line_2 {
    background-color:#e5e7e9;
    width: 311px;
    height: 1.5px;
    position: absolute;
    margin-top: 15px;
    margin-left: 400px;
}

  .button__button-continue {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    padding:12px;
    letter-spacing: normal;
    font-size:1em;
    text-align: center;
    float: right;
    color: #ffffff;
    background-color: #1cbacf;
    margin: 10px;
    border-radius:10px;
    box-shadow: none;
    border:none;
    cursor:pointer;
  }

  .button__button-back {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    padding:12px;
    letter-spacing: normal;
    font-size:1em;
    text-align: center;
    float: right;
    color: #ffffff;
    background-color: rgba(69, 65, 78, 1);
    margin: 10px;
    border-radius:10px;
    box-shadow: none;
    border:none;
    cursor:pointer;
  }

  .button__button-return {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    padding: 12px;
    letter-spacing: normal;
    font-size: 1em;
    text-align: center;
    display: block;
    color: #ffffff;
    background-color: rgba(69, 65, 78, 1);
    margin: auto;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

button:focus, button:visited {
    outline:none;
}
  .button__button-continue:active, .button__button-continue:focus {
      border:none;
  }

  .button__button-continue.disabled {
      cursor:default;
  }

  /*!@__top of form__*/
  #top {
      display: inline-flex;
      width: inherit;
  }

  #top > div {
    display: inline-block;
    padding: 15px 0px 15px 15px;
}

  #top > #div__schedule {
    margin-right:25%;
  }

  #top > #div__summary {
    border-left: 2px solid #f2f3f4;
    margin-right: 9%;
  }
  div#div__year {
    border-left: 2px solid #f2f3f4;
}
        #year {
            margin:40px auto;
            font-size:46px;
            -webkit-text-stroke: 1px #2c3e4f;
            color:#fff;
            font-weight:900;
        }
        
        #__17 {
            color:rgba(69, 65, 78, 1);
        }
/*@!__main form__*/
.div__form {
    display: flex;
    background-color: #fff;
    border-top: 2px solid #f2f3f4;
}

/*@!__left content */
div#div__content-left {
    border-right: 2px solid #f2f3f4;
    background-color: #fff;
    display: block;
    width: 29.5%;
}
.box {
    padding-bottom: 10px;
}
.number-box {
    width: 15px;
    display: flex;
    background-color: #f2f3f4;
    padding: 0 15px;
    border-bottom: 1px solid #fff;
}

.text__input-label, .radio__input-label {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    padding: 15px 5px;
    width: fit-content;
}

.radio__box > label {
    font-weight: 500;
}

.form_content {
    padding: 0px 20px;
    font-size:14px;
    width:17em;
    margin-top: 12px;
    margin-bottom: 12px;
}


.form_content.radio__subsection {
    padding: 0px 20px;
    font-size:14px;
    width:20em;
    margin-top: 12px;
    margin-bottom: 12px;
}

input[type="text"] {
    padding: 7px;
    border: 1px solid #dbe3eb;
    width: inherit;
    border-radius: 2px;
    width: 100%!important;
}

input[type=checkbox]{
    display: none;
  }

  .radio__box {
      display: inline-block;
      width:25%;
  }

  input[type=checkbox] + label:before{
    content: "\2714";
    border: 0.1em solid #808081;
    border-radius: 0.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
  }
  input[type=checkbox] + label:active:before {
    transform: scale(0);
  }
  input[type=checkbox]:checked + label:before {
    background-color:#fff;
    border-color: #999;
    color: #fff;
  }

  .radio__box {
    display: inline-flex;
    width: -webkit-fill-available;
    margin-top: 25px;
}
  
.radio__box > label {
    margin-left:8px;
}

h2 {
    text-align: center;
    
}
.radio__top {
    border-bottom:2px solid #f2f3f4;
    margin-top:20px;
    padding-bottom:20px;
}

.radio__bottom {
    padding-bottom:20px;
}

/*@!__right content__*/
div#div__content-right {
    display: flex;
    width: 70%;
}

div#div__content-right > div.box {
    width:100%;
}

.box {
    padding-bottom: 10px;
}

.table-box, .checkbox-box {
    border-bottom:1px solid #f2f3f4;
}


#div__part2-right,
#div__part3-right  {
    width: 100%;
}


#div__content-right > div > div.table-box > 
div.number-box > div.box {
    border-bottom:none;
}

#div__content-right > div.form_content {
    width:25em;
}

table#section-j,
table#section-k,
table#section-l {
    width: 100%;
    padding-bottom:12px;
}
table#section-j > tbody > tr:nth-child(odd) {
    background-color:#f2f3f4;
 }
table#section-j > tbody > tr > td,
table#section-k > tbody > tr > td,
table#section-l > tbody > tr > td {
   padding:5px 0;
}

table#section-j > tbody > tr > td > input,
table#section-k > tbody > tr > td > input,
table#section-l > tbody > tr > td > input {
    width:85%;
}
th {
    background-color:#fff;
}
table#section-k > tbody > tr {
    background-color:#fff;
 }
 table#section-j > tbody > tr > td > input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #1cbacf;
    text-align: right;
    font-weight:600;
  }

  table#section-k > tbody > tr > td > input::-webkit-input-placeholder,
  table#section-l > tbody > tr > td > input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #1cbacf;
    text-align: left;
    font-weight:600;
  }

.inline-radio {
    width:19%;
    display:inline-flex;
    margin-right:12px;
    margin-bottom:20px;
    margin-top:20px;
}

.inline-radio:first-child {
    margin-left:80px;
}
.inline-radio:last-child {
    margin-left:40px;
}

 input#partner-contribution__yes,
 input#partner-contribution__no,
 label.partner-contribution__yes,
 label.partner-contribution__no {
    margin-top:16px;
}

div#div__part3-right > div.number-box > div.form_content {
    width:55em;
}

div#div__part3-right > div.number-box > div.form_content > input {
    margin-left:12px;
    margin-top:12px;
    padding:12px;
}

  /*@!__misc, overrides, styling__*/
.hide{
    display:none !important;
}

  .smaller {
      font-size: .9em;
  }
 
  .text__title-font {
      font-size:1.5em;
      margin-top: 28px;
      font-weight: bold;
      width: max-content;
      line-height:1px;
      margin-bottom:15px;
  }



/*@!__Media Qs__*/

@media screen and (max-width: 1350px){
    .div__form {
        display:contents;
    }
    #top {
        display:contents;
    }
    div#div__content-left {
        border-right:none;
    }
    div#div__year {
        border-left: none;
    }
    div#div__part3-right > div.number-box > div.form_content {
        width: calc(100% + 300px);
    }

}
@media screen and (max-width: 810px) {
    .div__form {
        display:contents;
    }
    
    span#line_2 {
        display: none;
    }
    span#line_1 {
        display: none;
    }
    #ul__progress-bar {
        display:block;
    }
    li#pendant__1,
    li#pendant__2,
    li#pendant__3 {
        margin: auto;
        margin-top: 20px;
    }
    .div__status-bar {
        border-bottom: none;
    }
    #ul__progress-bar > li > div {
        margin-left: 30px;
        margin-top: -4px;
    }
    .text__title-font {
        font-size: 1.5em;
        margin-top: 28px;
        font-weight: bold;
        width: inherit;
        line-height: normal;
        margin-bottom: 15px;
    }
    input[type="text"] {
        width:inherit;
    }
    #div__part3-left,
    #div__part3-right {
        display: block;
    }
    div#div__content-left,
    div#div__content-right {
        width: 50%;
    }
    .inline-radio:first-child {
        margin-left: 10px;
    }
    .inline-radio {
        width: 15%;
    }
    div#div__part3-right > div.number-box > div.form_content {
        width: calc(100% + 90px);
    }

}



.form-heading{
    border: 1px solid #000!important;
    text-align: center;
    width: 300px;
    font-size: 16px!important;
    margin-top: 100px;
    text-align: center;
}
.form-heading h4{
    
    font-size: 18px!important;
    padding-top: 10px
}
.form-row1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: 47px;
    margin-bottom: 20px;
}

.slt-option{
    border: 1px solid #dbe3eb;
    width: inherit;
    border-radius: 2px;
    margin-bottom: 29px;
    width: 100%;
    padding: 11px;
    color: #818181;

}





.form-modal{
    position:relative;
    width:450px;
    height:auto;
    margin-top:4em;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow:0 3px 20px 0px rgba(0, 0, 0, 0.1)
}

.form-modal button{
    cursor: pointer;
    position: relative;
    text-transform: capitalize;
    font-size:1em;
    z-index: 2;
    outline: none;
    background:#fff;
    transition:0.2s;
}

.form-modal .btn{
    border-radius: 20px;
    border:none;
    font-weight: bold;
    font-size:1.2em;
    padding:0.8em 1em 0.8em 1em!important;
    transition:0.5s;
    border:1px solid #ebebeb;
    margin-bottom:0.5em;
    margin-top:0.5em;
}

.form-modal .login , .form-modal .signup{
    background:#57b846;
    color:#fff;
}

.form-modal .login:hover , .form-modal .signup:hover{
    background:#222;
}

.form-toggle{
    position: relative;
    width:100%;
    height:auto;
}

.form-toggle button{
    width:50%;
    float:left;
    padding:1.5em;
    margin-bottom:1.5em;
    border:none;
    transition: 0.2s;
    font-size:1.1em;
    font-weight: bold;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.form-toggle button:nth-child(1){
    border-bottom-right-radius: 20px;
}

.form-toggle button:nth-child(2){
    border-bottom-left-radius: 20px;
}

#login-toggle{
    background:#57b846;
    color:#ffff;
}

.form-modal form{
    position: relative;
    width:90%;
    height:auto;
    left:50%;
    transform:translateX(-50%);  
}

#login-form , #signup-form{
    position:relative;
    width:100%;
    height:auto;
    padding-bottom:1em;
}

#signup-form{
    display: none;
}


#login-form button , #signup-form button{
    width:100%;
    margin-top:0.5em;
    padding:0.6em;
        color: #363636;
}

.form-modal input{
    position: relative;
    width:49%;
    font-size:1em;
    padding:1.2em 1.7em 1.2em 1.7em;
    margin-top:0.6em;
    margin-bottom:0.6em;
    border-radius: 20px;
    border:none;
    background:#ebebeb;
    outline:none;
    font-weight: bold;
    transition:0.4s;
}

.form-modal input:focus , .form-modal input:active{
    transform:scaleX(1.02);
}

.form-modal input::-webkit-input-placeholder{
    color:#222;
}


.form-modal p{
    font-size:16px;
    font-weight: bold;
}

.form-modal p a{
    color:#57b846;
    text-decoration: none;
    transition:0.2s;
}

.form-modal p a:hover{
    color:#222;
}


.form-modal i {
    position: absolute;
    left:10%;
    top:50%;
    transform:translateX(-10%) translateY(-50%); 
}

.fa-google{
    color:#dd4b39;
}

.fa-linkedin{
    color:#3b5998;
}

.fa-windows{
    color:#0072c6;
}

.-box-sd-effect:hover{
    box-shadow: 0 4px 8px hsla(210,2%,84%,.2);
}

@media only screen and (max-width:500px){
    .form-modal{
        width:100%;
    }
}

@media only screen and (max-width:400px){
    i{
        display: none!important;
    }
}

/*----------------------*/
#whatsapp-chat {
  box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 384px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgb(32 33 36 / 28%);
    bottom: 150px;
    right: 13px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 428px;
    right: 14px;
  font-size: 15px;
  padding: 10px 13px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}
.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
.header-chat h3 {
  margin: 0 0 10px;
}
.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-avatar {
  position: relative;
}
.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
a.informasi:hover {
  background: #f1f1f1;
}
.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}
#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#get-label,
#get-nama {
  color: #fff;
}
span.my-number {
  display: none;
}
/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
       border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 45px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
  width: 30px;
  font-weight: 700;
  padding: 10px 10px 0;
  background:#eee;
  
  svg {
    fill:#a6a6a6;
    height: 24px;
    width: 24px;
  }
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
  & span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
}

.start-chat .blanter-msg {
  display: flex;
}
#get-number {
  display: none;
}
a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;

}

@keyframes ZpjSY{
  0% {
    background-color: rgb(182, 181, 186);
  }
  15% {
    background-color: rgb(17, 17, 17);
  }
  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }
  25% {
    background-color: rgb(17, 17, 17);
  }
  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }
  35% {
    background-color: rgb(17, 17, 17);
  }
  45% {
    background-color: rgb(182, 181, 186);
  }
}


@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;
  &::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
    // background-image: url(https://res.cloudinary.com/eventbree/image/upload/v1575782560/Widgets/whatsappbg_opt.jpg);
  }
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: rgb(158, 157, 162);
    animation-name: ZpjSY;
}

.dRvxoz {

    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: rgb(182, 181, 186);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
    &::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: 
    rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.img-area{
    background: #cfcfcf!important
}

.msme td{
border: 1px solid!important;
padding: 10px
}