.myWrapper {
	margin: 10px auto;
	width: 960px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.myContain {
	min-height: 200px;
    border-radius: 16px;
    padding: 36px 36px;
	/*background-color: var(--grayLite);*/
}
.myContain.hero {
	background-color: var(--blueLitest);
}
.myContain.hero .secBtn {
	box-shadow: 0 0 0 1px var(--blueLite) inset;
}
.myContain.hero img, .myContain.foot img {
	box-shadow: none;
}
.hero h1 {
    font-weight: 900;
    font-size: 36px;
    color: var(--blue);
}
.heroTxt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero .clients {
	display: block;
    margin-top: 16px;
}
.hero .clients {
	display: block;
    margin-top: 16px;
}
.hero .clients a {
	border: none;
}
.hero .clients img {
	height: 36px;
}
.heroTxt div, .clients div {
    display: flex;
    gap: 8px;
}
.clients div {
    gap: 16px;
    align-items: center;
}
.clients p {
    font-weight: 600;
    margin-bottom: 4px;
}
nav {
	background-color: unset;
	max-width: unset;
	padding: 0;
	flex-direction: row;
	height: fit-content;
	position: relative;
    margin-bottom: 48px;
}
nav img {
    width: 100px;
}
nav a:first-child:hover {
    background-color: unset;
}
nav div {
    flex-direction: row;
    gap: 8px;
}
p {
    font-size: 14px;
}
.myContain.blue {
	background-color: var(--blueLitest2);
}
.myContain.foot {
    padding: 20px 36px;
	background-color: var(--blue);
	color: #fff;
	min-height: 80px;
}
.myContain h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 20px;
}
.myContain img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 4px var(--blueLiter);
}
.zoomIn img {
    scale: 1;
	transition: scale 180ms ease-in-out;;
}
.zoomIn img:hover {
    scale: 1.05;
}
.myInner {
	display: flex;
	flex-direction: row;
	gap: 24px;
    align-items: center;
}
.myInner h5 {
    font-size: 14px;
    margin: 4px 0 8px;
}
.myInner p {
    line-height: 1.5;
    font-weight: 300;
}
.innerLeft, .innerRight {
	/*background-color: var(--blueLitest);*/
	width: 50%;
}
.innerLeft p, .innerRight p {
    margin-bottom: 10px;
}
.hero .innerRight {	
    width: 80%;
}
.packages {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 12px auto;
}
.package {
    box-shadow: 1px 2px 6px var(--blueLite);
    background-color: #fff;
    border-radius: 16px;
    width: 240px;
    overflow: hidden;
}
.package .top, .package .bottom {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.package .top {
    background-color: var(--blueLitest);
    gap: 6px;
}
.top h2 {
    font-weight: 400;
    font-size: 32px;
}
.top sup {
    font-weight: 300;
    font-size: 12px;
}
.top b {
    font-size: 12px;
    margin-top: -4px;
}
.package p {
    font-weight: 400;
    font-size: 12px;
}
.bottom p {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.bottom p span {
    font-weight: 800;
    font-size: 14px;
}
.packages + p {
    text-align: center;
    margin: 32px auto 12px;
    max-width: 420px;
    font-weight: 300;
    font-size: 14px;
}
.myInnerX a {
    margin: 0 auto;
    font-size: 16px;
    padding: 6px 16px;
    font-weight: 300;
}
.foot .myInner img {
    width: 110px;
}
.foot .myInner p {
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
    gap: 6px 12px;
}
.foot .myInner p .secBtn {
    font-size: 10px;
    font-weight: 500;
	color: #fff !important;
}
.foot .myInner p span {
	color: var(--green);
}
.foot .myInner span {
	color: var(--blueDark);
    font-size: 12px;
}
.foot .myInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.foot .secBtn {
	box-shadow: 0 0 0 1px var(--blueLite) inset;
}
.secBtn:hover {
	box-shadow: unset !important;
}
@media only screen and (max-width: 980px) {
	.myWrapper {
		margin: 10px;
	}
	.hero .innerRight {	
		width: 50%;
	}
}
@media only screen and (max-width: 720px) {
	.myInner {
		flex-direction: column;
	}
	.myInner.txtUp {
		flex-direction: column-reverse;
	}
	.innerLeft, .innerRight {	
		width: 100%;
	}
    .hero .innerRight {
        display: none;
    }
	.myContain h3 {
        text-align: left;
        margin-bottom: 4px;
	}
}
@media only screen and (max-width: 640px) {
	.myContain {
		padding: 28px 28px;
	}
	.myContain h3 {
        font-size: 18px;
	}
	.foot .myInner p {
		flex-wrap: wrap;
		gap: 4px 6px;
	}
	.foot .myInner p span {
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	nav {
		flex-direction: column;
		gap: 6px;
		margin-bottom: 36px;
	}
	.hero h1 {
		font-size: 28px;
	}
	.hero .clients img {
		height: 32px;
	}
	.myContain {
		padding: 24px 16px;
	}
	.package {
		width: 100%;
	}
	.package .top, .package .bottom {
		align-items: center;
	}
	.foot .myInner img {
		width: 84px;
	}
}
@media only screen and (max-width: 360px) {
    .myWrapper {
        margin: 10px;
    }
	.myContain {
		border-radius: 10px;
	}
	.clients div {
		flex-wrap: wrap;
	}
    .hero .clients img {
        height: 30px;
    }
	.myContain img {
		border-radius: 4px;
	}
}