* {
  --color-1: linear-gradient(to right, #0082d6, #002d71);
  --color-1-hover: linear-gradient(to right, #0073c0, #00265e);
  --color-2: linear-gradient(to right, #72c654, #1aac61);
  --color-2-hover: linear-gradient(to right, #0073c0, #00265e);
  --cl-1: #1778bd;
  --cl-2: #0d9652;
  --btn-shadow: 0px 0px 20px rgba(128, 128, 128, 0.489);
  --h1--size: 3em;
  --h2--size: 2em;
  --h3--size: 1.3em;
  --h4--size: 1em;
  --h1--2: 2.4em;
  --p-color: #595959;
  --transition--3: all ease 0.3s;
  scroll-padding-top: 70px;
}

::selection {
  color: white;
  background-color: var(--cl-2);
}

@font-face {
  font-family: 'BuenosAires';
  src: url(Fonts/BuenosAires-Light.ttf);
  font-weight: 200;
}

@font-face {
  font-family: 'BuenosAires';
  src: url(Fonts/BuenosAires-Regular.ttf);
  font-weight: normal;
}

@font-face {
  font-family: 'BuenosAires';
  src: url(Fonts/BuenosAires-Bold.ttf);
  font-weight: bold;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: 'BuenosAires';
  box-sizing: border-box;
}

.pt-155 {
  padding: 155px 0px 50px 0px;
}

.py-155 {
  padding: 165px 0px;
}

.py-135 {
  padding: 135px 0px;
}

.py-100 {
  padding: 100px 0px 10px 0px;
}

.py-185 {
  padding: 185px 0px;
}

.my-60 {
  margin: 60px 0px;
}

.bb_1 {
  border-bottom: 1px solid rgba(205, 205, 205, 0.701);
}

.transperent {
  background: transparent;
}


ul {
  list-style: none;
  padding-left: 0px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--h3-color);
  color: white;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.02);
}

#myBtn:hover {
  background-color: var(--h2-color);
}

.bg-main {
  background-color: #6721B5;
}

.bi-arrow-right {
  font-size: 18px;
  margin-left: 10px;
  /* color: white; */
  top: 1px;
  position: relative;
}

/* -----------Main Header Start
  ------------------------- */

.rs-header {
  /* position: sticky; */
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  background-repeat: no-repeat;
  z-index: 999;
  background-image: url(images/banner/bg_1.png);
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}

.full-width-header {
  background-color: white;
}

/* Banner Content */

.rs-header_comp {
  position: sticky;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  background-repeat: no-repeat;
  z-index: 999;
  background-image: url(images/banner/bg_3.png);
  background-attachment: fixed;
  background-size: inherit;
  background-position: top;
}

.rs-country_banner {
  /* position: sticky; */
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  background-repeat: no-repeat;
  z-index: 999;
  background-image: url(Countries/Banners/UK.jpg);
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1;
  transform: perspective(1000px);
}

.mb-dropdown {
  position: relative;
  display: inline-block;
}

.arrow {
  color: #b1afaf;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  /* display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  min-height: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999; */
  /* padding: 20px; */
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  opacity: 0;
  text-align: center;
  top: 0;
  visibility: hidden;
  z-index: -99999;
}

.mb-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  min-height: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  /* padding: 20px; */
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 10px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.mb-dropdown-content a {
  padding: 10px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  /* transition: 0.3s; */
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--cl-2);
  text-decoration: none;
  color: white;
}

.mb-dropdown-content a:hover {
  background-color: var(--cl-2);
  text-decoration: none;
  color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  background: white;
  opacity: 1;
  visibility: visible;
  top: 100%;
  width: 100%;
  -webkit-transition: all .6s, background, 2s .5s linear;
  transition: all .6s, background 2s .5s linear;
}

.mb-dropdown:hover .mb-dropdown-content {
  display: block;
  z-index: 999;
  transition: 0.6s;
  animation: header 1s 1;
}

#mySidenav .dropdown-content a {
  padding: 10px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  transition: 0.3s;
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
}


.country_banner_content {
  width: 100%;
  height: 450px;
  /* position: sticky; */
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  background-repeat: no-repeat;
  z-index: 999;
  background-image: url(Countries/Banners/UK.jpg);
  /* background-attachment: fixed; */
  background-size: cover;
  /* background-position: center; */
}

