/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 550 !important;
	font-family: Roboto,Arial,Helvetica Neue,Helvetica,sans-serif;
	/*font-family: 'Playfair Display', serif;*/
}
h3,
h4,
.fw-semi-bold {
    font-weight: 500 !important;
	font-family: Roboto,Arial,Helvetica Neue,Helvetica,sans-serif;
}
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
	font-family: Roboto,Arial,Helvetica Neue,Helvetica,sans-serif;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}
.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}
.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-square {
    width: 36px;
    height: 36px;
}
.btn-sm-square {
    width: 30px;
    height: 30px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.p-set{
	text-align: justify;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 2;
/*	font-size: 18px; */
}
.p-set{
	text-align: justify; 
	font-size: 18px;
}
.p-set ul{
	padding-left: 0px;
}
.p-set ul li{
	list-style-type: none;
	line-height: 40px;
}
.ship-img{
	border-radius: 100px 0 0 100px;   
	overflow: hidden;   
	box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.3);
}
@media (max-width: 883.98px){
	.display-set{
		display: none;
	}
	.contact-set{
		margin-top: 400px;
	}
}
/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 20px;
    padding: 35px 0;
    color: #0F4370;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #06A3DA;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #091e3e;
}
.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}
.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		background-color: #ffffffb2;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #091e3e;;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .0);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 12px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #ffc107;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: justify;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
	font-size: 30px;
}
.service-txt {
    text-align: justify;
}
.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .3)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.bg-about-us {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .3)), url("../img/about-us.jpg") center center no-repeat;
    background-size: cover;
	height: 500px;
}
.bg-team {
    background: linear-gradient(rgba(9, 30, 62, .3), rgba(9, 30, 62, .3)), url("../img/team.jpg") center center no-repeat;
    background-size: cover;
	height: 500px;
}
.bg-service {
    background: linear-gradient(rgba(9, 30, 62, .3), rgba(9, 30, 62, .3)), url("../img/service.jpg") center center no-repeat;
    background-size: cover;
	height: 500px;
}
.bg-industry {
    background: linear-gradient(rgba(9, 30, 62, .3), rgba(9, 30, 62, .3)), url("../img/industry.jpg") center center no-repeat;
    background-size: cover;
	height: 500px;
}
.bg-contact {
    background: linear-gradient(rgba(9, 30, 62, .3), rgba(9, 30, 62, .3)), url("../img/contact.jpg") center center no-repeat;
    background-size: cover;
	height: 500px;
}
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*     Timeline Css Start    */

.timeline {
  margin: 4em auto;
  position: relative;
/*  max-width: 46em;*/
}
.timeline:before {
  background-color: black;
  content: '';
  margin-left: -1px;
  position: absolute;
  top: 0;
  left: 36px;
  width: 2px;
  height: 100%;
}

.timeline-event {
  position: relative;
	list-style: none;
}
.timeline-event:hover .timeline-event-icon {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #091e3e;
}
.timeline-event:hover .timeline-event-thumbnail {
  -moz-box-shadow: inset 40em 0 0 0 #06a3da;
  -webkit-box-shadow: inset 40em 0 0 0 #06a3da;
  box-shadow: inset 40em 0 0 0 #06a3da;
}

.timeline-event-copy {
  padding: 1.5em;
  position: relative;
  top: -1.875em;
  left: 4em;
  width: 100%;
}
.timeline-event-copy h3 {
  font-size: 1.75em;
}
.timeline-event-copy h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}
.timeline-event-copy strong {
  font-weight: 700;
}
/*
.timeline-event-copy p:not(.timeline-event-thumbnail) {
  padding-bottom: 1.2em;
}
*/

.timeline-event-icon {
  -moz-transition: -moz-transform 0.2s ease-in;
  -o-transition: -o-transform 0.2s ease-in;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #06a3da;
  outline: 10px solid #E3F4FB;
  display: block;
  margin: 0.5em 0.5em 0.5em -0.5em;
  position: absolute;
  top: -6px;
/*  left: 2em;*/
  width: 1.5em;
  height: 1.5em;
}

.timeline-event-thumbnail {
  -moz-transition: box-shadow 0.5s ease-in 0.1s;
  -o-transition: box-shadow 0.5s ease-in 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in;
  -webkit-transition-delay: 0.1s;
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-size: 0.75em;
  background-color: #091e3e;
  -moz-box-shadow: inset 0 0 0 0em #06a3da;
  -webkit-box-shadow: inset 0 0 0 0em #06a3da;
  box-shadow: inset 0 0 0 0em #06a3da;
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 1em 0.2em 1em;
}

/* ALL animation types called */

@-webkit-keyframes bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@keyframes bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }

  100% {
    -moz-transform: translateX(0);
  }f
}
@keyframes bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}




