@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-Medium.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-ExtraBold.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-ExtraLight.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-Light.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-Regular.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('font/Urbanist/Urbanist-SemiBold.woff2') format('woff2'),
        url('font/Urbanist/Urbanist-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --background_color: #0f0f10;
    --text-color: rgb(233, 225, 225);
    --yellow: #edda0a;
    --neon: #01d9fa;
    --red: #ed3519;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist';
    FONT-WEIGHT: 600;
}
p, li, div {
      font-family: 'Urbanist';
      FONT-WEIGHT: 500;
}
body {
    padding: 0;
    font-family: 'Urbanist';
    margin: 0;
    box-sizing: border-box;
}
.main {
    background: #00303f;
    height: 650px;
    display: flex;
    justify-content: center;
    position: relative;
}
.box{
    top: -1%;
    left: -11%;
    position: absolute;
    display: block;
    width: 59%;
    height: 102%;
    background: #ffffff0f;
    border-radius: 100%;
    padding: 3%;
    z-index: 0;
    animation: box 4s linear infinite;
}

@keyframes box {
    0% {
        rotate: 0deg;
    }

    50% {
     
        rotate: 180deg;
    }

    100% { 
        rotate: 360deg;
        }
    }

.main .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main-banner {padding-right: 118px;}
.circle {
  border: 2px solid #ffffff2b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.circle::before {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  background: #00313e;
  top: -6px;
  border-radius: 50%;
  border: 2px solid #ffffff82;
}
.circle-lg {
  width: 48%;
  height: 533px;
  animation: rotateCircles 7.1s linear infinite;
  top: 21%;
  position: absolute;
  top: 9px;
  left: -74px;
  background: #ffffff14;
}
@keyframes rotateCircles {
  from {
    transform: rotate(0);
  } to {
    transform: rotate(360deg);
  }
}
.circles-wrapper {
    position: absolute;
    left: 0;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
    /* width: 100px !important; */
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
a.navbar-brand img {
    width: 248px;
}
img.vert {
    border: 39px solid #00000038;
    border-radius: 50%;
    width: 90%;
    margin-top: 50px;
    margin-left: 10%;
}
.banner-img {
    text-align: center;
}
ul.navbar-nav li a {
    padding: 10px;
    text-decoration: initial;
    color: #fff;
}
.main-banner h1 {
    font-size: 49px;
    font-family: 'Urbanist';
    FONT-WEIGHT: 900;
}
.main:before {
    background-image: url('../img/images.png');
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height:100%;
    opacity: 0.1;
    background-size: cover;
}
.openBtn {
  background: #f1f1f1;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
}
.openBtn:hover {
  background: #bbb;
}
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}
button.openBtn, button.openBtn:hover {
    background: #0000;
}
button.btn {
    background: #007a9d;
    padding: 7px 25px;
    border: 0;
    border-radius: 0;
}
button.btn a {
    text-decoration: none;
    color: #fff;
    FONT-WEIGHT: 600;
    text-transform: uppercase;
}
.overlay .closebtn:hover {
  color: #ccc;
}
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}
.overlay input[type=text]:hover {
  background: #f1f1f1;
}
.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}
.overlay button:hover {
  background: #bbb;
}
button.btn.cb-2 {
    background: #fff;
    margin-left: 9px;
}
button.btn.btn-success.cb-2 a {
    color: #007a9d;
}
.section-padding {
    padding: 60px 0;
}
section.about {
    /* background: #000; */
    background-image: url(../img/service-bg-1.PNG);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}
.service-info {
    padding: 34px 26px;
    background: #e8f3f6;
    text-align: center;
    border-radius: 20px;
}
.service-icon img {
    width: 53px;
    filter: invert(1);
}
.service-icon {
    background: #007a9d;
    display: inline-block;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}
h4 {
    color: #27799f;
    FONT-WEIGHT: 600;
}
button.text-type {
    color: #27799f;
    border: 0;
    padding: 0;
    FONT-WEIGHT: 600;
    position: relative;
    padding-right: 21px;
    background: none;
}
button.text-type:before {
    position: absolute;
    top: 6px;
    width: 16px;
    right: 0;
    height: 12px;
    content: "";
    background: #27799f;
    clip-path: polygon(0 0, 70% 48%, 0 100%, 26% 49%);
}
.section-padding-bottom {
  padding-bottom: 60px;
}
.section-padding-top {
  padding-top: 60px;
}
.about-first img {
    width: 100%;
    box-shadow: rgb(255 255 255 / 20%) 0px 8px 24px;
    border-radius: 50%;
}

.about-first {
    position: relative;
}