.aus_cont_banner {
  width: 100%;
  height: 450px;
  /* position: sticky; */
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  background-repeat: no-repeat;
  z-index: 999;
  background-image: url(Countries/Banners/Australia_1.jpg);
  /* background-attachment: fixed; */
  background-size: cover;
}

.navbar {
  justify-content: space-between;
}

.navbar .navbar-brand img {
  width: 12em;
}

.logo img {
  width: 12em;
}

.navbar-nav .nav-item {
  font-size: 0.9em;
}

.navbar-nav .nav-item .nav-link {
  /* background-image: linear-gradient(to left, #56CCF2, #2F80ED); */
  color: rgb(0, 0, 0) !important;
  font-size: 0.9em !important;
  /* font-weight: 300; */
  text-transform: uppercase;
  padding: 9px;
  /* text-align: center; */
  position: relative;
}

.navbar-nav .nav-item .nav_btn {
  background: var(--color-1);
  color: white;
  text-decoration: none;
  padding: 8px;
  text-transform: uppercase;
  display: block;
  transition: 0.3s;
}

.nav-item .nav_btn:hover {
  /* color: rgb(0, 0, 0); */
  box-shadow: 0px 0px 10px 2px rgb(237, 237, 237);

}


/* ----------------Dropdown Start
  --------------------------------- */
.drop_btn {
  color: rgb(207, 205, 205);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 0 3px;
}

.dropdown_menu {
  position: relative;
  display: inline-block;
}

.drop-content {
  display: none;
  position: absolute;
  background-color: #19479d;
  min-width: 147px;
  box-shadow: 0px 8px 16px 0px rgb(0, 0, 0);
  z-index: 999;
}

.drop-content:hover {
  background-color: #4364a1;
}

.drop-content li {
  color: rgb(255, 255, 255);
  padding: 12px 52px;
  text-decoration: none;
  display: block;
}

.dropdown_menu:hover .drop-content {
  display: block;
}

/* ----------------Dropdown End
  --------------------------------- */

/* ----------------Side Nav Start
  --------------------------------- */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  box-shadow: 0px 0px 20px rgb(232, 232, 232);
}



/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  /* font-size: 25px; */
  color: #818181;
  display: block;
  transition: 0.3s;
  z-index: 2;
  cursor: pointer;
}

.sidenav a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.menu_icon {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
}

/* When you mouse over the navigation links, change their color */

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/* ----------------Side Nav End
  ------------------------------- */

/* -----------Main Header End
  ------------------------------ */

/* -----------Banner Content Start
  ------------------------------ */

.main_bg_content .wrapping_content h1 {
  font-size: var(--h1--size);
  display: block;
  color: white;
  font-weight: 500;
  animation: right-to-left 1.5s ease-in-out 1s;
  -webkit-animation: right-to-left 1.5s ease-in-out 1s;
}

.main_bg_content .wrapping_content h3 {
  font-size: 1em;
  display: block;
  color: white;
  font-weight: 600;
}

.bn_btn {
  background: var(--color-2);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1em;
  transition: var(--transition--3);
  -webkit-transition-property: var(--transition--3);
  animation: right-to-left 1.5s ease-in-out 1s;
  -webkit-animation: right-to-left 1.5s ease-in-out 1s;
}

.bn_btn:hover {
  opacity: 0.95;
  color: black;
}

.main_bg_content .wrapping_content p {
  color: white;
  animation: left-to-right 1.5s ease-in-out 1s;
  -webkit-animation: left-to-right 1.5s ease-in-out 1s;
}

/* -----------Banner Content End
  ------------------------------ */

/* -----------Education Content Start
  ------------------------------ */
.ed_sec_main {
  background-attachment: fixed;
}

.ed_sec_btn {
  border: 2px solid black;
  background: none;
  padding: 10px 35px;
  transition: var(--transition--3);
  -webkit-transition-property: var(--transition--3);
}

.ed_sec_btn:hover {
  background: var(--cl-1);
  border: 2px solid var(--cl-1);
  color: white;
}