section1 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: calc(min(90rem, 85%));
  margin: 0 auto;
	border-top: 0.094rem solid #0f172a14;
	border-right: 0.094rem solid #0f172a14;
	border-bottom: 0.094rem solid #0f172a14;
}
@media screen and (min-width: 61.25rem) {
  section1 {
    column-gap: 4rem;
  }
}
section1 h1 {
  grid-column: span 12;
  text-transform: capitalize;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 61.25rem) {
  section1 h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
section1 .cards {
  grid-column: span 12;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 880px) {
  section1 .cards {
    grid-column: span 5;
  }
		section1 .cards .card i{
	font-size: 2.5rem;
}
}

section1 .cards .card {
  cursor: pointer;
  padding: 25px;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.188rem;
  align-items: center;
  transition: 0.3s;
  position: relative;
  border: 0.094rem solid transparent;
}
section1 .cards .card i{
	font-size: 3rem;
}
section1 .cards .card img {
  display: block;
/*  width: 3.35rem;*/
/*  height: 3.35rem;*/
  border-radius: 50%;
  filter: grayscale(1);
  transition: 0.5s;
}
section1 .cards .card > div h3 {
  text-transform: capitalize;
  font-size: 24px;
}
@media screen and (min-width: 880px) {
  
section1 .cards .card > div h3 {
  text-transform: capitalize;
  font-size: 20px;
}
	section1 .cards .card {
  	padding: 15px;
}

}
/*
section1 .cards .card > div p {
  text-transform: capitalize;
  color: #767676;
  font-size: 0.9rem;
}
*/
section1 .cards .card.active {
  background: #fff;
  border: 0.094rem solid #0f172a14;
}
section1 .cards .card.active .gradient {
  background-image: linear-gradient(to right, #4755690a, #9d0cb28a, #4343c899, #4755690a);
  width: 50%;
  height: 0.094rem;
  position: absolute;
  content: "";
  bottom: -0.063rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0.125rem 0.75rem #4343c84d;
}
section1 .cards .card.active img {
  filter: grayscale(0);
}
section1 .content {
  grid-column: span 12;
  position: relative;
  width: 100%;
  overflow: inherit;
  margin-top: 2rem;
-webkit-box-shadow: 10px 11px 8px -10px rgba(0,0,0,0.12);
-moz-box-shadow: 10px 11px 8px -10px rgba(0,0,0,0.12);
box-shadow: 10px 11px 8px -10px rgba(0,0,0,0.12);
}
@media screen and (min-width: 880px) {
  section1 .content {
    grid-column: span 7;
    margin-top: 3rem;
    height: auto;
  }
}
section1 .content .contentBox {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}
/*
@media screen and (min-width: 880px) {
  section1 .content .contentBox {
    align-items: center;
  }
}
*/
section1 .content .contentBox .text {
  padding-bottom: 5rem;
	padding: 0px 35px;
}
@media screen and (min-width: 880px) {
  section1 .content .contentBox .text {
    padding-bottom: 0;
  }
}
section1 .content .contentBox h2 {
  transition: 0.5s;
  opacity: 0;
}
section1 .content .contentBox p {
  transition: 0.5s;
  opacity: 0;
  margin-top: 1.25rem;
  font-size: 20px;
  text-align: justify;
}
section1 .content .contentBox span {
  display: inline-block;
  transition: 0.5s;
  opacity: 0;
  margin-top: 0.625rem;
}
section1 .content .contentBox span svg {
  width: 1.25rem;
  color: #eca633;
}
section1 .content .contentBox.active h2 {
  opacity: 1;
  transition-delay: 0.5s;
}
section1 .content .contentBox.active span {
  opacity: 1;
  transition-delay: 0.7s;
}
section1 .content .contentBox.active p {
  opacity: 1;
  transition-delay: 0.9s;
}

body::-webkit-scrollbar {
  width: 0.8em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #3f3f3f;
}


/*cursor CSS*/

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #ffc20f;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
	z-index: 999;
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: black;
  opacity: .3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
	z-index: 999;
}

.hover {
  background-color: #ffc20f;
  opacity: 0.5;
}

.cursorinnerhover {
  width: 40px;
  height: 40px;
  opacity: .5;
}

.tier-set{
	background-color: #fff;
	padding: 50px;
	margin-left: 75px;
}
.about-border {
  position: absolute;
  border: 6px solid #06A3DA;
  width: 480px;
  height: 480px;
  top: 40px;
  left: 50px;
  z-index: 1;
}
.about-border-2 {
  position: absolute;
  border: 6px solid #06A3DA;
  width: 480px;
  height: 430px;
  top: 16px;
  left: -19px;
  z-index: 1;
}