.about-first.icon-munber {
    position: absolute;
    background: #fff;
    bottom: 18px;
}
.icon-munber {
    position: absolute;
    bottom: 21px;
    background: #fff;
    padding: 21px;
    border-radius: 21px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.icon-munber p {
    margin-bottom: 5px;
    font-size: 13px;
}

.icon-munber h5 a {
    text-decoration: none;
    color: #007a9d;
}

.icon-munber h5 {
    color: #007a9d;
    font-size: 19px;
}

.icon-text {
    padding: 21px;
    border: 2px solid #007a9d14;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.icon-text p {
    margin: 0;
}
.icon-text .first-icon img {
    width: -webkit-fill-available;
}
.icon-text .first-icon {
    width: 75px;
    margin-right: 21px;
    padding: 10px;
    background: #007a9d17;
}
h5 {
    font-size: 18px;
}
.headline {
    color: #007a9d;
    font-size: 38px;
    FONT-WEIGHT: 600;
}
.btn:hover {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}
.bg-light-blue {
    background-color: #007a9d17;}
    .service-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 9px;
}

.service-item .service-icon-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: #fff;
    clip-path: circle(71.6% at 50% 100%);
    text-align: center;
    color: #fff;
    height: 154px;
    transition: all 0.4s ease;
    z-index: 1;
}

.overlay-service-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007a9d;
    padding: 31px;
    color: #fff;

    /* hidden by default */
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
    place-content: center;
}

.service-item svg {
    color: #fff;
    font-size: 25px;
}

.service-item .service-icon-title .service-icon {
    padding: 15px;
}

.service-item .service-icon-title h3 {
    font-size: 23px;
    color: #007a9d;
}

.service-item:hover .overlay-service-details {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.overlay-service-details h3 {
    font-size: 26px;
}
.service-item:hover .service-icon-title {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}
img {
    width: 100%;
}
.course-image img {
    margin-bottom: 24px;
    width: 147px;
    margin-top: -107px;
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 4px 0px;
    border-radius: 50%;
    border: 6px solid #e8f3f6;
}
.service-info.course-info {
    text-align: left;
    margin-top: 64px;
}
.service-item:hover .overlay-service-details .service-icon {
    background: #fff;
}
.service-item:hover .overlay-service-details .service-icon svg {
    color: #007a9d;
}
.back-dark {
    background: #007a9d;
}
.contact-indo svg {
    padding: 15px;
    border-radius: 54px;
    width: 15px;
    height: 15px;
    margin-right: 7px;
    background: #007a9d;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-style: inset;
    border-color: rgb(255 255 255);
}
.contact-indo h4 {
    font-size: 16px;
}
.head-cont {
    margin-left: 16px;
}
.head-cont h4 {
    color: rgb(191 191 191);
}
.contact-indo p, .contact-indo p a {
    color: #ffffff;
    margin: 0 0 0px 0;
    text-decoration: none;
    letter-spacing: normal;
}
.contact-sec input, .contact-sec textarea, .contact-sec select {
    padding: 11px 21px;
    width: 46%;
    border-radius: 3px;
    border: none;
    float: left;
    margin: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 51px;
}
button[type=submit] {
    padding: 11px 21px;
    width: -webkit-fill-available;
    border-radius: 3px;
    border: none;
    margin: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: rgb(255, 255, 255);
    background: rgb(0 0 0);
}
.contact-sec textarea {
    width: -webkit-fill-available;
    height: auto;
}
.back-dark .headline {
    color: #fff;
}
.contact-sec input, .contact-sec textarea, .contact-sec select {
    padding: 11px 21px;
    width: 46%;
    border-radius: 3px;
    border: none;
    float: left;
    margin: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 51px;
    background: #ffffffd9;
}
.gray-bg {
    background: #ffffff2e;
    align-items: center;
    border-radius: 10px;
}
.contact-sec textarea {
    width: 96%;
    height: auto;
}
.testimonial-one__item .testimonial-one__content {
    BACKGROUND: #FFF;
    PADDING: 90px 34PX 34PX 34PX;
    BORDER-RADIUS: 17PX;
    margin-top: 0;
}
.testimonial-one__item .testimonial-one__author img {
    width: auto;
    margin: 0 0 -77px 28px;
    border: 8px solid #FFF;
    border-radius: 50%;
}
h5.testimonial-one__title {
    margin-top: 12px;
    font-size: 22px;
    color: #007a9d;
}
.testimonials {
    position: relative;
}
.testimonials:after {
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url('../img/beautiful-lady.png');
    width: 48%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}
.testimonial-one__item:after {
    position: absolute;
    top: 34px;
    content: "";
    width: 99%;
    background-image: url('../img/SIGN.png');
    height: 92px;
    background-repeat: no-repeat;
    left: 80%;
}
.testimonial-one__item {
    position: relative;
}
footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer ul li {
    padding-left: 20px;
    position: relative;
}

footer ul li a {
    text-decoration: none;
    color: #333;
}

.col-lg-6.gray-bg.col-md-6.justify-content-center.p-4.align-items-center {
    border-radius: 10px;
}

footer ul li:after {
    clip-path: polygon(0 0, 70% 48%, 0 100%, 26% 49%);
    position: absolute;
    top: 7px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #27799f;
    content: "";
}

.company-bio {
    padding-right: 85px;
}

.company-bio .f-logo img {
    width: 247px;
    margin-bottom: 11px;
}

ul.social-media-link li:after {
    display: none;
}

ul.social-media-link li {
    padding: 0;
}

ul.social-media-link {
    display: flex;
}
hr {
    margin: 0;
}
ul.social-media-link li a {
    padding: 4px;
    margin-right: 4px;
    background: #27799f;
}
a {
    color: #27799f;
    /* FONT-WEIGHT: 600; */
    text-decoration: none;
}
ul.social-media-link li a svg {
    color: #fff;
}