.ed-row-content h2 {
  font-size: 2em;
  display: block;
  transition: var(--transition--3);
  color: var(--cl-1);
  margin: 15px auto;
  font-weight: 800;
}

.main_heading-h {
  font-size: 2em;
  display: block;
  transition: var(--transition--3);
  color: var(--cl-1);
  margin: 15px auto;
  font-weight: 800;
}

.ed-row-content P {
  color: var(--p-color);
  font-weight: 400;
  text-align: justify;
}

.main-content-sub-p {
  color: var(--p-color);
  font-weight: 400;
  text-align: justify;
}

.ed-row-content br {
  margin-bottom: 10px;
}

.ed-row-content img {
  width: 100%;
}

/* -----------Education Content End
  ------------------------------ */

/* -----------About Section Start
  ------------------------------ */
.content_ab .wrap__content p {
  color: var(--p-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 28px;
  position: relative;
}

.content_ab .wrap__content p br {
  margin-bottom: 12px;
}

/* -----------About Section End
  ------------------------------ */

/* -----------Country Section Start
  ------------------------------ */
#country_sec .breadcrumb {
  background: none;
  color: var(--cl-1);
  font-size: 0.8em;
  font-weight: 400;
}

.breadcrumb a {
  font-size: 0.9em;
  color: var(--cl-2);
  text-decoration: underline;
  font-weight: 600;
}

.breadcrumb .cy {
  color: rgb(192, 192, 192);
  font-weight: 100;
}

.breadcrumb a:hover {
  color: var(--cl-2);
}

.cy_sec .bottom-bg {
  /* background: #f8f8f8; */
  position: absolute;
  /* bottom: 0; */
  left: 0;
  right: 0;
  height: 265px;
}

.cy_sec .top-bg {
  background: #fff;
  position: absolute;
  top: -120px;
  left: 15px;
  right: 15px;
  height: 80px;
}

.country-form-fields {
  background: #fff;
  padding: 0 65px 15px 65px;
  box-shadow: 0 39px 47px 0 rgba(90, 1, 10, .08);
  top: -65px;
  position: relative;
}

.country-form-fields .sm_heading {
  font-size: 0.9em;
  font-weight: 600;
  color: var(--cl-1);
}

.country-form-fields .main-heading h1 {
  position: relative;
  font-size: 3em;
  font-weight: bolder;
  color: var(--cl-1);
}

.country-form-fields .main-heading h1::before {
  border-bottom: 6px solid var(--cl-2);
  content: '';
  position: absolute;
  bottom: -18px;
  width: 40px;
  margin: 0 auto;
  left: 0;
  /* right: 0; */
}

.country-form-fields .right-sec-pad {
  float: right;
}

.country-form-fields .right-sec-pad .journey-btn {
  margin-top: 50px;
}

.country-form-fields .right-sec-pad .journey-btn .btn {
  background: none;
  border: 1px solid var(--cl-2);
  border-radius: 0px;
  font-size: 0.9em;
  font-weight: 600;
  position: relative;
  padding: 16px 80px;
  color: var(--cl-2);
  transition: 0.2s;
}

.btn:focus {
  outline: none;
  border: none;
}

.country-form-fields .right-sec-pad .journey-btn .btn:hover {
  background-color: var(--cl-2);
  color: white;
}

.search-country-about h4 {
  font-size: 1em;
  margin-bottom: 0px;
  font-weight: 300;
}

.related-country-about-cont {
  display: block;
  margin-top: 20px;
  /* padding: 20px 10px 80px 10px; */
}

.sm-icons {
  font-size: 25px;
  color: var(--cl-2);
}

.sm-icon {
  font-size: 18px;
  color: var(--cl-2);
}

.country-search {
  position: relative;
  top: 7px;
}

.country-inden-heading {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--cl-1);
  margin: 20px 0px;
}

.boldheading {
  position: relative;
  font-size: 2.7em;
  text-align: center;
  font-weight: bolder;
  color: var(--cl-1);
}

.boldheading::before {
  border-bottom: 6px solid var(--cl-2);
  content: '';
  position: absolute;
  bottom: -18px;
  width: 50px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.country-image-sec {
  box-sizing: border-box;
  overflow: hidden;
}

.country-image-sec .img-sec-count {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.4s;
  transform: scale(1.1);
}

.country-image-sec .img-sec-count:hover {
  transition: 0.8s ease;
  transform: scale(1.2);
}

#country-post {
  margin: 50px 0px;
}

.courselist {
  border: 1px solid #edeeef;
  background-color: #fff;
}

.country-search h4 {
  font-size: 1em;
  margin-bottom: 0px;
  font-weight: 300;
  color: black;
}

.country-search h5 {
  font-size: 0.8em;
  line-height: normal;
  font-weight: 700;
  color: var(--cl-1);
  position: relative;
  margin-left: 10px;
}

.search-country-about h5 {
  font-size: 0.8em;
  line-height: normal;
  font-weight: 700;
  color: var(--cl-1);

}

.bottom-bor {
  border-bottom: 2px solid #f6f6f7;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.quick-fact h4 {
  margin-top: 82px;
  margin-bottom: 30px;
  font-size: 1em;
  color: var(--cl-1);
  font-weight: 600;
}

.img-left {
  position: absolute;
  top: 0;
}

.textcontent-right {
  color: var(--cl-1);
  font-size: 14px;
  padding-left: 25px;
  vertical-align: middle;
}

.textcontent-right p {
  margin: 0;
  color: black;
  position: relative;
}

.textcontent-right span {
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
  top: 10px;
}

.content_ab .wrap__content p br {
  margin-bottom: 12px;
}

.nav-item .nav-link::after {
  content: "";
  position: absolute;
  background-color: var(--cl-2);
  height: 2px;
  width: 0px;
  /* border-radius: 50px; */
  left: 0;
  bottom: -1px;
  transition: 0.6s ease-in-out;
}

.nav-item .nav--sm:hover:after {
  width: 50%;

}

.nav-item .nav--lg:hover:after {
  width: 100%;

}

/* -----------Country Section End
  ------------------------------ */

/* -----------bg_banner_2 Section Start
  ------------------------------ */

.bg_2 {
  background-image: url(images/banner/bg_2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.bg_4 {
  background-image: url(images/banner/bg_4.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.bg_5 {
  background-image: url(images/banner/bg_5.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.bg_6 {
  background-image: url(images/banner/bg_6.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.bg_7 {
  background-image: url(images/banner/bg_7.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-attachment: fixed;
}

.bg_8 {
  background-image: url(images/banner/bg_8.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: top left; */
  background-attachment: fixed;
}

.bg_2_content h1 {
  font-size: 3.1em;
  color: white;
  font-weight: 600;
  display: block;
  background-color: var(--cl-2);
  opacity: 0.6;
}

.bg_2_content p {
  color: white !important;
  font-weight: 300;
  margin: 30px auto;
  background-color: var(--cl-2);
  opacity: 0.6;
}

/* -----------bg_banner_2 Section End
  ------------------------------ */

/* -----------Country About Section Start
  ------------------------------ */

.cyheading-main {
  display: block;
  position: relative;
}

.cyheading-main h2 {
  font-size: 2em;
  display: block;
  transition: var(--transition--3);
  color: var(--cl-1);
  margin: 15px auto;
  font-weight: 800;
}

.cyheading-main p {
  color: var(--p-color);
  font-weight: 400;
  text-align: justify;
}

.cyheading-main p b {
  font-weight: 600;
}

.cyheading-main p a {
  text-decoration: underline;
  font-weight: 600;
  color: black;
}

.cyheading-main p a:hover {
  text-decoration: none;
}

.cys-concept-questions ul {
  padding-left: 0px;
}

.cys-concept-questions ul li {
  font-size: 15px;
  font-weight: 300;
}

.cys-concept-questions ul li::before {
  content: "\2022";
  color: var(--cl-2);
  font-weight: 800;
  display: inline-block;
  position: relative;
  left: -15px;
  font-size: 22px;
  top: 0px;
}

/* -----------Country About Section End
  ------------------------------ */

/* -----------Global_group Section Start
  ------------------------------ */

.global_group {
  position: relative;
}

.global_group .rs_group_content br {
  margin-bottom: 10px;
}

.global_group .rs_group_content h1 {
  position: relative;
  font-size: 2.8em;
  color: black;
  font-weight: 600;
  /* margin: 60px 0px 30px auto; */
}

.global_group .rs_group_content p {
  color: var(--p-color);
  font-size: 1em;
  font-weight: 300;
}

.rs_group_content .form-control {
  border: 0;
  border-bottom: 1px solid var(--p-color);
  border-radius: 0px;
  padding: 20px 0;
  outline: 0;
  margin: 10px auto;
  -webkit-transition: all .6s, 2s .5s linear;
  transition: all .6s, 2s .5s linear;
}

.rs_group_content .form-control:focus {
  border-color: var(--p-color);
  box-shadow: none;
  outline: 0;
}

.submit_btn {
  background: var(--color-2);
  color: white;
  border: none;
  padding: 10px 45px;
  transition: var(--transition--3);
  -webkit-transition-property: var(--transition--3);
  float: right;
}

.submit_btn:hover {
  /* background: var(--color-1); */
  opacity: 0.9;
  box-shadow: 0px 0px 10px 2px rgb(237, 237, 237);
}

.form_control {
  border: 0;
  border-bottom: 1px solid var(--p-color);
  border-radius: 0px;
  padding: 20px 0;
  outline: 0;
  margin: 10px auto;
  background: none;
  width: 100%;
  -webkit-transition: all .6s, 2s .5s linear;
  transition: all .6s, 2s .5s linear;
}

.control-label {
  position: absolute;
  top: 0 !important;
  transition: all .3s;
  text-transform: none;
  font-weight: lighter;
  margin: 0;
  color: #393939;
  font-size: 13px;
}

.inner-leftsec {
  position: absolute;
  top: 120px;
  max-width: 580px;
  color: #FFF;
  border-radius: 0 100px 100px 0;
  background: var(--color-2);
  padding: 23px 50px 23px;
  width: 80%;
  z-index: 99;
}

.inner-leftsec h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.inner-leftsec h3 {
  font-size: 1.2rem;
  font-weight: 300;
}

.left-headings {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner_item {
  font-family: 'BuenosAires', sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  background-color: white;
}

.country_item {
  font-family: 'BuenosAires', sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  background-color: white;
}

.inner_item_ds {
  display: none;
}

/* -----------Global_group Section End
  ------------------------------ */

/* -----------Quote Section Start
  ------------------------------ */
.mute_txt {
  font-size: 0.9em;
  font-weight: 500;
  position: relative;
  display: block;
}

.quote_sec .rs_group_content p {
  color: var(--p-color);
  display: block;
  margin: 30px auto;
  font-weight: 300;
}

.ab_quote_sec .ab_bullet {
  padding-left: 10px;
}

.val_txt h3 {
  color: var(--cl-2);
  display: block;
  margin: 80px auto;
  font-size: 1.4em;
  font-weight: 600;
  text-align: center;
}

/* -----------Quote Section End
  ------------------------------ */

/* -----------Country Section Start
  ------------------------------ */
.country_sec .wrap__country_sec .inner_content h2 {
  display: block;
  font-size: var(--h1--size);
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

.country_sec .wrap__country_sec .inner_content h3 {
  display: block;
  font-size: var(--h3--size);
  color: var(--cl-1);
  /* font-weight: 600; */
  margin: 10px 0px;
}

.country_sec .wrap__country_sec .inner_content p {
  display: block;
  color: var(--p-color);
  line-height: 28px;
  font-weight: 300;
  margin: 20px 0px;
}

.country_sec .wrap__country_sec .inner_content p br {
  margin-bottom: 12px;
}

.part_aus_heading {
  font-size: var(--h1--size);
  display: block;
  font-weight: 600;
  color: black;
  margin: 0px 0px 20px 0px;
  text-align: center;
}

/* -----------Country Section End
  ------------------------------ */

/* -----------Team_Sec Section Start
  ------------------------------ */
.team_sys .line_1_tm {
  margin: 50px auto;
  border-bottom: 1px solid rgba(205, 205, 205, 0.701);
}


.team_sys .line_1_tm p {
  color: black;
  display: block;
  font-weight: 300;
  padding: 10px 50px;
}

.wrapping-info h3 {
  font-size: var(--h3--size);
  display: block;
  font-weight: 600;
}

.wrapping-info span {
  color: var(--p-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 28px;
  position: relative;
}

.wrapping-info span br {
  margin-bottom: 12px;
}

.allcountry-link h2 a {
  display: block;
  /* text-decoration: none; */
  font-size: 15px;
  color: var(--cl-1);
  text-align: center;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  margin: 20px auto;
}

.allcountry-link h2 a i {
  font-size: 20px;
  color: var(--cl-2);
  transition: 0.3s;
  position: relative;
  top: 2px;
  left: 5px;
}

.allcountry-link h2 a:hover i {
  left: 10px;
}

.allcountry-link h2 a:hover {
  text-decoration: none;
}

/* -----------Team_Sec Section End
  ------------------------------ */

/* -----------Certification Section Start
  ------------------------------ */
.cert_heading {
  font-size: var(--h2--size);
  display: block;
  color: #000000;
}

.silent-txt {
  margin: 20px 0px;
  color: var(--p-color);
  font-weight: 300;
  font-size: 0.9em;
}

/* -----------Certification Section End
  ------------------------------ */


.count {
  /* background-color: #eaecf0; */
  text-align: left;
}

.experience,
.projects,
.client {
  margin-top: 70px;
  margin-bottom: 70px;
}

.counter,
.counter-before {
  font-size: 2em;
  position: relative;
  color: #ff7425;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.experience-p,
.projects-p,
.client-p {
  font-size: 0.9em;
  font-weight: 300;
  color: var(--p-color);
}

/* -----------Footer Section Start
  ------------------------------ */
.main_footer ul {
  padding-left: 0px;
}

.main_footer ul li {
  margin: 10px 0px;
}

#Footer {
  background-color: #000000;
}

.footer-content::before {
  content: "";
  position: absolute;
  top: 32%;
  left: -5px;
  right: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-content {
  position: relative;
  padding: 85px 0px 70px;
  color: white;
  display: flex;
  justify-content: space-between;
}

.footer-content .logo {
  margin: -30px 0px 32px 0px;
}

.footer-content-1 .email_footer {
  width: 245px;
}

.footer-content h3 {
  margin-bottom: 50px;
}

.footer-content ul li {
  list-style: none;
  font-weight: 100;
  margin: 15px 0;
}

.site-height ul li {
  list-style: none;
  font-weight: 100;
  margin: 15px 0;
  line-height: 12px;
}

.footer-content-1 span {
  font-weight: 100;
  font-size: 0.9em;
}

.footer-content .site ul {
  padding-left: 0px;
}

.footer-content .site-height ul {
  padding-left: 0px;
}

.footer-content .site {
  margin-bottom: 50px;

}

.footer-content a {
  text-decoration: none;
  color: white;
}

.footer-logo .logo {
  height: 80px;
}

.footer-content ul li a {
  font-weight: 100;
  font-size: 0.9em;
  transition: all 0.3s;
}

.email_footer {
  padding: 10px 20px;
  width: 220px;
  font-weight: 400;
  font-size: 0.9em;
  border-radius: 5px;
  border: none;
}

.email_footer:focus {
  outline: none !important;
}

#submit {
  padding: 10px 30px;
  outline: none !important;
  color: white !important;
  background: var(--color-2);
  /* border-radius: 6px; */
  border: none;
  font-weight: 400;
  font-size: 0.9em;
  transition: var(--transition--3);
}

#submit:hover {
  opacity: 0.9;
  color: white !important;
}

#email:focus {
  outline: none !important;
}

.footer-social {
  list-style: none;
  padding-left: 0;
}

.footer-social .social-li {
  display: inline-block;
  margin-right: 6px;
}

.footer-social .social-li a {
  text-decoration: none;
}

.footer-social .social-li a i {
  color: #000000;
  display: block;
  background: white;
  /* border-radius: 20px; */
  font-size: 1.1em;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.4s;
}

.footer-social .social-li a i:hover {
  background: black;
  color: white;
}

.footer-content a:hover {
  color: var(--cl-2);
  text-decoration: none;
}

.footer-content-2 {
  background-color: black;
  width: 100%;
}

.footer-content-2 p {
  color: white;
  font-weight: 300;
}


.footer-content-2 p a {
  text-decoration: none;
  color: white;
}

.border-footer-top {
  border-top: 0.5px solid rgba(255, 255, 255, 0.09);
  padding: 10px 0px;
}

.site li i {
  margin: 0px 8px 0px auto;
  font-size: 1.2em;
  color: var(--cl-2);
}

.footer-content-2 .special_dev a {
  text-decoration: none;
  color: var(--cl-2);
}

/* -----------Footer Section End
  ------------------------------ */

/* ------------Animations
  ---------------------------- */

.banner-animate .animation-style {
  position: absolute;
  bottom: 0;
}

.banner-animate .animation-style.two {
  right: 5%;
  top: 180px;
  /* position: relative; */
  max-width: 160px;
  -webkit-animation: rotated-img 5s linear infinite;
  animation: rotated-img 5s alternate linear infinite;
}

.banner-animate .animation-style.three {
  /* right: 37%; */
  /* top: 100%; */
  max-width: 180px;
  -webkit-animation: rotated-img 5s linear infinite;
  animation: rotated-img 5s alternate linear infinite;
}

.banner-animate .animation-style.four {
  top: 1500px;
  right: 4%;
  max-width: 125px;
  -webkit-animation: spine 18s linear infinite;
  animation: spine 18s alternate linear infinite;
}

.banner-animate .animation-style.five {
  top: 1600px;
  left: 3%;
  max-width: 125px;
  -webkit-animation: spine 18s linear infinite;
  animation: spine 18s alternate linear infinite;
}

.banner-animate .animation-style.six {
  top: 1790px;
  left: 25%;
  max-width: 145px;
  -webkit-animation: shrink 1.5s linear infinite;
  animation: shrink 1.5s alternate linear infinite;
}

.banner-animate .animation-style.seven {
  top: 2300px;
  right: 13%;
  max-width: 145px;
  transform: rotate(-20deg);
  -webkit-animation: rotated-img 5s linear infinite;
  animation: rotated-img 5s alternate linear infinite;
}

.banner-animate .animation-style.eight {
  top: 2400px;
  left: 13%;
  max-width: 145px;
  transform: rotate(-20deg);
  -webkit-animation: rotated-img 5s linear infinite;
  animation: rotated-img 5s alternate linear infinite;
}

.banner-animate .animation-style.nine {
  top: 2850px;
  right: 16%;
  max-width: 145px;
  transform: rotate(-20deg);
  -webkit-animation: shrink 1.5s linear infinite;
  animation: shrink 1.5s alternate linear infinite;
}

.banner-animate .animation-style.ten {
  top: 544%;
  left: 3%;
  max-width: 145px;
  transform: rotate(-20deg);
  -webkit-animation: rotated-img 5s linear infinite;
  animation: rotated-img 5s alternate linear infinite;
}

.banner-animate .animation-style.eleven {
  top: 535%;
  right: 3%;
  max-width: 145px;
  transform: rotate(-20deg);
  -webkit-animation: shrink 1.5s linear infinite;
  animation: shrink 1.5s alternate linear infinite;
}

@keyframes shrink {
  0% {
    transform: scale(0.9);
    /* transform: rotate(-20deg); */
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotated-img {
  0% {
    transform: translateX(20px);
    transform: translateY(-5px);
  }

  50% {
    transform: rotate(20deg);

  }

  100% {
    transform: translateX(-20px);
  }
}

@keyframes spine {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes right-to-left {
  to {
    transform: translateY(0px);
  }

  from {
    transform: translateX(-150px);

  }
}

@keyframes left-to-right {
  to {
    transform: translateY(0px);
  }

  from {
    transform: translateX(150px);

  }
}


/* ------------Media Quiries
  ---------------------------- */
/* Animation Responsive */

@media only screen and (max-width : 860px) {

  .animation-style,
  .animation {
    /*CSS animations*/
    display: none;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}


@media only screen and (max-width : 992px) {
  .nav_menus {
    display: none;
    visibility: hidden;
  }

  .menu_icon {
    display: block;
    position: absolute;
    right: 0;
  }

}

@media only screen and (max-width : 650px) {
  .country-form-fields {
    padding: 20px;
  }
}